@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calistoga&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bayon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');


:root{
    --primary-color: #05A5D7;
    /* --secondary-color: #; */
    --yellow-color: #FEF415;
    --dark-theme-color: #0691BC;
    --green-color: #008D35;
    --grey-color: #2B2B2B;
}

body{
    color: #101010;
    font-family: "Outfit", sans-serif;
    font-size: 1.04rem;
    line-height: 1.5;
}


p:last-child{
    margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6{
    color: #101010;
    margin-bottom: 0;
}

a{
    color: inherit;
    text-decoration: none;
}
a:hover{
    color: inherit;
}

figure, ul, ol{
    margin-bottom: 0;
}

img{
    max-width: 100%;
}

.text-primary{
    color: var(--primary-color)!important;
}
.text-secondary{
    color: var(--secondary-color)!important;
}
.text-brown{
    color: #96392B!important;
}
.text-grey{
    color: var(--grey-color)!important;
}

.bg-primary{
    color: var(--primary-color)!important;
}
.bg-secondary{
    color: var(--secondary-color)!important;
}
.bg-light{
    background-color: #F0F0F0!important;
}

.fs-xl{
    font-size: 20px;
}
.fs-lg{
    font-size: 18px;
}
.fs-sm{
    font-size: 13px;
}

.btn{
    background-color: #D9D9D9;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px -8px rgba(0, 0, 0, 0);
}
.btn > img{
    vertical-align: 0.1em;
    margin-left: 10px;
}
.btn.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn:hover{
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px -8px rgba(0, 0, 0, 0.5);
}
.btn.btn-primary:hover{
    background-color: var(--dark-theme-color);
    border-color: var(--dark-theme-color);
}
.btn.btn-light:hover{
    border-color: #fff;
    box-shadow: 0 4px 15px -8px rgba(0, 0, 0, 0.5);
}

.section-space{
    padding-top: 80px;
    padding-bottom: 80px;
}

.heading{
    display: inline-block;
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    padding-bottom: 8px;
}
.heading::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: var(--primary-color);
    background: linear-gradient(90deg,var(--primary-color) 0%, var(--primary-color) 65%, transparent 65%, transparent 70%, var(--primary-color) 70%, var(--primary-color) 85%, transparent 85%, transparent 90%, var(--primary-color) 90%, var(--primary-color) 100%);
    width: 150px;
    height: 2px;
}

/* form */
.form-floating .form-control,
.form-floating > .form-control + label{
    padding: 1rem .95rem;
}
.form-floating .form-control,
.form-floating .form-select{
    border-radius: 0;
}
.form-floating textarea.form-control{
    height: 140px;
    min-height: auto;
}
.form-floating .form-control:focus,
.form-floating .form-select:focus{
    border-color: var(--dark-theme-color);
    box-shadow: none;
}
.form-floating > label{
    color: #606060;
}
.form-floating .form-control:required + label::after,
.form-floating .form-select:required + label::after{
    content: "*";
    position: absolute;
    color: #FF0000;
}

/* simple-list */
.simple-list{
    padding-left: 14px;
}
.simple-list li:not(:last-child){
    margin-bottom: 6px;
}
.simple-list li::marker{
    font-size: 0.8rem;
}

/* social media */
.social-media{
    display: flex;
    column-gap: 12px;
}
.social-media li a{
    color: #fff;
    background-color: rgb(240, 240, 240);
    text-align: center;
    display: block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 10px;
}
.social-media li a.facebook{
    background-color: #1877F2;
}
.social-media li a.twitter{
    background-color: #000;
}
.social-media li a.instagram{
    background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}
.social-media li a.linkedin{
    background-color: #0A66C2;
}




/* -- Header -- */
header{
    position: relative;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    z-index: 10;
}
/* contact-links */
.contact-links{
    background-color: var(--primary-color);
    padding: 6px 0;
}
.contact-links a{
    color: #fff;
    display: inline-block;
}
.contact-links a .icon{
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 24px;
    margin-right: 6px;
    border-radius: 100%;
    background-color: #058EB8;
}
.contact-links a .icon img{
    width: 16px;
}

