/*
CTC Separate Stylesheet
Updated: 2024-12-23 11:46:18
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url(https://db.onlinewebfonts.com/c/c998a4e2dac2d48cdc69da71f3e209d0?family=AkcelerA-Medium);
:root{
    --primary-color:#ff7f00;
    --secondary-color:#eaeaea;
    --black-color:#2d2727;
    --bg-color:#000;
    --font-color-style:#f1c598;
    --banner-heading-font: "AkcelerA-Medium";
    --box-hover-color:#6b3805;

 }
h1{
    font-size: clamp(30px, calc(30px + (50 - 30) * ((100vw - 300px) / (1920 - 300))), 50px) !important;
}
h2{
    font-size: clamp(30px, calc(30px + (60 - 30) * ((100vw - 300px) / (1920 - 300))), 60px) !important;
}
h3{
    font-size: clamp(30px, calc(30px + (70 - 30) * ((100vw - 300px) / (1920 - 300))), 70px) !important;
}
.spacing-ptb{
    padding: 80px 0;
}
body{
    font-family: "Lato", serif !important;
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300))), 18px) !important;
    color: var(--secondary-color) !important; 
}

/* Header-Start */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease;
    z-index: 1000;
    /* padding: 1.5rem 2rem; */
  }
  .header.scrolled {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 0;
  }
.navbar.navbar-expand-lg.navbar-fixed-top{
    background-color: transparent;
    background-image: none;
}

.navbar-brand img{
max-width: 120px;
height: auto !important;
}
.nav-link{
    text-transform: uppercase;
    font-weight: 800 !important;
    color: var(--secondary-color) !important;
    font-size: 16px !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--primary-color) !important;
}
.nav-link:hover{
    color:var(--primary-color) !important;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -ms-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
}
.navbar-toggler{
  color: var(--primary-color);
	    border: 0 !important;
}
.navbar-toggler-icon{
  filter: brightness(0) saturate(100%) invert(61%) sepia(52%) saturate(5514%) hue-rotate(2deg) brightness(105%) contrast(103%);
}
.offcanvas.offcanvas-start{
  background-color: black;
}

