*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{
    --bs-darkGray:#808080;
    --bs-lightGray:#eeeeee;
    --bs-black:#222222;
    --bs-blue:#BB133E;
    --bs-white:#ffffff
}
body{
    font-family: 'Rubik', sans-serif;
}
h2{
    text-align: center;
    font-weight: bold;
    font-size: 35px;
}
h3{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

h2::after{
    content: '';
    border-bottom:3px solid var(--bs-blue);
    margin: 12px auto;
    display: block;
    width: 80px;
}
.navbar{
    margin-top: 30px;
    z-index: 999;
}
.navbar-expand-lg .navbar-nav .nav-item {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
.navbar-light .navbar-nav .nav-link, 
.navbar-light .navbar-nav .nav-link.active{
    color: white;
}
.navbar-light .navbar-nav .nav-link::after{
    border-bottom: 3px solid  var(--bs-blue);
    display: block;
    margin: 5px 0;
    content: '';
    width: 0;
    transition: width .3s;
}
.navbar-light .navbar-nav .nav-link:hover{
    color: var(--bs-white);
}
.navbar-light .navbar-nav .nav-link:hover::after{
    width: 100% ;
}
.navbar-light .navbar-nav .active::after{
    border-bottom: 3px solid  var(--bs-blue);
    display: block;
    margin: 5px 0;
    content: '';
    width: 100%;
}
.navbar-brand img{
    width: 120px;
}
/* .owl-1 img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition:all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;

}
.owl-1 .active img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
} */
.bg-light{
    background-color: transparent !important;
}

#slider-1{
    margin-top: -106px;
    background-color: black;

}
#slider-1 .owl-dots{
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}
#slider-1 .owl-theme .owl-dots .owl-dot span{
    border: 1px solid var(--bs-white);
    background-color: transparent;
}
#slider-1 .owl-dots .owl-dot span:hover{
    background-color: var(--bs-blue);
}
.owl-theme .owl-dots .owl-dot.active span{
    background-color: var(--bs-blue);
    border: none;
}
.owl-item{
    position: relative;
}
 .owl-1 .owl-nav{
    position: absolute;
    top: 47%;
    right: 0;
    left: 0;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background: none !important;
}
#slider-1 .owl-nav .owl-next{
    position: absolute;
    right: 50px;
}
#slider-1 .owl-prev{
    position: absolute;
    left: 50px;
}
.owl-1 .owl-height{
    height: 760px;
}
.owl-1 .owl-item img{
    height: 760px;
}
.owl-1 .slider-text h1 {
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition:all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.owl-1 .active .slider-text h1 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1000ms;
}
.owl-1 .slider-text p{
    -webkit-transition: all 1400ms ease;
    -moz-transition: all 1400ms ease;
    -ms-transition:all 1400ms ease;
    -o-transition: all 1400ms ease;
    transition: all 1400ms ease;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
}
.owl-1 .active .slider-text p{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1400ms;
}
.owl-1 .slider-text button{
    -webkit-transition: all 1600ms ease;
    -moz-transition: all 1600ms ease;
    -ms-transition:all 1600ms ease;
    -o-transition: all 1600ms ease;
    transition: all 1600ms ease;
    -webkit-transform: translateY(120px);
    -moz-transform: translateY(120px);
    -ms-transform: translateY(120px);
    -o-transform: translateY(120px);
    transform: translateY(120px);
}
.owl-1 .active .slider-text button{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1600ms;
}
.owl-1 .slider-text h1{
    opacity: 0;
}
.owl-1 .slider-text p{
    opacity: 0;
}
.owl-1 .slider-text button{
    opacity: 0;
}
.owl-item .slider-text{
    position: absolute;
    left: 120px;
    top: 30%;
}
.slider-text h1{
    color: var(--bs-white);
    margin-bottom: 20px;
    font-weight: bolder;
    font-size: 60px;
}
.slider-text p{
    color: var(--bs-white);
    margin-bottom: 20px;
    max-width: 500px;
    font-size: 14px;
}
.slider-text span{
    display: block;
}
.btn-danger{
    background-color: var(--bs-blue);
    padding: 10px 35px;
    transition: .2s;
    border-radius: 0;
    border-color: var(--bs-blue);
}
.btn-danger:hover {
    color: #fff;
    background-color:  #444;
    border-color: #444;
}
section .about-us{
 text-align: center;
}
.about-us h2 {
    font-weight: bold;
    margin-bottom: 120px;
    font-size: 35px;
}
.about-us p{
    color: var(--bs-darkGray);
    font-weight: 500;
    font-size: 14px;
}
.about-section{
    background-repeat: no-repeat;
    padding: 100px 0 250px 0;
    background-image: url('./assets/images/about-background.png');
    background-position: bottom;
    background-size: cover;
}
.services-section{
    background-color: var(--bs-lightGray);
    padding: 80px 0;
}
.services h2{
    margin-bottom: 55px;
}
.services h3{
    margin: 25px auto;
}
.services p{
    color: var(--bs-darkGray);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}
