/* */

/* Header */

header {
  position: absolute;
  width: 100%;
  z-index: 999;
  padding: 25px 0;
  background-color: transparent;
  display: block;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.nav {
  display: inherit;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  width: 100%;
}

.logo {
  width: 200px;
}
.logo a {
  display: flex;
}

.dark-scheme .whitelogo,
.light-scheme .darklogo {
  opacity: 1;
  display: block;
}
.light-scheme .whitelogo,
.dark-scheme .darklogo {
  opacity: 0;
  display: none;
}

.menu-links {
  left: 100px;
  line-height: 1;
  margin: auto;
}

.menu-links ul {
  margin: 0;
}

.menu-links ul li {
  display: inline-flex;
  position: relative;
  text-align: left;
}

.menu-links ul li.menusubmenu::after {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f107";
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  color: #fff;
}

.menu-links ul li.menusubmenu:hover::after {
  transform: rotate(180deg);
}

.menu-links ul li a {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 14px;
  /* line-height: 150%; */
  display: block;
  position: relative;
  padding: 10px 0;
  margin: 0 10px;
  color: #fff;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.light-scheme .menu-links ul li a,
.light-scheme .menu-links ul li.menusubmenu::after {
  color: #191c26 !important;
}

.light-scheme .line {
  stroke: #191c26;
}

.menu-links ul li:hover a,
.menu-links ul li > .submenu > li:hover a {
  color: #0050a6 !important;
}

.menu-links ul li a:after {
  content: "";
  background: #fff;
  width: 0%;
  height: 2px;
  left: 0;
  display: block;
  position: absolute;
  border-radius: 50%;
  margin: 10px auto;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-links ul li a:hover::after {
  width: 100%;
  color: #0050a6 !important;
}

header .rightmenu {
  margin: 0;
}

.rightmenu li.bordernav a {
  background-color: #1143cc;
  /*border-radius: 50px;*/
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 40px;
  gap: 10px;
  color: #fff;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 2px 1px #191c26;
}

.rightmenu li.bordernav a:after {
  content: none;
}

.rightmenu li.bordernav a:hover {
  box-shadow: 0 0 12px -2px #191c26;
}

.menu-links ul li > .submenu {
  position: absolute;
  left: -60px;
  top: 50px;
  visibility: hidden;
  /*border-radius: 5px;*/
  width: 200px;
  background-color: #fff;
  display: block;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.68, -0.2, 0.265, 1.55);
}

.menu-links ul li:hover > .submenu {
  left: 0;
  opacity: 1;
  visibility: visible;
  padding: 25px 10px;
}

.menu-links ul li > .submenu > li {
  display: flex;
}

.menu-links ul li > .submenu > li a {
  color: #191c26 !important;
  font-weight: 400 !important;
}

.mobilemenu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  outline: none !important;
}

.line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/* Slider*/

/* Slider */

#slider .swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-slide .slideImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.swiper-slide .sliderContent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 170px 150px;
  text-align: left;
  background: #12121286;
}

.sliderContent::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  display: block;
  left: 0;
  z-index: 99999;
  background: linear-gradient(
    180deg,
    rgba(13, 19, 37, 0.5) 46.88%,
    rgba(0, 0, 0, 0.5) 99.97%,
    rgba(0, 0, 0, 0.5) 99.98%,
    rgba(0, 0, 0, 0.5) 99.99%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: -1;
}

.swiper-slide .sliderContent .slideTitle {
  color: #fff;
  font-size: 4.2rem;
  display: block;
  font-weight: bold;
  font-family: "Montserrat";
}

.swiper-slide .sliderContent .heading h3 {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  font-weight: lighter;
  font-family: "Montserrat";
}

.swiper-slide .sliderContent .slideContent {
  color: #fff;
  padding: 0 50% 0 0;
  font-weight: 300;
  font-size: 1rem;
}

.swiper-slide .sliderContent .slideDetay {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-top: 25px;
  font-size: 14px;
}

.swiper-slide .sliderContent .slideDetay img {
  width: 65px !important;
  object-fit: contain;
}

.swiper-slide .sliderContent .slideDetay .playicon {
  position: relative;
  display: inline-block;
}

