@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  /* ================= GLOBAL CONTAINER ================= */

.tf-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* ================= HERO SECTION ================= */

.tf-hero-section {
    position: relative;
    padding: 160px 0 46px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(56,189,248,0.18), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(168,85,247,0.18), transparent 45%),
        linear-gradient(135deg, #0f172a, #020617);
    animation: tfGradientShift 18s ease infinite alternate;
}

/* Subtle grid overlay */
.tf-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Glow orbs */
.tf-hero-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
    top: -250px;
    left: -250px;
    filter: blur(140px);
    animation: tfGlowMove 14s infinite alternate ease-in-out;
    z-index: 0;
}

/* Second glow using extra element */
.tf-hero-section .tf-container::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
    bottom: -250px;
    right: -200px;
    filter: blur(140px);
    animation: tfGlowMove 16s infinite alternate-reverse ease-in-out;
    z-index: -1;
}

/* Animation effects */
@keyframes tfGlowMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes tfGradientShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(8deg); }
}

/* Content layering */
.tf-hero-section .tf-container {
    position: relative;
    z-index: 2;
}

/* HERO TEXT */

.tf-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -1px;
    animation: tfFadeUp 1s ease forwards;
}

.tf-hero-title span {
    background: linear-gradient(90deg, #38bdf8, #a78bfa, #6366f1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: tfTextFlow 6s linear infinite;
}

@keyframes tfTextFlow {
    to { background-position: 200% center; }
}

.tf-hero-subtitle {
    color: #94a3b8;
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 50px;
    animation: tfFadeUp 1.4s ease forwards;
}

@keyframes tfFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* BUTTON */

.tf-primary-btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 14px;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(56,189,248,0.35);
}

.tf-primary-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99,102,241,0.6);
}

/* ================= FEATURED ================= */

.tf-featured-wrapper {
    padding: 64px 0;
}

.tf-featured-card {
        display: flex;
    gap: 20px;
    background: rgba(30, 41, 59, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 24px;
    align-items: center;
    transition: 0.5s ease;
}

.tf-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.tf-featured-image {
    flex: 1;
    min-height: 160px;
    border-radius: 24px;
    overflow: hidden;
}

.tf-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tf-featured-card:hover img {
    transform: scale(1.08);
}

.tf-featured-content {
    flex: 1;
}

.tf-badge {
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(56,189,248,0.2);
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tf-date {
    margin-top: 18px;
    font-size: 0.9rem;
    color: #64748b;
}

.tf-featured-title {
    font-size: 2.4rem;
    margin: 20px 0;
}

.tf-featured-desc {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ================= BLOG GRID ================= */

.tf-blog-section {
    padding: 70px 0 60px;
}

.tf-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tf-blog-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30,41,59,0.75), rgba(15,23,42,0.95));
    backdrop-filter: blur(14px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s ease;
}

.tf-blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.tf-card-thumb {
    height: 240px;
    overflow: hidden;
}

.tf-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.tf-blog-card:hover img {
    transform: scale(1.1);
}

.tf-card-body {
    padding: 30px;
}

.tf-card-date {
    font-size: 0.8rem;
    font-weight: 800;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tf-card-title {
    margin: 14px 0;
    font-size: 1.5rem;
    transition: 0.3s ease;
}

.tf-blog-card:hover .tf-card-title {
    color: #38bdf8;
}

.tf-card-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 22px;
    line-height: 1.7;
}

.tf-read-link {
    color: #38bdf8;
    font-weight: 800;
    text-decoration: none;
    position: relative;
}

.tf-read-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: #38bdf8;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.4s ease;
}

.tf-read-link:hover::after {
    width: 100%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .tf-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tf-featured-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .tf-hero-title {
        font-size: 2.6rem;
    }

    .tf-blog-grid {
        grid-template-columns: 1fr;
    }

    .tf-featured-card {
        padding: 35px;
    }
}
.whatsapp-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 35px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }

        /* Sky Blue Pulse Animation */
        .whatsapp-btn::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: #87ceeb; /* Sky Blue */
            opacity: 0.7;
            z-index: -1;
            animation: sky-pulse 2s infinite;
        }

        @keyframes sky-pulse {
            0% { transform: scale(1); opacity: 0.7; }
            100% { transform: scale(1.6); opacity: 0; }
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            background-color: #128c7e;
            color: #fff;
        }

        /* Desktop Tooltip (Optional) */
        .whatsapp-btn .tooltip-text {
            visibility: hidden;
            width: 160px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 8px 0;
            position: absolute;
            z-index: 1;
            right: 120%;
            font-family: sans-serif;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .whatsapp-btn:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        /* Mobile Responsiveness */
        @media screen and (max-width: 768px) {
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 30px;
            }
            .whatsapp-btn .tooltip-text { display: none; }
        }