.services a{
    text-decoration: none;
    font-weight: 500;
    color: var(--bs-blue);
    font-size: 14px;
}
.product-spotlight h1{
    font-weight: bold;
    color: white;
    font-size: 35px;
}
.product-spotlight p{
    margin: 20px auto;
    max-width: 500px;
    font-size: 14px;
    color: white;
}
.product-section{
    background-image: url('./assets/images/product-spotlight.png');
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    display: flex;
    height: 50vh;
}
.owl-2{
    background-color: black;
}
.owl-2 .owl-nav{
    position: absolute;
    left: 120px;
    bottom: 32%;
}
.owl-2  .owl-dots{
    position: absolute;
    bottom: 80px;
    left: 120px;
}
.owl-2 .owl-dots .owl-dot span{
    height: 8px;
  width: 8px;
}
.owl-2 .owl-height{
    height: 430px;
}
.owl-2 .owl-item img{
    height: 430px;
}
.slider2-text h1{
    font-size: 35px;
}
.partner-section{
    background-image: url('./assets/images/about-background.png'
    );
    background-repeat: no-repeat;
    background-position-y: -75%;
    padding: 80px 0 170px 0;
    background-size: cover;
}
.our-partner h2{
    margin-bottom: 50px;
}
.reviews-section{
    background-color: var(--bs-blue);
    padding: 70px 0;
}
.owl-3 .owl-item img{
    margin-bottom: 40px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.owl-3 .owl-item{
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    display: flex;
}
.owl-3 .owl-item p{
    line-height: 25px;
    max-width: 600px;
    font-size: 14px;
    color: white;
}
.owl-3 .owl-item h4{
    margin: 20px 0 60px 0;
    color: white;
    font-size: 20px;
}
.owl-3 .owl-stage-outer{
    height: unset !important;
}
.owl-3 .owl-dots .owl-dot.active span {
    background-color: white;
    border: none;
}
.owl-3 .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid white;
    margin: 5px 4px;
    height: 8px;
    width: 8px;
}
.reviews-section .reviews-heading{
   color: white;
}
.reviews-section .reviews-heading::after{
    content: '';
    border-bottom:2px solid white;
    margin: 12px auto;
    display: block;
    width: 80px;
}
.contactus-section{
    background-image: url('./assets/images/contactus-img.png');
    background-position: bottom;
    padding: 70px 0 150px 0;
    background-size: cover;
}
.contact-searchfield{
    margin-top: 60px;
}
.contactus-section .contact-searchfield input{
    border: 2px solid var(--bs-blue);
    margin-right: 20px;
    border-radius: 0;
    outline: none;
    flex: .3;
}
.footer-section{
 background-color: var(--bs-black);
 padding: 100px 0;
}
.footer-section .footer p{
    color: var(--bs-white);
    text-align: center;
    line-height: 25px;
    max-width: 580px;
    font-size: 14px;
    margin: 40px 0;
}
.footer-section .social-icons div{
    margin: 0 40px 0 0;
}
.footer-section .social-icons div:last-child{
    margin: 0;
}
.reference-description{
    background-color: var(--bs-blue);
    padding: 30px 0;
}
.reference-description .last-strip p:first-child{
    margin-right: 70px;
}
.reference-description .last-strip p{
    color: var(--bs-lightGray);
    margin-bottom: 0;
    font-size: 14px;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: var(--bs-lightGray);
    overflow-x: hidden;
    transition: .3s;
    padding-top: 60px;
  }
  
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--bs-black);
    display: block;
    transition: 0.3s;
  }
    
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 36px;
  }
  
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: var(--bs-blue);
    color: white;
    display: none;
    padding: 3px 10px;
    border-radius: 4px;
    transition: .2s;
    border: none;
  }
  
  .openbtn:hover {
    background-color: #444;
  }
  
