:root {
  --main-background-color: #323739;
  --main-color: #FFFFFF;

  /* border */
  --border-color: #bfc0c5;
  --border-radius: 32px;

  /* section */
  --section-border-color: #bfbfbf;
  --bottom-padding: 50px;
  --sides-padding: 16px;
}

body {
  background-color: var(--main-background-color);
}

/* Section */
.section {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1279px) {
  .section {
    padding: 0 16px var(--bottom-padding);
  }
}

@media (min-width: 1280px) {
  section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 120px;
  }
}

/* Home Section */
.home-section {
  display: flex;
  flex-direction: column;
}

.home-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
  order: 1;
  background-color: transparent;
}

.home-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.home-section .content {
  display: flex;
  flex-direction: column;
}

.home-section .description {
  display: flex;
  flex-direction: column;
}

.home-section .summary {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: left;
}

.home-section .content-image {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  align-self: center;
}

.home-section .content-image img {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1279px) {
  .home-section {
    padding: 0 16px 0px;
  }
}

@media (min-width: 1280px) {
  .home-section {
    max-width: 1200px;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .home-section .container {
    max-width: 1200px;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
  }

  .home-section .content {
    justify-content: center;
    gap: 32px;
  }

  .home-section .title {
    font-size: 52px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
  }

  .home-section .description {
    gap: 16px;
  }

  .home-section .summary {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .home-section .register-request-button {
    width: 100%;
    max-width: 250px;
    height: var(--btn-height-mobile);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-radius: var(--border-radius);
    border: none;
    background-color: #df0611;
    color: #ffffff;
  }

  .home-section .register-request-button:hover {
    background-color: #E71F3D;
  }

  .home-section .register-request-button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .home-section .content-image {
    height: 503px;
    width: 556px;
  }

  .home-section .content-image img {
    height: 503px;
    width: 556px;
  }
}

/* Request Form Section */
.request-form-section .request-form button {
  width: 100%;
  height: var(--btn-height-mobile);
  display: flex;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #DF0611;
  background-color: #FFFFFF;
  color: #DF0611;
}

.request-form-section .request-form input[type="text"],
.request-form-section .request-form input[type="tel"] {
  width: 100%;
  min-height: 56px;
  padding: 5px 16px 5px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #353535;
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  background-color: #323739;
  color: #FFFFFF;
}

.request-form-section .request-form input[type="text"]:hover,
.request-form-section .request-form input[type="tel"]:hover {
  border: 1px solid #FFFFFF;
}

.request-form-section .request-form input[type="text"],
.request-form-section .request-form input[type="tel"] {
  border: 1px solid #bfc0c5;
}

.request-form-section .request-form input[type="text"].error,
.request-form-section .request-form input[type="tel"].error {
  border-color: #df0611;
  outline: 0.5px solid #df0611;
}

.request-form-section .request-form button.active {
  border: 1px solid #DF0611;
  background-color: #DF0611;
  color: #ffffff;
}

.request-form-section .request-form button.active:hover {
  border: 1px solid #E71F3D;
  background-color: #E71F3D;
  color: #ffffff;
}

::placeholder {
  color: #bfc0c5;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #bfc0c5;
}

/* Services Section */
.services-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.services-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.services-section .services-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.services-section .service-card {
  border-radius: 12px;
  background-color: #393F3E;
  padding: var(--padding-small);
}

.services-section .service-card .content {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.services-section .service-card .content .description {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--smaller-gap);
}

.services-section .service-card .content-image {
  background-color: #DF0611;
  height: 44px;
  width: 44px;
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-section .service-card .content h3 {
  font-size: var(--h2-font-size-mobile);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.services-section .service-card .content p {
  font-size: var(--services-font-size);
  font-weight: 300;
  line-height: var(--services-line-height);
  text-align: left;
  color: var(--main-color);
}

@media (min-width: 1280px) {
  .services-section .container {
    gap: 60px;
  }

  .services-section .services-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .services-section .services-panel > * {
    flex: 1 1 calc(33.3% - 36px);
  }

  .services-section .service-card {
    background-color: #393F3E;
    padding: 20px;
  }

  .services-section .service-card .content-image {
    height: 44px;
    width: 44px;
  }
}

/* Register Form Section */
.register-form-section .container {
  background-color: #efefef;
}

.register-form-section .summary h2 span {
  color: #df0611;
}

.register-form-section .register-form input[type="text"] {
  border: 1px solid #5f6065;
}

@media (min-width: 1280px) {
  .register-form-section .container {
    background-image: url("../../../assets/register-form/request_free_lesson.png");
    background-size: 100% 100%;
  }
}

/* Address Section */
.address-section .branch-select select {
  height: 32px;
  padding: 0px 12px;
  border-radius: 8px;
  border: 1px solid #bfc0c5;

  color: var(--main-color);
  font-size: var(--h3-font-size-mobile);
  font-weight: var(--h3-font-weight);
  line-height: var(--h3-line-height-mobile);
  text-align: left;

  appearance: none;
  background: transparent url("../../../assets/address/mafia_arrows_button_down.png")
    no-repeat right 12px center;
  background-size: 12.69px 6.34px;
}

.address-section .details .address {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid #bfc0c5;
}

.address-section .address-map {
  display: flex;
  flex-direction: column;
  gap: var(--smaller-gap);
  padding-bottom: 20px;
  border-bottom: 1px solid #bfc0c5;
}

.address-section .details .working-hours {
  display: flex;
  flex-direction: column;
  gap: var(--smaller-gap);
  padding-bottom: 20px;
  border-bottom: 1px solid #bfc0c5;
}

@media (min-width: 1280px) {
  .address-section .branch-select select {
    width: 221px;
    height: 45px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #bfc0c5;

    font-family: Ubuntu;
    font-size: 18px;
    font-weight: 300;
    line-height: 23.4px;
    text-align: left;

    outline: none;
  }

  .address-section .branches-panel {
    border: 1px solid #bfc0c5;
    padding: 20px;
    border-radius: 12px;
  }
}

/* Register Free Lesson Form Section */
.register-free-lesson-section .container {
  background-color: #323739;
}

.register-free-lesson-section .title span {
  color: #df0611;
}

.register-free-lesson-section .register-form input[type="text"],
.register-free-lesson-section .register-form input[type="tel"] {
  width: 100%;
  max-width: 250px;
  min-height: 56px;
  padding: 5px 16px 5px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #353535;
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  background-color: #323739;
  color: #FFFFFF;
}

.register-free-lesson-section .register-form button {
  width: 100%;
  max-width: 250px;
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #DF0611;
  background-color: #FFFFFF;
  color: #DF0611;
}

.register-free-lesson-section .register-form button.active {
  border: 1px solid #DF0611;
  background-color: #DF0611;
  color: #ffffff;
}

.register-free-lesson-section .register-form button.active:hover {
  border: 1px solid #E71F3D;
  background-color: #E71F3D;
  color: #ffffff;
}

.register-free-lesson-section .summary li::marker {
  content: url("../../../assets/register-free-lesson/list-icon-white.svg");
}

@media (min-width: 1280px) {
  .register-free-lesson-section .container {
    width: 1200px;
    padding: 64px;
    gap: 32px;
    background-image: url("../../../assets/register-free-lesson/mafia_request.png");
    background-size: 100% 100%;
  }
}

/* Swiper */
.swiper-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ccc;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.swiper-dot.active {
  width: 6px;
  height: 6px;
  background-color: #000;
}

@media (min-width: 1280px) {
  .swiper-button-prev {
    background-image: url("../../../assets/address/mafia_arrow_left.png");
    background-size: 100% 100%;
  }

  .swiper-button-next {
    background-image: url("../../../assets/address/mafia_arrow_right.png");
    background-size: 100% 100%;
  }
}

/* Select Component */
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--main-background-color);
  color: var(--main-color);
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 2;
}

.custom-option:hover {
  background-color: #1A1B1C;
}

/* Modal styles */
.modal {
  background-color: rgba(95, 93, 93, 0.65);
}

.modal-content {
  border: 1.62px solid #eeedf2;
  box-shadow: 1.62px 1.62px 0px 0px #eeedf2;
  border-radius: 12px;
}

.close {
  width: 40px;
  color: #5f6065;
  background-color: transparent;
  font-size: 28px;
  font-weight: bold;
  border: none;
}

.close:hover,
.close:focus {
  color: #aaa;
  text-decoration: none;
  cursor: pointer;
}

/* Register Free Lesson Form Section */
.send-request-panel .title span {
  color: #df0611;
}

.send-request-panel .register-form button {
  width: 100%;
  max-width: 250px;
  height: var(--btn-height-mobile);
  display: flex;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #DF0611;
  background-color: #FFFFFF;
  color: #DF0611;
}

.send-request-panel .register-form input[type="text"],
.send-request-panel .register-form input[type="tel"] {
  width: 100%;
  max-width: 250px;
  min-height: 56px;
  padding: 5px 16px 5px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #353535;
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  background-color: #323739;
  color: #FFFFFF;
}

.send-request-panel .register-form button.active {
  border: 1px solid #DF0611;
  background-color: #DF0611;
  color: #ffffff;
}

.send-request-panel .register-form button.active:hover {
  border: 1px solid #E71F3D;
  background-color: #E71F3D;
  color: #ffffff;
}

/* Breadcrumb Section */
.breadcrumb-section span,
.breadcrumb-section a {
  color: var(--main-color);
}


@media (min-width: 1280px) {
  .breadcrumb-section {
    background-color: #323739;
    padding: 20px 0 0;
  }
}

/* Features Section */
.features-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.features-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
  color: var(--main-color);
}

.features-section .title span {
  color: #DF0611;
}

.features-section .features-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.features-section .feature-card {
  border-radius: 12px;
  background-color: #5F606566;
  padding: var(--padding-small);
}

.features-section .feature-card .content {
  display: flex;
  gap: 16px;
}

.features-section .feature-card .content-image {
  height: 16px;
  width: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-section .feature-card .content-image img {
  height: 16px;
  width: 14px;
}

.features-section .feature-card .description {
  display: flex;
}

.features-section .feature-card .description p {
  font-size: var(--features-font-size);
  font-weight: 300;
  line-height: var(--features-line-height);
  text-align: left;
  color: var(--main-color);
}

@media (min-width: 1280px) {
  .features-section {
    margin-top: 80px;
  }
  
  .features-section .container {
    flex-direction: row;
    width: 1200px;
    gap: 36px;
  }

  .features-section .title {
    width: 376px;
  }

  .features-section .features-panel {
    width: 788px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .features-section .feature-card {
    max-width: 376px;
    background-color: #5F606566;
    padding: 20px;
  }

  .features-section .feature-card .content {
    gap: 20px;
  }

  .features-section .feature-card .description {
    width: 288px;
  }

  .features-section .feature-card .content-image {
    width: 27.63px;
    height: 31.39px;
  }

  .features-section .feature-card .content-image img {
    width: 27.63px;
    height: 31.39px;
  }
}

/* Results Section */
.results-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.results-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.results-section .content {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.results-section .main-content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 184px;
}

.results-section .main-content-image img {
  width: 100%;
  min-height: 184px;
  height: auto;
  display: block;
}

.results-section .results-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.results-section .result-card {
  border-radius: 12px;
  background-color: #1C1D1D;
  padding: var(--padding-small);
}

.results-section .result-card .content {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.results-section .result-card .content-image {
  width: 16px;
  height: 26.13px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.results-section .result-card .content-image img {
  width: 16px;
  height: 26.13px;
}

.results-section .result-card .content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: var(--main-color);
}

@media (min-width: 1280px) {
  .results-section .container {
    width: 1200px;
    gap: 60px;
  }

  .results-section .results-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .results-section .result-card {
    background-color: #1C1D1D;
    width: 582px;
    height: 82px;
    padding: 20px;
    border-radius: 12px;
  }

  .results-section .content {
    flex-direction: row;
  }

  .results-section .main-content-image {
    width: 582px;
    height: 374px;
    border-radius: 12px;
  }

  .results-section .main-content-image img {
    width: 582px;
    height: 374px;
    border-radius: 12px;
  }

  .results-section .result-card .content-image {
    width: 18px;
    height: 28.39px;
  }

  .results-section .result-card .content-image img {
    width: 18px;
    height: 28.39px;
  }
}

/* Best Choice Section */
.best-choice-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.best-choice-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.best-choice-section .title span {
  color: #DF0611;
}

.best-choice-section .best-choice-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.best-choice-section .best-choice-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: 20px;
}

.best-choice-section .best-choice-card .content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.best-choice-section .best-choice-card .content-image {
  height: 24px;
  width: 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.best-choice-section .best-choice-card .content-image img {
  width: 24px;
  height: 24px;
}

.best-choice-section .best-choice-card .description {
  display: flex;
}

.best-choice-section .best-choice-card .description p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: var(--main-color);
}

@media (min-width: 1280px) {
  .best-choice-section .container {
    width: 1200px;
    gap: 60px;
  }

  .best-choice-section .best-choice-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .best-choice-section .best-choice-card {
    width: 376px;
    background-color: transparent;
    padding: 0px;
  }

  .best-choice-section .best-choice-card .content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .best-choice-section .best-choice-card .description {
    width: 376px;
  }

  .best-choice-section .best-choice-card .description p {
    font-family: Ubuntu;
    font-size: 18px;
    font-weight: 300;
    line-height: 23.4px;
    text-align: left;
    color: var(--main-color);
  }

  .best-choice-section .best-choice-card .content-image {
    width: 24px;
    height: 24px;
  }

  .best-choice-section .best-choice-card .content-image img {
    width: 24px;
    height: 24px;
  }
}

/* Programs Section */
.programs-section {
  order: 4;
}

.programs-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.programs-section .programs-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.programs-section .program-card {
  min-width: 288px;
  min-height: 415px;

  display: flex;
  flex-direction: column;
  gap: var(--container-gap);

  border-radius: 12px;
  padding: 20px 16px 0px;
}

.programs-section .card-black {
  background-color: #1C1D1D;
}

.programs-section .program-card .content {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .program-card .summary {
  display: flex;
  flex-direction: column;
  gap: var(--smaller-gap);
}

.programs-section .program-card .summary h3 {
  font-size: var(--h2-font-size-mobile);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.programs-section .program-card .summary p {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: left;
}

.programs-section .program-card .content .price {
  font-size: var(--h2-font-size-mobile);
  font-weight: 400;
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.programs-section .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programs-section .cta {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .program-card button {
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--main-color);
  background-color: transparent;
}

.programs-section .program-card button:hover {
  background-color: #FFFFFF;
  color: #353535;
}

.programs-section .program-card svg path {
  stroke: #FFFFFF;
}

.programs-section .program-card button:hover svg path {
  stroke: #353535;
}

.programs-section .program-card button:hover span {
  color: #353535;
}

.programs-section .program-card button span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: var(--main-color);
}

.programs-section .content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 184px;
}

.programs-section .content-image img {
  width: 100%;
  min-height: 184px;
  height: auto;
  display: block;
}

@media (min-width: 1280px) {
  .programs-section {
    order: 4;
  }

  .programs-section .container {
    gap: 60px;
  }

  .programs-section .programs-panel {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .programs-section .program-card {
    width: 582px;
    gap: 0px;
  }

  .programs-section .program-card .summary {
    gap: 16px;
  }

  .programs-section .program-card .summary h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
  }

  .programs-section .program-card .summary p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .programs-section .program-card button {
    max-width: 260px;
  }

  .programs-section .program-card button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .programs-section .bottom {
    width: 582px;
    padding: 40px 0px 0px 40px;
    border-radius: 12px;
  }

  .programs-section .bottom .content-image {
    width: 100%;
    height: 256px;
    margin-top: auto;
    justify-content: flex-end;
  }

  .programs-section .content-image img {
    width: 100%;
    max-height: 256px;
    height: auto;
    display: block;
  }

  .programs-section .bottom .one {
    width: 339.24px;
    height: 256.89px;
    display: block;
  }

  .programs-section .bottom .two {
    width: 415.09px;
    height: 256px;
    display: block;
  }

  .programs-section .bottom .three {
    width: 340px;
    height: 256px;
    display: block;
  }

  .programs-section .bottom .four {
    width: 383.52px;
    height: 256px;
    display: block;
  }
}

/* Instructions Section */
.instructions-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.instructions-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.instructions-section .instructions-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.instructions-section .instruction-card {
  min-width: 288px;
  max-width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #bfc0c5;
}

.instructions-section .instruction-card .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px 30px;
}

.instructions-section .instruction-card .summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.instructions-section .instruction-card .summary h3 {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}

.instructions-section .instruction-card .summary p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
}

.instructions-section .instruction-card .cta {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.instructions-section .instruction-card button {
  min-width: 256px;
  width: 100%;
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #F9F7F7;
  background-color: transparent;
  box-shadow: 0px 0px 0px 0px #000407;
  color: #F9F7F7;
}

.instructions-section .instruction-card button:hover {
  background-color: #FFFFFF;
  color: #353535;
}

.instructions-section .instruction-card svg path {
  stroke: #FFFFFF;
}

.instructions-section .instruction-card button:hover svg path {
  stroke: #353535;
}

.instructions-section .instruction-card button span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: inherit;
}

@media (min-width: 1280px) {
  .instructions-section .container {
    width: 1200px;
    gap: 60px;
  }

  .instructions-section .instructions-panel {
    max-width: 1200px;
    flex-direction: row;
    gap: 36px;
  }

  .instructions-section .instruction-card {
    width: 273px;
    min-width: 273px;
    max-width: 273px;
    min-height: 332px;
    max-height: 100%;
  }

  .instructions-section .instruction-card .content {
    padding: 20px 20px 30px;
    gap: 0;
  }

  .instructions-section .instruction-card .summary {
    gap: 16px;
  }

  .instructions-section .instruction-card .summary h3 {
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
  }

  .instructions-section .instruction-card .summary p {
    letter-spacing: 0.16px;
  }

  .instructions-section .instruction-card button {
    min-width: 196px;
    width: 196px;
  }

  .instructions-section .instruction-card button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .instructions-section .instruction-card .cta {
    width: 260px;
  }
}

/* Club Request CTA Section */
.club-request-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
  padding-top: 20px;
  border-radius: 12px;
  background-color: #292C2C;
}

.club-request-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--container-gap);
  padding: 0px var(--padding-mobile);
}

