@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --first_color: #0099aa;
  --sec_color: #2398a7;
  --third-color: #77b0aa;
  --fourth-color: #e3fef7;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
  background-color: whitesmoke;
}

.btn {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}

.btn button {
  font-family: Poppins;
  display: inline-block;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--first_color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--first_color);
  cursor: pointer;
}

.btn button::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--first_color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}
.btn button:hover {
  color: #fff;
}

.btn button::before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.btn button:hover::before {
  top: -30px;
  left: -30px;
}

.btn button:active::before {
  background: var(--first_color);
  transition: background 0s;
}
.btn button:nth-child(2) {
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}
/*------------------------------ nav bar ------------------------------*/
nav {
  width: 100%;
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 110;
  position: sticky;
  top: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo a img {
  height: 70px;
  width: 70px;
  margin-right: 10px;
  cursor: pointer;
}

nav .logo a {
  text-decoration: none;
}

nav .logo a h1 {
  font-size: 1.3rem;
  background: rgb(4, 48, 83);
  background: linear-gradient(
    90deg,
    rgba(4, 48, 83, 1) 0%,
    rgba(18, 99, 135, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
nav ul li {
  margin-left: 0.8rem;
}
nav ul li a {
  text-decoration: none;
  color: var(--first_color);
  font-size: 95%;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 15px;
  transition: all 0.3s ease-out;
}

nav ul li a:hover,
nav ul li .dropdown .dropbtn:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

nav ul .insta {
  font-size: 17px;
  background: #f09433;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 2px 8px;
}
nav ul .insta:hover{
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #eee;
}
nav ul .youtube {
  font-size: 17px;
  color: #ff0000;
  padding: 2px 8px;
}

nav ul .youtube:hover {
  background: #ff0000;
  color: #fff;
}

nav ul li .dropdown {
  float: left;
  overflow: hidden;
}

nav ul li .dropdown .dropbtn {
  font-size: 95%;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: var(--first_color);
  background: none;
  border-radius: 15px;
}

nav ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav ul li .dropdown .dropdown-content a {
  border-radius: 0;
  float: none;
  color: var(--first_color);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

nav ul li .dropdown .dropdown-content a:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

nav ul li .dropdown:hover .dropdown-content {
  display: block;
}

.lines_icon {
  display: none;
  cursor: pointer;
}

.lines_icon .line {
  width: 25px;
  height: 1px;
  background-color: rgba(4, 48, 83, 1);
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.lines_icon-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.lines_icon-active .line:nth-child(2) {
  width: 0px;
}

.lines_icon-active .line:nth-child(1),
.lines_icon-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.lines_icon-active .line:nth-child(1) {
  transform: translateY(12px);
}

.lines_icon-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  display: block;
  position: fixed;
  top: 0;
  left: -60%;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 20% 5%;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 115;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: var(--first_color);
  font-size: 95%;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 15px;
  transition: all 0.5s ease-out;
}

.menubar ul li a:hover {
  background: #a2e0ff;
}

.menubar ul li .insta {
  font-size: 17px;
  background: #f09433;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 2px 8px;
}

.menubar ul li .insta:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #eee;
}

.menubar ul li .youtube {
  font-size: 17px;
  color: #ff0000;
  padding: 2px 8px;
}

.menubar ul li .youtube:hover {
  background: #ff0000;
  color: #fff;
}

.menubar ul li .dropdown {
  float: left;
  overflow: hidden;
}

.menubar ul li .dropdown .dropbtn {
  font-size: 95%;
  margin-bottom: 32px;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: var(--first_color);
  background: none;
  border-radius: 15px;
}

.menubar ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.menubar ul li .dropdown .dropdown-content a {
  border-radius: 0;
  float: none;
  color: var(--first_color);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.menubar ul li .dropdown .dropdown-content a:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

.menubar ul li .dropdown:hover .dropdown-content {
  display: block;
}
/*------------------------------ hero section -----------------------------*/

.slider {
  height: 100vh;
  margin-top: -60px;
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.slider .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .list .item .content {
  position: absolute;
  top: 20%;
  width: 35%;
  max-width: 80%;
  left: 23%;
  transform: translateX(-50%);
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 35px 0 35px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider .list .item .content .title {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3em;
  width: 100%;
  color: var(--first_color);
}

.slider .list .item .content .description {
  font-size: 1.1em;
  line-height: 1.5em;
  width: 100%;
}

/* Thumbnail Section  */
.thumbnail {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

/* nextPrevArrows Section  */
.nextPrevArrows {
  position: absolute;
  top: 85%;
  left: 5.75%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nextPrevArrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--first_color);
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
  cursor: pointer;
}
.nextPrevArrows button:hover {
  background-color: #fff;
  color: #000;
}

/* Animation Part */
.slider .list .item:nth-child(1) {
  z-index: 1;
}

/* animation text in first item */
.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .button {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.slider .list .item:nth-child(1) .content .title {
  animation-delay: 0.4s !important;
}
.slider .list .item:nth-child(1) .content .type {
  animation-delay: 0.6s !important;
}
.slider .list .item:nth-child(1) .content .description {
  animation-delay: 0.8s !important;
}
.slider .list .item:nth-child(1) .content .buttons {
  animation-delay: 1s !important;
}

/* Animation for next button click */
.slider.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.slider.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.slider.prev .list .item img {
  z-index: 100;
}

@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}

.slider.next .thumbnail {
  animation: effectNext 0.5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(150px);
  }
}

/* Animation for prev button click */
.slider.prev .list .item:nth-child(2) {
  z-index: 2;
}

.slider.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame {
  to {
    width: 150px;
    height: 220px;
    bottom: 50px;
    left: 50%;
    border-radius: 20px;
  }
}

.slider.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.slider.next .nextPrevArrows button,
.slider.prev .nextPrevArrows button {
  pointer-events: none;
}

.slider.prev .list .item:nth-child(2) .content .title,
.slider.prev .list .item:nth-child(2) .content .type,
.slider.prev .list .item:nth-child(2) .content .description,
.slider.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}

/*------------------------------ markting section ------------------------------*/
.markting-sec {
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f7f7f7;
}

.markting-sec .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  margin: 40px 0;
}

.content .wrapper-video {
  position: relative;
  height: 360px;
  box-shadow: 10px 15px 26px 5px #b4e5ff;
  margin-bottom: 30px;
}

.content .wrapper-video .iframe {
  width: 100%;
  height: 100%;
}

.content .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 45px;
}

.content .cards .card {
  display: block;
  position: relative;
  max-width: 30%;
  background-color: #f2f8f9;
  border-radius: 5px;
  padding: 32px 24px;
  margin: 12px;
  text-align: center;
  z-index: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px #b4e5ff;
}

.content .cards .card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background-color: #86cbf3;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}

.content .cards .card:hover:before {
  transform: scale(40);
}

.content .cards .card p {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3em;
}
.content .cards .card:hover p {
  transition: all 0.3s ease-out;
}

.content .cards .card img {
  width: 60px;
}
.content .cards .card .go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #86cbf3;
  border-radius: 0 4px 0 32px;
}

.content .cards .card .go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

/*------------------------------ why chose section ------------------------------*/

.why-chose {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  margin: 50px 0 50px 0;
}

.why-chose .head h1 {
  margin: 40px 0;
  color: var(--sec_color);
  border-bottom: 2px solid var(--sec_color);
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
}

.why-chose .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  gap: 30px 20px;
}
.why-chose .cards .card {
  min-width: 280px;
  max-width: 280px;
  border: rgba(0, 212, 255, 1);
  border-radius: 20px;
  transition: all 0.3s;
}

.why-chose .cards .card2 {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0;
  transition: all 0.4s;
}

.why-chose .cards .card2 img {
  width: 60px;
}

.why-chose .cards .card2:hover {
  transform: scale(1);
  border-radius: 20px;
  background-color: rgba(0, 212, 255, 1);
}

.why-chose .cards .card:hover {
  box-shadow: 0px 0px 30px 1px rgb(0, 212, 255, 1);
  background-color: rgba(0, 212, 255, 1);
}

/*------------------------------ cursos section ------------------------------*/

.cursos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  margin: 70px 0 50px 0;
}

