/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "ITCAvantGarde", Arial, Helvetica, sans-serif;
}

body {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
/* BASIC LAYOUTS */

/* #root {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

#wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

.section {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.box {
  z-index: 10;
  left: 22.6vw;
  position: absolute;
  width: fit-content;
  min-width: 26vw;
  display: flex;
  flex-flow: column wrap;
  gap: 30px;
}
.full-width-container {
  max-width: 1280px;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  /* z-index: 15; */
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0 8%;
}

.background-circle {
  height: 112.5vh;
  border-radius: 50%;
  background-color: #fff;
  z-index: 15;
  width: 112.5vh;
  position: absolute;
  left: -18.2vw;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  padding-left: calc(18.2vw + 8.8%);
}

.full-width-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* clip-path: circle(100% at 50% 50%); */
  z-index: -1;
  position: absolute;
}

.left-text-box {
  display: flex;
  gap: 40px;
  flex-flow: column wrap;
}

.half-width-container {
  max-width: 1280px;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 3fr;
  grid-gap: 40px;
  z-index: 15;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0 8%;
}

.half-width-container .col-1 {
  display: flex;
  flex-flow: column wrap;
  gap: 30px;
  position: relative;
  overflow: hidden;
  height: 100%;

  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .full-width-container {
    max-width: 100%;
    padding: 90px 0;
    grid-template-columns: 1fr;
    align-items: start;
    width: 100%;
    height: 100vh;
    margin: 0 40px;
  }

  .background-circle {
    height: 626px;
    z-index: 12;
    width: 626px;
    left: 50%;
    top: -180px;
    display: flex;
    justify-content: end;
    align-items: center;
    transform: translate(-50%, 0);
    padding-bottom: 105px;
    padding-left: 0;
  }

  .left-text-box {
    gap: 30px;
    width: calc(100vw - 80px);
  }

  .box {
    z-index: 10;
    left: 0;
    top: 0;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 40px;
    min-width: initial;
  }

  .full-width-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
    bottom: 0;
  }

  .section-3 .full-width-image {
    height: 70%;
  }

  .section-8 .half-width-container {
    grid-template-columns: 1fr !important;
    grid-template-rows: 100px 1fr;
    padding: 55px 0 0;
    gap: 80px;
  }
}

/*MENU*/

#menu {
  position: fixed;
  height: 400px;
  width: 400px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  z-index: 10;
  display: flex;
  flex-flow: column wrap;
  padding-left: 75px;
  padding-top: 54px;
  right: -167px;
  top: 50%;
  transform: translate(0, -50%);
  gap: 50px;
  clip-path: inset(30% 10% 30% 50% round 40px);
  transition: all 0.3s ease;
}

#menu.active {
  clip-path: inset(0% 0% 0% 0% round 0px);
}

.menu-links {
  display: flex;
  flex-flow: column wrap;
  text-align: left;
  gap: 20px;
}

.menu-links a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.menu-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: block;
  position: relative;
  left: -10px;
  top: 53%;
  transform: translateY(-50%);
  opacity: 0;
}

.menu-links a:hover::before {
  opacity: 1;
}

#close-menu {
  position: absolute;
  top: 54px;
  left: 189px;
  cursor: pointer;
}

#open-menu {
  position: absolute;
  left: 216px;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}

#menu.active #open-menu {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 768px) {
  #menu {
    position: fixed;
    height: 500px;
    width: 500px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 104px;
    right: -55px;
    left: initial;
    top: -160px;
    transform: initial;
    gap: 50px;
    clip-path: inset(0% 0% 58% 78% round 40px);
    transition: all 0.3s ease;
  }

  #menu.active {
    clip-path: inset(0% 0% 0% 0% round 0px);
  }

  .menu-links {
    text-align: center;
  }

  .menu-links a {
    font-size: 14px;
    line-height: 120%;
  }

  #close-menu {
    top: 174px;
    right: 72px;
    left: initial;
    opacity: 0;
    visibility: hidden;
  }

  #menu.active #close-menu {
    opacity: 1;
    visibility: visible;
  }

  #open-menu {
    position: absolute;
    top: 174px;
    right: 72px;
    left: initial;
    transform: initial;
    transition: 0.3s ease;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
  }

  #menu.active #open-menu {
    opacity: 0;
    visibility: hidden;
  }
}

