*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'veranda', sans-serif;
}
html, body {
  height: 100%;
}

  body {
  display: flex;
  flex-direction: column;  

}


.wrapper{
  background: #171c24;
  position: fixed;
  width: 100%;
  z-index: 3;
}
.wrapper nav{
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
nav .content{
  display: flex;
  align-items: center;
}
nav .content .links{
  margin-left: 80px;
  display: flex;
 
}
.content .logo a{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.content .links li{
  list-style: none;
  line-height: 70px;
  
}
.content .links li a,
.content .links li label{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
  
}
.content .links li label{
  display: none;
}
.content .links li a:hover,
.content .links li label:hover{
  color: #000;
  background: #00FFFF;
}
.wrapper .search-icon,
.wrapper .menu-icon{
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.wrapper .menu-icon{
  display: none;
}
.wrapper #show-search:checked ~ .search-icon i::before{
  content: "\f00d";
}

.wrapper .search-box{
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wrapper #show-search:checked ~ .search-box{
  opacity: 1;
  pointer-events: auto;
}
.search-box input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fff;
  background: #171c24;
  padding: 0 100px 0 15px;
}
.search-box input::placeholder{
  color: #f2f2f2;
}
.search-box .go-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: #171c24;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.wrapper input[type="checkbox"]{
  display: none;
}

/* Dropdown Menu code start */
.content .links ul{
  position: absolute;
  background: #171c24;
  top: 80px;
  opacity: 0;
  visibility: hidden;
}
.content .links li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.content .links ul li a{
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px;
}
.content .links ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 4px);
}
.content .links ul ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 30px);
}


.content .links ul li{
  position: relative;
}
.content .links ul li:hover ul{
  top: 0;
}





/* Responsive code start */
@media screen 
  
  and (max-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1){
  .wrapper nav{
    max-width: 100%;
    padding: 0 20px;
    
  }
  nav .content .links{
    margin-left: 30px;
  }
  .content .links li a{
    padding: 8px 13px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input{
    padding: 0 100px 0 15px;
  }
}

@media screen 
    
    and (max-width: 1200px){
  .wrapper .menu-icon{
    display: block;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before{
    content: "\f00d";
  }
  nav .content .links{
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 375px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
    
  }
  nav #show-menu:checked ~ .content .links{
    left: 0%;
    
  }
  .content .links li{
    margin: 15px 20px;
  }
  .content .links li a,
  .content .links li label{
    line-height: 40px;
    font-size: 16px;
    display: block;
    padding: 6px 12px;
    cursor: pointer;
  }
  .content .links li a.desktop-link{
    display: none;
  }


  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul{
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
    
  }
  
  .content .links ul ul ul{
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
    
  }
  .content .links #show-features2:checked ~ ul,
  .content .links #show-features:checked ~ ul,
  .content .links #show-services:checked ~ ul,
  .content .links #show-items:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items1:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items2:checked ~ ul{
    max-height: 100vh;
  }
  
   .content .links #show-items3:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items4:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items5:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items6:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items7:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items8:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items9:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links #show-items11:checked ~ ul{
    max-height: 120vh;
  }
  
  .content .links #show-items12:checked ~ ul{
    max-height: 100vh;
  }
  
   .content .links #show-items13:checked ~ ul{
    max-height: 100vh;
  }
  
   .content .links #show-items14:checked ~ ul{
    max-height: 100vh;
  }
  
   .content .links #show-items15:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items16:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items17:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items18:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items19:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items20:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items21:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items22:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items23:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items24:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items25:checked ~ ul{
    max-height: 100vh;
  }
  
    .content .links #show-items26:checked ~ ul{
    max-height: 100vh;
  }
  
  .content .links ul li{
    margin: 7px 20px;
  }
  .content .links ul li a{
    font-size: 16px;
    line-height: 30px;
    border-radius: 5px!important;
  }
}

