/*  ---- RESET DEFAULT STYLES ----  */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  /* color: black; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  ---- COMMON STYLES ----  */
:root {
  --main-text-color: #f8f8fd;
  --secondary-text-color: #1a1a40;
  --accent-text-color: #9999af;
  --accent-light-text-color: #b3b3bf;
  --accent-dark-text-color: #646464;
  --main-bg-color: #231f20;
  --accent-dark-bg-color: #464646;
  --accent-bg-color: #f9f9fccc;
  --accent-light-bg-color: #f1f4f9;
  --main-gradient: radial-gradient(
    circle at 100% 100%,
    #23c0ad 0%,
    #4c50cc 100%
  );
  --main-box-shadow-color: #5051c426;
  --layer-blur-color: #ffffff80;
  --layer-blur-box-shadow: #ffffffb3;
  --main-border-color: #ededf9;

  --extra-primary-main: #a79dff;
  --extra-primary-lightest: #ddd9ff;
  --extra-primary-light: #efedff;
  --extra-primary-dark: #5051c4;

  --error: #ad1a1a;
}

@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/Manrope/Manrope-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/Manrope/Manrope-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/Manrope/Manrope-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: auto;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans";
  src: url("../css/fonts/Albert_Sans/AlbertSans-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  min-width: 376px;
}
p,
span {
  line-height: 120%;
}

body {
  color: var(--secondary-text-color);
  line-height: 120%;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 64px !important;
  font-weight: 700 !important;
  line-height: 120% !important;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

h3 {
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 120% !important;
}

.button {
  padding: 20px 48px;
  border: none;
  font-size: 18px;
  line-height: 120%;
  font-weight: 800;
  color: var(--main-text-color);
  background: var(--main-gradient);
  border-radius: 12px;
  box-shadow: 0px 4px 40px -10px var(--main-box-shadow-color);
  cursor: pointer;
}
.icon-btn {
  display: block;
  height: 48px;
  width: 48px;
  margin: 0 auto;
  background-color: var(--accent-dark-bg-color);
  border-radius: 50%;
  position: relative;
}

.icon-btn::after {
  content: "";
  background-image: url("../img/corporate/icons/arrow-down.svg");
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: center;
}

.section-title {
  text-align: center;
}

#cases .section-title,
#modules .section-title,
#why-we .section-title,
#faq .section-title {
  color: var(--main-text-color);
}

.error-message {
  font-size: 12px;
  font-weight: 700;
  color: var(--error);
  margin-left: 12px;
}

@media (max-width: 1310px) {
  .container {
    padding: 0 24px;
  }
  h1 {
    font-size: 48px !important;
  }

  h2 {
    font-size: 34px !important;
  }

  h3 {
    font-size: 28px !important;
  }

  .button {
    padding: 18px 44px;
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .container {
    padding: 0 20px;
  }
  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  .button {
    padding: 16px 40px;
    font-size: 16px;
  }
}

section {
  overflow: hidden;
}

/* ----------  HERO -----------*/

#hero {
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
  backdrop-filter: blur(30px);
  box-shadow: 0px 4px 40px 0px var(--main-box-shadow-color);
  border-radius: 24px;
  position: relative;
  padding-bottom: 16px;
  padding-top: 76px;
  margin-top: 16px;
  backdrop-filter: blur(30px);
  padding: 46px;
}

#hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 33px;
  height: 40%;
  transform: translateY(-50%);
  background-color: var(--main-text-color);
  border-radius: 0 24px 24px 0;
}
#hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 33px;
  height: 40%;
  transform: translateY(-50%);
  background-color: var(--main-text-color);
  border-radius: 24px 0 0 24px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding-bottom: 38px;
  position: relative;
}

.hero-content__desc {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  z-index: 2;
}

.hero-content__desc p {
  padding-top: 32px;
  font-size: 20px;
}

.hero-content__img {
  position: relative;
  display: inline-block;
}

.layer-blur {
  height: 400px;
  width: 400px;
  background: var(--layer-blur-color);
  backdrop-filter: blur(300px);
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: var(--layer-blur-box-shadow) 0px 22px 150px 4px;
}

.hero-content__img .layer-blur {
  top: 45%;
  left: 35%;
  z-index: -1;
}