/*TEXTS*/

.gradient-text {
  background: var(
    --orange-gradient,
    linear-gradient(238deg, #ff7a00 0%, #ff4d00 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blue-text {
  color: #0045ac;
}

.text-70 {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: -2.1px;
  line-height: 100%;
}

.text-60 {
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.8px;
}

.text-60.extra-lh {
  line-height: 130%;
}

.text-40 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.2px;
}

.text-20 {
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
}

.text-16 {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%; /* 125% */
}

.text-14 {
  font-size: 14px;
  font-weight: 500;
  line-height: 130%; /* 128.571% */
}

.back-arrow {
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .text-70 {
    text-align: center;
    font-size: 40px;
    letter-spacing: -1.2px;
    line-height: 130%;
  }

  .text-60 {
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.9px;
  }

  .text-40 {
    text-align: left;
    font-size: 30px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.9px;
  }

  .text-20 {
    text-align: center;
    font-size: 16px;
  }

  .text-16 {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%; /* 128.571% */
  }

  .text-14 {
    font-size: 12px;
    font-weight: 500;
    line-height: 140%; /* 133.333% */
  }
}

/*GRADIENT BUTTON*/
.gradient-button {
  padding: 15px 20px 11px;
  border-radius: 40px;
  border: none;
  background: var(
    --orange-gradient,
    linear-gradient(238deg, #ff7a00 0%, #ff4d00 100%)
  );
  position: relative;
  overflow: hidden;
  width: fit-content;
  cursor: pointer;
}

.gradient-button span {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
}

.gradient-button .invisible-text {
  visibility: hidden;
  margin-bottom: -2px;
}

.gradient-button span:nth-of-type(2),
.gradient-button span:nth-of-type(3) {
  position: absolute;
  width: 100%;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.gradient-button span:nth-of-type(3) {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease;
}

.gradient-button:hover span:nth-of-type(2) {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease;
}

.gradient-button:hover span:nth-of-type(3) {
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease;
}

.gradient-button .gradient-filler {
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  left: 2px;
  top: 2px;
  border-radius: 40px;
  transition: all 0.5s;
}

.gradient-button:hover .gradient-filler {
  transform: scale(1);
  opacity: 0;
}

.gradient-button:hover .gradient-text {
  color: #fff;
}

/*SECTION 1*/

.main-logo {
  text-align: center;
}

.main-logo svg {
  max-width: 400px;
  max-height: 400px;
}

/* .section-1 {
  display: none;
} */

@media only screen and (max-width: 768px) {
  .main-logo svg {
    max-width: 220px;
    max-height: 220px;
  }
}

/* SECTION 2 */

.orange-bullet-list {
  display: flex;
  flex-flow: column wrap;
  gap: 20px;
  list-style-type: none;
}

.orange-bullet-list li:before {
  content: " ";
  height: 10px;
  width: 10px;
  background-color: #ff7a00;
  display: inline-block;
  margin-right: 20px;
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  .orange-bullet-list {
    gap: 10px;
  }

  .orange-bullet-list li:before {
    margin-right: 10px;
  }
}

.section-2 .blue-text {
  max-width: 366px;
}

/* SECTION 3 */

.section-3 .left-text-box {
  gap: 30px;
}

@media only screen and (max-width: 768px) {
  .section-3 .text-60 {
    margin-bottom: -10px;
  }

  .section-3 .text-16 {
    font-size: 12px;
    line-height: 16px;
  }

  .section-3 .background-circle {
    top: -243px;
    padding-bottom: 184px;
  }
}

/* SECTION 4 */

.section-4 .left-text-box {
  gap: 30px;
}

@media only screen and (max-width: 768px) {
  .section-4 .text-60 {
    margin-bottom: -10px;
  }

  .section-4 .text-16 {
    font-size: 12px;
    line-height: 16px;
  }

  .section-4 .background-circle {
    top: -186px;
  }

  .section-4 .gradient-button {
    align-self: center;
  }
}

/* SECTION 5 */

.background-circle.bg-circle-4 {
  width: 137.5vh;
  height: 137.5vh;
  left: -38.8vw;
  z-index: 10;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15) inset;
  padding-left: calc(38.8vw + 8.8%);
}

.offers {
  max-width: 210px;
  display: flex;
  flex-flow: column wrap;
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.offer-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blue, #0045ac);
  font-size: 14px;
  font-weight: 500;
  flex-flow: row nowrap;
  cursor: pointer;
}

.offer-count {
  min-width: 30px;
  min-height: 30px;
  border: 2px solid #0045ac;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: 2px;
  line-height: 100%;
  padding-top: 3px;
  transition: all 0.3s ease;
}

.offer-content {
  margin-top: 5px;
  transition: all 0.3s ease;
}

.offer.active .offer-wrapper,
.offer-wrapper:hover {
  color: var(--blue, #ff620a);
}

.offer.active .offer-count,
.offer-wrapper,
.offer-wrapper:hover .offer-count {
  border-color: #ff620a;
}

.orange-small-list {
  list-style: none;
  display: flex;
  flex-flow: column wrap;
  gap: 10px;
  margin-bottom: 40px;
  margin-top: -60px;
}

.orange-small-list li {
  position: relative;
  cursor: pointer;
}

.orange-small-list li.active {
  color: #ff620a;
}

.orange-small-list li:before {
  content: " ";
  height: 4px;
  width: 4px;
  background-color: #0045ac;
  display: inline-block;
  margin-right: 4px;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 6px;
}

.orange-small-list li.active:before,
.orange-small-list li:hover:before {
  background-color: #ff7a00;
}

.orange-small-list li:hover {
  color: #ff7a00;
}

.workshop-content {
  display: none;
}

.workshop-content.active {
  display: block;
}

.arrow-list {
  display: flex;
  gap: 20px;
  flex-flow: column wrap;
}

.arrowed-title {
  max-width: 211px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.arrowed {
  display: flex;
  flex-flow: column wrap;
  gap: 20px;
}

.arrowed-container {
  position: relative;
  overflow: hidden;
  min-height: 323px;
  width: 100%;
}

.arrow-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* transform: translate(100%); */
  transition: 0.3s ease;
}

.arrow-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(100%);
  transition: 0.3s ease;
}

.workshop-arrow-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(100%);
  transition: 0.3s ease;
}

.back-arrow {
  text-align: left;
}

.arrow-offer-title {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px; /* 125% */
  letter-spacing: -0.72px;
  background: var(
    --blue-gradient,
    linear-gradient(45deg, #22266d 0%, #1b25d6 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.workshop-menu {
  display: flex;
  flex-flow: column wrap;
  gap: 20px;
}

@media only screen and (max-width: 768px) {
  .background-circle.bg-circle-4 {
    width: 600px;
    height: 600px;
    left: 50%;
    box-shadow: initial;
    padding-left: initial;
  }

  .section-5 .text-60 {
    margin-bottom: -10px;
  }

  .section-5 .text-16 {
    font-size: 12px;
    line-height: 16px;
  }

  .section-5 .background-circle {
    top: -81px;
    padding-bottom: 65px;
  }

  .section-5 .gradient-button {
    align-self: center;
  }

  .section-5 .gradient-text {
    margin-bottom: 10px;
  }
}

/* SECTION 6 */

.section-6 .blue-text {
  max-width: 400px;
  width: 26vw;
}

@media only screen and (max-width: 768px) {
  .section-6 .text-16 {
    font-size: 12px;
    line-height: 110%;
  }

  .section-6 br {
    display: none;
  }

  .section-6 h2 {
    margin-bottom: -10px;
    text-align: left;
    width: 100%;
  }

  .section-6 .blue-text {
    width: 100%;
  }
}

/* SECTION 7 */

.section-7 {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.section-7 .full-width-container {
  grid-template-columns: 400px 400px 400px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 64.41%,
    rgba(255, 255, 255, 0) 64.51%
  );
  z-index: 2;
}

.section-7 .col-1 {
  display: flex;
  flex-flow: column wrap;
  gap: 30px;
}

.section-7 ul {
  padding-left: 20px;
}

@media only screen and (max-width: 768px) {
  .section-7 .full-width-container {
    grid-template-columns: 1fr;
    padding: 55px 0;
    max-height: 70vh;
    align-self: start;
    overflow: scroll;
  }

  .section-7 .col-1 {
    display: flex;
    flex-flow: column wrap;
    gap: 20px;
  }
}

/* SECTION 8 */

.section-8 .half-width-container {
  grid-template-columns: 450px 1fr 3fr;
}

.persons {
  display: flex;
  flex-flow: column wrap;
  gap: 40px;
}

.person-card {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 40px;
  align-items: center;
  width: 65%;
  cursor: pointer;
}

.person-card:nth-of-type(2) {
  margin-left: auto;
}

.person-image-wrapper {
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-card.active .person-image-wrapper,
.person-card:hover .person-image-wrapper {
  background: linear-gradient(237deg, #ff7a00 0%, #ff4d00 100%);
}

.person-card img {
  width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 5px solid #fff;
  object-fit: cover;
}

.person-info {
  display: flex;
  flex-flow: column wrap;
  gap: 5px;
}

.person-card .name {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  background: var(
    --blue-gradient,
    linear-gradient(45deg, #22266d 0%, #1b25d6 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.person-card .title {
  color: var(--orange, #ff620a);
  font-size: 10px;
  font-weight: 500;
  line-height: 12px; /* 120% */
}

.detailed-information {
  transform: translate(-100%, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  flex-flow: column wrap;
  gap: 40px;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}

.detailed-information.active {
  transform: translate(0, -50%);
  opacity: 1;
  visibility: visible;
}

.detailed-information .text-40 {
  text-align: left;
}

.detailed-information .personnel {
  margin-top: -20px;
}

.detailed-information .blue-text {
  max-width: 400px;
}

.pagination-container {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  gap: 40px;

  transition: 0.5s ease;
}

.page {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
}

.page.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.pagination {
  display: flex;
  width: fit-content;
  flex-flow: row nowrap;
  border: 2px solid #ff620a;
  border-radius: 40px;
}

.paginate {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff620a;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%; /* 100% */
  cursor: pointer;
}

.paginate.active,
.paginate:hover {
  background-color: #ff620a;
  color: #fff;
  border-radius: 100%;
}

.paginate:first-of-type {
  margin-right: -8px;
}

@media only screen and (max-width: 768px) {
  .person-info {
    display: none;
  }

  .placeholder-col {
    display: none;
  }

  .persons {
    order: 0;
    flex-flow: row nowrap;
    gap: 15px;
  }

  .section-8 .col-1 {
    order: 2;
    overflow-y: scroll;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-card:nth-of-type(2) {
    margin-top: -40px;
  }

  .detailed-information {
    transform: translate(-100%, 0);
    position: absolute;
    gap: 30px;
    top: 0;
  }

  .detailed-information.active {
    transform: translate(0, 0%);
    opacity: 1;
    visibility: visible;
  }

  .detailed-information .personnel {
    margin-top: -10px;
  }

  .person-image-wrapper {
    background: #fff;
    padding: 3px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .person-card img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover;
  }
}

/* SECTION 9 */

.form {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 600px;
  height: 600px;
  z-index: 2;
  background-color: #fff;
  padding: 82px 130px 40px;
  display: flex;
  flex-flow: column wrap;
  gap: 30px;
}

.form .gradient-button {
  padding: 15px 36px 11px;
}

form {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

input,
textarea {
  border-radius: 20px;
  background: #f9f9f9;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1) inset;
  border: none;
  outline: none;
  padding: 14px 16px;
  color: #bfbfbf;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px; /* 100% */
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .form {
    width: 626px;
    height: 626px;
    align-items: center;
    justify-content: end;
    top: -95px;
    transform: translate(-50%, 0);
  }

  form {
    width: calc(100vw - 80px);
  }

  .section-9 .text-40 {
    width: 100%;
    padding-left: 36px;
  }

  .section-9 .full-width-image {
    height: 52%;
    object-fit: cover;
    bottom: 0;
    left: 0;
  }
}

/* DOTS */

.dot-nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 50%;
  z-index: 10;
  left: 1.5%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
  .dot-nav {
    flex-direction: row;
    left: 50%;
    top: initial;
    bottom: 20px;
    transform: translateX(-50%);
  }
}

.dot-nav li {
  list-style: none;
  margin: 0 10px;
  cursor: pointer;
}

.dot-nav li.is-active span {
  background: #ff620a;
}

.dot-nav li span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15) inset;
  background-color: #fff;
}
