* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
:root {
    --main-color: #00ADB5;
    --main-color-alt: #09d6e0;
    --main-transition: 0.3s;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    
  }
.test{
    width: 100%;
    height:90vh;
}
.bak {
    background-color: #F2F2F2;
    position: relative;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    justify-content: center;
    gap: 25px;
    text-align: center;
}
.ftr
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF;
    padding: 10px;
    margin-bottom: 30px;
    box-shadow: 1PX 1PX 12PX #eee;
    position: relative;
    overflow: hidden;
    transition:  0.5s ease-in-out ;
    border-radius: 5px;
    min-height: 270px;
    transition:0,8s ease-in-out  ;
    -webkit-transition:0,8s ease-in-out  ;
    -moz-transition:0,8s ease-in-out  ;
    -ms-transition:0,8s ease-in-out  ;
    -o-transition:0,8s ease-in-out  ;
}
 .ftr .text
{
    display: none;
    transition:0,8s ease-in-out  ;
    -webkit-transition:0,8s ease-in-out  ;
    -moz-transition:0,8s ease-in-out  ;
    -ms-transition:0,8s ease-in-out  ;
    -o-transition:0,8s ease-in-out  ;
}
 .ftr:hover .text
{
display: inline-block;
margin-top: 10px;
font-size: 14px;
}
 .ftr:hover .icon i 
{
    color: #fff;
    transition:0,8s ease-in-out  ;
    -webkit-transition:0,8s ease-in-out  ;
    -moz-transition:0,8s ease-in-out  ;
    -ms-transition:0,8s ease-in-out  ;
    -o-transition:0,8s ease-in-out  ;
    font-size: 2em;
}
.ftr:hover  .title
{   
     color: #fff;
    transition:0,8s ease-in-out  ;
    -webkit-transition:0,8s ease-in-out  ;
    -moz-transition:0,8s ease-in-out  ;
    -ms-transition:0,8s ease-in-out  ;
    -o-transition:0,8s ease-in-out  ;
    font-size: 1.5em;

}
.ftr:hover 
{
    background-color:  var(--main-color);
    color: #FFF;
}
 .ftr .icon i
 {
     color:  var(--main-color);
     font-size: 4em;
     
     overflow: hidden;
     transition:  0.5s ,0.1 ease-in-out color;
 }
 .ftr .title {
     color: #3F3D56;
     font-size: 2em;
     font-weight: 600;
     text-transform: uppercase;
     
     transition:  0.5s ,0.1 ease-in-out ;
 }
 
  .special-title:hover {
    color: white;
    transition-delay: 0.2s;
  }

 .special-title::before {  
    transform: scaleX(0);
    transform-origin: bottom right;
  }
  
  .special-title:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .special-title::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0 0 0 0;
    background:  var(--main-color);
    z-index: -1;
    transition: transform .3s ease;
    
  }
  
  .special-title {
    margin: 0 auto 80px;
    color: #3F3D56;
    padding: 10px 20px;
    border: 5px dashed #f2f2f2;
    border-radius: 5px;
    box-shadow: 1PX 1PX 12PX #eee;
    position: relative;
    width: fit-content;
    font-size: 30px;
  }
  .special-back {
    
    margin: 0 auto 80px;
    color: #3F3D56;
    padding: 10px 20px;
    border: 5px dashed #fff;
    border-radius: 5px;
    box-shadow: 1PX 1PX 12PX #eee;
    position: relative;
    width: fit-content;
    font-size: 30px;
  
    --background-color: #E3E3E3;
    --border-size: 2px;
    --accent-color: #00ADB5;
  }

  .special h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--accent-color);
  
    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
  }
  
  .special h2:hover::before,
  .special h2:focus::before {
    transform: scaleX(1);
  }
  
  .special h2 {
    transition: color 300ms ease-in-out;
    z-index: 1;
  }
  
  
  .special h2:hover,
  .special h2:focus {
    color: white;
  }
 