.overlay{
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    z-index: 3;
    top: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: var(--bs-blue);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: .2s;
  }
  #myBtn:hover{
    background-color: #444;
  }
  .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--bs-blue);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  .about-banner{
      background-image: url('./assets/images/aboutpage-img.png');
      margin-top: -105px;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      height: 600px;
      width: 100%;
      background-size: cover;
  }
  .clearance-banner{
    background-image: url('./assets/images/clearance.png');
    margin-top: -105px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 600px;
    width: 100%;
    background-size: cover;

  }
  .banner-text h1 {
    color: var(--bs-white);
    margin-bottom: 20px;
    font-weight: bolder;
    font-size: 60px;
  }
  .mission-section h2{
      text-align: left;
      font-weight: 900;
      margin-bottom: 40px;
  }
  .mission-section {
      margin: 120px 0 120px 0;
  }
  .mission-section h2::after{
    content: '';
    border-bottom: 3px solid var(--bs-blue);
    margin: 12px 0 0 0;
    display: block;
    width: 80px;
  }
  .mission-section img{
      width: 100%;
  }
  .mission-section p{
      color: var(--bs-darkGray);
      font-weight: 500;
      font-size: 14px;
  }
  .mission-section .row .col-md-6 p{
      padding-right: 100px;
  }
  .aboutus-partner-section{
      background-image: url('./assets/images/contactus-img.png');
      background-repeat: no-repeat;
      background-size: cover;
      
  }
  .aboutus-partner-section{
    margin-top: 60px;
}
.item-background{
    background-position: 0 -50%;
}
.aboutus-partner-section .contact-searchfield input{
    border: 2px solid var(--bs-blue);
    margin-right: 20px;
    border-radius: 0;
    outline: none;
    flex: .3;
}
.aboutus-partner-section .our-partner{
    padding: 100px 0 150px 0;
}
.aboutus-partner-section .items-section{
    padding: 0 0 150px 0;

}
.aboutus-partner-section .contact-us{
    padding-bottom: 170px;
}
.modal-body form .row .col-md-6 input{
    border: 2px solid var(--bs-blue);
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    border-radius: 0;
    outline: none;
}
.modal-body form .row .col-md-6 textarea{
    border: 2px solid var(--bs-blue);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    outline: none;
}
.modal-body{
    padding: 20px 50px 80px 50px;
}
input:focus{
    box-shadow: none !important;
    outline: none !important;
    border: 2px solid #444 !important;
    transition: .5s ease;
}
textarea:focus{
    box-shadow: none !important;
    outline: none !important;
    border: 2px solid #444 !important;
    transition: .5s ease;
}
button:focus{
    box-shadow: none !important;
}
.fade{
    background-color: rgba(0, 0, 0, .8);
}
.modal .modal-header {
    justify-content: flex-end;
}
.modal-lg{
    max-width: 1000px;
}
.modal-header{
    border: none;
    padding: 30px;
}
.modal .modal-body .row .col-md-6 h1 {
    font-size: 50px;
    font-weight: bold;
    margin-top: -15px;
}
.modal .modal-body .row .col-md-6 h1::after{
    content: '';
    border-bottom:3px solid var(--bs-blue);
    margin-top: 12px;
    display: block;
    width: 70px;
}
.modal-content{
    border-radius: 0;
}
.modal .modal-body .row .col-md-6 .address-detail{
    display: flex;
    min-height: 220px;
    align-items: flex-end;
}
.address-detail .d-flex img{
    width: 20px;
}
.address-detail .mb-0{
    font-size: 16px;
    font-weight: 500;
    color: #3d3d3d;
}
.modal .modal-body .row .name-field{
    padding-right: 8px;
}
.modal .modal-body .row .email-field{
    padding-left: 8px;
}
.servicespage-section h2{
    margin-top: 80px;
}
.servicespage-section .d-flex .service-img{
    margin-right: 60px;
}
.servicespage-section .d-flex .service-img{
    text-align: right;
}
.servicespage-section h4{
    font-size: 24px;
    font-weight: bold;
}
.servicespage-section p{
    font-size: 14px;
    color: var(--bs-darkGray);
}
.servicespage-section .d-flex{
    margin: 120px auto;
}
.clearance-text{
    margin: 70px auto;
}
.aboutus-partner-section .row .col-xl-3 .card .card-text{
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}
.aboutus-partner-section .row .col-xl-3 .card h4{
    color: var(--bs-blue);
    font-size: 24px;
    font-weight: bold;
}
.card{
    box-shadow: 0px 4px 20px #0000000A;
    border: none;
}
/** about page style **/
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
  }