.hero-content__img-frame {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content__img-animation {
  position: absolute;
  top: 4%;
  left: 3%;
  width: 94.5%;
  height: 92.5%;
  pointer-events: none;
  border-radius: 10px;
}

.hero-content__decorative-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-content__decorative-icons-circle {
  position: absolute;
  top: 30%;
  left: 45%;
  transform: translate(-45%, -30%);
}
.hero-content .hero-content__decorative-icons-dots {
  display: none;
}
.hero-content__decorative-icons .hero-content__decorative-icons-dots {
  position: absolute;
  width: 120px;
  bottom: -18%;
  right: -1%;
  display: flex;
}

.hero-content__decorative-icons-curve {
  position: absolute;
  top: -5%;
  right: 0;
}

.hero-content__decorative-icons-plus {
  position: absolute;
  bottom: -10%;
  right: 15%;
}

.hero-content__img-plates {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero_content__img-plate {
  padding: 16px;
  background-color: var(--accent-bg-color);
  box-shadow: 0px 4px 40px -10px var(--main-box-shadow-color);
  backdrop-filter: blur(24px);
  border-radius: 16px;
  border: 1px solid var(--accent-bg-color);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  font-size: 20px;
  color: var(--secondary-text-color);
}

.hero_content__img-plate-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--secondary-text-color);
  color: var(--main-text-color);
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_content__img-plate-logo.trainer img {
  object-fit: contain;
  border-radius: 50%;
  border: 0.7px solid var(--accent-bg-color);
}

.hero_content__img-plate-title {
  font-weight: 700;
  font-size: 20px;
}
.hero_content__img-plate-subtitle {
  font-size: 14px;
}

.hero_content__img-plate--expertise {
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate(10%, 10%);
}
.hero_content__img-plate--experience {
  position: absolute;
  top: 40%;
  right: 5%;
  transform: translate(5%, 40%);
}

.hero_content__img-plate--trainers {
  position: absolute;
  bottom: 5%;
  left: 5%;
  transform: translate(5%, 5%);
}
.hero_content__img-plate-logos {
  display: flex;
  position: relative;
  align-items: center;
  gap: 0;
}

.hero_content__img-plate-logo.trainer {
  border: 0.7px solid var(--accent-bg-color);
  position: relative;
  transform: translateX(-8px);
}

.hero_content__img-plate-logo.trainer:first-child {
  transform: translateX(0);
}
.hero_content__img-plate-logo.trainer:nth-child(2) {
  z-index: 1;
}
.hero_content__img-plate-logo.trainer:last-child {
  transform: translateX(-12px);
  z-index: 2;
}

@media (max-width: 1310px) {
  #hero {
    padding: 48px 8px 16px 8px;
  }
  #hero::before {
    width: 12px;
  }
  #hero::after {
    width: 12px;
  }

  .hero-content__decorative-icons {
    width: 90%;
  }

  .hero-content__desc {
    gap: 24px;
  }
  .hero-content__desc p {
    font-size: 22px;
    padding-top: 24px;
  }

  .layer-blur {
    width: 320px;
    height: 320px;
  }
  .hero_content__img-plate {
    padding: 12px;
    gap: 6px;
    font-size: 16px;
    border-radius: 8px;
  }

  .hero_content__img-plate-logo {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .hero_content__img-plate-title {
    font-size: 18px;
  }
  .hero_content__img-plate-subtitle {
    font-size: 16px;
  }

  .hero_content__img-plate-logo img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 800px) {
  #hero {
    padding-top: 30px;
  }
  #hero::before {
    width: 8px;
  }
  #hero::after {
    width: 8px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content__decorative-icons {
    display: none;
  }
  .hero-content__desc {
    order: 3;
    max-width: 100%;
  }
  .hero-content__desc p {
    display: none;
  }

  .hero-content__img {
    order: 1;
    width: 100%;
  }

  .hero-content .hero-content__decorative-icons-dots {
    position: static;
    display: flex;
    order: 2;
    width: 100px;
  }

  .hero__icon-btn {
    display: none;
  }

  .hero_content__img-plate {
    padding: 8px;
    gap: 4px;
    font-size: 10px;
    border-radius: 6px;
  }

  .hero_content__img-plate-logo {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .hero_content__img-plate-title {
    font-size: 10px;
  }

  .hero_content__img-plate-subtitle {
    font-size: 8px;
  }

  .hero_content__img-plate-logo img {
    width: 24px;
    height: 24px;
  }

  .layer-blur {
    width: 235px;
    height: 235px;
  }

  .hero-content__img .layer-blur {
    left: 50%;
  }
}

