@font-face {
    font-family: LM;
    font-weight: 600;
    font-style: normal;
    src: url("../fonts/Lemonmilk/LEMONMILK-Bold.otf");
}

@font-face {
    font-family: LM;
    font-weight: 300;
    font-style: normal;
    src: url("../fonts/Lemonmilk/LEMONMILK-Light.otf");
}

@font-face {
    font-family: LM;
    font-weight: 400;
    font-style: normal;
    src: url("../fonts/Lemonmilk/LEMONMILK-Medium.otf");
}

@font-face {
    font-family: LM;
    font-weight: 500;
    font-style: normal;
    src: url("../fonts/Lemonmilk/LEMONMILK-Regular.otf");
}

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100vw;
    height: 100vh;
}

.main{
    position: relative;
    width:100vw;
    background-color: beige;
}

.addlinks{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80vw;
}
.text-justify{
    text-align: justify;
}
.mt-3{
    margin-top: 3em;
}
.mb-2{
    margin-bottom:2em;
}
.nav-bar-wrapper{
    border-radius: 0px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    left: 50%;
    width: 100vw;
    height:60px;
    padding: 0 1em;
    background-color: white;
    transform: translateX(-50%); 
    opacity: 1;
    z-index: 9999;
    box-shadow: 1px 1px 5px  #162c1570;

}

.nav-menu{
    display: none;
}
.nav-bar-sm .developer, .nav-bar-sm .logo{
    display: none;
}

.nav-menu .menu-btn{
    float: right;
    font-size: 2em;
    cursor: pointer;
    margin-right: .5em;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.logo img{
    height: 50px;
}

.logo h1{
    font-family: LM,"sans-serif";
    font-size: 1em;
    font-weight: 600;
    color: #198544;
}
.nav-bar ul{
    list-style-type: none;
}
.nav-bar .nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-right: 5vw;
}

.menu{
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Poppins","sans-derif";
    font-size: .9em;
    color: black;
}
.line{
    width: 1%;
    height:2px;
    background-color: transparent;
    transition: width 0.2s 0.1s linear;
}

.active .line{
    background-color: #198544;
    width:100%;
}
.active {
    font-weight: bold;
}

.nav-bar > .nav-items > li:hover > .menu > .line{
    background-color: #198544;
    width: 100%;
}

.nav-bar > .nav-items > li:hover > .sub-nav-items > li:hover > .menu > .line{
    background-color: #198544;
    width: 100%;
}

.sub-nav{
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-nav-items{
    position: absolute;
    display: none;
    margin-top: 130px;
    flex-direction: column;
    gap: 1vh;
    padding: 12px;
    background-color: white;
    margin-left: -12px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 1px 1px 1px  #162c1570;
}

.nav-bar > .nav-items > .sub-nav:hover > .sub-nav-items{
    opacity: 1;
    display: flex;
}

.hero-section{
    width:100vw;
    height:100vh;
    background-image: url("../img/hero-home.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;

}

.overlay{
    position: absolute;
    width:100vw;
    height: 100vh;
    background-color:black;
    opacity: .8;
    top:0;
    left:0;
    pointer-events: none;
    z-index:0;
}

.hero-section .content{
    position: absolute;
    z-index: 1;
    width:70vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:5vh;
    color: #F5F5DC;
    left:50%;
    transform: translateX(-50%);

}


.hero-section h2{
    text-transform: uppercase;
    font-family: LM;
    font-weight: 300;
    text-align: center;
    font-size:2em;
    letter-spacing: .1em;
}

.hero-section h3{
    font-family: "Poppins","sans-serif";
    font-weight: 200;
    text-align: center;
    font-size:1.5em;
}

li .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100px;
    height:30px;
    color: rgb(0, 0, 0);
    font-family: "Poppins","sans-serif";
    text-decoration: none;
    border-radius: 30px;
    overflow: hidden;
    border:1px solid #196A45;
    background-color: #196A45;
    color:white;
}

li .btn:hover{
    
    background-color: #1da568;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

.hero-section .btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width:250px;
    height:50px;
    /* background-color: #46B549; */
    color: #F5F5DC;
    font-family: "Poppins","sans-serif";
    text-decoration: none;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #E6EC9C;
}

.hero-section .btn::before{
    content: " ";
    width: 100%;
    height:100%;
    top:0%;
    left:-100%;
    border-radius: 0% 0% 0% 0%;
    position: absolute;
    background-color: #E6EC9C;
    z-index: 0;
    
}

.hero-section .btn span{
    position: absolute;
    text-shadow: 2px 2px 5px black;
}
.hero-section .btn:hover span{
    color: #162C15;
}
.hero-section .btn:hover::before {
  
    animation: btnanim 0.2s ease-in normal;
    animation-fill-mode: forwards;
}

.section{
    width: 100vw;
    position: relative;
}



.section .content{
    width: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:5vh;
    text-align: center;
    padding: 100px 0;
    margin-left: 10vw;
}

.section .content .line{
    width:10vw;
    height:2px;
    background-color: #196A45;
}

.section .content .line-inv{
    width:10vw;
    height:2px;
    background-color:#46B549;
}
.section  .line-ver{
    width:100vw;
    height:80px;
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    flex-shrink: 0;

}
.section  .line-ver .bottom{
    position: absolute;
width:2px;
height:80px;
background-color: #bdbbbb;
bottom:-4px;

}
.section  .line-ver .top{
  position: absolute;
width:2px;
height:80px;
background-color:#196A45;

}






.section .content h2{
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: LM;
    font-weight: 400;
    text-align: center;
    font-size:2em;
    color: #196A45;
}

.section .content h3{
    font-family: "Poppins","sans-serif";
    font-weight: 200;
    text-align: center;
    font-size:1.5em;
}

.section .content .btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width:250px;
    height:50px;
    color: rgb(0, 0, 0);
    font-family: "Poppins","sans-serif";
    text-decoration: none;
    border-radius: 30px;
    overflow: hidden;
    border:1px solid #196A45;
}