/* Start Stats */
.stats {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    background-image: url("../imgs/stats.jpg");
    background-size: cover;
    min-height: 300px;
  }
  .stats::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 95%);
  }
  .stats h2 {
    font-weight: bold;
    font-size: 40px;
    width: fit-content;
    margin: 0 auto 50px;
    position: relative;
  }
  .stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .stats .box {
    background-color: white;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    opacity: 0.8;
    transition: var(--main-transition);
  }
  .stats .box::before,
  .stats .box::after {
    content: "";
    position: absolute;
    width: 2px;
    background-color: var(--main-color);
    transition: 1s;
    height: 0;
  }
  .stats .box::before {
    top: 0;
    right: 0;
  }
  .stats .box::after {
    left: 0;
    bottom: 0;
  }
  .stats .box:hover {
    opacity: 1;
  }
  .stats .box:hover::before,
  .stats .box:hover::after {
    height: 100%;
  }
  .stats .box .number {
    display: block;
    font-size: 50px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .stats .box .text {
    color: var(--main-color);
    font-style: italic;
    font-size: 20px;
    font-weight: bold;
  }
  .footer {
    background-color: #393E46;
    padding: 70px 0 0;
  }
  @media (max-width: 767px) {
    .footer {
      text-align: center;
    }
  }
  .footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
  }
  .footer .box h3 {
    color: white;
    font-size: 50px;
    margin: 0 0 20px;
  }
  .footer .box .social {
    display: flex;
  }
  @media (max-width: 767px) {
    .footer .box .social {
      justify-content: center;
    }
  }
  .footer .box .social li {
    margin-right: 10px;
  }
  .footer .box .social li a {
    background-color: #313131;
    color: #b9b9b9;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    transition: var(--main-transition);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
  .footer .box .social .facebook:hover {
    background-color: #1877f2;
  }
  .footer .box .social .twitter:hover {
    background-color: #4A88F5;
  }
  .footer .box .social .youtube:hover {
    background-color: #ff0000;
  }
  .footer .box .text {
    line-height: 2;
    color: #b9b9b9;
  }
  .footer .box .links li {
    padding: 15px 0;
    transition: var(--main-transition);
  }
  .footer .box .links li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  .footer .box .links li:hover {
    padding-left: 10px;
  }
  .footer .box .links li:hover a {
    color: white;
  }
  .footer .box .links li a {
    color: #b9b9b9;
    transition: var(--main-transition);
  }
  .footer .box .links li a::before {
    font-family: "Font Awesome 6 Pro";
    content: "\F101";
    font-weight: 900;
    margin-right: 10px;
    color: var(--main-color);
  }
  .footer .box .line {
    display: flex;
    align-items: center;
    color: #b9b9b9;
    margin-bottom: 30px;
  }
  @media (max-width: 767px) {
    .footer .box .line {
      flex-direction: column;
    }
  }
  .footer .box .line i {
    font-size: 25px;
    color: var(--main-color);
    margin-right: 10px;
  }
  @media (max-width: 767px) {
    .footer .box .line i {
      margin-right: 0;
      margin-bottom: 15px;
    }
  }
  .footer .box .line .info {
    line-height: 1.7;
    flex: 1;
  }
  .footer .box .line .info span {
    display: block;
  }
  .footer .footer-gallery img {
    width: 78px;
    border: 3px solid white;
    margin: 2px;
  }
  .footer .copyright {
    padding: 25px 0;
    text-align: center;
    color: white;
    margin: 50px 0 0;
    border-top: 1px solid #444;
  }
  .discount {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
  }
  .discount .image {
    background-image: url(../imgs/discount-background1.jpg);
    background-size: cover;
    color: white;
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: change-background 10s linear infinite;
  }
  .discount .image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 170, 179,97%);
    z-index: -1;
  }
  @media (max-width: 991px) {
    .discount .image {
      flex-basis: 100%;
    }
  }
  .discount .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 50%;
    padding-bottom: 50px;
  }
  @media (max-width: 991px) {
    .discount .form {
      flex-basis: 100%;
    }
  }
  .discount .form .input {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 15px;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: #f9f9f9;
    caret-color: var(--main-color);
  }
  .discount .form textarea.input {
    resize: none;
    height: 200px;
  }
  .discount .form .input:focus {
    outline: none;
  }
  .discount .form [type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: var(--main-transition);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  .discount .form [type="submit"]:hover {
    background-color: var(--main-color-alt);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
  .discount .content {
    text-align: center;
    padding: 0 20px;
  }
  .discount .content h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .discount .content p {
    line-height: 1.6;
    font-size: 18px;
    max-width: 500px;
  }
  .discount .content img {
    width: 300px;
    max-width: 100%;
  }
  .discount .contentt img {
    width: 500px;
    max-width: 100%;
  }
  .callout-to-action {
    background: url(../images/callout-bg.jpg) center center fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0;
    height: 100%;
    width: 100%;
    background-color: rgb(255 255 255 / 95%);
}
.carousel-caption h1  {
 color: #f3f3f3!important;
 text-shadow: 2px 2px var(--main-color);
}
.title-a {
  font-weight: 800;
    font-size: 3EM;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 20px;
    text-shadow: 2px 2px var(--main-color);
}
.VEDIO{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4em 0;
}
.VEDIO  iframe {
  width: 300px;
  height: 270px;
}
body{
	background-color: #dbddf1;
}
.gallery{
	padding: 80px 0px;
}
img{
	max-width: 100%;
}
.gallery img{
	background: #fff;
	padding: 15px;
	width: 100%;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
	cursor: pointer;
}
#gallery-popup .modal-img{
	width: 100%;
}

.color-nav{
  color: #f5f5f5 !important;
  background-color: #222831;
}
.navbar-light .navbar-brand {
  color: rgb(255, 255, 255) !important;
}

h5#offcanvasNavbarLabel{
  color: black;
}
.carousel-caption {

  TOP: 40%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.VEDIO-responsive {
  display: flex;
  flex-direction: column-reverse;
}
.VEDIO-responsive h2{
  width: 300px;
  padding: 25px 5px ;
  font-size: 20px;
  height: 100PX;
  text-transform: capitalize;
}
.gallery-holder {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 25px ;
}
.gallery-holder::-webkit-scrollbar {
  display: none;
}
.img-holder {
  min-width: 300px;
}
.img-holder img {
  width: 100%;
  height: 100%;
}

.title-holder  {
  display: flex;
  justify-content: space-between;
  padding: 10px 25px ;
  scroll-behavior: smooth;
}
.title-holder  i {
  font-size: 2em;
  cursor: pointer;
  color: var(--main-color);
}