@media (min-width: 600px) {
  #hero {
    padding-top: 56px;
  }
  .hero_content__img-plate {
    padding: 12px;
    gap: 6px;
    font-size: 16px;
    border-radius: 8px;
  }
  .hero_content__img-plate-logo {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .hero_content__img-plate-title {
    font-size: 18px;
  }
  .hero_content__img-plate-subtitle {
    font-size: 16px;
  }

  .hero_content__img-plate-logo img {
    width: 40px;
    height: 40px;
  }
}

/* ----------  CASES -----------*/

#cases {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--main-bg-color);
  box-shadow: 0px 4px 40px 0px var(--main-box-shadow-color);
  border-radius: 24px;
  margin-top: 16px;
}

.cases-content__wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.cases-content__wrapper .layer-blur {
  top: 20%;
  right: -10%;
  z-index: 0;
  box-shadow: var(--layer-blur-box-shadow) 36px 22px 150px 30px;
}

.cases-content__item {
  border-radius: 12px;
  border: 1px solid var(--accent-bg-color);
  background-color: var(--main-text-color);
  display: flex;
  z-index: 1;
}

.cases-content__item-left {
  padding: 40px;
  min-width: 41%;
  box-shadow: 0px 4px 40px 0px var(--main-box-shadow-color);
  background-image: url("../img/corporate/icons/cases-curve.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 12px;
}
.cases-content__item-left-photo-wrap {
  margin-top: 75px;
  position: relative;
}
.cases-content__item-logo {
  height: 35px;
}
.cases-content__item-left-photo {
  width: 176px;
  height: 191px;
  border-radius: 12px;
  background-color: var(--accent-dark-bg-color);
  position: relative;
}
.cases-content__item-left-photo-img {
  border-radius: 12px;
}

.cases-content__item-left-photo-wrap .cases-content__item-left-photo-desc {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--main-text-color);
}

.cases-content__item-left-photo-title {
  font-size: 10px;
  font-weight: 500;
}

.cases-content__item-left-photo-name {
  font-size: 12px;
  font-weight: 700;
}

.cases-content__item-left-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.cases-content__item-left-list-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-text-color);
  position: relative;
  padding-left: 28px;
}

.cases-content__item-left-list-item span {
  font-weight: 700;
}

.cases-content__item-left-list-item::before {
  content: url("../img/corporate/icons/check.svg");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cases-content__item-right {
  padding: 50px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  color: var(--secondary-text-color);
}

.cases-content__item-right-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cases-content__item-right-desc {
  font-size: 16px;
}

.hero-content__desc-title {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (max-width: 1310px) {
  #cases {
    padding: 24px 0;
  }

  .cases-content__wrapper {
    gap: 24px;
    margin-top: 24px;
  }

  .cases-content__item {
    flex-direction: column;
  }
  .cases-content__item-left {
    padding: 24px;
    gap: 32px;
  }

  .cases-content__item-left-photo-wrap {
    margin-top: 0;
  }

  .cases-content__item-right {
    padding: 32px 24px;
  }

  .cases-content__item-right-desc {
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  .cases-content__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .cases-content__item-left-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
  }

  .cases-content__item-left-photo-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: scale-down;
  }
  .cases-content__item-left-photo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .cases-content__item-left-photo-wrap .cases-content__item-left-photo-desc {
    position: static;
    color: var(--secondary-text-color);
  }
}

/* ----------  TESTIMONIALS  -----------*/

#testimonials {
  border-radius: 24px;
  background-color: var(--main-text-color);
  border: 1px solid var(--main-border-color);
  box-shadow: 0px 4px 40px 0px var(--main-box-shadow-color);
  overflow-x: hidden;
  margin-top: 16px;
}

#testimonials .section-title {
  padding-top: 40px;
}

.testimonials-content {
  position: relative;
  overflow: hidden;
}

.testimonials-content__arrows {
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 24px;
}
.testimonials-content__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--main-bg-color);
  position: relative;
  cursor: pointer;
}

.testimonials-content__arrow--left::after {
  content: url("../img/corporate/icons/arrow-left.svg");
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}