.club-request-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
}

.club-request-section .title span {
  color: #df0611;
}

.club-request-section .summary {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
}

.club-request-section .send-request {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius);
  border: 0;
  background-color: #df0611;
  color: #ffffff;
}

.club-request-section .send-request span {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: center;
}

.club-request-section .content-image {
  width: 238px;
  height: 172px;
  display: flex;
  align-self: center;
}

.club-request-section .content-image img {
  width: 238px;
  height: 172px;
  display: block;
}

@media (min-width: 1280px) {
  .club-request-section .container {
    width: 1200px;
    flex-direction: row;
    justify-content: space-between;
    background-color: #292C2C;
    padding: 0px;
  }

  .club-request-section .content {
    max-width: 100%;
    width: 722.44px;
    padding: 64px 0px 64px 64px;
  }

  .club-request-section .title {
    font-family: Ubuntu;
    font-size: 52px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
    white-space: nowrap;
  }

  .club-request-section .summary {
    display: block;
  }

  .club-request-section .send-request {
    width: 260px;
    height: 56px;
    align-self: flex-start;
  }

  .club-request-section .send-request span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: center;
  }

  .club-request-section .content-image {
    width: 341.82px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .club-request-section .content-image img {
    width: 341.82px;
    height: 297.16px;
    margin-right: 60px;
  }
}