.section .content .btn::before{
    content: " ";
    width: 100%;
    height:100%;
    top:0%;
    left:-100%;
    border-radius: 0% 0% 0% 0%;
    position: absolute;
    background-color: #196A45;
    z-index: 0;
}

.section .content .btn span{
    position: absolute;
    text-shadow: 2px 2px 5px rgb(156, 156, 156);
}
.section .content .btn:hover span{
    color:white;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}


.section .content .btn:hover::before {
  
    animation: btnanim 0.2s ease-in normal;
    animation-fill-mode: forwards;
}

.seperator{
    background:url("../img/bg-fill.png") repeat-x;
    height: 4px;
    width:100vw;
}

.sec-2{
    background-color: #E6EC9C;
    
}



.onetofour{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5%;
    width: 100%;
}

.onetofour .card{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width:20%;
    height: 10em;
}

.onetofour .card h2{
    font-family: "Poppins","sans-serif";
    font-weight: 300;
    font-size: 1.2em;
    text-transform: unset;
    color: #162C15;
    position: absolute;
}

.onetofour .card .number{
    position: absolute;
    font-family: "Poppins","sans-serif";
    font-weight: bolder;
    font-size: 10em;
    text-transform: unset;
    color: #196A45;
    opacity: .15;
}


.section > .content > .sub-content{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap:4vw;
}
.section > .content > .sub-content > .left{
    width:43vw;  
}

.section .content .sub-content .left img{
        width:35vw;
    }

.section > .content > .sub-content > .right{
    width:43vw;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}