.testimonials-content__arrow--right::after {
  content: url("../img/corporate/icons/arrow-right.svg");
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-40%, -50%);
}

.testimonials-content__list {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  /* overflow-x: hidden; */
  flex-direction: row;
  gap: 32px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  padding-top: 32px;
  padding-bottom: 40px;
}

.testimonials-content__item {
  height: 369px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid var(--main-border-color);
  backdrop-filter: blur(30px);
  background-color: var(--main-text-color);
  box-shadow: 0px 4px 40px 0px var(--main-box-shadow-color);
  padding: 32px;
  border-radius: 24px;
  position: relative;
  background: transparent;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex: 0 0 70%;
  transform: scale(0.95);
}

.testimonials-content__item.active {
  opacity: 1;
  transform: scale(1);
}

.testimonials-content__item.active .testimonials-content__item-overlay {
  display: none;
}
.testimonials-content__item-overlay {
  position: absolute;
  background: linear-gradient(90deg, #fff 0%, var(--main-text-color) 30%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  opacity: 0.6;
}

.testimonials-content__item-feedback {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials-content__item-feedback-stars {
  width: 80px;
  height: 18px;
}

.testimonials-content__item-feedback p {
  font-size: 16px;
}

.testimonials-content__item-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials-content__item-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--main-border-color);
}
.testimonials-content__item-author-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonials-content__item-author-name {
  font-size: 18px;
  font-weight: 700;
}

.testimonials-content__item-author-position {
  color: var(--accent-text-color);
  font-size: 14px;
  font-weight: 500;
}

.testimonials-content__slides-indicator-wrapper {
  display: none;
}

@media (max-width: 1310px) {
  .testimonials-content__item-feedback p {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #testimonials .section-title {
    padding-top: 32px;
  }

  .testimonials-content__list {
    padding: 32px 0;
  }
}

@media (max-width: 800px) {
  .testimonials-content__item-feedback p {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .testimonials-content__slides-indicator-wrapper {
    position: absolute;
    background-color: #fff;
    border-radius: 43px;
    padding: 2px 3px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonials-content__slides-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #f1f1f1;
  }

  .testimonials-content__slides-indicator.active {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-gradient);
  }

  .testimonials-content__item {
    flex: 0;
    display: none;
  }

  .testimonials-content__item.active {
    flex: 1 0 96%;
    display: flex;
  }

  .testimonials-content__arrows {
    padding: 0 8px;
  }

  #testimonials .section-title {
    padding-top: 24px;
  }

  .testimonials-content__list {
    padding: 24px 0;
  }

  .testimonials-content__item-feedback p {
    font-size: 14px;
  }

  .testimonials-content__item-author-name {
    font-size: 16px;
  }

  .testimonials-content__item-author-position {
    font-size: 12px;
  }
}

/* ----------  MODULES -----------*/

#modules {
  backdrop-filter: blur(24px);
  box-shadow: 0px 4px 40px 0px var(--main-box-shadow-color);
  background: var(--main-bg-color);
  border-radius: 24px;
  margin-top: 16px;
  padding: 40px 0;
}

.modules-content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 16px;
  margin-top: 32px;
}
.modules-content__item {
  border: 1px solid var(--main-border-color);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px -10px var(--main-box-shadow-color);
  background: var(--accent-bg-color);
  height: 230px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

.modules-content__item-logo {
  min-width: 96px;
  height: 96px;
  border-radius: 12px;
  background: var(--main-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modules-content__item-logo img {
  width: 64px;
  height: 64px;
}

.modules-content__item-logo--individual {
  background: var(--main-gradient);
}
.modules-content__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.modules-content__item-title {
  font-weight: 700;
  font-size: 22px;
}

.modules-content__item-desc {
  font-size: 16px;
  line-height: 145%;
}

@media (max-width: 1310px) {
  #modules {
    padding: 32px 0;
  }
  .modules-content__list {
    column-gap: 24px;
    margin-top: 24px;
  }

  .modules-content__item {
    padding: 16px;
    height: 280px;
    gap: 16px;
  }

  .modules-content__item-logo {
    min-width: 64px;
    height: 64px;
  }
  .modules-content__item-logo img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 800px) {
  #modules {
    padding: 24px 0;
  }
  .modules-content__list {
    column-gap: 24px;
    margin-top: 24px;
    row-gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
  .modules-content__item {
    padding: 24px;
    height: auto;
    gap: 12px;
  }
  .modules-content__item-logo {
    min-width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  .modules-content__item-logo img {
    width: 24px;
    height: 24px;
  }
  .modules-content__item-desc {
    font-size: 14px;
  }
}

/* ----------  WHY WE -----------*/

#why-we {
  backdrop-filter: blur(24px);
  box-shadow: 0px 4px 40px 0px var(--main-box-shadow-color);
  background: var(--main-bg-color);
  border-radius: 24px;
  margin-top: 16px;
  padding: 40px 0;
}

.why-we-content__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  margin-top: 32px;
}

.why-we-content__banner {
  border-radius: 24px;
}

.why-we-content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}