@media screen and (max-width: 400px){
  .wrapper nav{
    padding: 0 10px;
    
  }
  .content .logo a{
    font-size: 27px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon{
    width: 30px;
    right: 0;
  }
  .wrapper .search-box input{
    padding-right: 30px;
  }
}


@media screen and (max-width: 600px) {
  .title_message {
    visibility: hidden;
    clear: both;
    float: left;
    margin: 10px auto 5px 20px;
    width: 28%;
    display: none;
  }
}


.containerLogo{
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  text-align: center;
  background-color: #880ED4;
  background-image: linear-gradient(#880ED4, 60%, #00FFFF);
  color: white;
  align-items: center;
  justify-content: left;
}

.containerLogo > div {
  width: auto;
  height: auto;
  margin: 10px;
  text-align: center;
  font-size: 30px;
}

.containerLogo img { 
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.containerLogo h1{
  font-size: 50px;
  margin: 5px 0;
}

.containerLogo h2{
  font-size: 40px;
  margin: 5px 0;
}

.containerLogo p{
  font-size: 30px;
  margin: 5px 0;
}

.containerCu{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  text-align: left;
  background-color: #00FFFF;
  align-items: left;
  justify-content: center;
}

.containerCu > div {
  text-align: left;
  max-width: 50%;
  width: auto;
  height: auto;
  margin: 10px;
  font-size: 30px;
}

.containerCu img { 
  object-fit: cover;
  max-width: 100%;
  height: auto;
}


.containerCu h1{
  font-size: 50px;
  margin: 5px 0;
}

.containerCu h2{
  font-size: 40px;
  margin: 5px 0;
}

.containerCu p{
  font-size: 30px;
  margin: 5px 0;
}

.container1{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  text-align: left;
  background-color: #00FFFF;
  background-image: linear-gradient(#00FFFF, 90%, #dcd0ff);
  align-items: left;
  justify-content: center;
  height: 100%;
}

.container1 > div {
  text-align: left;
  max-width: 90%;
  margin: 10px;
  font-size: 30px;
}

.container1 img { 
  object-fit: cover;
  max-width: 100%;
  height: auto;
}


.container1 h1{
  font-size: 50px;
  margin: 5px 0;
}

.container1 h2{
  font-size: 40px;
  margin: 5px 0;
}

.container1 p{
  font-size: 30px;
  margin: 5px 0;
}

.container1T{
  display: flex;
  flex-wrap: nowrap;
  padding: 10px;
  text-align: left;
  background-color: #00FFFF;
  background-image: linear-gradient(#00FFFF, 90%, #dcd0ff);
  align-items: left;
  justify-content: center;
  
}

.container1T > div {
  text-align: left;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 10px;
  font-size: 24px;
  padding: 10px;
}

.container1T img { 
  object-fit: cover;
  max-width: 100%;
  height: auto;
}


.container1T h1{
  font-size: 40px;
  margin: 5px 0;
}

.container1T h2{
  font-size: 30px;
  margin: 5px 0;
}

.container1T h3{
  text-align: center;
  font-size: 30px;
  margin: 5px 0;
}

.container1T p{
  font-size: 20px;
  margin: 5px 0;
}


.container2{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  text-align: center;
  background-color: #dcd0ff;
  background-image: linear-gradient(#dcd0ff, 90%, white);
  color: black;
  align-items: center;
  justify-content: center;
}

.container2 > div {
  text-align: Center;
  width: auto;
  height: auto;
  margin: 10px;
  font-size: 30px;
}

.container2 img { 
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.container2 iframe {
  aspect-ratio: 16 / 9;
  min-width: 100%;
  max-width: 100%;
  
    }

.container2 video {
  aspect-ratio: 16 / 9;
  max-width: 50%;
  
    }

.container2 h1{
  font-size: 50px;
  margin: 5px 0;
}

.container2 h2{
  font-size: 40px;
  margin: 5px 0;
}

.container2 p{
  font-size: 30px;
  margin: 5px 0;
}

.container3{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.container3 > div {
  text-align: Center;
  width: auto;
  height: auto;
  margin: 10px;
  font-size: 30px;
}

.container3 img { 
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.container3 iframe {
  aspect-ratio: 16 / 9;
  min-width: 100%;
  max-width: 100%;
  
    }

.container3 h1{
  font-size: 50px;
  margin: 5px 0;
}

.container3 h2{
  font-size: 40px;
  margin: 5px 0;
}

.container3 p{
  font-size: 30px;
  margin: 5px 0;
}

.containerSlider{
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.containerSlider > div {
  align-items: center;
  justify-content: center;
  max-width: 90%;
  margin: 0px;
  font-size: 30px;
  padding: 0px;
}

.containerSlider h1{
  font-size: 50px;
  margin: 5px 0;
}

.containerSlider h2{
  font-size: 40px;
  margin: 5px 0;
}

.containerFooter{
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  background-color: black;
  color: white;
  padding: 0;
  text-align: left;
  align-items: left;
  justify-content: left;
}

.containerFooter > div {
  text-align: left;
  width: auto;
  height: auto;
  margin: 0px;
  font-size: 20px;
}

.containerFooter img { 
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.containerFooter iframe {
  aspect-ratio: 16 / 9;
  min-width: 100%;
  max-width: 100%;
  
    }

.containerFooter h1{
  font-size: 50px;
  margin: 5px 0;
}

.containerFooter h2{
  font-size: 40px;
  margin: 5px 0;
}

.containerFooter p{
  font-size: 30px;
  margin: 5px 0;
}

        .owl-carousel {
            position: relative;
        }
        
        .owl-dots {
            margin-top: 10px;
            text-align: center;
        }
        
        .owl-dot span {
            background-color: black;
            border-radius: 50%;
            display: inline-block;
            height: 8px;
            margin: 0 4px;
            width: 8px;
        }
        
        .owl-nav {
            font-size: 40px;
        }
        
        .owl-carousel .owl-nav .owl-prev {
            bottom: -15px;
            left: 0;
            position: absolute;
        }
        
        .owl-carousel .owl-nav .owl-next {
            bottom: -15px;
            right: 0;
            position: absolute;
        }
        
        .item {
            background-color: white;
            height: 300px;
            position: relative;
            text-align: center;
            width: 100%;
        }
        
        .item img {
            display: inline-block !important;
            height: 100%;
            width: auto !important;
        }
        
        .caption {
            background-color: rgba(0, 0, 0, 0.8);
            bottom: 0;
            color: white;
            font-size: 14px;
            left: 0;
            padding: 10px;
            position: absolute;
            width: 100%;
        }
        
        .caption a {
            color: red;
        }


.footer {
  flex-shrink: 0; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
  padding: 20px;
   margin-top: auto;
}
 