/** media queries**/
@media (max-width:1599px) {
    
}
@media (max-width:1439px) {
    .owl-item .slider-text{
      left: 85px;
    }
    #slider-1 .owl-prev{
        left: 40px;
    }
    .slider2-text{
        left: 120px !important;
    }
}
@media (max-width:1199px) {
    .owl-item .slider-text{
        left: 135px;
      }
      #slider-1 .owl-prev{
          left: 50px;
      }
      .contactus-section .contact-searchfield input{
          flex: .4;
      }
      .aboutus-partner-section .contact-us .contact-searchfield input{
          flex: .4;
      }
      .owl-2 .owl-nav{
          bottom: 25%;
      }
      .owl-2 .owl-dots{
     bottom: 50px;
      }
}
@media (max-width:1023px) {
    .owl-item .slider-text{
        left: 55px;
      }
      #slider-1 .owl-prev{
          left: 20px;
      }
      .owl-2 .owl-nav{
        bottom: 20%;
    }
    .owl-2 .owl-dots{
   bottom: 25px;
    }
}
@media (max-width:991px) {
    .owl-item .slider-text{
        left: 90px;
        top: 25%;
      }
    .navbar-nav{
        display: none;
    }
    .openbtn{
        display: block;
    }
    .slider-text h1{
        font-size: 50px;
    }
    .contactus-section .contact-searchfield input{
        flex: .6;
    }
    .aboutus-partner-section .contact-us .contact-searchfield input{
        flex: .6;
    }
    .owl-2 .owl-height{
        height: 300px  !important;
    }
    .owl-2 .owl-item img{
        object-fit: cover;
        height: 400px;
    }
    .owl-item .slider2-text{
        top: 15%;
    }
    .owl-2 .owl-nav{
        bottom: 25%;
    }
    .slider-text p{
        max-width: 400px;
    }
    .servicespage-section .d-flex{
        display: block !important;
    }
    .servicespage-section .d-flex  img{
        width: 100%;
        margin-bottom: 20px;
    }
    .items-section .row .col-xl-3{
        justify-content: center;
        margin: auto;
        display: flex;
    }
}
@media (max-width:767px) {
    .slider-text h1{
        font-size: 35px;
    }
    .owl-1 .owl-height{
        height: 480px !important;
    }
    .owl-1 .owl-item img{
        object-fit: cover;
        height: 520px;
    }
    .about-section{
        padding: 30px 0;
    }
    .about-us h2{
        margin-bottom: 50px;
    }
    .about-us p{
        text-align: justify;
    }
    .services .col-md-4{
   margin-bottom: 20px;
    }
    .contactus-section .contact-searchfield input{
        flex: .8;
    }
    .aboutus-partner-section .contact-us .contact-searchfield input{
        flex: .8;
    }
    .reference-description .last-strip{
        display: block !important;
    }
    .reference-description .last-strip .d-flex{
        margin-top: 20px;
    }
    .owl-2 .owl-item img{
        object-fit: cover;
        height: 520px;
    }
    .owl-item .slider2-text{
        top: 10%;
    }
    .owl-2 .owl-nav {
        bottom: 30%;
    }
    .owl-2 .owl-dots{
        bottom: 50px;
    }
    .banner-text h1{
        font-size: 35px;
    }
    .modal .modal-body .row .col-md-6 h1{
        font-size: 35px;
    }
    .modal .modal-body .row .col-md-6 .address-detail{
        margin: 20px 0 20px 0;
        min-height: 0;
    }
    .modal .modal-body .row .name-field{
        padding-right: 12px;
        margin-bottom: 16px;
    }
    .modal .modal-body .row .email-field{
        padding-left: 12px;
    }
}