/* Mafia Game Section */
.mafia-game-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.mafia-game-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.mafia-game-section .mafia-game-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.mafia-game-section .mafia-game-card {
  border-radius: 12px;
  background-color: #161516;
  padding: 20px 16px;
}

.mafia-game-section .mafia-game-card .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.mafia-game-section .mafia-game-card .content-image {
  width: 48px;
  height: 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mafia-game-section .mafia-game-card .description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mafia-game-section .mafia-game-card .description p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #FFFFFF;
}

.mafia-game-section .mafia-game-card .description p a {
  color: #04C1FF;
}

@media (min-width: 1280px) {
  .mafia-game-section .container {
    width: 1200px;
    gap: 60px;
  }

  .mafia-game-section .mafia-game-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .mafia-game-section .mafia-game-card {
    width: 372px;
    background-color: #1A1B1C;
    padding: 40px 20px;
  }

  .mafia-game-section .mafia-game-card .content {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }

  .mafia-game-section .mafia-game-card .description {
    flex-direction: column;
    gap: 12px;
  }

  .mafia-game-section .mafia-game-card .description p {
    font-family: Ubuntu;
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    text-align: left;
    color: #FFFFFF;
  }

  .mafia-game-section .mafia-game-card .content-image {
    width: 44.32px;
    height: 42px;
  }
}