.slider-container {
            width: 100%;
            overflow: hidden; /* Hide the scrollbar */
            padding: 60px 0;
            background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%);
            position: relative;
        }

        .slider-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .slider-header h2 {
            font-size: 2.5rem;
            color: #0369a1; /* Deep Sky Blue */
            margin: 0;
            letter-spacing: -1px;
        }

        /* The Animation Track */
        .slide-track {
            display: flex;
            width: calc(320px * 5); /* (Card width + gap) * number of cards */
            animation: scroll 30s linear infinite;
        }

        /* Pause animation on hover */
        .slide-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-320px * 3)); } /* Move by half the cards */
        }

        /* Individual Card */
        .blog-card {
            width: 300px;
            height: 420px;
            margin: 0 10px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            border: 1px solid rgba(135, 206, 235, 0.3);
            box-shadow: 0 15px 35px rgba(3, 105, 161, 0.1);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
        }

        .blog-card:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(3, 105, 161, 0.2);
            border-color: #87ceeb;
        }

        /* Image Section */
        .card-img {
            height: 200px;
            width: 100%;
            background: linear-gradient(45deg, #87ceeb, #00bfff);
            position: relative;
            overflow: hidden;
        }
        .card-img img{width:100%;height:100%;}
        .card-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.1);
            transition: 0.3s;
        }

        .blog-card:hover .card-img::after {
            background: rgba(255,255,255,0);
        }

        /* Card Content */
        .card-body {
            padding: 25px;
        }

        .tag {
            background: #e0f2fe;
            color: #0ea5e9;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .card-body h3 {
            margin: 15px 0 1px;
    color: #0f172a;
    font-size: 17px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;

        }

        .card-body p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* number of lines you want */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .btn-sky {
            display: inline-block;
            margin-top: -5px;
            padding: 10px 24px;
            background: #87ceeb;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
        }

        .btn-sky:hover {
            background: #0ea5e9;
            color:#000;
            box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
        }

        /* Mobile Responsive adjustments */
        @media (max-width: 768px) {
            .slider-header h2 { font-size: 1.8rem; }
            .blog-card { width: 260px; }
            @keyframes scroll {
                100% { transform: translateX(calc(-280px * 4)); }
            }
        }
        
        
        
.about-text {padding-right: 11px;}
.about-text h3 {
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    line-height: 25px;
    padding: 4px 0 10px;
}
.about-text > h4 {
    font-family: "Poppins",sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 22px;
}
.about-text p.mb {margin-bottom: 21px;}
.about-text-end {
    padding-left: 44px;
    padding-top: 20px;
}
.about-text-end .single-content{
    margin-top: 30px;
}
.about-text-end .single-content p{
    margin-bottom: 0;
}