/*  */
.navbar{
    background-color: #fff;
    /* background-color: #E2F8FF; */
}
.navbar .navbar-brand{
    z-index: 1;
}
.navbar .navbar-brand img{
    width: 150px;
    transition: all 0.3s ease;
}
/* navbar-nav */
.navbar-nav{
    position: relative;
}
.navbar-nav .nav-item{
    margin: 0 10px;
}
.navbar-nav .nav-link{
    color: inherit;
    font-size: 1rem;
}
.navbar-nav .nav-link.active{
    color: var(--dark-theme-color);
    font-weight: 600;
}
.navbar .navbar-brand,
.navbar-nav .nav-item.logo-img{
    margin-top: 0;
    margin-bottom: -40px;
    padding: 0;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item.logo-img .nav-link{
    padding: 0;
}
.navbar-nav .nav-item.logo-img img{
    width: 140px;
    transition: all 0.3s ease-in-out;
}
/* navbar-toggler */
.navbar-toggler{
    border: 0;
}
.navbar-toggler:focus{
    box-shadow: none;
}


/* fixed */
header.fixed{
    /* position: -webkit-sticky;
    position: sticky;
    top: 0; */
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    box-shadow: 0 4px 15px -4px rgba(0, 0, 0, 0.2);
}
header.fixed .contact-links a{
    font-size: 0.9rem;
}
header.fixed .nav-item.logo-img{
    margin-top: -4px;
    margin-bottom: -26px;
}
header.fixed .nav-item.logo-img img{
    width: 100px;
}
header.fixed .contact-links a .icon{
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 18px;
}
header.fixed .contact-links a .icon img{
    width: 11px;
}



/* -- banner-section -- */
.banner-slider .swiper-slide{
    position: relative;
    /* height: 84vh; */
    /* height: 670px; */
}
/* .banner-slider .swiper-slide > img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
} */
.banner-slider .swiper-slide .parallax-bg{
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.banner-slider .swiper-slide .caption{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: 1.1rem;
}
.banner-slider .swiper-slide .caption .content{
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    padding: 2rem 1rem 2.2rem;
}
.banner-slider .swiper-slide .content .title{
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.banner-slider .swiper-slide .content .title span{
    color: var(--yellow-color);
}


/* -- About section -- */
.about-section{
    color: #363636;
}
.logo-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.logo-list li{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 30px 20px;
}
.logo-list li img{
    max-width: 100%;
}
.logo-list li:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 100%;
    background: -webkit-linear-gradient(180deg, #FFFFFF 0%, #B8B8B8 50%, #FFFFFF 100%);
    background: linear-gradient(180deg, #FFFFFF 0%, #B8B8B8 50%, #FFFFFF 100%);
}


/* -- products-section -- */
.product-block{
    position: relative;
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    margin: 0 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px -8px rgba(0, 0, 0, 0);
}
.product-block *{
    transition: all 0.3s ease-in-out;
}
.product-block figure{
    height: 280px;
    overflow: hidden;
}
.product-block figure > img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
}
.product-block .content{
    position: relative;
    padding: 40px 20px 25px;
}
.product-block .content .icon{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -45px;
    width: 75px;
    height: 75px;
    line-height: 55px;
    text-align: center;
    border-radius: 100%;
    border: 6px solid #fff;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0);
}
.product-block .content .icon img{
    max-width: 55%;
}
.product-block .content .title{
    font-size: 1.5rem;
}
.product-block:hover{
    box-shadow: 0 4px 15px -8px rgba(0, 0, 0, 0.2);
}
.product-block:hover figure > img{
    transform: scale(1.1);
}
.product-block:hover .content .icon{
    box-shadow: 0 4px 15px -8px rgba(0, 0, 0, 0.8);
}
.product-block:hover .content .icon img{
    max-width: 45%;
}

/* text-line */
.text-line{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}
.text-line p{
    font-size: 2.5rem;
    font-weight: 500;
    line-height: normal;
    background-color: #86B300;
    padding: 10px 115px 10px 45px;
    margin-bottom: 0;
    clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
}
.text-line .image{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    width: 115px;
    height: 115px;
    background: url(../images/bg/landscape-img.png) no-repeat center / cover;
    border-radius: 40px;
}


/* -- Why choose us section -- */
.proccess-wrap{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
}
.proccess-wrap li{
    font-size: 1.05rem;
    position: relative;
    text-align: center;
    padding: 0 30px;
    perspective: 500;
}
.proccess-wrap li *{
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.proccess-wrap li:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 20%;
    left: calc(100% - 65px);
    right: 0;
    width: 120px;
    background: url(../images/icons/long-arrow-right-icon-grey.svg) no-repeat center / contain;
    height: 25px;
    animation: fadeInLeft 0.5 both;
}
.proccess-wrap li figure{
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 80px;
    margin-bottom: 10px;
    border-radius: 100%;
    background-color: #0889B1;
    border: 5px solid var(--dark-theme-color);
}
.proccess-wrap li figure img{
    transform: scale(1);
}
.proccess-wrap li .title{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.proccess-wrap li:hover .title{
    color: var(--dark-theme-color);
}
.proccess-wrap li:hover figure img{
    transform: scale(0.9);
}
.proccess-wrap li:hover figure{
    background-color: var(--dark-theme-color);
    border: 5px solid #0889B1;
}


/* -- global-section -- */
.global-section .sub-title{
    font-size: 2.8rem;
}
.global-section .sub-title span{
    color: var(--green-color);
}
.global-section .title{
    font-family: "Calistoga", serif;
    font-size: 5rem;
}
.global-section .title span{
    color: var(--dark-theme-color);
}
.global-section .text{
    font-size: 1.2rem;
}
.global-section .text span{
    color: #0098C6;
}


/* -- footer -- */
footer{
    position: relative;
    background-color: #F4F3F3;
    color: #fff;
    padding: 175px 0 10px;
    /* margin-top: -100px; */
    overflow: hidden;
    z-index: 1;
}
/* curved-shape */
footer .curved-shape{
    position: absolute;
    left: 0;
    top: -100px;
    width: 100%;
    z-index: 1;
}
footer .curved-shape svg{
    display: block;
    height: 265px;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* bg-img */
footer .bg-img{
    background: url(../images/bg/footer-bg-img-1.png) no-repeat bottom center / cover;
    /* background-attachment: fixed; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
footer .bg-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(25, 25, 25, 0.8); */
    background: linear-gradient(top, rgba(25, 25, 25, 0.8) 40%, rgba(25, 25, 25, 0.6) 100%);
    background: -webkit-linear-gradient(top, rgba(25, 25, 25, 0.8) 40%, rgba(25, 25, 25, 0.6) 100%);
}
/* links */
footer .links li{
    position: relative;
    margin-bottom: 15px;
}
footer .links li a::before{
    content: "";
    width: 13px;
    height: 13px;
    background: url(../images/icons/arrow-right-angle-icon.svg) no-repeat center / contain;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
footer .links li a{
    position: relative;
    display: inline-block;
    padding-left: 25px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
footer .links li:hover a{
    color: var(--yellow-color);
}
footer .links li:hover a::before{
    left: 6px;
}
/* list-icon-style */
footer .list-icon-style li{
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}
footer .list-icon-style li .icon{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 20px;
    border-radius: 100%;
    text-align: center;
    background-color: #fff;
}
footer .list-icon-style li .icon img{
    width: 14px;
}

/* copyright */
.copyright p img{
    width: 16px;
}


/* -- whatsapp-btn -- */
.whatsapp-btn{
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    right: 25px;
    bottom: 120px;
}
/* -- back-to-top -- */
.back-to-top{
    opacity: 0;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    background-color: #fff;
    border-radius: 100%;
    position: fixed;
    right: 25px;
    bottom: 60px;
}

.whatsapp-btn,
.back-to-top{
    cursor: pointer;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.whatsapp-btn:hover,
.back-to-top:hover{
    transform: translateY(-5px);
}
.back-to-top:hover{
    box-shadow: 0 4px 15px -4px rgba(0, 0, 0, 0.1);
}


/* -- page-banner -- */
.page-banner{
    position: relative;
}
.page-banner .breadcrumb-wrap{
    color: #121212;
}
.page-banner .breadcrumb-item + .breadcrumb-item::before{
    color: #121212;
}
.page-banner .breadcrumb-wrap .breadcrumb-item.active{
    color: #0A0A0A;
    font-weight: 500;
}
.page-banner .image-wrap{
    width: calc(100% - 100px);
    /* height: 400px; */
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* border-radius: 0 0 30px 30px; */
}
.page-banner .image-wrap img{
    width: 100%;
}


/* ---- About us page ---- */
.vision-mision{
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 0 50px 0 50px;
    padding: 25px 35px;
    overflow: hidden;
}
.vision-mision .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg/bg-img-1.png) no-repeat center / cover;
    opacity: 0.3;
    z-index: -1;
}
.vision-mision .column{
    padding: 25px 35px;
}
.vision-mision .column *{
    transition: all 0.3s ease-in-out;
}
.vision-mision .column:not(:last-child){
    border-right: 1px dashed #767676;
}
.vision-mision .column .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 55px;
    background-color: #0A0A0A;
    outline: 6px solid rgb(94, 94, 94);
    border-radius: 100%;
    margin-left: 6px;
    transform: scale(1);
}
.vision-mision .column:hover .icon{
    outline: 8px solid rgba(94, 94, 94, 0.4);
    transform: scale(1.06);
}
.vision-mision .column .title{
    color: #02A1D2;
    font-size: 1.6rem;
}

/* -- infographic-1 -- */
.infographic-1{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
}
.infographic-1 li{
    font-size: 1.05rem;
    position: relative;
    text-align: center;
    padding: 0 55px;
    perspective: 500;
}
.infographic-1 li *{
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.infographic-1 li:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 50px);
    right: 0;
    transform: translateY(-50%);
    width: 100px;
    background: url(../images/icons/long-arrow-right-icon-grey.svg) no-repeat center / contain;
    height: 25px;
    animation: fadeInLeft 0.5 both;
}
.infographic-1 li figure{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    line-height: 70px;
    margin-bottom: 10px;
    border-radius: 100%;
    background-color: #0889B1;
    transform: scale(1);
}
.infographic-1 li figure::after{
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    border-radius: 100%;
}
.infographic-1 li:nth-child(1) figure{
    background-color: #F7B719;
}
.infographic-1 li:nth-child(1) figure::after{
    border-top: 1px solid #F7B719;
    transform: translate(-50%, -50%) scale(1.2) rotate(-20deg);
}
.infographic-1 li:nth-child(2) figure{
    background-color: #0F7698;
}
.infographic-1 li:nth-child(2) figure::after{
    border-top: 1px solid #0F7698;
    transform: translate(-50%, -50%) scale(1.2) rotate(20deg);
}
.infographic-1 li:nth-child(3) figure{
    background-color: #158783;
}
.infographic-1 li:nth-child(3) figure::after{
    border-top: 1px solid #158783;
    transform: translate(-50%, -50%) scale(1.2) rotate(190deg);
}
.infographic-1 li:nth-child(4) figure{
    background-color: #D13356;
}
.infographic-1 li:nth-child(4) figure::after{
    border-top: 1px solid #D13356;
    transform: translate(-50%, -50%) scale(1.2) rotate(150deg);
}
.infographic-1 li figure img{
    transform: scale(1);
}
.infographic-1 li .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.infographic-1 li .title{
    font-size: 1.3rem;
    font-weight: 600;
    margin-block: 8px;
}
.infographic-1 li:hover .title{
    color: var(--dark-theme-color);
}
.infographic-1 li:hover figure img{
    transform: scale(1.13);
}
.infographic-1 li:hover figure{
    transform: scale(1.1);
}

/* director-section */
.director-section .founder{
    font-family: "Aguafina Script", cursive;
}


/* ---- Panchsheel Business ---- */
.infographic-2 .text-column .title{
    font-size: 1.3rem;
}
.infographic-2 .left-column .text-column:nth-child(1) .title{
    color: #E84A47;
}
.infographic-2 .left-column .text-column + .text-column{
    margin-top: 100px;
}
.infographic-2 .left-column .text-column:nth-child(2) .title{
    color: #FF6400;
}
.infographic-2 .left-column .text-column:nth-child(3) .title{
    color: #F6A100;
}
.infographic-2 .right-column .text-column:nth-child(1) .title{
    color: #A4CF27;
}
.infographic-2 .right-column .text-column:nth-child(2){
    margin-top: 100px;
}
.infographic-2 .right-column .text-column:nth-child(2) .title{
    color: #554689;
}

/* custom-text */
.custom-text{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: -120px;
    z-index: 2;
}
.custom-text .title{
    font-family: "Aclonica", sans-serif;
    font-size: 3.8rem;
    text-transform: uppercase;
    flex: 0 0 60%;
}
.custom-text .title span{
    color: #24970F;
}
.custom-text figure{
    flex: 0 0 auto;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    overflow: hidden;
}
.custom-text figure img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* ---- Products page ---- */
.product-wrap{
    display: flex;
    flex-wrap: wrap;
}
.product-wrap article{
    color: #262626;
    font-size: 1.1rem;
    text-align: justify;
    padding-left: 25px;
    padding-right: 25px;
}
.product-wrap article .title{
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #CA2F1C;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: normal;
    padding: 0 0 0 25px;
    /* margin-left: -26px; */
}
.product-wrap article .title::after{
    content: "";
    width: 100%;
    height: 35px;
    background-color: #F5F5F5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.product-wrap article .title .number{
    color: #D5D5D5;
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
    margin-right: 10px;
}
.product-wrap figure{
    height: 380px;
    border-radius: 0 33px 0 33px;
    overflow: hidden;
}
.product-wrap figure img{
    -webkit-object-fit: cover;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}


/* ---- knowledge-centre-page ---- */
.column-design-1{
    height: 100%;
    background-color: #FAFAFA;
    border-radius: 0 0 0 25px;
}
.column-design-1 .content{
    padding: 20px 15px;
}
.column-design-1 .title{
    font-size: 1.2rem;
}
.column-design-1 hr{
    opacity: 0.6;
    border-color: #05A5D7;
}
/* highlight-text */
.highlight-text .title{
    color: #86B300;
    font-family: "Bayon", sans-serif;
    font-size: 2.4rem;
}


/* ---- Research page ---- */
.column-design-2{
    display: flex;
    align-items: center;
    gap: 25px;
}
.column-design-2 .title{
    width: 190px;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.column-design-2 article{
    width: 100%;
    background-color: #F0F0F0;
    border-radius: 25px 0 0 25px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.column-design-2 article figure{
    flex: 0 0 auto;
    width: 200px;
}



/* ---- Contact us page ---- */
.contact-info *{
    transition: all 0.3s ease-in-out;
}
.contact-info .icon{
    height: 50px;
    margin-bottom: 5px;
    transform: translateY(0);
}
.contact-info p{
    margin-bottom: 0;
}
.contact-info:not(:last-child){
    border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.contact-info:hover .icon{
    transform: translateY(-5px);
}

.contact-info .social-media li a{
    width: 30px;
    height: 30px;
    line-height: 30px;
}

/* contact-form */
.contact-form{
    background-color: #FAFAFA;
}

/* map-wrapper */
.map-wrapper{
    height: 480px;
}











/* ---- Responsive ---- */
@media only screen and (min-width: 992px){
    .infographic-1 li .content{
        justify-content: end;
        padding-top: 120px;
    }
    .infographic-1 li:nth-child(even) .content{
        flex-direction: column-reverse;
        justify-content: start;
        padding-top: 0;
        padding-bottom: 120px;
    }
    .infographic-1 li:nth-child(even) .content{
        flex-direction: column-reverse;
    }
    .infographic-1 li:nth-child(even) .content .title{
        margin-top: 0;
        order: 2;
    }
    .infographic-1 li:nth-child(even) figure{
        margin-top: 20px;
        margin-bottom: 0px;
    }
}

@media only screen and (min-width:1199px){
    .navbar-nav{
        left: 10px;
    }
}

@media only screen and (min-width:1200px){
    .navbar-nav{
        left: 35px;
    }

    .infographic-1 li .content{
        justify-content: end;
        padding-top: 120px;
    }
    .infographic-1 li:nth-child(even) .content{
        flex-direction: column-reverse;
        justify-content: start;
        padding-top: 0;
        padding-bottom: 120px;
    }
    .infographic-1 li:nth-child(even) .content{
        flex-direction: column-reverse;
    }
    .infographic-1 li:nth-child(even) .content .title{
        margin-top: 0;
        order: 2;
    }
    .infographic-1 li:nth-child(even) figure{
        margin-top: 20px;
        margin-bottom: 0px;
    }
}

@media only screen and (min-width:1299px){
    .navbar-nav{
        left: 45px;
    }
    
    .banner-slider .swiper-slide .content .title{
        font-size: 3rem;
    }
}

@media only screen and (max-width:1399px){
    footer{
        padding: 160px 0 10px;
    }
    footer .curved-shape {
        top: -50px;
    }
    footer .curved-shape svg{
        height: 165px;
    }

    .custom-text .title{
        font-size: 3.2rem;
    }
    .custom-text figure{
        width: 240px;
        height: 240px;
    }
}

@media only screen and (max-width:1199px){
    .navbar-nav .nav-item {
        margin: 0 5px;
    }
    .navbar-nav .nav-link{
        font-size: 0.95rem;
    }
    .navbar-nav .nav-item.logo-img img {
        width: 110px;
    }
    /* .navbar-nav .nav-item.logo-img {
        margin-bottom: -50px;
    } */

    .product-block{
        margin: 0 5px;
    }
    
    .global-section .title{
        font-size: 4rem;
    }
    .global-section .sub-title{
        font-size: 2.5rem;
    }

    .page-banner .image-wrap{
        width: calc(100% - 70px);
        /* height: 300px; */
    }

    .infographic-1 li{
        padding: 0 30px;
    }

    .infographic-2 .left-column .text-column + .text-column{
        margin-top: 30px;
    }
    .infographic-2 .right-column .text-column:nth-child(2){
        margin-top: 30px;
    }
}

@media only screen and (max-width:991px){
    .heading{
        font-size: 2rem;
    }

    .navbar-nav .nav-item {
        margin: 0 5px;
    }
    .navbar-nav .nav-link{
        font-size: 1.05rem;
    }
    .navbar .navbar-brand img {
        width: 110px;
    }
    
    /* navbar-collapse */
    .navbar .navbar-collapse{
        position: absolute;
        top: 54px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
    }
    .navbar .navbar-collapse .navbar-nav{
        margin: 80px 20px 15px;
    }

    .banner-slider .swiper-slide{
        height: auto;
    }

    .logo-list li:nth-child(3n)::after{
        display: none;
    }
    
    .product-block{
        margin: 0 0;
    }

    .text-line p{
        font-size: 2rem;
        padding: 10px 100px 10px 40px;
    }
    .text-line .image{
        width: 100px;
        height: 100px;
        border-radius: 30px;
    }

    .proccess-wrap li:not(:last-child)::after{
        left: calc(100% - 42px);
        width: 90px;
    }
    .proccess-wrap li {
        font-size: 1rem;
    }
    .proccess-wrap li .title{
        font-size: 1.1rem;
    }

    .whatsapp-btn{
        bottom: 140px;
    }
    .back-to-top{
        bottom: 80px;
    }

    .vision-mision{
        padding: 15px 15px;
        border-radius: 0 40px 0 40px;
    }

    .infographic-1 li:not(:last-child)::after{
        top: 20%;
    }
    .infographic-1 li:nth-child(even)::after{
        display: none;
    }

    .page-banner .image-wrap {
        width: calc(100% - 50px);
        /* height: 260px; */
    }
    .page-banner .breadcrumb-wrap .breadcrumb-item{
        font-size: 1rem;
    }

    .product-wrap article .title{
        font-size: 1.9rem;
    }
    .product-wrap article .title .number{
        font-size: 3.7rem;
    }
    
    .column-design-2{
        flex-wrap: wrap;
        gap: 15px;
    }
    .column-design-2 .title{
        width: auto;
    }

    .custom-text{
        margin-bottom: -90px;
    }
    .custom-text .title {
        font-size: 2.7rem;
    }
    .custom-text figure {
        width: 180px;
        height: 180px;
    }
    
    .product-wrap figure {
        height: 280px;
    }
}

@media only screen and (max-width:767px){
    .heading{
        font-size: 1.6rem;
    }

    .navbar .navbar-brand img {
        width: 90px;
    }
    
    .logo-list li::after{
        display: block!important;
    }

    .product-block .content{
        padding: 35px 20px 20px;
    }
    .product-block .content .title {
        font-size: 1.3rem;
    }
    .text-line p {
        font-size: 1.7rem;
        padding: 10px 80px 10px 30px;
    }
    .text-line .image {
        width: 85px;
        height: 85px;
        border-radius: 25px;
    }
    
    .proccess-wrap li:nth-child(even)::after{
        display: none;
    }

    .global-section .title {
        font-size: 3.2rem;
    }
    .global-section .sub-title {
        font-size: 2.1rem;
    }
    .global-section .text {
        font-size: 1.1rem;
    }
    
    .vision-mision{
        padding: 0px 30px;
    }
    .vision-mision .column:not(:last-child){
        border-right: 0;
        border-bottom: 1px dashed #767676;
    }
    .vision-mision .column{
        padding: 35px 15px;
    }
    .vision-mision .column .title{
        font-size: 1.4rem;
    }

    .infographic-1 li{
        font-size: 1rem;
    }
    .infographic-1 li .title{
        font-size: 1.1rem;
    }

    .page-banner .image-wrap {
        width: calc(100% - 30px);
        /* height: 200px; */
    }

    .column-design-2{
        justify-content: center;
        gap: 5px;
    }
    .column-design-2 article{
        flex-wrap: wrap;
    }
    .column-design-2 article figure{
        width: 100%;
        text-align: center;
    }
    
    .custom-text .title {
        font-size: 2.4rem;
    }
    .custom-text figure {
        width: 150px;
        height: 150px;
    }
    
    .social-media{
        column-gap: 20px;
    }
}

@media only screen and (max-width:575px){
    .heading{
        font-size: 1.5rem;
    }
    .heading::after{
        width: 110px;
    }

    .section-space {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .product-block figure{
        height: 210px;
    }
    .product-block .content{
        padding: 30px 20px 15px;
    }
    .product-block .content .icon{
        width: 70px;
        height: 70px;
        line-height: 50px;
        border-width: 5px;
    }
    .text-line p {
        font-size: 1.4rem;
        padding: 7px 60px 7px 30px;
    }
    .text-line .image {
        width: 70px;
        height: 70px;
        border-radius: 20px;
    }
    
    .proccess-wrap li:not(:last-child){
        padding-bottom: 50px;
    }
    .proccess-wrap li:not(:last-child)::after{
        width: 50px;
        top: auto;
        left: calc(50% - 40px);
        transform: rotate(90deg) translateY(-50%);
        right: auto;
        bottom: 5px;
    }
    .proccess-wrap li:nth-child(even)::after{
        display: block;
    }

    .global-section .title {
        font-size: 2.8rem;
    }
    .global-section .sub-title {
        font-size: 1.8rem;
    }

    footer .curved-shape{
        top: -2px;
    }
    footer .curved-shape svg{
        width: calc(105% + 1.3px);
        height: 100px;
    }

    .vision-mision {
        padding: 0px 10px;
    }

    .whatsapp-btn {
        bottom: 175px;
    }
    .back-to-top {
        bottom: 115px;
    }
    
    .page-banner .image-wrap {
        width: calc(100% - 0px);
        /* height: 160px; */
    }

    .infographic-1 li::after{
        display: none;
    }

    .product-wrap article .title {
        font-size: 1.6rem;
    }
    .product-wrap article .title .number {
        font-size: 3.3rem;
    }

    .column-design-2 .title {
        font-size: 1.2rem;
    }
    .column-design-2 article{
        padding: 15px 20px;
    }
      
    
    .custom-text .title {
        font-size: 2rem;
    }
    .custom-text figure {
        width: 110px;
        height: 110px;
    }
}