.cursos .head h1 {
  margin: 40px 0;
  color: var(--sec_color);
  border-bottom: 2px solid var(--sec_color);
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
}

.cursos .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  gap: 30px 20px;
}

.cursos .cards .card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  padding: 2px;
  border-radius: 24px;
  overflow: hidden;
  line-height: 1.6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.cursos .cards .card::before {
  content: "";
  position: absolute;
  height: 160%;
  width: 160%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(4, 48, 83, 1) 0%,
    rgba(18, 99, 135, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  transform-origin: center;
  animation: moving 4.8s linear infinite paused;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.cursos .cards .card:hover::before {
  animation-play-state: running;
  z-index: -1;
  width: 20%;
}
.cursos .cards .card:hover {
  box-shadow: 0rem 6px 13px rgba(10, 60, 255, 0.1),
    0rem 24px 24px rgba(10, 60, 255, 0.09),
    0rem 55px 33px rgba(10, 60, 255, 0.05),
    0rem 97px 39px rgba(10, 60, 255, 0.01), 0rem 152px 43px rgba(10, 60, 255, 0);
  scale: 1.05;
  color: #000000;
}
.cursos .cards .card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.cursos .cards .card .content img {
  width: 70px;
  z-index: 1;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.cursos .cards .card .content .title {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  z-index: 1;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.cursos .cards .card .content p {
  z-index: 1;
  opacity: 0.8;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.cursos .cards .card .content .btn {
  margin-top: 0;
  bottom: 0;
}

.cursos .cards .card .content .btn button {
  cursor: pointer;
  left: 50px;
}

.cursos .cards .card .content .title,
.cursos .cards .card .content p {
  color: #000000;
}

@keyframes moving {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*------------------------------ slider videos section ------------------------------*/

.videos {
  width: 100%;
  background: #009cdf34;
}

.videos .container {
  width: 100%;
  padding: 0 5%;
  height: 90vh;
  background-color: #ffffff00;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.videos .container .content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.videos .container .content .slider-vid {
  width: 100%;
  height: 100%;
}

.videos .container .content ul {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  flex-wrap: wrap;
}

.videos .container .content ul li {
  list-style: none;
  cursor: pointer;
  margin: 10px;
  max-width: 120px;
  height: 150px;
}

.videos .container .content ul li video {
  transition: all 0.3s;
  height: 100%;
  border: 1px solid white;
}

.videos .container .content ul li video:hover {
  transform: scale(1.1);
}

.videos .container .content video {
  width: 100%;
  height: 80%;
}

/*------------------------------ plan section ------------------------------*/

.plan {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  margin: 50px 0 50px 0;
}

.plan .head h1 {
  margin: 40px 0;
  color: var(--sec_color);
  border-bottom: 2px solid var(--sec_color);
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
}

.plan .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  gap: 30px 20px;
}
.plan .cards .card {
  max-width: 350px;
  border: rgba(0, 212, 255, 1);
  border-radius: 20px;
  transition: all 0.3s;
}

.plan .cards .card2 {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0;
  transition: all 0.4s;
}

.plan .cards .card .card2 i {
  font-size: 35px;
  margin: 10px 0;
}

.plan .cards .card2:hover {
  transform: scale(1);
  border-radius: 20px;
  background-color: rgba(0, 212, 255, 1);
}

.plan .cards .card:hover {
  box-shadow: 0px 0px 30px 1px rgb(0, 212, 255, 1);
  background-color: rgba(0, 212, 255, 1);
}

/*------------------------------ Opinions section ------------------------------*/

.Opinions {
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.Opinions .head {
  display: flex;
  justify-content: center;
}

.Opinions .head h1 {
  margin: 40px 0;
  color: black;
  border-bottom: 2px solid black;
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
}

.Opinions .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  margin: 40px 0;
  gap: 100px 0;
}

.Opinions .content .wrapper-video {
  position: relative;
  width: 50%;
  height: 360px;
  box-shadow: 0 18px 20px 6px #b4e5ff;
  margin-bottom: 30px;
}

.Opinions .content .wrapper-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Opinions .content .wrapper-video .controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
}

.Opinions .content .wrapper-video .controls .video_btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

input[type="range"] {
  width: 40%;
  margin: 0 8px;
}

.Opinions .content .slider {
  position: relative;
  height: auto;
  width: 90%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.Opinions .content .slider .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.Opinions .content .slider .slides .slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}

.Opinions .content .slider .slides .slide img {
  margin-bottom: 10px;
}

.Opinions .content .slider .slides .slide p {
  font-size: 14px;
  margin-bottom: 10px;
  width: 90%;
}

.Opinions .content .slider .prev,
.Opinions .content .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 212, 255, 1);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
}
.Opinions .content .slider .prev {
  left: 10px;
}

.Opinions .content .slider .next {
  right: 10px;
}

/*------------------------------ footer section ------------------------------*/
.footer {
  margin: 20px auto 0 auto;
  width: 100%;
  padding: 0 5%;
  background: #86cbf3;
}

.footer .heading {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}

.footer .heading h1 {
  font-size: 30px;
  border-bottom: 2px solid black;
}

.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .container .accordion {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  top: 0;
}

.footer .container .accordion .contentBx {
  position: relative;
  margin: 10px 20px;
  width: 45%;
}

.footer .container .accordion .contentBx .label {
  position: relative;
  padding: 10px;
  background: #2398a7;
  color: #fff;
  cursor: pointer;
}

.footer .container .accordion .contentBx .label::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.footer .container .accordion .contentBx.active .label::before {
  content: "-";
}

.footer .container .accordion .contentBx .content {
  position: relative;
  background: #fff;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  overflow-y: auto;
}

.footer .container .accordion .contentBx.active .content {
  height: auto;
  padding: 10px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgb(22, 192, 0);
  padding: 10px;
  border-radius: 30%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.whatsapp i {
  font-size: 25px;
}

.free {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.free button {
  --black: #2398a7;
  --ch-black: #2398a7;
  --eer-black: #2398a7;
  --night-rider: #002529;
  --white: #ffffff;
  --af-white: #f3f3f3;
  --ch-white: #e1e1e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  border: none;
  color: white;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition-duration: 2s;
  background-color: var(--ch-black);
}

.free button::before,
.free button::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 10px;
  background: linear-gradient(
    45deg,
    var(--ch-black),
    var(--eer-black),
    var(--night-rider),
    var(--ch-white),
    var(--night-rider),
    var(--eer-black),
    var(--ch-black),
    var(--ch-black)
  );
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.free button::after {
  filter: blur(50px);
}