.why-we-content__item {
  padding: 24px 24px 18px 24px;
  border: 1px solid var(--main-border-color);
  border-radius: 12px;
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px -10px var(--main-box-shadow-color);
  background: var(--accent-bg-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-we-content__item-title {
  font-size: 64px;
  font-weight: 600;
}

.why-we-content__item-desc {
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 1310px) {
  #why-we {
    padding: 32px 0;
  }

  .why-we-content__wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 24px;
  }

  .why-we-content__banner {
    width: 100%;
    border-radius: 30px;
  }
  .why-we-content__list {
    gap: 24px;
  }
}

@media (max-width: 800px) {
  #why-we {
    padding: 24px 0;
  }
  .why-we-content__wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 24px;
    margin-top: 24px;
  }
  .why-we-content__banner {
    width: 100%;
  }

  .why-we-content__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

/* ----------  COOPERATION SCHEME -----------*/

#cooperation {
  border: 1px solid var(--main-border-color);
  backdrop-filter: blur(30px);
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  background: var(--main-text-color);
  border-radius: 24px;
  margin-top: 16px;
  padding: 40px 0;
}

.cooperation-content__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}
.cooperation-content__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--main-border-color);
  border-radius: 24px;
  backdrop-filter: blur(30px);
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  background: var(--main-bg-color);
  padding: 66px 40px;
  position: relative;
  overflow: hidden;
}

.cooperation-content__item .shadow {
  position: absolute;
  top: 12px;
  right: -20px;
  border-radius: 100%;
}

.cooperation-content__item p {
  color: var(--main-text-color);
  font-size: 22px;
  font-weight: 600;
  max-width: 150px;
  z-index: 1;
}

.cooperation-content__item:last-child {
  grid-column: span 2;
}

.cooperation-content__item__title-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px;
}
@media (max-width: 1310px) {
  #cooperation {
    padding: 32px 0;
  }

  .cooperation-content__list {
    margin-top: 24px;
    gap: 16px;
  }
  .cooperation-content__item {
    position: relative;
    padding: 64px 24px;
  }

  .cooperation-content__item-number {
    position: absolute;
    left: 60%;
    transform: translateX(-60%);
  }

  .cooperation-content__item-icon {
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translate(-25%, -50%);
    z-index: 1;
    width: 131px;
    height: 131px;
  }
}

@media (max-width: 800px) {
  #cooperation {
    padding: 24px 0;
  }
  .cooperation-content__list {
    margin-top: 24px;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  .cooperation-content__item {
    position: relative;
    height: 280px;
    padding: 96px 40px;
  }

  .cooperation-content__item-number {
    position: absolute;
    left: 60%;
    transform: translateX(-60%);
  }

  .cooperation-content__item-icon {
    position: absolute;
    left: 10%;
    top: 10%;
    transform: translate(-10%, -10%);
    z-index: 1;
    width: 131px;
    height: 131px;
  }

  .cooperation-content__item:last-child {
    grid-column: span 1;
  }
}

/* ----------  STUDY FORMATS -----------*/

#formats {
  border: 1px solid var(--main-border-color);
  border-radius: 24px;
  backdrop-filter: blur(30px);
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  background: var(--main-text-color);
  padding: 40px 0;
  margin-top: 16px;
}

.formats-content__list {
  margin-top: 78px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 65px;
  width: 100%;
}

.formats-content__item {
  width: 100%;
  border: 1px solid var(--main-border-color);
  border-radius: 12px;
  width: 390px;
  height: 256px;
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  background: var(--main-text-color);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: 60px;
}