.single-title {
    color: #231f20;
    margin-bottom: 8px;
}
/*----------------------------------------*/
/*  2.  Services Area
/*----------------------------------------*/
.services-area .single-content > p, .services-two-area .single-content > p, .services-three-area .single-content > p {
    margin-bottom: 5px;
}
.single-service {
    position: relative;
}
.all-single-service .single-service{
    margin-top: 50px;
}
.service-row .single-service {
    margin-top: 70px;
}
.single-service > img {
    float: left;
    padding-right: 15px;
}
.single-service .single-content {overflow: hidden;}
/*----------------------------------------*/
/*  3.  Portfolio Area
/*----------------------------------------*/
.grid-item {margin-bottom: 60px;}
.portfolio img {width: 100%;}
.portfolio {position: relative;}
.portfolio-menu{
    margin-bottom: 55px;
    margin-left: -15px;
    margin-right: -15px;

}
.portfolio-menu button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    color: #717171;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 15px 0;
    padding: 0;
    position: relative;
    text-transform: uppercase;
}
.portfolio-menu button:hover, .portfolio-menu button.active{color: #303030}
.portfolio-title {
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index:2;
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.hover {display: inline-block;}
.hover-style > a {display: block; position:relative}
.hover-style > a:before {
    background: #fff none repeat scroll 0 0;
    bottom: 15px;
    content: "";
    left: 15px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    right: 15px;
    top: 15px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.hover:hover .hover-style > a:before{opacity: 0.80;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";}
.view-more {line-height: 12px;}
.view-more a {
    color: #606060;
    display: inline-block;
    font-family: "oswaldmedium";
    font-size: 14px;
    line-height: 12px;
    text-transform: uppercase;
}
.view-more a i {
    color: #636363;
    font-size: 18px;
    line-height: 12px;
    padding-left: 6px;
}
.view-more a:hover, .view-more a:hover i{color: #303030}
.custom-row {
    margin-left: -55px;
    margin-right: -55px;
}
.custom-row .col-md-6 {
    padding-left: 55px;
    padding-right: 55px;
}
.gallery-icon {
    bottom: 0;
    cursor: pointer;
    height: 32px;
    left: 0;
    margin: -16px auto 0;
    padding-top: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    -webkit-transition: all 250ms cubic-bezier(1, -0.6, 0.57, -0.15) 0s;
    transition: all 250ms cubic-bezier(1, -0.6, 0.57, -0.15) 0s;
    visibility: hidden;
    width: 32px;
}
.gallery-icon i {
    display: table-cell;
    vertical-align: middle;
}
.gallery-icon:hover i{color: #fff}
.grid-item:hover .gallery-icon {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1);
    visibility: visible;
}
.portfolio-text {
    margin-bottom: 30px;
    margin-top: 39px;
}
.portfolio-text > h4 {
    color: #231f20;
    margin-bottom: 12px;
}
.portfolio-text > h4 a:hover {color: #717171}
.mfp-no-margins img.mfp-img {padding: 0;}
.mfp-no-margins .mfp-figure:after {
	top: 0;
	bottom: 0;
}
.mfp-no-margins .mfp-container {padding: 0;}
/*----------------------------------------*/
/*  4.  Education Area
/*----------------------------------------*/
.education-area .single-title, .experience-area .single-title  {margin-bottom: 11px;}
.single-content span {font-size: 16px;}
.education-wrapper{}
.education-wrapper .single-content{
    margin-top: 0px;
}

/*----------------------------------------*/
/*  5.  Experiences Area
/*----------------------------------------*/
.experience-area .single-content span{font-size: 14px}
.experience-wrapper{}
.experience-wrapper .single-content{
    margin-top: 50px;
}
.exp-image{float: right}
.banner-image {
    display: block;
    position: relative;
}

.banner-image img{    width: 320px;}
.banner-hover {
    left: 36px;
    position: absolute;
    top: 37px;
}
.logo-img {display: inline-block;}
selectorSavingError {display: inline-block;}
.banner-hover-text {
    color: #231f20;
    display: inline-block;
    font-size: 24px;
    padding-left: 9px;
    position: relative;
    top: 17px;
}
.banner-hover-text > span {
    display: block;
    font-family: "oswaldmedium";
    line-height: 26px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s
}
.banner-image .text-light{
    color: #231F20;
    font-size: 18px;
    font-weight: 300;
	display: block;
	font-family: "Poppins",sans-serif;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s
}
.banner-image:hover .banner-hover-text, .banner-image:hover .text-light {color: #606060}
/*----------------------------------------*/
/*  6.  Homepage Two
/*----------------------------------------*/
.about-area-two .section-title > h2, .about-area-three .section-title > h2 {margin-bottom: 25px;}
.about-area-two .single-title, .about-area-three .single-title {
    color: #303030;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 8px;
}
.about-area-two .single-content{
    margin-top: 30px;
}
.about-area-two .about-text p.mb {margin-bottom: 40px;}
.services-two-area .single-title, .services-three-area .single-title {
    font-family: "Poppins",sans-serif;
    font-weight: 500;
}
.services-two-area .single-service > img, .services-three-area .single-service > img {
    position: relative;
    top: -3px;
}
.portfolio-two-area .portfolio-text > h4 {font-family: "Poppins",sans-serif;}
.portfolio-two-area .portfolio > span {
    position: absolute;
    width: 90px;
    z-index: 2;
}
.portfolio-two-area .grid-item:nth-child(even) .portfolio span {
    bottom: 41px;
    left: -39px;
    text-align: left;
}
.portfolio-two-area .portfolio > span:after {
    background: #a2a2a2 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    position: absolute;
    width: 100%;
}
.portfolio-two-area .grid-item:nth-child(even) .portfolio span:after {left: 0;}
.portfolio-two-area .grid-item:nth-child(odd) .portfolio span {
    right: -39px;
    text-align: right;
	top: 35px
}
.portfolio-two-area .grid-item:nth-child(odd) .portfolio span:after {right: 0;}
.card-style-2.portfolio-two-area .col-md-4.grid-item:nth-child(6) .portfolio span {
    bottom: 41px;
    right: -39px;
	left: auto;
    text-align: right;
}
/*----------------------------------------*/
/*  7.  Homepage Three
/*----------------------------------------*/
.b-image {
    margin-right: 54px;
    position: relative;
}
.b-image:before {
    background: #F5F5F5 none repeat scroll 0 0;
    bottom: -30px;
    content: "";
    height: 82%;
    position: absolute;
    right: -31px;
    width: 95%;
    z-index: -1;
}
.b-image img {width: 100%;}
.text-icon > h2 {
    color: #303030;
    display: inline-block;
    font-size: 26px;
    line-height: 27px;
    position: relative;
    top: 7px;
}
.single-fun-factor {
    margin-top: 0px;
}
.single-fun-factor h4 {
    font-family: "montserratregular";
    font-size: 15px;
    font-weight: 400;
}
.text-icon img {
    display: inline-block;
    padding-right: 6px;
}
.single-fun-factor > span {
    display: block;
    font-size: 13px;
}

.fun-fact {
    overflow: hidden;
    padding-right: 45px;
}
.text-icon {margin-bottom: 8px;}
.service-container {
    float: right;
    padding-left: 25px;
    width: 58%;
}
.service-column {
    float: left;
    width: 33.3333%;
}
.service-image {
    float: left;
    width: 42%;
}
.service-image > img {max-width: 100%;}
.services-three-area .section-title > h2 {margin-bottom: 10px;}
.custom-row-two{margin-left: -8px; margin-right: -8px}
.custom-row-two .col-md-4, .custom-row-two .col-md-3, .custom-row-two .col-md-6, .full-width .grid.row .col-md-3, .full-width .grid.row .col-md-4, .full-width .grid.row .col-md-6{
	padding-left: 8px; padding-right: 8px
}
.custom-row-two .grid-item, .full-width .grid.row .grid-item{margin-bottom: 16px}
.custom-row-two .col-md-4.no-gutter, .custom-row-two .col-md-3.no-gutter, .custom-row-two .col-md-6.no-gutter, .full-width .grid.row .col-md-3.no-gutter, .full-width .grid.row .col-md-4.no-gutter, .full-width .grid.row .col-md-6.no-gutter{
	margin: 0;
	padding: 0
}
/*----------------------------------------*/
/*  8.  About Us Page
/*----------------------------------------*/
.skill-content > h3 {
    line-height: 25px;
    margin-bottom: 26px;
}
.skill-content p:nth-child(2) {margin-bottom: 14px;}
.skill-content {padding: 90px 52px 0 0;}
.skill-bar-item > span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}
.progress {
    background: #f5f5f5 none repeat scroll 0 0;
    border: 1px solid #a6a6a6;
    border-radius: 30px;
    box-shadow: none;
    height: 14px;
    margin: 0;
    padding: 2px 5px;
}
.progress-bar {
    background: #4b4b4b none repeat scroll 0 0;
    border-radius: 30px;
    box-shadow: none;
    height: 8px;
}
.progressbar-container {padding-top: 148px;}
.progressbar-container .col-lg-4:nth-child(1) .skill-bar-item, .progressbar-container .col-lg-4:nth-child(2) .skill-bar-item, .progressbar-container .col-lg-4:nth-child(3) .skill-bar-item {
    margin-bottom: 40px;
}
.experience-style-two .exp-image {float: left;}
.experience-style-two .section-title {padding-top: 20px;}
.experience-style-two .single-content span, .experience-style-three .single-content span {
    font-size: 16px;
}
.experience-style-two .single-title, .experience-style-three .single-title, .education-style-two .single-title, .education-content h3, .experience-content h3 {
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-size: 20px;
}
/*----------------------------------------*/
/*  9.  Service Page
/*----------------------------------------*/
.about-work .section-title > h2 {margin-bottom: 19px;}
.about-work .about-text p {margin-bottom: 44px;}
.about-row-three {
    margin-left: -22px;
    margin-right: -22px;
}
.about-row-three .col-md-5 {
    padding-left: 22px;
    padding-right: 22px;
}
.about-work .b-image:before {
	background: #f5f5f5 none repeat scroll 0 0;
	bottom: -30px;
	content: "";
	height: 82%;
	position: absolute;
	right: -31px;
	width: 95%;
	z-index: -1;
}
.about-work .b-image {margin-right: 30px;}
.about-work .about-text {padding-right: 47px;}
/*----------------------------------------*/
/*  10.  Education Page
/*----------------------------------------*/
.education-section .section-title > h2 {margin-bottom: 15px;}
.education-content h3, .experience-content h3 {
    line-height: 25px;
    margin-bottom: 22px;
}
.education-img {float: right;}
.education-content > p:nth-child(2), .experience-content > p:nth-child(2) {margin-bottom: 20px;}
.education-content > p:nth-child(3), .experience-content > p:nth-child(3) {margin-bottom: 24px;}
.education-content {padding-top: 12px;}
/* .education-item {padding-top: 12px;} */
.education-item .single-content{padding-top: 50px;}
/*----------------------------------------*/
/*  11.  Experience Page
/*----------------------------------------*/
.experience-style-three .section-title > h2 {margin-bottom: 27px;}
.experience-items {padding-top: 15px;}
.experience-items .single-content{padding-top: 30px;}

/*----------------------------------------*/
/*  12.  Contact Page
/*----------------------------------------*/
.single-contact-info > h4 {margin-bottom: 18px;}
.contact-text span {
    font-size: 12px;
    padding-left: 35px;
}
.contact-content {padding-top: 40px;}
.form-box label {
    font-size: 14px;
    margin: 0;
}
.contact-form .section-title {margin-bottom: 16px;}
.form-box input, .form-box textarea {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #cccccc;
    height: 30px;
    padding: 3px 10px;
}
.form-box {margin-bottom: 13px;}
.form-content .form-box:last-child {margin: 0;}
.form-content {padding-right: 24px;}
.form-box textarea {
    height: 186px;
	margin-bottom: 20px
}
.form-box button {
  background: #262626 none repeat scroll 0 0;
  border: 0 none;
  color: #fefefe;
  float: right;
  font-family: "oswaldmedium";
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 6px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s
}
.form-box button:hover{background: #444}
/*----------------------------------------*/
/*  13.  Portfolio Page
/*----------------------------------------*/
.full-width .grid-item {overflow: hidden;}
.full-width .view-more {
    overflow: hidden;
    padding: 60px 102px 0 0;
}
.grid-item.no-gutter{margin: 0; padding: 0}
.card-style-1 .grid-item, .card-style-2 .grid-item {margin-bottom: 25px;}
.card-style-1 .portfolio-text, .card-style-2 .portfolio-text {
    margin-bottom: 40px;
    margin-top: 40px;
}
.custom-row-three {
    margin-left: -40px;
    margin-right: -40px;
}
.custom-row-three .col-md-4, .custom-row-three .col-md-6, .custom-container {
    padding-left: 40px;
    padding-right: 40px;
}/*----------------------------------------*/
/*  14.  Portfolio Details Page
/*----------------------------------------*/
.portfolio-left-bar-top > h3,.portfolio-right-bar-top > h3,.portfolio-right-bar-bottom > h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}
.portfolio-left-bar-bottom > h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 22px;
}
.portfolio-left-bar-bottom p {color: #666;}
.portfolio-right-bar-top ul {border: 1px solid #dcd9d9;}
.portfolio-right-bar-top li {
    border-bottom: 1px solid #dcd9d9;
    font-size: 14px;
    font-weight: 500;
    display: block;
    overflow: hidden;
}
.portfolio-right-bar-top li:last-child {border-bottom: none;}
.portfolio-right-bar-top li span {
    float: left;
    padding: 10px;
}
.portfolio-right-bar-top li span.portfolio-span {
    border-right: 1px solid #dcd9d9;
    float: left;
    width: 34%;
}
.portfolio-right-bar-bottom .portfolio-title h3 {font-size: 14px;}
.portfolio-right-bar-bottom .portfolio-title span {font-size: 14px;}
.portfolio-right-bar-bottom .portfolio {margin-bottom: 0px;}
.portfolio-right-bar-bottom .hover-style > a:before {
    bottom: 5px;
    left: 5px;
    right: 5px;
    top: 5px;
}
.portfolio-right-bar-bottom .hover-style:hover a:before {
    opacity: 0.75;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}
/*----------------------------------------*/
/*  15.  Additional CSS
/*----------------------------------------*/
#page-wrapper .wrapper .section img {width: 100%;}
#page-wrapper {
    height: 100%;
    padding-left: 250px;
    width: 100%;
}
#page-wrapper .wrapper {
    height: 100%;
    position: relative;
}
.section {
    left: 0;
    position: absolute;
    top: 0;
    z-index: -999;
    height: 100%;
    width: 100%;
}
.section.active {z-index: 99;}
body.height {
    height: 100%;
    overflow: hidden;
}
.wrapper .text-content {padding-left: 90px;}
.wrapper-right {padding: 0 20px;}
#page-wrapper .skill-content {padding: 44px 0 0;}
#page-wrapper .progressbar-container {padding: 5px 30px 62px 0;}
#about-area .section-title > h2 {margin-bottom: 28px;}
#page-wrapper .contact-content {padding-top: 35px;}
#page-wrapper .wrapper .section .contact-content img {width: auto;}
#about-area.section .single-contact-info h4 {color: #606060;}
.section .single-footer-info {width: 50%;}
.section .contact-text span{padding-left: 25px}
#page-wrapper .wrapper .section .fun-fact img, #page-wrapper .wrapper .section .service-sec img {width: auto;}
.section .portfolio-two-area .portfolio > span {width: 72px;}
.section .portfolio-two-area .grid-item:nth-child(2n+1) .portfolio span {right: -31px;}
.section .portfolio-two-area .grid-item:nth-child(2n) .portfolio span {left: -31px;}
.portfolio-contents {padding: 70px 70px 60px;}
.pagination-content .pagination {
    margin: 0;
    padding: 0;
}
.section .grid-item:nth-child(5), .section .grid-item:nth-child(6) {margin-bottom: 50px;}
.pagination-content .pagination li:last-child a {margin-right: 0;}
.section .portfolio-text > p {
    font-size: 12px;
    line-height: 20px;
}
.section .portfolio-text > h4 {
    font-size: 15px;
    line-height: 13px;
}
.section .portfolio-text {margin-bottom: 25px;}
#service-area .section-title > h2 {margin-bottom: 16px;}
.wrapper-right .single-title {margin-bottom: 10px;}
.section .services-two-area {padding-top: 48px;}
.service-sec {padding: 15px 0 35px;}
.single-service{
    margin-top: 30px;
}
.edu-sec .education-content {
    padding-right: 34px;
    padding-top: 24px;
}
.edu-sec .education-item {
    padding-bottom: 70px;
}
#experience-area .section-title > h2 {margin-bottom: 27px;}
.section .experience-content > p:nth-child(2) {margin-bottom: 29px;}
.exp-sec .single-title {
    font-size: 20px;
    margin-bottom: 2px;
}
.exp-sec .single-content span {margin-bottom: 10px;}
.exp-sec .experience-items {margin-bottom: 52px;}
.col-left {
    float: left;
    width: 34%;
}
.col-right {
    float: left;
    width: 66%;
}
.single-contact-info{
    padding-top: 27px;
}
.section .social-links-content {text-align: left;}
.contact-sec .social-links-content {margin: 78px 0 40px;}
.contact-sec .social-links a {margin: 0 12px;}
.contact-sec .social-links a:first-child {margin-left: 0;}
.contact-sec .social-links {margin-top: 35px;}
.contact-sec .contact-form .section-title {margin-bottom: 44px;}
.contact-sec .form-box {margin-bottom: 21px;}
.contact-sec .contact-form {padding-bottom: 70px;}