.section > .content > .sub-content > .right > h2{
    text-align: left;
    padding: 2vw;
    color: #162C15;
    font-family: "Poppins","sans-serif";
    font-size:1.1em;
    font-weight: 300;
    text-transform: unset;

}
.section > .content > .sub-content > .right > .one{
    border-right: 1vw solid #198544;
    background-image:linear-gradient(to right,#ebe7e711,#1985447c);
}
.section > .content > .sub-content > .right > .two{
    border-right: 1vw solid #46B549;
    background-image:linear-gradient(to right,#ebe7e711, #46b54a85);
}
.section > .content > .sub-content > .right > .three{
    border-right: 1vw solid #E6EC9C;
    background-image:linear-gradient(to right,#ebe7e711, #e5ec9c94);
}
.sec-4{
    background-color: #D3EDD3;
}

.sec-4 .content{
    flex-direction: column;
}
.sec-4 .prod-list{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap:2vw;
   flex-direction: row;
   position: relative;
}
.sec-4 .prod-list .prod{
     display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    width: 16vw;
    height:19em;
}

.sec-4 .prod-list .prod-1{
    background-image: url("../img/apparels.jpg"); 
}

.sec-4 .prod-list .prod-2{
    background-image: url("../img/hometextiles.jpg"); 
}
.sec-4 .prod-list .prod-3{
    background-image: url("../img/leatheraccessories.jpg"); 
}
.sec-4 .prod-list .prod-4{
    background-image: url("../img/spices.jpg"); 
}
.sec-4 > .content > .prod-list > .prod > .text{
    font-size: 1em;
    font-weight: 500;
    background-color: white;
    padding:1em .5em;
    width:100vh;
    margin-top: 16em;
    
}

.footer{
    background-color: #231F20;
    width: 100vw;
    height:250px;
    color:white;
    font-family: "Poppins","sans-serif";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-items{
     display: flex;
     justify-content: space-around;
     align-items: center;
     flex-direction: column;
}

.footer-top{
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    flex-direction: row;
    border-bottom: 1px solid #4e4e4e59;
    gap: 2vw;
    padding: 1em 0;
    
}

.footer-top .logo img{
    width:8vw;
    height: 8vw;
}

.footer-top .address{
    width:16vw;
}

.footer-bottom{
    padding: 1em 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap:2vh;
}

.footer-bottom a{
    text-decoration: none;
    color: #E6EC9C;
}

.footer-bottom a i{
    color: red;
}



@media only screen and (max-width: 1200px) and (min-width:768px) {

    .nav-bar{
        font-size:1em;
    }

    .hero-section .heading{
        font-size:1.5em;
    }

    .hero-section .text{
        font-size: 1.2em;
    }

    .hero-section .btn span{
        font-size: 1em;
    }

    .section  .line-ver .bottom{      
        height:65px;    
    }
    .section  .line-ver .top{      
        height:65px;
    }

    .section .content h2{
        font-size: 1.5em;
    }

    .section .content h3{
        font-size: 1.2em;
    }
    .section .content .btn span{
        font-size: 1em;;
    }
    .section .content{
        padding: 60px 0;
    }
    .onetofour .card h2 {
        font-size: 1em;
    }
    .section .content .sub-content .left img{
        width:40vw;
    }
    .section > .content > .sub-content > .right > h2 {
        font-size: 1em;
        padding: 1vw;
        line-height: 1.3em;
    }
    .footer  {
        font-size:.7em;
        
    }
    .footer-top .logo img{
        width:10vw;
        height: 10vw;
        margin-right:2vw;
    }
}

@media only screen and (max-width: 767px){
    .nav-menu{
        display: block;
    }
    .nav-bar-sm .developer, .nav-bar-sm .logo{
        display: flex;
    }
    .nav-bar-sm{
        position: absolute;
        background-color: #ffffff;
        width: 120vw;
        height: 100vh;
        top:-10px;
        left:-130vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 0;
        padding: 5%;
        transition: all 0.3s ease-in;
    }
    .nav-bar-sm .logo{
        justify-content: space-around;
        padding-bottom: 10px;
        border-bottom:1px solid #bdbbbb
    }
    .nav-bar-sm .logo .logo-sm{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-bar-sm .logo .nav-close{
        font-size: 2em;
    }
 
    .nav-items{
        flex-direction: column;
        font-size: 2em;
    }

    .nav-bar-sm .developer{
        font-family: "Poppins","sans-serif";
        text-align: center;
    }
    .nav-bar-sm .developer a{
        text-decoration: none;
        color: #162C15;
        text-align: center;
        width: 100%;
    }
    .nav-bar-sm .developer a i{
        color: red;
    }
    .sub-nav-items{
        margin-top: 7em;
    }
    li .btn{
        height: 50px;
        width:150px;
    }
}


@media only screen and (max-width: 767px) and (min-width:600px) {

   

    .hero-section .heading{
        font-size:1.5em;
    }

    .hero-section .text{
        font-size: 1.2em;
    }

    .hero-section .btn span{
        font-size: 1em;
    }    
  
    .section  .line-ver .bottom{      
        height:50px;    
    }
    .section  .line-ver .top{      
        height:50px;
    }
    .section .content h2{
        font-size: 1.5em;
    }

    .section .content h3{
        font-size: 1.2em;
    }
    .section .content .btn span{
        font-size: 1em;;
    }
    .section .content{
        padding: 50px 0;
    }
    .onetofour{
        flex-wrap: wrap;
    }
    .onetofour .card{
        min-width:200px;
        /* min-height: 200px; */
        width:35%;
    }
    .onetofour .card h2 {
        font-size: 1em;
    }
    .section .content .sub-content .left img{
        width:70vw;
    }
    .section > .content > .sub-content > .right > h2 {
        font-size: 1em;
        padding: 2vw;
        line-height: 1.3em;
    }
    .footer  {
        font-size:.7em;        
    }
    .section > .content > .sub-content{
        flex-wrap: wrap;
    }
    .section > .content > .sub-content > .left{
        min-width:400px;
        width: 80%;
    }
    .section > .content > .sub-content > .right{
        min-width: 400px;
        width: 80%;
    }
    .sec-4 .prod-list{
        flex-wrap: wrap;
    }
    .sec-4 .prod-list .prod{
        min-width: 260px;
        width: 40%;
    }
    
    .footer-top .logo img{
        width:14vw;
        height: 14vw;
        margin-right:2vw;
    }
  



}

@media only screen and (max-width: 599px){
   
    .section .content{
        padding: 5px 0;
    }

    .hero-section .heading{
        font-size:1em;
    }

    .hero-section .text{
        font-size: .8em;
    }

    .hero-section .btn span{
        font-size: .8em;
    }    
  
    .section  .line-ver .bottom{      
        height:30px;    
    }
    .section  .line-ver .top{      
        height:30px;
    }
    .section .content h2{
        font-size: 1em;
    }

    .section .content h3{
        font-size: .8em;
    }
    .section .content .btn span{
        font-size: .8em;;
    }
    
    .onetofour{
        flex-wrap: wrap;
    }
    .onetofour .card{
        min-width:200px;
        /* min-height: 200px; */
        width:35%;
    }
    .section .content .sub-content .left img{
        width:70vw;
    }
    .section > .content > .sub-content > .right > h2 {
        font-size: 1em;
        padding: 2vw;
        line-height: 1.3em;
    }
    .section > .content > .sub-content{
        flex-wrap: wrap;
    }
    .section > .content > .sub-content > .left{
        min-width:300px;
        width: 80%;
    }
    .section > .content > .sub-content > .right{
        min-width: 300px;
        width: 80%;
    }
   

    .sec-4 .prod-list{
        flex-wrap: wrap;
    }
    .sec-4 .prod-list .prod{
        min-width: 260px;
        width: 40%;
    }
    .footer{
        height: auto;
    }

    .footer-top .logo{
        display: none;
    }
    .footer-top{
        flex-wrap: wrap;
    }
    .footer-top .address{
        width:300px;
        text-align: center;
    }
    .footer-top .address .cname{
        font-weight: bold;
    }


}

/* About Page CSS */

.about-hero{
    background-image: url("../img/about-hero.jpg");
    height: 400px;
}
.about-hero .overlay, .about-hero .content{
    height:400px;
}
.sec-row .content{
    flex-direction: row;
}
.about-card{
    width: 30vw;
    min-height: 410px;
    background-color: #ffffff;
    box-shadow:1px 1px 2px #162C15;
    padding: 25px 0px 55px 0px;
}
.about-card .card-head{
    padding: 25px 0px;
    position: relative;
}

.about-card .card-head span{
    display: block;
    margin: 0 auto;
    background-color: #162C15;
    color: white;
    width: 2em;
    height: 2em;
    line-height: 2em;
    font-size: 1em;
    border-radius: 50%;
}
.about-card .card-head span::before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left:0;
    width: 100%;
    border-bottom: 1px dashed #162C15;
}
.about-card:first-child  .card-head span::before{
    left:50%;
    width: 50%;
}
.about-card:last-child  .card-head span::before{
    left:0%;
    width: 50%;
}

.about-card .card-body{
    padding: 0px 35px;
}
.about-card .card-body .card-title h2{
    font-size: 1.3em;
    padding-bottom: 15px;
    letter-spacing: 0em;
}
.about-card .card-body .card-text p{
    font-size: 1.1em;
    font-family: "Poppins","sans-serif";
    padding-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.06em;
}
.about-card:first-child .card-body .card-text p{
    letter-spacing: 0.0em;
}
.sec-3 .sub-content .wwd .w-one{
    padding: 25px 5px;
}
.sec-3 .sub-content .wwd .w-head{
    font-size: 1.5em;
    letter-spacing: 0;
    padding-bottom: 10px;
    color: #46B549;
}
.sec-3 .sub-content .wwd .w-text{
    font-family: "Poppins","sans-serif";
    font-size: 1.1em;
    font-weight: 300;
    letter-spacing: 0.1em;
}
.sec-3 .sub-content .right img{
    width:35vw;
}
.sec-4 .content .points .text{
    font-family: "Poppins","sans-serif";
    font-size: 1.1em;
    font-weight: 300;
    padding: 10px 10px;
    text-align: left;
    display: block;
}
.sec-4 .content .points{
    width:60vw;
    text-align: justify;
}
.sec-4 .content .points .check{
    display: flex;
    align-items: center;
}
.sec-4 .content .points i{
    font-size: 1.5em;
    color:#231F20;
}

@media screen and (min-width: 768px) and (max-width:1200px) {
    .about-card:last-child  .card-head span::before, .about-card:first-child  .card-head span::before{
        left:0%;
        width: 100%;
    }
    .about-card{
        width:60vw;
        min-height: 300px;
    }
    .sec-3 .content .about{
        flex-direction: column-reverse;
        
    }
    .sec-3 .about .left,
    .sec-3 .about .right{
        width:70vw !important;
    }
    .sec-3 .sub-content .right img {
        width:70vw
    }
    .sec-row .content{
        flex-direction: column;
    }
   


}

@media screen and (max-width: 767px){
    .about-card:last-child  .card-head span::before, .about-card:first-child  .card-head span::before{
        left:0%;
        width: 100%;
    }
    .about-card{
        width:80vw;
        min-height: 300px;
    }
    .sec-3 .content .about{
        flex-direction: column-reverse;
        
    }
    .sec-3 .about .left,
    .sec-3 .about .right{
        width:80vw !important;
    }
    .sec-3 .sub-content .right img {
        width:80vw
    }
    .sec-row .content{
        flex-direction: column;
    }
    .about .section .content h2, .about .sec-4 .content h2{
        font-size:1.5em;
    }
}



/* Service 1 Page CSS */
.s1-hero{
    background-image: url("../img/s1-hero.jpg");
    height: 400px;
}
.s1-hero .overlay, .s1-hero .content{
    height:400px;
}
.services{
    background-color: #231F20;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding:40px;
}
.services a{
    text-transform: uppercase;
    text-decoration: none;
    color: #46B549;
    font-family: "Poppins","sans-serif";
}
.services a.active{
    color: #E6EC9C;
}
.services a:hover{
    color: #E6EC9C;
}
.section .ser-content{
    gap: 0;
}
.about-services{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70vw;
    height: 35vw;
}
.about-services:nth-child(even){
    flex-direction: row-reverse;
}
.about-services .left, .about-services .right{
    width: 35vw;
    height: 35vw;
    background-size: cover;
    background-position: center;
}
.about-services .sub-content{
    width: 100%;
    height: 100%;
    background-color: #231F20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3vw;
}
.about-services .sub-content .head{
    font-size: 1.3em;
    color: #46B549;
    margin-bottom:2em;
}
.about-services .sub-content .text{
    font-size: 1.15em;
    font-family: "Poppins","sans-serif";
    color: #bdbbbb;
}
.about-services .ser-image-1{
    background-image: url("../img/as1.jpg");    
}
.about-services .ser-image-2{
    background-image: url("../img/as2.jpg");    
}
.about-services .ser-image-3{
    background-image: url("../img/as3.jpg");    
}
.about-services .ser-image-4{
    background-image: url("../img/as4.jpg");    
}
.about-services .ser-image-5{
    background-image: url("../img/as5.jpg");    
}

@media screen and (min-width: 768px) and (max-width:1200px) {
    .about-services .sub-content .head{
        font-size: 1em;
        color: #46B549;
        margin-bottom:2em;
    }
    .about-services .sub-content .text{
        font-size: .7em;
        font-family: "Poppins","sans-serif";
        color: #bdbbbb;
    }

}

@media screen and (max-width: 767px){
    .services{
        flex-direction: column;
        gap: 3vw;
    }
    .about-services .sub-content .head{
        font-size: .8em;
        color: #46B549;
        margin-bottom:1em;
    }
    .about-services .sub-content .text{
        font-size: .7em;
        font-family: "Poppins","sans-serif";
        color: #bdbbbb;
    }
    .about-services,.about-services:nth-child(even){
        flex-direction: column;
        height: 70vw;
    }
    .about-services .left, .about-services .right {
        width: 80vw;
        height: 80vw;
    }
    .about .section .content h2, .about .sec-4 .content h2{
        font-size:1.5em;
    }
    .section .ser-content {
        gap: 4vw;
    }
}

/* Service 2 Page CSS */
.s2-hero{
    background-image: url("../img/s2-hero.jpg");
    height: 400px;
}
.s2-hero .overlay, .s2-hero .content{
    height:400px;
}

.section .ser2-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.section .ser2-content .left, .section .ser2-content .right{
    width:40vw;
    height: 40vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
}
.section .ser2-content .left .head{
    font-size: 1.5em;
    margin-bottom: 1em;
}
.section .ser2-content .left .text{
    font-size: 1.3em;
}
.section .ser2-content .right .graphics{
    width:30vw;
    position: relative;
}
.section .ser2-content .right .graphics img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%) scale(.8) rotate(0deg);
}
.section .ser2-content .right .graphics .ft-rotate{
    animation: rtanticlock 25s infinite linear reverse;
}
.section .ser2-content .right .graphics .bg-rotate{
    animation: rtanticlock 25s infinite linear ;
}



@media screen and (max-width:1200px) {
    .section .ser2-content{
        flex-direction: column-reverse;
    }
    .section .ser2-content .left, .section .ser2-content .right{
        width:70vw;
    }
    .section .ser2-content .left .head {
        font-size: 1em;
        margin-bottom: 1em;
    }
    .section .ser2-content .left .text {
        font-size: 0.8em;
        margin-bottom: 1em;
    }
    .sec-4 .content .points .text {
        font-size: 0.8em;
    }
    .section .ser2-content .left{
        height: auto;
    }
    .section .ser2-content .right{
        height: 250px;
    }
    .section .ser2-content .right .graphics img{
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%) scale(.4) rotate(0deg);
    }
    .section .ser2-content .right .graphics .ft-rotate{
        animation: rtanticlocksm 25s infinite linear reverse;
    }
    .section .ser2-content .right .graphics .bg-rotate{
        animation: rtanticlocksm 25s infinite linear ;
    }
 
    

}



/* Service 3 Page CSS */
.s3-hero{
    background-image: url("../img/s3-hero.jpg");
    height: 400px;
}
.s3-hero .overlay, .s3-hero .content{
    height:400px;
}
.learn-more{
    background-color: #bdbbbb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:40px;
    font-family: "Poppins","sans-serif";
    text-align: center;
}

@media screen and (max-width: 767px){
 .learn-more{
    font-size: 0.8em;
 }
 .addlinks{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80vw;
}
}


/* Contact Page CSS */
.contact-hero{
    background-image: url("../img/contact-hero.jpg");
    height: 400px;
}
.contact-hero .overlay, .contact-hero .content{
    height:400px;
}
.contact-email{
    font-weight: 400  !important;
}
.contact-title{
    text-transform: uppercase;
    margin-top: 2em;
    color: #196A45;
}

.contact-addr{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
}
.contact-addr .address:nth-child(even){
    border-left: 1px solid #162C15;
    border-right: 1px solid #162C15;
}
.contact-addr .address{
    width: 18vw;
    padding: 5px;
    font-family: "Poppins","sans-serif";
}
.contact-addr .address .cname{
    font-weight: bold;
    margin-bottom: 1em;
}
.contact-addr .address .mob{
    margin-top: 1em;
}

@media screen and (max-width: 767px){
    .contact-addr{
        flex-direction: column;
        
    }
    .contact-addr .address:nth-child(even){
        border: none;
        border-top: 1px solid #162C15;
    border-bottom: 1px solid #162C15;
        
    }
    .contact-addr .address{
        width: 80vw;
    }
    .contact-title{
        font-size: 1.2em !important;
    }
    .contact-addr{
        margin-top: 0em;
    }
   }

@keyframes btnanim {
    0% {
        left:-100%;
        border-radius: 0% 0% 0% 0%;
    }
    100% {
        left:0%;
        border-radius: 0% 30px 30px 0%;
    }
}

@keyframes rtanticlock {
    0% {
        transform: translate(-50%,-50%) scale(.8) rotate(0deg);
    }
    100% {
        transform: translate(-50%,-50%) scale(.8) rotate(360deg);
    }
}

@keyframes rtanticlocksm {
    0% {
        transform: translate(-50%,-50%) scale(.4) rotate(0deg);
    }
    100% {
        transform: translate(-50%,-50%) scale(.4) rotate(360deg);
    }
}