.formats-content__item-logo {
  position: absolute;
  border-radius: 16px;
  background: var(--main-text-color);
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  width: 164px;
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40%;
  left: 50%;
  transform: translate(-50%, 20%);
  object-fit: contain;
}

.formats-content__item p {
  font-weight: 600;
  font-size: 24px;
}

@media (max-width: 1310px) {
  #formats {
    padding: 32px 0;
  }
  .formats-content__list {
    gap: 16px;
  }

  .formats-content__item-logo {
    width: 144px;
    height: 144px;
  }
  .formats-content__item-logo img {
    width: 112px;
    height: auto;
  }

  .formats-content__item {
    width: 100%;
    height: 224px;
    padding-bottom: 0;
    align-items: center;
    justify-content: center;
  }

  .formats-content__item p {
    font-size: 18px;
    text-align: center;
    max-width: 180px;
    margin-top: 24px;
  }
}

@media (max-width: 800px) {
  #formats {
    padding: 24px 0;
  }

  .formats-content__list {
    margin-top: 93px;
    flex-direction: column;
    gap: 68px;
  }
  .formats-content__item-logo {
    width: 122px;
    height: 122px;
  }
  .formats-content__item-logo img {
    width: 86px;
    height: auto;
  }

  .formats-content__item {
    width: 100%;
    height: 174px;
    /* padding-bottom: 86px; */
  }

  .formats-content__item p {
    font-size: 18px;
  }
}

/* ----------  CONTACT FORM  -----------*/

#contact {
  border-radius: 24px;
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  background: var(--main-bg-color);
  padding: 60px 0 0 0;
  margin-top: 16px;
  background-image: url("../img/corporate/contact-curve.png");
  background-position: 75%;
  background-repeat: no-repeat;
  background-size: contain;
  overflow-y: hidden;
}

.contact-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  position: relative;
}

