html,
body {
  margin: 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;

  font-family: 'Work Sans', sans-serif;
}

/* HOME PAGE */
.page {
  background-color: #462a72;
  position: relative;
  display: block;
  min-height: 100vh;
  color: #ffffff;
}

.btn {
  border-radius: 0px !important;
  font-weight: bold !important;
  width: 100% !important;
  max-width: 200px;
}

/* NAV BAR */

nav.nav__bar__about {
  background: #462a72;
}

.first__nav {
  display: flex;
  flex-direction: row;
}

.nav__brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo,
.nav__bar__about,
.nav__bar__about .nav__link a {
  color: #ffffff;
  cursor: pointer;
}

.logo:hover {
  color: #ffffff;
}

.nav__links {
  display: flex;
  list-style-type: none;
  margin: 16px 0;
}

.main__content {
  width: 100%;
  max-width: 1830px;
  margin: 0 auto;
  padding: 5px 5%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  height: calc(100vh - 5rem);
  position: relative;
  text-align: center;
}

.main__title {
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  z-index: 2;
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6vw;
  font-weight: bold;
  width: 1200px;
  margin: auto;
}

.bck__img {
  max-height: 25vw;
  width: 100%;
  object-fit: contain;
  z-index: 1;
}

.main__watch {
  color: white;
  font-size: 15px;
  text-decoration: none;
  padding-top: 50px;
  /* letter-spacing: 5px; */
}

.main__watch:hover {
  color: white;
}

/* INTRODUCTION TEXT */

.intro__section {
  height: 100vh;
  width: 100%;
  background-color: white;
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  padding: 5vh 0 0vh 0;
}

.intro__text {
  display: flex;
  padding-left: 3rem;
  padding-right: 3rem;
  align-items: center;
  margin-top: 20px;
}

.intro__title {
  flex: 0.45;
}

.intro__title h2 {
  font-weight: medium;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  font-size: 30px;
  /* max-width: 35vw; */
}

.intro__p {
  flex: 0.55;
}

.intro__p p {
  color: #5e5e5e;
  font-size: 1.15rem;
  padding-left: 60px;
}

.banner__img {
  margin-top: 100px;
  /* margin-bottom: 100px; */
  max-height: 45vw;
  width: 100%;
  object-fit: contain;
  flex: 0.5;
  z-index: 1;
  position: relative;
}

.banner__image {
  max-height: 25vw;
  width: 100%;
  object-fit: cover;
  position: relative;
  height: 100%;
}

/* ------------------------------------- SLIDER ---------------------------- */

#slider {
  margin: 0 auto;
  width: 80vw;
  max-width: 100%;
  text-align: center;
}

#slider input[type='radio'] {
  display: none;
}

#slider label {
  cursor: pointer;
  text-decoration: none;
}

#slides {
  padding: 10px;
  /* border: 3px solid #ccc; */
  background: #fff;
  position: relative;
  z-index: 1;
}

#overflow {
  width: 100%;
  overflow: hidden;
}

#slide1:checked~#slides .inner {
  margin-left: 0;
}

#slide2:checked~#slides .inner {
  margin-left: -100%;
}

#slide3:checked~#slides .inner {
  margin-left: -200%;
}

#slide4:checked~#slides .inner {
  margin-left: -300%;
}

#slides .inner {
  transition: margin-left 800ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 400%;
  line-height: 0;
  height: 300px;
}

#slides .slide {
  width: 25%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100%; */
  color: #fff;
}

/* #slides .slide_1 {
background: #00171F;
 }
 #slides .slide_2 {
background: #003459;
 }
 #slides .slide_3 {
background: #007EA7;
 }
 #slides .slide_4 {
background: #00A8E8;
 } */

#controls {
  margin: -180px 0 0 0;
  width: 100%;
  height: 50px;
  z-index: 3;
  position: relative;
}