.offcanvas-body a{
  margin-bottom: 10px;

}
.btn-close{
  filter: brightness(0) saturate(100%) invert(50%) sepia(39%) saturate(2949%) hue-rotate(1deg) brightness(105%) contrast(103%);
}
.btn-close, .btn-close:hover{
  color: var(--primary-color) !important;
}
/* Header-End */
/* Main-Banner-Start */
.main-banner{
    padding: 150px 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.main-banner .banner-text {
    h1{
        color: var(--secondary-color);
        font-weight: 800;
        text-align: center;
        text-transform: uppercase;
    }
    span{
        color: var(--primary-color);
        font-family: var(--banner-heading-font);
    }
    p{
        padding: 0 80px;
        text-align: center;
        color: #fff;
    }
} 
.btn-div{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.default-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    border-radius: 11px;
    width: 178px;
    height: 58px;
    font-weight: bold;
    transition: 0.5s;
    background-color: var(--primary-color);
  }
  
.default-btn:hover {
    opacity: .7;
}
/* Main-Banner-End */
/* About-Section-Start */
.about{
    background-image: url(/assets/img/bg/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
 
}
 .about-content{
        color: var(--black-color);
         h2{
           font-weight: 700;
           position: relative;
           text-decoration: underline;
           text-decoration-color: var(--primary-color);
           text-decoration-thickness: 8px;
           -moz-text-decoration-color: var(--primary-color);
           text-underline-offset: 8px; /* Space between text and underline */
           margin-bottom: 20px;
           font-size: clamp(30px, calc(30px + (60 - 30) * ((100vw - 300px) / (1920 - 300))), 60px) !important;
        }
 }

.secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: var(--secondary-color);
    border-radius: 11px;
    text-transform: uppercase;
    width: 149px;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.5s;
    background-color: var(--black-color);
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
}
.secondary-btn:hover {
    background-color: var(--primary-color);
}
.about-img {
   max-width: 500px;
   margin: 0 auto;
   img{
    width: 100%;
}
}
/* About-Section-End */
/* What-We-Do-Start */
.what-we-do{
    background-image: url(./assets/img/bg/bg-02.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.what-title{
    text-align: center;
    margin-bottom: 40px;
    h3{
        text-transform: uppercase;
        font-weight: 800;
    }
    span{
        color: var(--primary-color);
    }
} 
.service-box{
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
    /* width: 400px; */
    h4{
        text-align: left;
        font-weight: 300;
        font-size: 18px;
        color: var(--secondary-color);
    }
    span{
        font-weight: 500;
        color: var(--primary-color);
        font-size: 21px;
    }
    p{
        font-size: 16px;
        font-weight: 300;
    }
    a{
        text-decoration: none;
        color: var(--secondary-color);
        &:hover{
            color: var(--primary-color);
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -ms-transition: 0.5s all;
            -o-transition: 0.5s all;
}
    }
    &:hover{
        background-color: rgba(107, 56, 5, 0.5);
        transition: 0.5s all ;
        -webkit-transition: 0.5s all ;
        -moz-transition: 0.5s all ;
        -ms-transition: 0.5s all ;
        -o-transition: 0.5s all ;
}
}
/* What-We-Do-End */
/* Our-work-Start */
.work{
    background-image: url(/assets/img/bg/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


    width: 100%;
}
.gallery-section {
    text-align: center;
    position: relative;
    padding: 50px 20px;
  }

  .work-title {
    text-align: center;
     h3{
        color: var(--black-color);
        text-transform: uppercase;
        font-weight: 800;
     }
     span{
        color: var(--primary-color);
     }
  }

  .gallery-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    /* max-width: 1000px; */
    margin: 0 auto;
  }

  .gallery a {
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .gallery a:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.gallery a:hover img{
    -webkit-filter: grayscale(0%);
    -webkit-transition: .5s ease-in-out;
}

  .gallery img {
    height: auto;
    display: block;
    -webkit-filter: grayscale(100%);
    width: 100%;

    -webkit-transition: .5s ease-in-out;
  }

  .portfolio-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 65px;
    color: var(--primary-color);
    opacity: 0.5;
    font-weight: bold;
  } 
  .filters {
      width: 100%;
      text-align: center;
  }
  
  .filter-list {
      list-style: none;
      padding: 20px 0;
  }
  
  .filter-list li {
      display: inline;
      padding: 10px 25px;
      font-size: 14px;
      color: #636363;
      font-weight: 400;
      cursor: pointer;
        text-transform: uppercase;

  }
  .filter-list li :hover {
      color: #a6a6a6;
  }
  
  .filter-list li.active {
      color: var(--bg-color);
      border: 1px solid var(--primary-color);
      border-radius: 15px;
  }
/* Our-Work-End */
/* Testimonials-Start */

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2{
    color: var(--black-color);
    font-weight: 800;
}
.section-title h2 span{
    color: var(--primary-color);
}
.section-borders span {
    height: 5px;
    background: var(--primary-color);
    width: 40px;
    display: inline-block;
    border-radius: 2px;
}

.section-borders span.black-border {
    background: #333;
    width: 30px;
    margin: 0 6px;

}

.client-testimonial-carousel .owl-dots button {
    height: 5px;
    background: var(--primary-color) !important;
    width: 20px;
    display: inline-block;
    margin: 5px;
    transition: .2s;
    border-radius: 2px;
}

.client-testimonial-carousel button.owl-dot.active {
    background: #000 !important;
    width: 30px;
}

.client-testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 25px
}

.single-testimonial-item {
    position: relative;
    box-shadow: 0 0 2px #dadfd3;
    margin: 2px;
    padding: 20px;
    font-style: italic;
    padding-left: 85px;
}

.single-testimonial-item:before {
    font-family: "Font Awesome 5 Free";
    content: "\f10e";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    font-size: 20px;
    color: var(--primary-color);
    line-height: 30px;
    margin-top: -15px;
}

.single-testimonial-item:after {
    background: var(--primary-color);
    content: "";
    height: 70%;
    left: 60px;
    position: absolute;
    top: 10%;
    width: 1px;
}

.single-testimonial-item h3 {
    font-size: 20px !important;
    font-style: normal;
    margin-bottom: 0;
}

.single-testimonial-item h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
}
.single-testimonial-item{
    color: var(--black-color);
}
/* Testimonial-End */
/* CTA-Start */
.cta{
    background: rgb(1,1,1);
    background: linear-gradient(90deg, rgba(1,1,1,1) 0%, rgba(65,65,65,1) 100%);
}
.cta-content{
    max-width: 600px;
}
.cta-content h4{
    font-size: 28px;
    font-weight: 300;
}
.cta-content h5{
    font-size: 35px;
    font-weight: 800;
    color: var(--primary-color);
}
.primary-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: var(--secondary-color);
    border-radius: 11px;
    text-transform: uppercase;
    width: 150px;
    font-size: 16px;
    height: 45px;
    font-weight: bold;
    transition: 0.5s;
    background-color: var(--primary-color);
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
}
.primary-btn:hover {
    opacity: .7;
}
/* CTA-End */
/* Privacy-Policy-Start */
.content{
  color: var(--black-color);
  font-size: 16px;
}
/* Privacy-Policy-End */