.contact-content::after {
  content: "";
  background-image: url("../img/corporate/icons/plus.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 40%;
  left: 50%;
}

.contact-content__desc {
  width: 55%;
}

.contact-content__desc-img-wrapper {
  border-radius: 50%;
  /* background: var(--extra-primary-main); */
  width: 382px;
  height: 382px;
  position: absolute;
  bottom: -12%;
  left: 15%;
}
/* .contact-content__desc-img-wrapper::before {
  content: "";
  width: 382px;
  border-radius: 50%;
  position: absolute;
  height: 382px;
  top: -20px;
  left: -20px;
  z-index: 1;
  border: 20px solid var(--extra-primary-lightest);
}

.contact-content__desc-img-wrapper::after {
  content: "";
  width: 382px;
  border-radius: 50%;
  position: absolute;
  height: 382px;
  top: -40px;
  left: -40px;
  border: 40px solid var(--extra-primary-light);
} */

.contact-content__desc span {
  color: var(--main-text-color);
  font-size: 64px;
  font-weight: 600;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
}

.contact-content__form-wrapper {
  width: 45%;
  background: var(--main-text-color);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.contact-content__form-wrapper p {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__label {
  border: none;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
}

.contact-form__label-text {
  background-color: var(--main-text-color);
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 16px;
  z-index: 1;
  padding: 0 8px;
}

.contact-form__input {
  border: 2px solid var(--secondary-text-color);
  backdrop-filter: blur(24px);
  padding: 20px 30px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  background-color: var(--main-text-color);
  font-size: 18px;
}

.policy-text {
  align-self: center;
}

.contact-form .btn-gradient {
  align-self: flex-start;
}

/* .contact-content__inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-content__btn-wrapper {
  text-align: center;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.contact-content__btn-wrapper span {
  color: var(--accent-light-text-color);
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  max-width: 256px;
}

.contact-content__form-group {
  position: relative;
}

.contact-content__form-group input {
  border: 2px solid var(--secondary-text-color);
  backdrop-filter: blur(24px);
  padding: 20px 30px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  background-color: var(--main-text-color);
  font-size: 18px;
}

.contact-content__form-group label {
  color: var(--accent-dark-text-color);
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 16px;
  z-index: 1;
  background-color: var(--main-text-color);
  padding: 0 8px;
} */

.contact-content__decorative-element {
  display: none;
}

@media (max-width: 1310px) {
  .contact-content__desc span {
    font-size: 36px;
    /* text-align: center; */
    display: block;
  }

  .contact-content__desc-img-wrapper {
    bottom: -12%;
    left: -10%;
  }

  .contact-content__form-wrapper {
    width: 60%;
    z-index: 1;
  }
  .contact-content__decorative-element {
    display: block;
    content: "";
    position: absolute;
    background-image: url("../img/corporate/icons/triangles.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 77px;
    height: 87px;
    top: 45%;
    left: 30%;
  }
  .contact-content::after {
    top: 30%;
    left: 15%;
  }

  .contact-content::before {
    content: "";
    position: absolute;
    background-image: url("../img/corporate/icons/circles.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 56px;
    height: 56px;
    bottom: 15%;
    left: 40%;
  }
}
@media (max-width: 800px) {
  #contact {
    padding: 24px 0 0 0;
    background-position: 0 65px;
  }

  .contact-content {
    flex-direction: column;
    gap: 396px;
  }

  .contact-content::after {
    top: 10%;
    left: 50%;
    width: 35px;
    height: 35px;
  }

  .contact-content::before {
    top: 35%;
    left: 6%;
  }

  .contact-content__decorative-element {
    top: 15%;
    left: 15%;
  }

  .contact-content__form-wrapper {
    width: 100%;
    z-index: 1;
  }

  .contact-content__desc {
    width: 100%;
  }

  .contact-content__desc span {
    font-size: 28px;
    text-align: center;
    display: block;
  }
  .contact-content__desc-img-wrapper {
    top: 8%;
    left: 35%;
  }
}

/* ----------  FAQ  -----------*/

#faq {
  border-radius: 24px;
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  background: var(--main-bg-color);
  padding: 40px 0;
  margin: 16px 0;
}

.faq-content__list {
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 40px 0 var(--main-box-shadow-color);
  background: var(--accent-light-bg-color);
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-content__item {
  border-radius: 8px;
  padding: 20px;
  background: var(--accent-bg-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}

.faq-content__item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  position: relative;
  width: 100%;
}

.faq-content__item-header p {
  color: var(--secondary-text-color);
  font-size: 24px;
  font-weight: 600;
  transition: color 0.7s ease;
}

.faq-content__item-header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%) rotate(0deg);
  background-color: var(--secondary-text-color);
  mask: url("../img/corporate/icons/arrow-down.svg") no-repeat center;
  -webkit-mask: url("../img/corporate/icons/arrow-down.svg") no-repeat center;
  transition: transform 0.7s ease;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.faq-content__item.active {
  background-color: #fff;
}

.faq-content__item.active .faq-content__item-header p {
  color: var(--extra-primary-dark);
}
.faq-content__item.active .faq-content__item-header::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-content__item-header-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-text-color);
  mask: url("../img/corporate/icons/question_answer.svg") no-repeat center;
  -webkit-mask: url("../img/corporate/icons/question_answer.svg") no-repeat
    center;
  transition: background-color 0.7s ease;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.faq-content__item.active .faq-content__item-header-icon {
  background-color: var(--extra-primary-dark);
}

.faq-content__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease, opacity 0.7s ease;
  opacity: 0;
  margin-left: 60px;
  margin-top: 16px;
}
.faq-content__item-body p {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.7;
  line-height: 133%;
}

.faq-content__item.active .faq-content__item-body {
  max-height: 300px;
  opacity: 1;
}

@media (max-width: 1310px) {
  #faq {
    padding: 32px 0;
  }

  .faq-content__list {
    padding: 24px;
    gap: 16px;
  }
  .faq-content__item {
    padding: 16px 20px;
  }
  .faq-content__item-header-icon {
    width: 36px;
    height: 36px;
  }

  .faq-content__item-body {
    margin-left: 48px;
  }
}

@media (max-width: 800px) {
  #faq {
    padding: 24px 0;
  }

  .faq-content__list {
    padding: 16px;
    gap: 12px;
  }

  .faq-content__item {
    padding: 12px 20px;
  }
  .faq-content__item-header-icon {
    width: 20px;
    height: 20px;
  }
  .faq-content__item-header p {
    font-size: 14px;
  }

  .faq-content__item-body p {
    font-size: 14px;
  }
  .faq-content__item-header::after {
    width: 16px;
    height: 16px;
    right: 8px;
  }
  .faq-content__item-body {
    margin-left: 36px;
  }
}