.swiper-slide .sliderContent .slideDetay .playicon::before {
  content: "";
  width: 100%;
  height: 100%;
  /* background: #000; */
  position: absolute;
  left: 0;
  top: 0;
  /* border: 1px solid #f24646; */
  border-radius: 50%;
  box-shadow: 0 0 8px -3px #f24646;
}

.swiper-slide .sliderContent .slideDetay .playicon::after {
  content: "";
  width: 100%;
  height: 100%;
  /* background: #000; */
  transform: scale(1.3);
  position: absolute;
  left: 0;
  top: 0;
  /* border: 1px solid #f24646; */
  border-radius: 50%;
  box-shadow: 0 0 8px -1px #f24646;
  transition: 0.5s;
}

.swiper-slide .sliderContent .slideDetay:hover .playicon::before,
.swiper-slide .sliderContent .slideDetay:hover .playicon::after {
  opacity: 0;
}

.swiper-pagination {
  position: absolute;
  left: auto !important;
  right: 50px;
  width: 100px !important;
  height: auto;
  display: block;
  justify-content: center;
  align-items: center;
  bottom: 9% !important;
  transform: translateY(-10%);
}

.swiper-pagination span {
  display: block !important;
  margin: 20px 0 20px auto !important;
  width: 15px;
  height: 5px;
  background: #ffffff !important;
  border-radius: 5px;
  transition: all 0.2s ease-out 0.1s, margin 0.1s ease, transform 0.1s ease;
}

.swiper-pagination span.swiper-pagination-bullet-active,
.swiper-pagination span:hover {
  width: 30px !important;
}

a#prevBtn,
a#nextBtn {
  position: absolute;
  z-index: 999;
  color: #fff;
  font-size: 1rem;
  margin: 0 15px;
  width: 75px;
  font-weight: 400;
  font-family: "Montserrat";
  transition: 0.5s;
}

a#prevBtn {
  left: 0;
  bottom: 5%;
}

a#nextBtn {
  left: 5%;
  bottom: 5%;
}

@media (min-width: 1440px) {
    .menu-links ul li a {
      font-size: 1em;
      margin: 0 12px;
    }
  
    .logo {
      margin-right: 50px;
    }
  
    .menu-links ul li > .submenu {
      width: 280px;
    }
  
    .swiper-slide .sliderContent {
      padding: 265px 10%;
    }
    
  }
  

@media (max-width: 1191px) {
    .logo {
      margin-right: 15px;
    }
  
  
    .menu-links ul li a {
      font-size: 0.8rem;
      margin: 0 5px;
    }
  
    .menu-links ul li.bordernav a {
      padding: 10px 25px;
    }
  
    .slideTitle {
      font-size: 4.4rem !important;
    }
  
    .slideContent {
      padding: 0 50px 0 0 !important;
    }
  
  }


@media (max-width: 991px) {
  .sliderContent {
    padding: 50px;
  }
  .nav {
    display: flex;
    align-items: center;
    padding: 0 5%;
    width: 100%;
    justify-content: center;
    gap: 30px;
  }
  .mobilemenu {
    display: contents !important;
  }

  .menu-links {
    position: absolute;
    top: 100%;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
    width: 100%;
    background-color: #fff;
    transition: 0.5s cubic-bezier(0.68, -0.2, 0.265, 1.55);
  }

  .menu-links.active {
    opacity: 1;
    visibility: visible;
    height: 80vh;
  }

  .menu-links ul li {
    display: block;
  }

  .menu-links ul li a {
    font-size: 1.2rem;
    padding: 15px;
    color: #191c26;
  }

  .menu-links ul li > .submenu {
    background-color: #fff;
    box-shadow: 0 5px 7px -2px #191c26;
    z-index: 999;
    display: none;
    height: 100%;
  }

  .menu-links ul li.active > .submenu {
    display: block;
    position: relative;
    left: 0 !important;
    width: 100%;
    box-shadow: none !important;
    padding: 0;
    top: 0 !important;
  }

  .menu-links ul li.active > .submenu a {
    font-size: 12px;
  }

  .menu-links ul li.menusubmenu::after {
    color: #191c26;
    position: absolute;
    top: 15px;
    left: 25%;
  }

  .menu-links ul li.bordernav {
    display: flex !important;
  }

  .menu-links ul li.menusubmenu:hover::after {
    transform: rotate(-90deg) !important;
  }

  .mobilemenu {
    margin: 0 0 0 auto !important;
    float: right;
  }
}