@media (max-width:575px) {
    .owl-carousel .owl-nav{
        display: none;
    }
    #slider-1 .owl-dots{
        bottom: 30px;
    }
    .slider2-text{
        left: 90px !important;
    }
    .owl-2 .owl-dots{
        left: 90px;
    }
    .owl-2 .owl-height{
        height: 250px !important;
    }
    .owl-2 .owl-item img{
        height: 300px;
    }
    .owl-item .slider2-text{
        top: 16%;
    }
    .slider2-text{
        left: 60px !important;
    }
    .owl-2 .owl-dots {
        left: 60px;
    }
    .slider-text p{
        max-width: 350px;
    }
    .mission-section{
        margin: 40px 0 40px 0;
    }
    .mission-section .row .col-md-6 p{
        padding-right: unset;
    }
    .mission-section .row .col-md-6 .second-mission-img{
        margin-bottom: 1.5rem;
    }
    .aboutus-partner-section .our-partner{
        padding: 40px 0 90px 0;
    }
    .aboutus-partner-section .items-section{
        padding: 0 0 90px 0;
    }
    .aboutus-partner-section{
        background-position: center;
    }
    .servicespage-section .d-flex .service-img{
        margin-right: 0;
    }
    .servicespage-section .d-flex{
        margin: 60px 30px;
    }
    .items-section .row .col-xl-3{
        justify-content: center;
        margin: auto;
        display: flex;
    }
}
@media (max-width:480px) {
    .owl-item .slider-text{
        left: 70px;
        top: 30%;
    }
    .slider-text h1 {
        font-size: 25px;
    }
    .slider-text p{
        max-width: 300px;
    }
    .navbar {
        margin-top: 20px;
    }
    h2{
        font-size: 20px;
    }
    h2::after{
        width: 50px;
    }
    .about-us h2 {
        margin-bottom: 30px;
        font-size: 20px;
    }
    .about-section{
        padding: 20px;
    }
    .reviews-section{
        padding: 40px;
    }
    .owl-3 .owl-item p{
        text-align: justify;
    }
    .reviews-section .reviews-heading::after{
        width: 50px;
    }
    .contact-us .d-flex{
        display: block  !important;
    }
    .contact-searchfield{
        padding: 0 20px;
    }
    .contact-searchfield div button{
        margin-top: 20px;
        width: 100%;
    }
    .contactus-section{
        padding: 50px 0;
    }
    .services .row{
        padding: 0 20px;
    }
    .product-spotlight h1{
        font-size: 25px;
    }
    .product-spotlight{
        padding: 0 20px;
    }
    .reference-description{
        padding: 20px 0;
    }
    .footer-section{
        padding: 50px 20px;
    }
    .reference-description{
        padding: 20px;
    }
    .owl-item .slider2-text{
        top: 16%;
    }
    .btn-danger{
        padding: 10px 25px;
    }
    .our-partner .row .col-lg-3:nth-child(even){
        display: flex;
        justify-content: center;
    }
    .banner-text h1 {
        font-size: 25px;
    }
    .mission-section{
        padding: 20px;
    }
    .modal .modal-body .row .col-md-6 h1{
        font-size: 25px;
    }
    .modal-body{
        padding: 30px;
    }
    .modal-header{
        padding: 15px;
    }
    .about-banner{
        background-position: center;
    }
    .clearance-banner{
        background-position: center;

    }
    input{
        border: 1px solid var(--bs-blue) !important;
    }
    textarea{
        border: 1px solid var(--bs-blue) !important;
    }
}