:root {
    --primary: #cf561f;
    --secondary: #EDDD5E;
    --light: #F7F7F7;
    --dark: #694a2e;
    --black: #000000;
}
.col-md-2 a {
  color: black;
}
.col-md-3 a {
  color: black;
}
.col-md-4 p {
  color: black;
}
.back-to-top {
    background: #725d4a;
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.container-xxl .section-title {
  color: #cf561f !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}
/*** Button ***/
.btn, .btn-2, .btn-3, .btn4, .btn-5 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Navbar ***/

.container-header{
    width: 100%;
    height: 100vh;
}
.container-header .logo{
  display: none;
}
@media(max-width:1400px){
  .container-header .logo{
    display: flex;
   position: absolute;
   
   width: 100px;
}
}

.nav .social-links {
  text-align: center;
  margin: 5px 0px;
  margin-top: 1rem;
}
.nav .social-btn {
font-size: 20px;
text-align: center;
color: #fff;
margin: 0px 5px;
line-height: 40px;
display: inline-block;
width: 40px;
height: 40px;
background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
border-radius: 0 10px 0 10px;
-webkit-transition: all .6s ease;
-moz-transition: all .6s ease;
-ms-transition: all .6s ease;
-o-transition: all .6s ease;
transition: all .6s ease;
}
.social-links ul li:hover a{
border-radius: 50%;
background: linear-gradient(-45deg, #ed1c94, #ffec17);
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
@media(max-width:1000px){
  .nav .social-links {
    display: block !important; /* Add !important to override previous inline style */
  }
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

@media(max-width:1200px){
  .banner-img{
  height: 350px;
  }
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: #cf561f;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: #cf561f;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*** Service ****/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/

footer{
    margin-top: 2rem;
    width: 100%;
  }
  
  
  .rignt-footer-socialLink{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .rignt-footer-socialLink .fb-link p{
    font-size: 1.3rem;
  }
  
  .fb-link{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .shyno-add{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .shyno-add h6{
    
    text-align: center;
  }
  
  .shyno-div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .shyno-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .shyno-div img{
    width: 6rem;
    
  }
  .shyno-div > p{
    text-align: center;
    font-size: .8rem;
    padding-top: .5rem;
  }
  
  .footer-section h6{
    color: #000;
  }





  /* Navbar and Home */

  /* Navbar */
.nav {
    height: 4.5rem;
    width: 100%;
    position: fixed;
    justify-content:space-evenly;
    display: flex;
    transition: 1s ease-in-out;
    z-index: 10;
  }
  
  .afterScroll{
    transition: 2s ease;
    background: linear-gradient(180deg, #cf561f, #fff);
  }
  
  
  .nav > .nav-btn {
    display: none;
  }
  .nav .nav-links{
   
    margin-top: 2rem;
    }
    
    .nav > .nav-links .n-l {
        display: inline;
        float: right;
        font-size: 1rem;
        margin-top: -5.2rem;
        margin-left: 60px;
      }
      .nav > .nav-links > .n-l > ul li a{
        display: block;
        padding: 0 8px;
        color: #000;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
      
      }
      .nav > .nav-links > .n-l > ul li img{
        width: 160px ;
        height: auto;
        margin-top: 32px;
      }
      .nav > .nav-links> .n-l > ul{
        padding: 0;
        list-style: none;
        position: relative;
        
      }
      .nav > .nav-links > .n-l > ul li {
        display: inline-block;
        transition: 0.3s ease;
      }
      
      .nav-links .n-l ul .tag.active a {
        border: 0.125em solid #d3ad7f;
        background-color: #d3ad7f;
        border-radius: 5px;
        color: #000;
        box-shadow: inset 0 0 0.5em 0 #d3ad7f, 0 0 0.5em 0 #d3ad7f;
      }
      
      .nav > .nav-links > .n-l > ul .tag:hover {
        background-color: #d3ad7f;
        border-radius: 5px;
      }
      
      .nav > .nav-links > .n-l > ul li.tag:hover a {
        border: #d3ad7f 0.125em solid;
        border-radius: 0.25em;
        box-shadow: inset 0 0 0.5em 0 #d3ad7f, 0 0 0.5em 0 #d3ad7f;
        color: #000;
      }
      
      .nav > #nav-check {
        display: none;
      }
  
      .nav .nav-links ul a.icon{
       
        margin-right: 50px;
        color: black;
        }
  
        @media (max-width:1000px) {
  
            .nav{
              justify-content: space-between;
            }
            
          
            .nav > .nav-btn {
              display: inline-block;
              position: absolute;
              right: 20px;
              top: 0.5rem;
            }
        
        .nav > .nav-btn > label {
            display: inline-block;
            width: 50px;
            height: 50px;
            padding: 13px;
          }
          .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
            background-color: rgba(0, 0, 0, 0.3);
          }
          .nav > .nav-btn > label > span {
            display: block;
            width: 25px;
            height: 10px;
            border-top: 2px solid #000;
          }
          .nav > .nav-links {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            background-color: #000000;
            opacity: 90%;
            height: 0px;
            transition: all 0.3s ease-in;
            overflow-y: hidden;
            top: 2.1rem;
            right: 0px;
          }
          .nav > .nav-links .n-l {
            margin-top: 1rem;
            margin-left: 0;
          }
          .nav > .nav-links > ul li a {
            display: flex;
            width: 100%;
            color: #fff;
          }
        
          .nav > .nav-header{
            margin-left: 0;
          }
        
         
        
        
          
            .nav > .nav-links >.n-l > ul li{
              display: block;
              margin-bottom: 20px;
              padding: 0;
             
       
               
            }
            .nav > .nav-links > ul li a{
                margin-left: 20%;
            }

            .nav > .nav-links > .n-l > ul li img{
              display: none;
            }
            .nav .nav-links ul a.icon{
              margin-left:20%;
            }
        
            .mlinks{
              color: white;
            }
            .nav > .nav-links > .n-l > ul li a{
              color:#fff;
            }
            
        
          /*   */
          .nav > #nav-check:not(:checked) ~ .nav-links {
            height: 0px;
          }
          .nav > #nav-check:checked ~ .nav-links {
            height: 70vh;
            overflow-y: auto;
            
          }

        }
     
  
  
  
  .home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgb(255, 72, 0);
  }
  .home .carousel-caption{
    margin-right: 100px;
    position: relative;
    color: #fff;
    width: 80%;
  }
  .home .carousel-caption .hero-subtitle{
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    /* margin-inline: auto; */
    /* padding: 5px; */
    /* padding-inline-end: 15px; */
    border-radius: 8px;
    width: 100%;
    margin-bottom: 30px;
  }
  .home .carousel-caption .hero-subtitle img{
    height: auto;
    width: 400px;
    margin-right: 120px;
  }
  
  .home .carousel-caption .hero-title{
    font-size: 3em;
    line-height: 2rem;
    margin-right: 50px;
    margin-top: 20px;
    color: #cf561f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

  .home .carousel-caption .hero-title {
    text-shadow: #000;
  }

  .home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home .slider-navigation{
    position: absolute;
    display: flex;
    justify-content: center; /* Center horizontally */
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0 auto;
  }
 
  .home .video-container{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
  }
  .home .video-container.active{
    clip-path: circle(150% at 0 50%);
    transition: 1s ease;
    transition-property: clip-path;
  }

  .hero-subtitle img {
    animation: wiggle 0.5s infinite;
  }

  @keyframes wiggle {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(5deg);
    }
    50% {
      transform: rotate(-5deg);
    }
    75% {
      transform: rotate(3deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }

 /* For iPad Pro specific styling */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait),
only screen and (min-device-width: 1366px) and (max-device-width: 1024px) and (orientation: landscape) {
.home .carousel-caption .hero-subtitle img {
 width: 550px !important;
}

}
@media only screen and (min-device-width: 912px) and (max-device-width: 1368px) and (orientation: portrait),
only screen and (min-device-width: 1368px) and (max-device-width: 912px) and (orientation: landscape) {
.home .carousel-caption .hero-subtitle img {
 width: 550px !important;
}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait),
only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
.home .carousel-caption .hero-subtitle img {
 width: 550px !important;
}
.container-header .batch img{
  width: 150px !important;
}
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 600px) and (orientation: portrait),
only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (orientation: landscape) {
.home .carousel-caption .hero-subtitle img {
 width: 250px !important;
}
}
@media only screen and (min-device-width: 360px) and (max-device-width: 740px) and (orientation: portrait),
only screen and (min-device-width: 740px) and (max-device-width: 360px) and (orientation: landscape) {
  .home .carousel-caption .hero-title{
    font-size: 1.5rem !important;
    
}
}
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation: portrait),
only screen and (min-device-width: 896px) and (max-device-width: 414px) and (orientation: landscape) {
  .home .carousel-caption .hero-title{
    font-size: 2rem !important;
    
}
}
@media only screen and (min-device-width: 390px) and (max-device-width: 844px) and (orientation: portrait),
only screen and (min-device-width: 844px) and (max-device-width: 390px) and (orientation: landscape) {
  .home .carousel-caption .hero-title{
    font-size: 2rem !important;
    
}
}
@media only screen and (min-device-width: 1280px) and (max-device-width: 800px) and (orientation: portrait),
only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (orientation: landscape) {
  .container-header .batch img {
    width: 150px !important;
    
}
}

  @media(max-width:1200px){
    .home .carousel-caption .hero-subtitle img{
      height: auto;
      width: 250px;
      margin-right: 30px;
    }
    .home .carousel-caption .hero-title{
      font-size: 2rem;
      line-height: 2.5rem;
    }
    .home .carousel-caption{
      position: absolute;
      top: 25%;
    }
  }
  .container-header .batch{
    position: absolute;
    top: 25%;
    left: 30%;
    animation: pop 1s ease-in-out;
  }
  
  @keyframes pop {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  .container-header .head-batch{
    position: absolute;
    top:90%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .container-header .head-batch img {
    width: 220px;
    height: auto;
    animation: zoomIn 5s forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1.5);
    }
}

  .container-header .batch img{
    width: 120px;
    height: auto;
    transform: rotate(-8deg);
  }
  @media(max-width:1400px){
    .container-header .batch img{
      width: 80px;
      height: auto;
    }
    .container-header .batch{
      left: 10%;
      
    }
    .container-header .head-batch img{
      width: 160px;
      height: auto;
    }
    
  }

  /* Products parts */

  .prod{
    width: 100%;
    min-height: 100vh;
  }
  .container-prod{
    width: 80%;
    display: block;
    margin:auto;
    padding-top: 100px;
  }
  .content-section{
    float: left;
    width: 55%;
  }
  .image-section{
    float: right;
    width: 40%;
  }
  .image-section img{
    width: 100%;
    height: auto;
  }
  .content-section .title{
    text-transform: uppercase;
    font-size: 28px;
  }
  .content-section .content h3{
    margin-top: 20px;
    color:#5d5d5d;
    font-size: 21px;
  }
  .content-section .content p{
    margin-top: 10px;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 1.5;
  }
  .content-section .content .button{
    margin-top: 30px;
  }
  .content-section .content .button a{
    background-color: #3d3d3d;
    padding:12px 40px;
    text-decoration: none;
    color:#fff;
    font-size: 25px;
    letter-spacing: 1.5px;
  }
  .content-section .content .button a:hover{
    background-color: #a52a2a;
    color:#fff;
  }
  @media screen and (max-width: 768px){
    .container-prod{
    width: 80%;
    display: block;
    margin:auto;
    padding-top:50px;
  }
  .content-section{
    float:none;
    width:100%;
    display: block;
    margin:auto;
  }
  .image-section{
    float:none;
    width:100%;
    
  }
  .image-section img{
    width: 100%;
    height: auto;
    display: block;
    margin:auto;
  }
  .content-section .title{
    text-align: center;
    font-size: 19px;
  }
  .content-section .content .button{
    text-align: center;
  }
  .content-section .content .button a{
    padding:9px 30px;
  }
  
  }
  .video-banner{
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgb(255, 72, 0);
  }
  
    .video-banner video{
      z-index: 000;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .video-banner .banner-image{
      position: absolute;
      z-index: 1;
      right: auto; /* Remove the right positioning */
      left: 50%;
      transform: translateX(-50%);
    }
    .video-banner .banner-image img{
      height: auto;
      width: auto;
    }
    @media(max-width:1400px){
      .video-banner{
        min-height: 40vh;
      }
      .video-banner .banner-image img{
        height: auto;
        width: 350px;
      }
      .video-banner .banner-image{
        right: auto; /* Remove the right positioning */
    left: 50%;
    transform: translateX(-50%);
      }
    }

  @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait),
only screen and (min-device-width: 1366px) and (max-device-width: 1024px) and (orientation: landscape) {
  .video-banner .banner-image img{
    width: 500px !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait),
only screen and (min-device-width: 1024px) and (max-device-width: 768px) and (orientation: landscape) {
  .video-banner .banner-image img{
    width: 500px !important;
  }
  .video-banner{
    min-height: 50vh !important;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 600px) and (orientation: portrait),
only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (orientation: landscape) {
  .video-banner .banner-image img{
    width: 400px !important;
  }
  .video-banner{
    min-height: 50vh !important;
  }
}
@media only screen and (min-device-width: 1280px) and (max-device-width: 800px) and (orientation: portrait),
only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (orientation: landscape) {
  .video-banner .banner-image img{
    width: 500px !important;
  }
  .video-banner{
    min-height: 60vh !important;
  }
}
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation: portrait),
only screen and (min-device-width: 896px) and (max-device-width: 414px) and (orientation: landscape) {
  .video-banner .banner-image img{
    width: 350px !important;
  }
}

    /* product part */
    .container-xxl .img-flu{
      width: 100%;
      height: 70vh;
    }
    .container-xxl .img-flui{
      position: absolute;
      right: 30px;
      width: auto;
      height: 30vh;
    }
    .container-xxl .head-tag{
      font-size: 26px;
    }

    .container-xxl .nutri-img{
      height: 60vh;
    }
    .container-xxl .text-img {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  .container-xxl .col-sm-6 span {
    text-align: justify;
}
    .container-xxl .png{
      height: 8vh;
    }
  @media(max-width:1400px){
    .container-xxl .img-flu{
      height: auto;
    }
    .container-xxl .nutri-img{
      height: auto;
    }
    .container-xxl .img-flui{
      width: auto;
      height: 15vh;
    }
  }
  @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait),
only screen and (min-device-width: 1366px) and (max-device-width: 1024px) and (orientation: landscape) {
  .container-xxl .img-flu{
    height: 50vh !important;
  }
  .container-xxl .nutri-img{
    height: 50vh !important;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 600px) and (orientation: portrait),
only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (orientation: landscape) {
  .container-xxl .img-flu{
    height: 100vh !important;
  }
  .container-xxl .nutri-img{
    height: 100vh !important;
  }
}
@media only screen and (min-device-width: 1280px) and (max-device-width: 800px) and (orientation: portrait),
only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (orientation: landscape) {
  .container-xxl .img-flu{
    height: 80vh !important;
  }
  .container-xxl .nutri-img{
    height: 70vh !important;
  }
}
  /* Contact us */
.contact-in {
  width: 80%;
  height: auto;
  margin: 100px 0px 50px 150px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #666;
}

.contact-in .contact-map {
  width: 100%;
  height: auto;
  flex: 50%;
}
.contact-in .contact-map iframe{
  width: 100%;
  height: 100%;

}

.contact-in .contact-form {
  width: 100%;
  height: auto;
  padding: 30px;
  flex: 50%;
  text-align: center;
}

.contact-in .contact-form h1 {
  font-size: 1.5rem;
  color: #cf561f;
}


.contact-in form .contact-form-text {
  width: 100%;
  height: 40px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 50px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
  font-family:'Times New Roman', Times, serif;
}
.contact-in form .contact-form-text::placeholder{
  color: #aaa;
}
.contact-in form .contact-form-textarea {
  width: 100%;
  height: 130px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
  font-family:'Times New Roman', Times, serif;
}
.contact-in form .contact-form-textarea::placeholder{
  color: #aaa;
}
.contact-in form .contact-form-btn{
  width: 30%;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #cf561f;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

@media(max-width:1200px){
  .contact-in{
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .contact-in .contact-form h1{
    font-size: 1rem;
  }
  .contact-in .contact-map {
    height: 400px;
  }
  .contact-in form .contact-form-textarea {
    width: 100%;
  }
}