/* Footer-Start */

.single-cta{
	display:flex;
	justify-content:center;
}

ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #000;
  position: relative;
  font-family: "Lato", sans-serif;
  color: #fff;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff7f00;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span a {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-logo img {
    max-width: 100px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #fff;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px !important;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff7f00;
}
.footer-widget ul{
  padding: 0;
}
.footer-widget ul li {
  display: inline-block;
  /* float: left; */
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form input::placeholder{
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff7f00;
    padding: 13px 20px;
    border: 1px solid #000;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu{
    display: flex;
    justify-content: center;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
  text-decoration: none;
}
/* Footer-End */
.row.flex-row-reverse .content-section {
  order: 2;
}

.row.flex-row-reverse .image-section {
  order: 1;
}
/* About-page-css */
.about-banner{
  padding-top: 200px;
  padding-bottom: 100px;
  background-image: url("./assets/img/Banners/About-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  h1{
    color: var(--secondary-color);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(50px, calc(40px + (60 - 40) * ((100vw - 300px) / (1920 - 300))), 110px);
}
span{
    color: var(--primary-color);
    /* font-family: var(--banner-heading-font); */
}
p{
    padding: 0 80px;
    text-align: center;
}
}
.overview{
  color: var(--black-color);
}
.overview h1{
  font-weight: 300;
  font-size: clamp(55px, calc(30px + (55 - 30) * ((100vw - 300px) / (1920 - 300))), 55px) !important;
  margin: 0;
}
.overview h2{
   font-weight: 700;
   position: relative;
   text-decoration: underline;
   text-decoration-color: var(--primary-color);
   text-decoration-thickness: 8px;
   -moz-text-decoration-color: var(--primary-color);
   text-underline-offset: 8px; /* Space between text and underline */
   margin-bottom: 20px;
   font-size: clamp(40px, calc(30px + (40 - 30) * ((100vw - 300px) / (1920 - 300))), 40px) !important;
}
.vision-mission-container {
  padding: 40px 15px;
}
.vision-section {
  border-right: 3px solid #ffcc99;
}

.vision-mission-container {
  h2{
    text-align: center;
    color: #000;
    font-weight: 300;
    font-size: clamp(55px, calc(30px + (55 - 30) * ((100vw - 300px) / (1920 - 300))), 55px);
 }
 p{
  color: var(--black-color);
  padding: 5px 40px;
 }
}
/* About-page-css */
/* Services-Page-css */

.services-banner{
  padding-top: 200px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  h1{
    color: var(--secondary-color);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(50px, calc(40px + (60 - 40) * ((100vw - 300px) / (1920 - 300))), 110px);
}
span{
    color: var(--primary-color);
    font-family: "Lato", serif;
}
p{
    padding: 0 80px;
    text-align: center;
}
}
/* General Section */
.graphic-design-section {
  padding: 40px 15px;
  color: #000;
}

.title{
  display: flex;
  align-items: flex-start;

   span{
      color: #ffe9dd;
      font-size: clamp(90px, calc(30px + (90 - 30) * ((100vw - 300px) / (1920 - 300))), 90px);
      line-height: 1;
   
   }
  
}
.subtitle{
  font-style: italic;
 }
.description{

}
.text h2{
  color: #000;
  text-align: left;
  font-size: clamp(35px, calc(30px + (35 - 20) * ((100vw - 300px) / (1920 - 300))), 35px) !important;
  font-weight: 300;
  margin: 0;
 }
 .text h3{
  font-size: clamp(40px, calc(30px + (40 - 20) * ((100vw - 300px) / (1920 - 300))), 40px) !important;
margin-bottom: 10px;
  color: #000;
  text-transform: capitalize;
  text-align: justify;
 }
.image-section{
  display: flex;
  justify-content: end;
}
.image-section img,.image-section-right img{
  width: 80%;
}

/* Services-Page-css */

/* Contact-us-page-css */










.intl-tel-input.separate-dial-code .selected-dial-code{
  color: #000;
}

.intl-tel-input .country-list{
  background-color:#fff;
  color: #000;
}
.intl-tel-input .country-list .country .dial-code{
  color: #000;
}





.sec-title {
  position: relative;
  padding-bottom: 40px;
}
.sec-title .title {
  position: relative;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.sec-title .title:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbb;
}
.sec-title h2 {
  position: relative;
  color: #252525;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5em;
  display: block;
}
.sec-title.light h2 {
  color: #fff;
}
.contact-page-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
.contact-page-section .inner-container {
  position: relative;
  z-index: 1;
  background-color: var(--primary-color);
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}
.contact-page-section .form-column {
  position: relative;
  padding: 0 0 0 15px;
}
.contact-page-section .form-column .inner-column {
  position: relative;
  padding: 60px 45px 30px;
  background-color: #fff;
}
.contact-page-section .info-column {
  position: relative;
}
.contact-page-section .info-column .inner-column {
  position: relative;
  padding: 33px 17px;

}
.contact-page-section .info-column h2 {
  position: relative;
  color: #fff;
  font-size: 30px !important;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 45px;
}
.contact-page-section .info-column .list-info {
  position: relative;
  margin-bottom: 60px;
}
.contact-page-section .info-column .list-info li {
  position: relative;
  margin-bottom: 25px;
  font-size: 18px;
  color: #fff;
  padding-left: 45px;
  display: block;
/*   text-transform: capitalize; */
}
.contact-page-section .info-column .list-info li:last-child {
  margin-bottom: 0;
}
.contact-page-section .info-column .list-info li a{
  color: #fff;
}
.contact-page-section .info-column .list-info li i {
  position: absolute;
  left: 0;

  color: #fff;
  font-size: 30px;
}
.contact-form {
  position: relative;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #222;
  font-size: 14px;
  line-height: 38px;
  padding: 10px 30px;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #00b8ca;
}
.contact-form textarea {
  height: 250px;
  resize: none;
}
.contact-form .theme-btn {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
  padding: 16px 39px;
  background: var(--primary-color);
  display: inline-block;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  color: #fff;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.contact-form .theme-btn:hover {
  color: #000;
  background: 0 0;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: red !important;
}
.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  color: red;
  font-weight: 500;
}
.social-icon-four {
  position: relative;
}
.social-icon-four li {
  position: relative;
  margin-right: 18px;
  display: inline-block;
}
.social-icon-four li.follow {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}
.social-icon-four li a {
  position: relative;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-icon-four li a:hover {
  color: #222;
}








/* Contact-us-page-css */
/* Media-queries */
@media (max-width: 991.98px) {
		.navbar-brand img{
max-width: 80px;
height: auto !important;
}
  .spacing-ptb{
    padding: 20px 0;
  }
  .main-banner{
    padding: 100px 0 40px 0px;

  }
  .what-title{
    margin-bottom: 10px;
  }
  .single-cta {
    margin-bottom: 20px;
}
.filter-list li{
  display: block;
}
.gallery-section{
  padding: 0;
}
	.single-cta{
	display:flex;
	justify-content:start;
}
 .banner-text {
  p{
      padding: 0 !important;
      text-align: center;
      color: #fff;
  }
} 
	

}
@media (max-width:767px) {
  .image-section{
    display: flex;
  
  }
  .image-section img,.image-section-right img{
    width: 100%;
    margin-bottom: 10px;
  }
  .vision-section {
    border-right: 0px ;
}
}
.video-modal {
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  position: relative;
}
.video-modal video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: -20px;
}
/* Media-queries */