#controls label {
  transition: opacity 0.2s ease-out;
  display: none;
  width: 50px;
  /* height: 50px; */
  opacity: 0.4;
}

#controls label:hover {
  opacity: 1;
}

#slide1:checked~#controls label:nth-child(2),
#slide2:checked~#controls label:nth-child(3),
#slide3:checked~#controls label:nth-child(4),
#slide4:checked~#controls label:nth-child(1) {
  background: url(https://image.flaticon.com/icons/svg/130/130884.svg) no-repeat;
  float: right;
  margin: 0 -50px 0 0;
  display: block;
}

#slide1:checked~#controls label:nth-last-child(2),
#slide2:checked~#controls label:nth-last-child(3),
#slide3:checked~#controls label:nth-last-child(4),
#slide4:checked~#controls label:nth-last-child(1) {
  background: url(https://image.flaticon.com/icons/svg/130/130882.svg) no-repeat;
  float: left;
  margin: 0 0 0 -50px;
  display: block;
}

#bullets {
  margin: 150px 0 0;
  text-align: center;
}

#bullets label {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #ccc;
  margin: 0 10px;
}

#slide1:checked~#bullets label:nth-child(1),
#slide2:checked~#bullets label:nth-child(2),
#slide3:checked~#bullets label:nth-child(3),
#slide4:checked~#bullets label:nth-child(4) {
  background: #444;
}

@media screen and (max-width: 900px) {

  #slide1:checked~#controls label:nth-child(2),
  #slide2:checked~#controls label:nth-child(3),
  #slide3:checked~#controls label:nth-child(4),
  #slide4:checked~#controls label:nth-child(1),
  #slide1:checked~#controls label:nth-last-child(2),
  #slide2:checked~#controls label:nth-last-child(3),
  #slide3:checked~#controls label:nth-last-child(4),
  #slide4:checked~#controls label:nth-last-child(1) {
    margin: 0;
  }

  #slides {
    max-width: calc(100% - 140px);
    margin: 0 auto;
  }
}

/* ------------------------------------- END SLIDER ---------------------------- */

/* Banners */
.banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 40px;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* WHAT WE DO */