/* Why Learn Section */
.why-learn-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.why-learn-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.why-learn-section .why-learn-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.why-learn-section .why-learn-card {
  min-width: 273px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #393F3E;
  background-color: #393F3E;
}

.why-learn-section .why-learn-card .content-image {
  display: flex;
  justify-content: flex-end;
}

.why-learn-section .why-learn-card .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 16px 0px;
}

.why-learn-section .why-learn-card .summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-learn-section .why-learn-card .summary p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
}

@media (min-width: 1280px) {
  .why-learn-section .container {
    width: 1200px;
    gap: 60px;
  }

  .why-learn-section .why-learn-panel {
    max-width: 1200px;
    flex-direction: row;
    gap: 36px;
  }

  .why-learn-section .why-learn-card {
    width: 273px;
    min-width: 273px;
    height: 263px;
    border: 1px solid #bfc0c5;
  }

  .why-learn-section .why-learn-card .content {
    padding: 20px 20px 0px;
  }

  .why-learn-section .why-learn-card .summary p {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .why-learn-section .why-learn-card .content-image {
    display: flex;
    justify-content: flex-end;
  }
}

/* Tab Menu */
.tab-menu {
  background-color: #323739;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.tab-menu .tab button {
  color: var(--main-color);
}

.tab-menu .tab button:not(:first-of-type) {
  border-left: 1px solid #ffffff;
}

.tab-menu .tab button.active,
.tab-menu .tab button:focus {
  color: #E70C26;
}

.tab-menu .tab a {
  color: var(--main-color);
}

.tab-menu .tab a:not(:first-of-type) {
  border-left: 1px solid #ffffff;
}

.tab-menu .tab a.active,
.tab-menu .tab a:focus {
  color: #E70C26;
}

@media (min-width: 1280px) {
  .tab-menu .tablinks.active {
    color: #DF0611;
  }
}

/* Other Programs Section */
.other-programs-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.other-programs-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.other-programs-section .other-programs-panel {
  display: flex;
  align-items: center;
  gap: var(--inner-gap);
  overflow-y: hidden;
  overflow-x: auto;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.other-programs-section .other-programs-panel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.other-programs-section .cta {
  display: flex;
  flex-direction: column;
  border-radius: 41px;
}

.other-programs-section .cta button {
  width: 260px;
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 41px;
  border: 1px solid #F9F7F7;
  background-color: #323739;
}

.other-programs-section .cta button span {
  max-width: 131px;
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #F9F7F7;
}

.other-programs-section .cta button div {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #393F3E;
}

.other-programs-section .cta button:hover,
.other-programs-section .cta button:hover div {
  border: 1px solid #1A1B1C;
  background-color: #1A1B1C;
}

.other-programs-section .cta .cta-link {
  width: 260px;
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 41px;
  border: 1px solid #F9F7F7;
  background-color: #323739;
}

.other-programs-section .cta .cta-link span {
  max-width: 131px;
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #F9F7F7;
}

.other-programs-section .cta .cta-link div {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #393F3E;
}

.other-programs-section .cta .cta-link:hover,
.other-programs-section .cta .cta-link:hover div {
  border: 1px solid #1A1B1C;
  background-color: #1A1B1C;
}

@media (min-width: 1280px) {
  .other-programs-section .container {
    width: 1200px;
    gap: 60px;
  }

  .other-programs-section .other-programs-panel {
    gap: 36px;
  }

  .other-programs-section .cta button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
    color: #F9F7F7;
  }

  .other-programs-section .cta .cta-link span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
    color: #F9F7F7;
  }
}

.modal-content {
  background-color: #1A1B1C;
}
