@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&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');

:root{
    --black-color: #222;
    /* --gold-color: #D4BDAD; */
    --gold-color: #9E8472;
    --white-color: #fff;
}

html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width:100%;
	height: 100%;
}
body{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-size-adjust: none ;
	-webkit-text-size-adjust:none;
    overflow-x: hidden;
}
p{
    font-size: 16px;
    line-height: 24px;
}
p:last-child{
    margin-bottom: 0;
}
h1{
    font-size: 72px;
    line-height: 72px;
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 16px;
}
h2{
    font-size: 56px;
    line-height: 56px;
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 16px;
}
h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}
h4{
    font-size: 18px;
    line-height: 22px;
}
a{
    text-decoration: none;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.grecaptcha-badge {
    visibility: hidden !important;
}
.container{
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
    position: relative;
}
.s-py{
    padding-top: 110px;
    padding-bottom: 110px;
}
.s-pt{
    padding-top: 110px;
}
.s-pb{
    padding-bottom: 110px;
}
/*** Basic Component Start ***/
.cta-btn{
    padding: 12px 32px;
    height: 48px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    background: var(--black-color);
}
.cta-btn:hover{
    /* color: var(--black-color); */
    color: var(--white-color);
    background: var(--gold-color);
}
.cta-btn.white{
    color: var(--black-color);
    background: var(--white-color);
}
.cta-btn.white:hover{
    /* color: var(--black-color); */
    color: var(--white-color);
    background: var(--gold-color);
}
.br-24{
    border-radius: 24px;
}
.light-gold-bg{
    background: #F2EBE6;
}
/*** Basic Component End ***/

/*** Animation Start ***/
.c-animated-img{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.c-animated-img img{
    transform: scale(1.4);
    transition: transform 1050ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.c-animated-img.loaded img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.c-animated-img:after{
    content: "";
    background: var(--white-color);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*transform-style: preserve-3d;*/
    -ms-transform: translateX(0%) translateY(0%);
    transform: translateX(0%) translateY(0%);
    transition: transform 1050ms cubic-bezier(0.215, 0.61, 0.355, 1), background-color 350ms linear, visibility 0ms linear 1050ms;
}
.c-animated-img.loaded:after{
    -ms-transform: translateX(101%);
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    visibility: hidden;
}
.text-animation,
.text-animation-early,
.title-animation {
    -ms-transform: translateY(20%) matrix(0.99254, 0.12186, 0, 1, 0, 159.833);
    transform: translateY(20%) matrix(0.99254, 0.12186, 0, 1, 0, 159.833);
    opacity: 0;
    -webkit-transition: transform 1050ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition: transform 1050ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: transform 1050ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1050ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.animated {
    opacity: 1 !important;
    -ms-transform: none !important;
    transform: none !important;
}
.box-effect{
    -ms-transform: translateY(20%) matrix(0.99254, 0.12186, 0, 1, 0, 159.833);
    transform: translateY(20%) matrix(0.99254, 0.12186, 0, 1, 0, 159.833);
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
/*** Animation End ***/

/*** Header Start ***/
header{
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: var(--white-color);
}
header.scrolled{
    padding: 24px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.header-logo{
    width:240px;
    display: inline-flex;
}


.hamburger-menu{
    color: var(--black-color);
}
.hamburger-menu span{
    top: -4px;
    position: relative;
    margin-left: 10px;
}
.hamburger-menu span,
.hamburger-menu span:before,
.hamburger-menu span:after{
    background: var(--black-color);
    width: 30px;
    height: 2px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.15s linear;
}
.hamburger-menu span:before,
.hamburger-menu span:after{
    content: '';
    position: absolute;
}
.hamburger-menu span:before{
    transform: translateY(-7px);
}
.hamburger-menu span:after{
    transform: translateY(7px);
}
.hamburger-menu.open span{
    background: transparent;
}
.hamburger-menu.open span:before{
    transform: rotate(45deg);
}
.hamburger-menu.open span:after{
    transform: rotate(-45deg);
}
.navbar{
    display: none;
    position: absolute;
    background: var(--white-color);
    right: 20px;
    top: 48px;
    width: 200px;
    padding: 20px;
    -webkit-box-shadow: 0 4px 6px rgba(0,0,0,.1);
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    border-radius: 0 0 16px 16px;
}
header .navbar ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
header .navbar ul li{
    width: 100%;
    margin: 0 0 16px 0;
}
header .navbar ul li:last-child{
    margin-bottom: 0;
}
header .navbar ul li a{
    color: #949494;
    position: relative;
}
header .navbar ul li a:hover,
header .navbar ul li a.active{
    color: var(--black-color);
    padding-left: 24px;
}
header .navbar ul li a:hover:before,
header .navbar ul li a.active:before{
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}
header .navbar ul li a:before{
    content: '';
    position: absolute;
    background: url(../images/menu-arrow.svg) no-repeat;
    width: 19px;
    height: 14px;
    left: 0;
    top: 4px;
    background-size: 16px;
    background-position: left center;
    opacity: 0;
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
/*** Header End ***/


/*** Footer Start ***/
footer{
    padding: 80px 0 0 0;
    background: url(../images/footer-bg.png) no-repeat center;
    background-size: cover;
}
footer .row [class*="col-"]:first-child p{
    max-width: 230px;
    width: 100%;
}
.footer-logo{
    width: 220px;
    margin-bottom: 16px;
    display: inline-flex;
}
footer .f-col h4{
    color: var(--white-color);
    margin-bottom: 12px;
}
footer .f-col p,
footer .f-col ul li a,
.copyright{
    color: #949494;
    font-size: 15px;
}
footer .f-col ul li a:hover{
    color: var(--white-color);
}
footer .f-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 32px;
}
footer .f-col address,
footer .f-col .email,
footer .f-col .phone{
    color: #949494;
    font-size: 15px;
    display: inline-flex;
}
footer .f-col .email{
    margin-bottom: 16px;
    padding-left: 24px;
    background: url(../images/email.svg) no-repeat left 4px;
    word-break: break-word;
}
footer .f-col address{
    padding-left: 24px;
    background: url(../images/location.svg) no-repeat left 4px;
}
footer .f-col .phone{
    padding-left: 24px;
    background: url(../images/phone.svg) no-repeat left 4px;
}
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    border-top: #3A3A3A solid 1px;
    padding: 32px 0;
}
footer .social{
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}
footer .social li{
    margin-right: 8px;
}
footer .social li a{
    border: #949494 solid 1px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #C3C3C3;
}
footer .social li a:hover{
    background: var(--white-color);
    border: var(--white-color) solid 1px;
    color: var(--black-color);
}
/*** Footer End ***/


/*** Homepage Start ***/
.hero-section{
    display: flex;
    align-items: center;
    min-height: 700px;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    /* overflow: hidden; */
    margin-top: 87px;
}
.hero-section .content{
    max-width: 880px;
    width: 100%;
    padding-left: 48px;
}
.hero-section .content p{
    max-width: 430px;
    width: 100%;
    color: var(--white-color);
    margin-bottom: 24px;
}
.hero-section .content .title{
    color: var(--white-color);
}
.hero-section .container,
.products-section .container,
.industries-section .container{
    z-index: 1;
}
.hero-section .line-wrapper,
.products-section .line-wrapper,
.industries-section .line-wrapper{
    z-index: 0;
}
.hero-section .line-wrapper .left-line,
.hero-section .line-wrapper .middle-line,
.hero-section .line-wrapper .right-line{
    background: rgba(255,255,255,.2);
}
.title span{
    color: var(--gold-color);
}
.who-we-section{
    position: relative;
    overflow: hidden;
}
.who-we-section:before{
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% + 310px);
    width: 100vw;
    height: 50%;
    background: #F3F2F1;
    z-index: -1;
}
.pattern-1{
    position: absolute;
    width: 128px;
    bottom: -39px;
    left: 50%;
    margin-left: -64px;
    z-index: 1;
    animation: balloons 4s ease-in-out infinite;
}
@keyframes balloons{
    0%, 100% {
        transform: translateY(0) rotate(-8deg);
    }
    50% {
        transform: translateY(0px) rotate(8deg);
    }
}
.who-we-section .row [class*="col-"]:first-child{
    padding-left: 60px;
}
.who-we-section .content{
    padding-left: 64px;
    max-width: 400px;
    width: 100%;
}
.who-we-section .content .cta-btn{
    margin-top: 8px;
}
.who-we-section .c-animated-img{
    margin-right: 48px;
    margin-left: 48px !important;
    max-width: 480px;
    width: 100%;
}
.who-we-section .round{
    border: var(--gold-color) solid 2px;
    width: 98px;
    height: 98px;
    border-radius: 100%;
    position: absolute;
    top: -30px;
    right: 30px;
    z-index: 0;
}
.line-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.line-wrapper .left-line,
.line-wrapper .middle-line,
.line-wrapper .right-line{
    width: 1px;
    height: 30px;
    background: #dedede;
    -webkit-transition: all 2.5s ease-in-out;
    -moz-transition: all 2.5s ease-in-out;
    -ms-transition: all 2.5s ease-in-out;
    -o-transition: all 2.5s ease-in-out;
    transition: all 2.5s ease-in-out;
}
.line-wrapper .left-line.animated,
.line-wrapper .middle-line.animated,
.line-wrapper .right-line.animated{
    height: 100%;
}
.line-wrapper .middle-line{
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    /* transition-delay: .3s; */
}
.line-wrapper .right-line{
    position: absolute;
    top: 0;
    right: 0;
    /* transition-delay: .5s; */
}
.products-section{
    position: relative;
    background: var(--black-color) url(../images/product-bg.png) no-repeat center;
    background-size: cover;
}
.products-section .line-wrapper .left-line,
.products-section .line-wrapper .middle-line,
.products-section .line-wrapper .right-line{
    background: rgba(255,255,255,.2);
}
.products-section .title,
.products-section .left-content p{
    color: var(--white-color);
}
.products-section .left-content{
    padding-left: 48px;
}
.products-section .left-content .left-space{
    padding-left: 66px;
}
.products-section .left-content .left-space .cta-btn{
    margin-top: 8px;
}
.pattern-2{
    width: 103px;
    margin-top: 40px;
    animation: balloons 4s ease-in-out infinite;
}
.products-section .right-box{
    padding-right: 48px;
    margin-left: -48px;
}
.products-section .right-box .row{
    margin-top: -24px;
}
.products-section .right-box .row [class*="col-"]{
    margin-top: 24px;
}
.products-section .right-box .row [class*="col-"]:nth-child(2n){
    margin-top: 70px;
}
.products-section .right-box .row [class*="col-"]:nth-child(3n){
    margin-top: -22px;
}
.products-section .right-box .row [class*="col-"]:nth-child(4n){
    margin-top: 24px;
}
.products-section .right-box .box{
    text-align: center;
    background: var(--black-color);
    padding: 32px;
    border: transparent solid 1px;
    border-radius: 24px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.products-section .right-box .box:hover{
    border: var(--gold-color) solid 1px;
}
.products-section .right-box .box img{
    width: 100px;
    margin-bottom: 24px;
}
.products-section .right-box .box h3{
    color: var(--gold-color);
}
.products-section .right-box .box p{
    color: var(--white-color);
    max-width: 210px;
    margin: 0 auto;
}

.who-we-section.trust-section .c-animated-img{
    margin-left: 0 !important;
}
.trust-section{
    position: relative;
}
.trust-section:before{
    content: '';
    position: absolute;
    top: 0;
    right: calc(50% + 310px);
    width: 100vw;
    height: 50%;
    background: #F3F2F1;
    z-index: -1;
    left: auto;
}
.trust-section .row [class*="col-"]:last-child{
    margin-right: 48px;
}
.trust-section .content ul{
    padding: 0;
    margin: 0;
    line-height: 32px;
}
.trust-section .content ul li{
    list-style: outside;
}

.industries-section{
    background: #EDDDD1;
    position: relative;
}
.industries-section .content-wrapper{
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
}
.industries-section .content-wrapper h2,
.industries-section .content-wrapper .content{
    margin: 0;
    max-width: 490px;
    width: 100%;
}
.industries-section .content-wrapper .content{
    margin-left: auto;
}
.industries-section .line-wrapper .left-line,
.industries-section .line-wrapper .middle-line,
.industries-section .line-wrapper .right-line{
    background: rgba(255,255,255,.8);
}
.pattern-3{
    position: absolute;
    width: 117px;
    animation: balloons 4s ease-in-out infinite;
    top: -44px;
    left: 50%;
    margin-left: -58px;
    z-index: 1;
}
.certifications-section .title{
    max-width: 480px;
    width: 100%;
}
/*** Homepage End ***/

/*** Aboutpage Start ***/
.top-banner{
    min-height: 340px;
    padding: 40px 0;
}
.top-banner .title{
    margin: 0;
}
.about-mission-vision{
    position: relative;
}
.about-mission-vision::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--black-color);
    z-index: -2;
}
.about-mission-vision::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #EDDDD1;
    z-index: -2;
}
.about-mission-vision .line-wrapper .left-line,
.about-mission-vision .line-wrapper .middle-line{
    background: rgba(255,255,255,.15);
}
.about-mission-vision .line-wrapper .right-line{
    background: rgba(255,255,255,.50);
}
.about-mission-vision .row{
    margin: 0;
}
.about-mission-vision .row [class*="col-"]{
    padding: 0;
}
.vision-box{
    position: relative;
    height: 100%;
    padding-left: 48px;
    padding-right: 48px;
}
.vision-box *{
    color: var(--white-color);
}
.mission-box{
    position: relative;
    padding-left: 48px;
    padding-right: 48px;
}
.vision-box .content,
.mission-box .content{
    padding-left: 64px;
}
.mission-box .title span{
    color: var(--black-color);
}
.silver-pattern-1{
    position: absolute;
    width: 103px;
    bottom: -55px;
    left: 50%;
    margin-left: -52px;
    z-index: 1;
    animation: balloons 4s ease-in-out infinite;
}
.about-why-choose{
    position: relative;
}
.choose-wrapper{
    padding: 0 48px;
}
.choose-box-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 16px;
}
.choose-box-wrapper .box{
    display: flex;
    width: calc(100% / 2 - 16px);
    background: #FBFBFB;
    border: #dadada solid 1px;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}
.choose-box-wrapper .box .icon{
    align-self: flex-start;
}
.choose-box-wrapper .box .content{
    width: calc(100% - 73px);
    margin-left: auto;
}
/*** Aboutpage End ***/

/*** Productpage Start ***/
.product-section{
    position: relative;
}
.trust-section.product-section{
    background: #F3F2F1;    
}
.product-section::before{
    display: none;
}
.product-section.trust-section .container{
    z-index: 2;
}
.product-section.trust-section .line-wrapper{
    z-index: 1;
}
/*** Productpage End ***/

/*** Contactpage Start ***/
.contact-section{
    position: relative;
}
.contact-wrapper{
    padding: 0 48px;
}
.contact-details ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-details ul li{
    display: flex;
    align-items: center;
    border-bottom: #d9d9d9 solid 1px;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.contact-details ul li:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.contact-details ul li .icon{
    margin-right: 16px;
    border: var(--gold-color) solid 1px;
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}
.contact-details ul li address{
    margin: 0;
}
.contact-details ul li a{
    color: var(--black-color);
    word-break: break-word;
    line-height: 1.1;
}
.contact-details ul li > a:hover{
    /* color: var(--gold-color); */
    text-decoration: underline;
}
.contact-details ul li .social{
    display: flex;
}
.contact-details ul li .social a:not(:last-child){
    margin-right: 8px;
}
.contact-details ul li .social a{
    border: var(--black-color) solid 1px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
}
.contact-details ul li .social a:hover{
    border: var(--black-color) solid 1px;
    background: var(--black-color);
    color: var(--white-color);
}
.contact-form{
    background: #F3F2F1;
    padding: 40px;
    border-radius: 24px;
}
.contact-form .row{
    margin-top: -20px;
}
.contact-form .row [class*="col-"]{
    margin-top: 20px;
}
.contact-form .input-group label{
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 8px;
    line-height: 1.1;
}
.contact-form .input-group input[type="text"],
.contact-form .input-group input[type="email"],
.contact-form .input-group input[type="tel"],
.contact-form .input-group textarea{
    resize: none;
    min-height: 48px;
    padding: 10px 20px;
    border-radius: 6px !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border: #E8E7E7 solid 1px;
}
.contact-form .input-group input:focus,
.contact-form .input-group input:focus,
.contact-form .input-group input:focus,
.contact-form .input-group textarea:focus{
    outline: none;
    box-shadow: none;
}
.contact-form .input-group textarea{
    height: 100px;
}
.contact-form button.cta-btn{
    border: none;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.contact-map{
    width: 100%;
}
.contact-map iframe{
    display: block;
    width: 100%;
    height: 500px;
}
/*** Contactpage End ***/

/*** Servicespage Start ***/
.services-section{
    position: relative;
}
.service-point{
    background: #F2EBE6;
    padding: 24px;
    border-radius: 24px;
    margin-right: 12px;
}
.services-section .content{
    padding-left: 48px;
}
.service-point ul{
    margin: 0;
    padding: 0;
}
.service-point ul li{
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: #cec0b5 solid 1px;
}
.service-point ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.service-point ul li span{
    font-weight: 400;
}
/*** Servicespage End ***/

/*** Compliancepage Start ***/
.compliance-content{
    position: relative;
}
.compliance-content .container{
    z-index: 1;
    position: relative;
}
.compliance-content h3{
    font-size: 32px;
    line-height: 32px;
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.compliance-content p:not(:last-child){
    margin-bottom: 24px;
}
.compliance-content.light-gold-bg .line-wrapper{
    z-index: 0;
}
.compliance-content.light-gold-bg .line-wrapper > div{
    background: #cec0b5;
}
/*** Compliancepage End ***/

/*** Newspage Start ***/
.latest-news{
    position: relative;
}
.news-wrapper{
    padding: 0 12px;
}
.latest-news .news-box {
  background: #fff;
  border: #E8E7E7 solid 1px;
  border-radius: 24px;
  overflow: hidden;
}
.latest-news .news-box > img{
    height: 240px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.latest-news .news-box .content {
  max-width: 390px;
  width: 100%;
  padding: 24px;
}
.latest-news .news-box .content > span {
  color: #595959;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}
.latest-news .news-box .content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 28px;
}
.latest-news .news-box .content p {
  margin-bottom: 16px;
}
.latest-news .news-box .content .link {
  color: var(--black-color);
}
.latest-news .news-box .content .link svg {
  margin-left: 4px;
  transition: all 0.5s ease-in-out;
}
.latest-news .news-box .content .link:hover svg {
  margin-left: 8px;
}
.news-wrapper .row{
    margin-top: -24px;
}
.news-wrapper .row [class*="col-"]{
    margin-top: 24px;
}
.news-details-content{
    margin-top: 72px;
    position: relative;
    background: #f3f2f1;
}
.news-details-content .container{
    position: relative;
    z-index: 1;
}
.news-details-content .line-wrapper{
    z-index: 0;
}
.news-sub-wrapper h2{
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 24px;
}
.news-sub-wrapper .back-link{
    color: #595959;
    display: inline-block;
    margin-bottom: 16px;
    border: #d9d9d9 solid 1px;
    padding: 7px 16px;
    border-radius: 8px;
    background: var(--white-color);
}
.news-sub-wrapper .back-link:hover{
    border: var(--black-color) solid 1px;
    color: var(--black-color);
}
.news-sub-wrapper span.date {
    color: #595959;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}
.news-sub-wrapper img {
    border-radius: 24px;
    margin-bottom: 24px;
}
/*** Newspage End ***/


@media (min-width: 1400px){

}

@media (max-width: 1399px){

}

@media (max-width: 1199px){

    h1{
        font-size: 64px;
        line-height: 64px;
    }
    h2{
        font-size: 48px;
        line-height: 48px;
    }
    .container{
        max-width: 100%;
    }
    .hero-section .content{
        max-width: 800px;
    }
    .who-we-section .content,
    .products-section .left-content .left-space{
        padding-left: 40px;
    }
    .line-wrapper .left-line{
        left: 20px;
        position: absolute;
    }
    .line-wrapper .right-line{
        right: 20px;
    }
    .products-section .right-box .box p{
        font-size: 15px;
    }
    .industries-section .content-wrapper{
        padding: 0 20px;
    }
    .industries-section .content-wrapper h2,
    .industries-section .content-wrapper .content{
        max-width: 420px;
    }
    .contact-map iframe{
        height: 450px;
    }
}

@media (max-width: 991px){

    h1{
        font-size: 56px;
        line-height: 56px;
    }
    h2 {
        font-size: 40px;
        line-height: 40px;
    }
    p{
        font-size: 15px;
        line-height: 22px;
    }
    .s-py{
        padding-top: 88px;
        padding-bottom: 88px;
    }
    .s-pt{
        padding-top: 88px;
    }
    .s-pb{
        padding-bottom: 88px;
    }

    .hero-section .content{
        padding-left: 32px;
    }
    .who-we-section .c-animated-img{
        margin-right: 12px;
        margin-left: 0 !important;
    }
    .who-we-section .row [class*="col-"]:first-child{
        padding-left: 24px;
    }
    .who-we-section .content, .products-section .left-content .left-space{
        padding-left: 0;
    }
    .pattern-1{
        width: 100px;
        bottom: -30px;
        margin-left: -50px;
    }
    .who-we-section .round{
        width: 72px;
        height: 72px;
        top: -20px;
        right: 5px;
    }
    .products-section .right-box{
        padding-right: 20px;
        margin-left: 20px;
    }
    .products-section .right-box .row{
        margin-top: 0;
    }
    .products-section .left-content{
        padding: 0 48px;
        text-align: center;
    }
    .pattern-2{
        margin-top: -48px;
        width: 70px;
    }
    .pattern-3{
        margin-left: -40px;
        top: -25px;
        width: 80px;
    }
    .products-section .left-content p{
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .trust-section .c-animated-img{
        margin-right: 0;
    }
    .trust-section .row [class*="col-"]:first-child{
        padding-left: 24px;
    }
    .trust-section .row [class*="col-"]:last-child{
        margin-right: 0;
        padding-left: 22px;
    }
    .trust-section .content ul,
    .who-we-section .content ul{
        padding-left: 15px;
    }
    .trust-section .round{
        left: 5px;
    }
    .industries-section .content-wrapper .content{
        padding-left: 20px;
    }
    footer{
        padding-top: 48px;
    }
    footer .row{
        margin-top: -32px;
    }
    footer .row [class*="col-"]{
        margin-top: 32px;
    }
    .products-section .right-box{
        padding-right: 12px;
        margin-left: 12px;
    }
    .top-banner{
        min-height: 280px;
    }
    .vision-box,
    .mission-box{
        padding-left: 24px;
        padding-right: 24px;
    }
    .vision-box .content, .mission-box .content{
        padding-left: 0;
    }
    .silver-pattern-1{
        width: 72px;
        bottom: -38px;
        margin-left: -36px;
    }
    .choose-wrapper{
        padding: 0 12px;
    }
    .choose-box-wrapper .box{
        padding: 24px;
    }
    .contact-wrapper{
        padding: 0 12px;
    }
    .contact-form{
        padding: 32px;
    }
    .contact-details ul li address{
        text-align: center;
    }
    .contact-details ul li{
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-details ul li .icon{
        margin-right: 0;
        margin-bottom: 16px;
    }
    .contact-details ul li a{
        width: 100%;
        text-align: center;
    }
    .contact-details ul li .social{
        width: 100%;
        justify-content: center;
    }
    .contact-map iframe{
        height: 350px;
    }
    .services-section .content{
        padding-left: 12px;
    }
    .latest-news .news-box {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .latest-news .news-box img {
        max-width: 50%;
        align-self: flex-start;
        transform: scale(1.4) translateY(14%) translateX(-14.5%);
    }
    .latest-news .news-box .content {
        max-width: 50%;
    }
    .news-sub-wrapper{
        padding: 0 12px;
    }


}
@media (max-width: 767px){

    h1 {
        font-size: 44px;
        line-height: 44px;
    }
    h2 {
        font-size: 32px;
        line-height: 32px;
    }
    h3{
        font-size: 20px;
        line-height: 24px;
    }
    .s-py{
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .s-pt{
        padding-top: 64px;
    }
    .s-pb{
        padding-bottom: 64px;
    }

    .hero-section{
        min-height: 500px;
        padding: 32px 0 48px 0;
    }
    .who-we-section .c-animated-img{
        width: 100%;
        margin-left: 12px !important;
    }
    .title br{
        display: none;
    }
    .who-we-section .content{
        max-width: 100%;
    }
    .trust-section .c-animated-img{
        margin-left: 0 !important;
        margin-right: 12px !important;
    }
    .industries-section .content-wrapper{
        flex-wrap: wrap;
        padding: 0 12px;
    }
     .industries-section .content-wrapper h2{
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-bottom: 16px;
     }
     .industries-section .content-wrapper .content{
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding-left: 0;
     }
     .certifications-section .title{
        max-width: 100%;
        width: 100%;
     }
     .who-we-section::before{
        display: none;
     }

     .top-banner{
        min-height: 240px;
        padding: 40px 0;
     }
     .vision-box, .mission-box{
        padding-left: 12px;
        padding-right: 12px;
     }
     .about-mission-vision:before,
     .about-mission-vision:after{
        display: none;
     }
     .vision-box:before{
        content: '';
        position: absolute;
        top: 0;
        left: -20px;
        right: -20px;
        height: 100%;
        background: var(--black-color);
        z-index: -1;
     }
     .mission-box:before{
        content: '';
        position: absolute;
        top: 0;
        left: -20px;
        right: -20px;
        height: 100%;
        background: #EDDDD1;
        z-index: -1;
     }
     .choose-box-wrapper .box{
        width: 100%;
        margin-top: 24px;
     }
     .choose-box-wrapper{
        margin-top: 0;
     }
     
     .who-we-section .c-animated-img{
        max-width: 100%;
     }
     .who-we-section .row [class*="col-"]:first-child{
        order: 2;
        margin-top: 24px;
        margin-bottom: 0 !important;
     }
     .trust-section.product-section .row [class*="col-"]:first-child{
        margin-top: 0;
     }
     .trust-section.product-section .row [class*="col-"]:last-child{
        order: 2;
        margin-top: 24px;
     }

     .contact-details ul{
        margin-bottom: 24px;
     }
     .contact-details ul li address{
        text-align: left;
    }
    .contact-details ul li{
        flex-wrap: nowrap;
        justify-content: start;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .contact-details ul li .icon{
        margin-right: 16px;
        margin-bottom: 0;
    }
    .contact-details ul li a{
        width: 100%;
        text-align: left;
    }
    .contact-details ul li .social{
        width: 100%;
        justify-content: start;
    }
    .contact-form{
        padding: 24px;
    }
    .contact-map iframe{
        height: 350px;
    }
    .service-point{
        margin-left: 12px;
        margin-top: 24px;
    }
    .services-section .content{
        padding-right: 12px;
    }
    .compliance-content .content{
        padding: 0 12px;
    }
    .latest-news .d-flex .content {
        margin-bottom: 16px;
    }
    .latest-news .content {
        max-width: 100%;
    }
    .latest-news .news-box img {
        transform: none;
        max-width: 100%;
    }
    .latest-news .news-box .content {
        max-width: 100%;
    }
    .latest-news .news-box .content > span {
        margin-bottom: 8px;
    }
    .latest-news .news-box .content h3 {
        margin-bottom: 8px;
    }
    .latest-news .news-box .content p {
        margin-bottom: 16px;
    }
    .news-sub-wrapper h2{
        font-size: 32px;
        line-height: 32px;
    }
    .latest-news .news-box > img{
        height: 340px;
    }

}

@media (max-width: 680px){
    .footer-bottom{
        margin-top: 56px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .copyright{
        text-align: center;
        width: 100%;
        margin-bottom: 16px;
    }
}


@media (max-width: 575px){

    h1{
        font-size: 30px;
        line-height: 32px;
    }
    h2 {
        font-size: 26px;
        line-height: 30px;
    }
    .s-py{
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .s-pt{
        padding-top: 56px;
    }
    .s-pb{
        padding-bottom: 56px;
    }
    .hero-section{
        min-height: 400px;
        margin-top: 61px;
    }
    .hero-section .content{
        padding-left: 12px;
    }
    header,
    header.scrolled{
        padding: 16px 0;
    }
    .header-logo{
        width: 180px;
    }
    .products-section .right-box .row [class*="col-"]:nth-child(2n),
    .products-section .right-box .row [class*="col-"]:nth-child(3n){
        margin-top: 24px;
    }
    .products-section .left-content{
        padding: 0 12px;
    }
    .pattern-1{
        width: 66px;
        bottom: -20px;
        margin-left: -33px;
    }
    .pattern-2{
        margin-top: 24px;
        width: 70px;
        margin-left: calc(50% - 35px);
    }

    .top-banner{
        min-height: 200px;
        padding: 40px 0;
     }
     .choose-box-wrapper .box{
        padding: 20px;
        flex-wrap: wrap;
        justify-content: center;
     }
     .choose-box-wrapper .box .content{
        text-align: center;
        width: 100%;
        margin-top: 16px;
     }
     .contact-form{
        padding: 20px;
        border-radius: 16px;
    }
    .contact-form button.cta-btn{
        width: 100%;
    }
    .contact-map iframe{
        height: 240px;
    }
    .compliance-content h3{
        font-size: 26px;
        line-height: 28px;
    }
    footer .row [class*="col-"]:first-child p{
        max-width: 100%;
    }
    .latest-news .news-wrapper .news-box .content {
        padding: 20px;
    }
    .news-sub-wrapper h2{
        font-size: 26px;
        line-height: 26px;
    }
    .latest-news .news-box > img{
        height: 240px;
    }

}
@media (max-width: 400px){
    .latest-news .news-box > img{
        height: 180px;
    }
}