.whatwedo {
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.whatwedo__text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.whatwedo__text p {
  color: #5e5e5e;
  font-size: 1.5vw;
  /* margin-bottom: 50px; */
  margin-top: 50px;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.whatwedo__text h2 {
  font-weight: bold;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  font-size: 4vw;
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
}

.whatwedo__images {
  display: flex;
  justify-content: space-evenly;
}

.whatwedo__img {
  max-height: 30vw;
  width: 100%;
  object-fit: contain;
  z-index: 1;
  top: 25vh;
  margin: 40px 20px 0px 20px;
}

.whatwedo__power {
  display: flex;
  justify-content: space-evenly;
}

.module {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0px 150px 0px 150px;
  width: 33%;
  max-width: 900px;
}

.whatwedo__svg {
  height: 20vh;
  width: 100%;
  object-fit: contain;
  z-index: 1;
}

.svg__div {
  flex: 0.5;
  max-width: 500px;
  max-height: 500px;
  justify-content: center;
  align-items: center;
}

.module__text {
  flex: 0.5;
  text-align: center;
}

.module h3 {
  font-weight: bold;
}

.module p {}

.svg__module {
  margin: 50px 50px 50px 50px;
}

.svg__text h3 {
  font-size: 30px;
}

.svg__text p {
  font-size: 20px;
}

/* #0b4744 */

.new__section {
  position: relative;
  display: block;
  /* min-height: 100vh; */
  padding: 0;
  color: white;
}

.dev__section {
  display: flex;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.first__section {
  padding-top: 25vh;
  flex: 0.5;
  background-color: #0b4744;
  height: 100%;
  width: 100%;
}

.text__section {
  padding-left: 10vw;
  padding-right: 10vw;
}

.first__section p {}

.first__section h3 {
  font-weight: bold;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  /* letter-spacing: 1px; */
  font-size: 40px;
  padding-bottom: 20px;
}

.first__section button {
  border-radius: 0px;
  padding: 10px 20px 10px 20px;
  color: rgb(19, 19, 19);
  font-weight: bold;
}

.second__section {
  padding-top: 10vh;
  flex: 0.5;
  height: 100%;
  max-width: 100%;
}

.first__dev {
  display: flex;
  justify-content: space-between;
}

.person__img {
  height: 300px;
  width: 300px;
  object-fit: contain;
  flex: 0.5;
  z-index: 1;
  position: relative;
  margin-bottom: 7.5vh;
  flex: 0.5;
  border-radius: 50%;
  padding-left: 20px;
}

/*
.dev__img {
width: 100%;
object-fit: contain;
flex: 0.5;
z-index: 1;
position: relative;
} */

.first__dev {
  padding-bottom: 100px;
}

.second__dev {}

.person {
  display: flex;
  color: black;
  gap: 3rem;
  align-items: center;
}

.person__text {
  max-width: 25vw;
  margin-left: 40px;
}

.person__name {
  color: rgb(47, 74, 94);
  font-size: 30px;
}

.person__funtion {
  color: rgb(59, 59, 59);
  font-weight: bold;
}

.person__description {
  font-size: 20px;
}

.our__team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.color__section {
  height: 428px;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background-color: #fdece0;
  position: relative;
}

.team__text {
  margin: -399px auto 0;
  position: relative;
}

.team__text h3 {
  font-size: 70px;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  color: rgb(19, 18, 18);
}

.team__person {
  display: flex;
  justify-content: space-evenly;
}

.team__prs {
  padding: 0;
  margin-bottom: 0px;
  /*border-radius: 50% !important;*/
  height: 297px;
  width: 297px;
  background-position: 50% 0%;
  margin: 0 auto 36px auto;
  position: 50%;
}

.module__prs {
  margin-left: 5vw;
  margin-right: 5vw;
}

.color__section2 {
  background-color: white;
  color: black;
  height: 328px;
}

.module__prs2 {
  margin-left: 2.5vw;
  margin-right: 2.5vw;
}

.team__person2 {
  background-color: #462a72;
  width: 100% !important;
}

.team__prs2 {
  margin: 0;
  padding-left: 0px;
}

.person__img2 {
  background-color: #593594;
  padding: 20px 20px 20px 20px;
  margin: 0;
  width: 100%;
}

.module__text2 {
  background-color: white;
  padding: 20px 20px 20px 20px;
  padding: 0;
  width: 250px;
  height: 500px;
}

.module__text2 h3 {
  background-color: white;
  margin-bottom: 0;
}

.module__text2 p {
  background-color: #ffba02;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.highfive {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 16px;
}

.highfive__text h3 {
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  font-size: 60px;
}

.highfive__text p {
  color: rgb(141, 141, 141);
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  font-size: 60px;
}

/* FOOTER */



.signup {
  display: flex;
  justify-content: space-between;
  padding: 5vh 5vw 5vh 5vw;
  border-bottom: 1px solid #444;
}

.email__signup {}


.signup__text {
  font-weight: bold;
  font-size: 3vh;
}

.email__input {
  background-color: #2b2b2b;
  border: 1px solid #2b2b2b;
  color: #f5f7f8;
  height: 6vh;
  width: 30vw;
  margin-bottom: 2vh;
  padding: 0 12px;
}

.signup__btn {
  height: 6vh;
  width: 10vw;
}

.call__action {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 900px;
  width: 30vw;
}

.call__action h3 {
  font-weight: bold;
  font-size: 3vw;
}

.info__div {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid #474747;
}

.info__links {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 50px;
  border-bottom: 1px solid #474747;
}

.nav__link a.active {
  position: relative;
}

.nav__link a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  /* background-color: rgb(104, 104, 104); */
  background-color: rgb(255, 253, 253);
}

.info__link {}

@media screen and (max-width: 1500px) {
  .person__img {
    padding-left: 10px;
  }

  .team__prs2 {
    margin: 0;
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 1330px) {
  .intro__title h2 {
    font-weight: bold;
    font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
    font-size: 40px;
    max-width: 45vw;
  }
}

@media screen and (max-width: 1100px) {

  .module {
    width: 100%;
    max-width: 100%;
  }

  .intro__text {
    flex-direction: column;
  }

  .intro__title h2 {
    max-width: 100vw;
  }

  .intro__p p {
    max-width: 100vw;
    padding-left: 0;
    padding-top: 20px;
  }

  .whatwedo__power {
    flex-direction: column;
  }

  .whatwedo__images {
    flex-direction: column;
    align-items: center;
  }

  .whatwedo__text h2 {
    font-size: 40px;
  }

  .whatwedo__text p {
    font-size: 20px;
  }

  .dev__section {
    flex-direction: column;
  }

  .person__text {
    max-width: 50vw;
    margin-bottom: 75px;
  }

  .team__person {
    flex-direction: column;
  }
}

@media screen and (max-width: 850px) {
  /* .nav__bar {
    margin: 0 2vh;
    padding-top: 0.5rem;
    flex-direction: column;
  } */

  /* .first__nav {
    width: 100%;
    flex-direction: column;
  } */

  .second__nav {
    width: 100%;
    background-color: #462a72;
  }

  .nav__links {
    flex-direction: column;
    width: 100%;
    transition: all 0.3s;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    padding-left: 0;
  }

  .nav__links.hidden-in-md {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.3s;
    z-index: -1;
  }

  .nav__link {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: none;
  }

  .nav__button {
    display: inline-block;
    width: auto !important;
    font-size: 1.3rem;
  }

  .main__title {
    width: 100vw;
    font-size: 3rem;
  }

  .intro__text {
    padding-left: 3vh;
    padding-right: 3vh;
  }

  .intro__p p {
    padding-left: 0;
  }

  .team__text {
    text-align: center;
  }

  .module {
    margin: 20px 0;
    width: 100%;
  }

  .bck__img {
    max-height: 100%;
  }

  .highfive {
    padding-bottom: 50px;
    margin-top: 0;
  }

  .whatwedo__text h2 {
    max-width: 90vw;
  }

  .whatwedo__img {
    max-height: 100%;
    margin: 10px 0;
  }

  .banners {
    grid-template-columns: 1fr;
  }

  .banner__image {
    height: 100%;
  }

  .signup {
    flex-direction: column;
  }

  .email__signup .email__input {
    width: 100%;
  }

  .call__action {
    padding-top: 1rem;
    width: 100%;
  }

  .info__links {
    flex-wrap: wrap;
  }

  .info__link {
    width: 50%;
    padding-left: 1rem;
  }

  .copyright {
    flex-direction: column;
  }

  .copyright__links {
    flex-wrap: wrap;
    padding-left: 0;
  }

  .copyright__links li {
    width: 50%;
    margin: 0;
    padding: 0 1px;
  }
}

/* My new part of code */
@media screen and (max-width: 800px) {

  /* Hero Section */
  .main__text {
    align-items: center;
    text-align: center;
  }

  .main__title {
    font-size: 3.2rem;
    text-align: center;
    padding: 0 5vw;
    width: 100%;
  }

  .main__subtitle {
    font-size: 1.5rem;
    text-align: center;
    padding: 0 5vw;
    width: 100%;
  }

  #price {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 5px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 4vh;
    padding: 0 5vw;
  }

  .action__btn {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }

  /* Navbar */
  .nav__bar {
    margin: 0 2vh;
    flex-direction: column;
    padding-top: 0.5rem;
  }

  .first__nav {
    width: 95%;
  }

  .nav__button {
    display: inline-block;
    font-size: 1.3rem;
  }

  .nav__links {
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
  }

  .nav__links.hidden-in-md {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
  }

  .nav__link {
    padding: 5px 0;
  }

  /* Feature + Guides Section */
  .feature>.feature__content {
    flex-direction: column !important;
    text-align: center;
    padding: 0 5vw;
  }

  .feature__image {
    width: 90vw !important;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 2rem;
  }

  .feature__details {
    text-align: center;
    margin-top: 2vh;
  }

  .feature__title {
    font-size: 2.5rem;
    text-align: center;
  }

  .feature__description {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
  }

  /* Guides Section (Specific) */
  .guides {
    padding-bottom: 4vh;
  }

  .guides__details {
    text-align: center;
    margin: 0 auto;
  }

  .guides__info {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .guides__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .guides__description {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 2vw;
    text-align: center;
  }

  /* Section 1: .intro__text centering */
  .intro__text {
    text-align: center;
    padding: 0 5vw;
  }

  .intro__text h2 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .intro__p p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 2vw;
  }

  .first__section {
    padding-top: 4vh;
  }

  /* Section 2: Team / Person blocks (MOBILE) */
  .dev__section {
    padding: 4vh 0;
    width: 100%;
  }

  .first__section .text__section {
    text-align: center;
    padding: 0 20px;
    width: 100%;
  }

  .second__section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
  }

  .person {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 20px;
  }

  .person__text {
    max-width: 100vw;
    margin-bottom: 75px;
    margin: 0;
  }

  .person__img {
    width: 300px;
    height: 300px;
    justify-content: center;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 50%;
    padding-left: 0;
  }

  .person__img img {
    width: 100%;
  }

  .person__description {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .person__description p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 16px;
    max-width: 600px;
    text-align: center;
  }

  .person__name h2 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
  }

  .person__funtion p {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  /* Responsive OUR TEAM section */
  .our__team {
    padding: 4vh 5vw;
    background-color: #fdece0;
    align-items: center;
    text-align: center;
  }

  .color__section {
    display: none;
  }

  .team__text {
    margin: 0 auto 3vh;
  }

  .team__text h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: #131212;
  }

  .team__person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .module.module__prs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4vw;
  }

  .person__img.team__prs {
    width: 60vw;
    height: 60vw;
    max-width: 250px;
    max-height: 250px;
    /* border-radius: 50%;
    overflow: hidden; */
    margin-bottom: 1rem;
  }

  .person__img.team__prs img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* border-radius: 50%; */
    padding: 0;
    margin: 0;
  }

  .module__text h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.2rem 0;
  }

  .module__text p {
    font-size: 1rem;
    color: #444;
    margin: 0;
  }

  /* Testimonial Section */
  .testimonial {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .testimonial__item {
    text-align: center;
  }

  /* Questions Section */
  .questions__title {
    font-size: 2rem;
    padding: 0 5vw;
    text-align: center;
    margin: 0 auto;
  }

  .questions__subtitle {
    text-align: center;
    padding: 0 5vw;
  }

  .questions__row {
    flex-direction: column;
  }

  .que__ans {
    width: 90vw;
    margin: 0 auto;
    text-align: center;
  }

  .que__ans h3,
  .que__ans p {
    text-align: center;
  }

  /* Signup Section */
  .signup {
    flex-direction: column;
    padding: 5vh 5vw;
  }

  .email__signup .email__input {
    width: 100%;
  }

  .call__action {
    width: 100%;
    padding-top: 1rem;
  }

  /* Custom Content (if used elsewhere) */
  .custom_content-wrapper {
    flex-direction: column;
    padding: 0 5vw;
    text-align: center;
  }

  .custom_content img,
  .custom_content video {
    width: 90vw !important;
    height: auto !important;
  }

  /* Footer Info */
  .info__links {
    flex-wrap: wrap;
  }

  .info__link {
    width: 50%;
    padding-left: 1rem;
  }
}