@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat Italic';
  src: url('./fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Unbounded';
  src: url('./fonts/Unbounded/Unbounded-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


/*****************************   UI   ***************************/

.black_button {
  height: 50px;
  width: 321px;
  font-size: 20px;
  color: #fff;
  background: #222222;
  transition: all .2s linear;
  border-radius: 8px;
  position: relative;
  border: none;
}

.black_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90.00deg, rgb(34, 34, 34), rgb(58, 58, 58) 100%);
  border-radius: 4px;
  opacity: 0;
  transition: all .2s linear;
}

.black_button>span {
  position: relative;
  font-weight: 600;
}

.black_button:hover {
  cursor: pointer;
}

.black_button:hover::before {
  opacity: 1;
}

.black_button:active::before {
  background: #111111;
  transition: all .2s linear;
}

.default_input {
  width: 100%;
  padding: 8px 24px;
  font-size: 24px;
  border: 1px solid rgb(34, 34, 34);
  outline: none;
  transition: all .2s linear;
  color: #444444;
  border-radius: 4px;
  height: 50px;
  background: #FFFFFF;
  max-width: 544px;
}

.default_input:hover {
  border: 2px solid rgb(168, 143, 89);
}

.default_input:focus {
  border: 2px solid rgb(168, 143, 89);
}

.default_input::placeholder {
  color: #222222;
  opacity: 0.3;
}

.white_button {
  border: 2px solid rgb(34, 34, 34);
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  width: 238px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: transparent;
}

.white_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90.00deg, rgb(34, 34, 34), rgb(58, 58, 58) 100%);
  opacity: 0;
  transition: all .2s linear;
}

.white_button>span {
  position: relative;
  font-weight: 600;
}

.white_button:hover>span {
  color: #fff;
}

.white_button:hover {
  cursor: pointer;
}

.white_button:hover::before {
  opacity: 1;
}

.white_button:active {
  background: #222;
}

.white_button:active::before {
  background: #111111;
  transition: all .2s linear;
}

/*****************************    ***************************/
html,
body {
  scroll-behavior: auto;
  overflow: visible;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
}

.header {
  padding: 6px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_container {
  display: flex;
  gap: 8px;
}

.logo_img {
  width: 60px;
  height: 60px;
}

.logo_name {
  width: 100px;
  object-fit: contain;
}

.menu ul {
  list-style-type: none;
  display: flex;
  gap: 32px;
  align-items: center;
  height: 100%;
}

.nav_link {
  text-decoration: none;
  color: #444444;
  font-size: 18px;
  transition: all .2s ease;
  font-weight: 500;
}

.nav_link:hover {
  text-decoration-line: underline;
  text-shadow: .5px 0 0 currentColor;
}

.main {
  padding: 0 100px;
}

.section {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}

.title {
  font-size: 40px;
  font-weight: 400;
  font-family: 'Unbounded';
}

.iti__country-name {
  font-size: 24px;
}

.iti__country-list {
  max-width: 544px;
}

.iti__flag {}

/*****************************   WELCOME   ***************************/
.welcome {
  padding: 100px 0;
}

.welcome_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome_title {
  font-size: 56px;
  max-width: 610px;
  margin-bottom: 24px;
  font-family: 'Unbounded';
}

.welcome_title.yandex {
  font-size: 40px;
  max-width: none;
}

.welcome_title.zarabotok {
  font-size: 40px;
  max-width: 745px;
}

.welcome_title span {
  color: #A88F59;
  font-family: 'Unbounded';
}

.welcome_subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #444444;
}

.welcome_image {
  max-width: 400px;
  object-fit: contain;
}

/*****************************    ***************************/

/*****************************   ABOUT US   ***************************/
.aboutUs {
  padding: 40px 0 60px 0;
}

.aboutUs_image {
  width: 455px;
  object-fit: contain;
}

.aboutUs_info {
  max-width: 670px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 74px;
}

.aboutUs_title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 32px;
}

.aboutUs_text {
  font-size: 20px;
  color: #444444;
  line-height: 28px;
}

/*****************************    ***************************/

/*****************************   FILL FORM   ***************************/

.fillForm {
  position: relative;
}

.fillForm_image {
  position: absolute;
  right: 0;
}

.fillForm_container {
  background: #eee9de;
  border-radius: 30px;
  padding: 50px 60px;
  width: 100%;
}

.fillForm_title {
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: 400;
}

.fillForm_ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.fillForm_li {
  display: flex;
  gap: 18px;
  align-items: center;
}

.fillForm_li svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.fillForm_li p {
  color: #444444;
  font-size: 20px;
  line-height: 28px;
}

/*****************************    ***************************/

/*****************************   FOR WHOM   ***************************/
.forWhom {
  display: block;
}

.forWhom_title {
  font-size: 40px;
  margin-bottom: 50px;
}

.forWhom_ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.forWhom_li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.forWhom_li p {
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  color: #444444;
}

/*****************************    ***************************/

/*****************************   WHAT YOU GET   ***************************/

.whatYouGet {
  display: block;
  padding: 50px 60px 50px 60px;
  border: 2px solid rgb(238, 233, 222);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.whatYouGet .fillForm_ul {
  margin-bottom: 0;
}

.whatYouGet_image {
  position: absolute;
  top: -39px;
  right: 6px;
}

/*****************************    ***************************/

/*****************************   START NOW   ***************************/

.startNow_image {
  width: 408px;
  object-fit: contain;
}

.startNow_info {}

.startNow_ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.startNow_li {
  display: flex;
  gap: 20px;
  align-items: center;
}

.startNow_number {
  font-size: 40px;
  color: #A88F59;
  font-weight: 500;
  width: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Unbounded';

}

.startNow_text {
  font-size: 20px;
}

/*****************************    ***************************/

/*****************************   GET INFORMATION   ***************************/

.getInformation {
  display: block;
}

.getInformation_title {
  margin-bottom: 32px;
}

.getInformation_container {
  border-radius: 30px;
  background: rgb(238, 233, 222);
  padding: 50px 49px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.getInformation_image_left {
  position: absolute;
  bottom: -90px;
  left: -90px;
}

.getInformation_image_right {
  position: absolute;
  bottom: -90px;
  right: -90px;
}

.getInformation_content_title {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: center;
  line-height: 28px;
  color: #444444;
  max-width: 886px;

}

.getInformation_form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 544px;
}

.getInformation_inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 16px;
}

.custom-select {
  position: relative;
  width: 100%;
}

.select-selected-text.selected {
  color: #444444;
  opacity: 1;
}

.select-selected {
  background-color: #FFFFFF;
  padding: 8px 24px;
  font-size: 24px;
  cursor: pointer;
  border: 1px solid rgb(34, 34, 34);
  border-radius: 4px;
  color: rgba(34, 34, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .2s linear;
}

.select-selected:hover {
  border: 2px solid rgb(168, 143, 89);
}

.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 2px solid rgb(168, 143, 89);
  border-top: none;
  z-index: 1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 16px 24px;
  box-sizing: border-box;
  visibility: hidden;
  border-radius: 4px;
}

.select-items.open {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
}

.select-items div {
  padding: 8px;
  cursor: pointer;
  transition: all .2s linear;

  font-size: 24px;

}

.select-items div:hover {
  background-color: #EEE9DE;
  border-radius: 4px;
}

.select-arrow {
  transition: all .3s linear;
}

.select-items.open+.select-selected .select-arrow {
  transform: rotate(-180deg);
}

.iti__selected-flag {
  padding: 0 6px 0 24px !important;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 66px !important;
  margin-left: 0;
}

.iti__country {
  padding-left: 24px !important;
}

.getInformation_form_text {
  color: #444444;
  font-size: 12px;
  margin-bottom: 16px;
  line-height: 16px;
}

.getInformation_form_text a {
  text-decoration: underline;
  color: #444444;
}

.getInformation_form_text a:hover {
  cursor: pointer;
}

/*****************************    ***************************/

/*****************************   FOOTER   ***************************/
.footer {
  padding: 30px 0;
}

.footer_wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer_info {
  max-width: 478px;
}

.footer_info p {
  font-size: 12px;
  margin-bottom: 8px;
  color: #3A241E;
  line-height: 18px;
}

.footer_info a {
  text-decoration: none;
  color: #3A241E;
  font-size: 12px;
  text-decoration: underline;
}

.mobile_burger {
  display: none;
}

.videos_mobile_burger {
  display: none;
}

.mobile {
  display: none;
}

.burger_menu.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.burger_menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, .3);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.burger_menu ul {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 30px 32px 30px 32px;
  list-style-type: none;
  gap: 16px;
  width: 100%;
  height: 158px;
  transform: translateY(75px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 2;
}

.burger_menu.hidden ul {
  transform: translateY(-50px);
  opacity: 0;
}

.burger_nav_link {
  text-decoration: none;
  font-size: 18px;
  line-height: 22px;
  color: #444444;
}

/*****************************    ***************************/

.modal-get_info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-get_info_title {
  font-size: 32px;
  line-height: 40px;
  font-family: 'Unbounded';
  margin-bottom: 24px;
}

.modal_close_conteiner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

.modal_close_svg {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 30px;
  height: 30px;
}

.modal_close_svg:hover {
  cursor: pointer;
}

.modal-get_info.open {
  opacity: 1;
}

.modal-get_info .getInformation_container {
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-get_info.open .getInformation_container {
  transform: scale(1);
}

.modal-get_info_.getInformation_container {
  padding: 60px 0;
  max-width: 824px;
  width: 100%;
}

/*****************************  VIDEOS  ***************************/

.videos_welcome_image {
  max-width: 450px;
  max-height: 388px;
  object-fit: contain;
  object-position: 50% 50%;
}

.videos_welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.videos_section {
  padding: 80px 0px;
}

.videos_welcome_title {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 32px;
}

.videos_welcome_title span {
  font-family: 'Unbounded';
}

.videos_welcome_info_ul {
  margin-bottom: 24px;
}

.videos_video_title {
  margin-bottom: 40px;
}

.video_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.video {
  width: 100%;
}

.vjs-poster img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50% 0%;
}

.video-js .vjs-big-play-button {
  background: #fff;
  color: #000;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  font-size: 110px;
  border-width: 2px;
  top: 50%;
  left: calc(50% + 85px);
}

.videos_subtitle {
  margin-bottom: 24px;
}

.videos_subtitle_two {
  margin-bottom: 0;
}

.nav_network_yt,
.nav_network_tg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgb(34, 34, 34);
  transition: all .2s linear;
}

.nav_network_yt {
  padding-left: 2px;
}

.nav_network_tg {
  padding-right: 1px;
}

.nav_network_yt:hover {
  background: #FF0032;
}

.nav_network_tg:hover {
  background: #31AFEC;
}

.soc_network {
  display: flex;
  gap: 16px;
  margin-right: 24px;
}

ul.videos_menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.modal_warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, .3);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal_warning.open {
  opacity: 1;
}

.modal_warning .modal_warning_container {
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal_warning.open .modal_warning_container {
  transform: scale(1);
}

.modal_warning_container {
  background-color: #fff;
  border: 2px solid rgb(203, 213, 225);
  background: rgb(255, 255, 255);
  max-width: 704px;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 56px 16px 40px 16px;
  position: relative;
  border-radius: 4px;
}

.modal_warning_close_conteiner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

.modal_warning_close_conteiner {
  cursor: pointer;
}

.modal_warning_close {
  position: absolute;
  top: 19px;
  right: 19px;
}

.modal_warning_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: #64748B;
}

.modal_button_container {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
  max-width: 580px;
}

.modal_soc_net_button {
  height: 48px;
  min-height: 48px;
  border-radius: 4px;
  background: rgb(34, 34, 34);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  flex: 1;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .2s linear;
}

.black_button_yt {
  height: 48px;
  min-height: 48px;
  border-radius: 4px;
  background: rgb(34, 34, 34);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  flex: 1;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .2s linear;
  max-width: 321px;
  width: 100%;
}

.black_button_yt:hover {
  cursor: pointer;
  background-color: #FF0032;
}

.modal_soc_net_button.vb:hover {
  background-color: #6F3FAA;
}

.modal_soc_net_button.tg:hover {
  background-color: #31AFEC;
}

.modal_soc_net_button.wa:hover {
  background-color: #10C044;
}

/*#video_one .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 0!important;
  transition: visibility 0.1s, opacity 0.1s;
  display: none!important;
}*/

.disabled {
  background: #CFCFCF;
  pointer-events: none;
  border: none;
  color: #fff;
}

/*****************************    ***************************/


@media (width <=1150px) {
  .main {
    padding: 0 60px;
  }

  .welcome {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .welcome_image {
    max-width: 288px;
  }

  .videos_welcome_image {
    max-width: 306px;
  }

  .aboutUs_image {
    max-width: 285px;
  }

  .startNow_image {
    max-width: 320px;
  }
}

@media (width <=950px) {
  .modal-get_info_.getInformation_container {
    margin: 0px 40px;
  }

  .welcome_title {
    font-size: 40px;
  }

  .welcome_subtitle {
    font-size: 18px;
  }

  .black_button {
    font-size: 18px;
    width: 296px;
  }

  .aboutUs {
    padding-top: 50px;
  }

  .title {
    font-size: 32px;
  }

  .aboutUs_text {
    font-size: 18px;
  }

  .fillForm_li p {
    font-size: 18px;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .forWhom_li p {
    font-size: 16px;
  }

  .startNow_text {
    font-size: 18px;
  }

  .getInformation_content_title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (width <=900px) {
  .videos_welcome_title {
    font-size: 25px;
  }
}

@media (width <=810px) {
  .welcome_title {
    font-size: 35px;
  }

  .welcome_subtitle {
    font-size: 16px;
  }

  .main {
    padding: 0 40px;
  }

  .aboutUs_info {
    margin-left: 50px;
  }
}

@media (width <=750px) {
  .videos_welcome_title {
    font-size: 22px;
  }
}

@media (width <=730px) {
  .videos_header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    padding: 8px 32px;
  }

  .nav_link {
    font-size: 16px;
  }

  .videos_mobile_burger {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .menu ul {
    gap: 24px;
  }

  ul.videos_menu {
    flex-direction: column-reverse;
    justify-content: start;
    gap: 24px;
    align-items: start;
    height: 172px;
  }

  .nav_network_yt,
  .nav_network_tg {
    height: 44px;
    width: 44px;
  }

  .nav_network_yt svg {
    width: 21.19px;
    height: 19.56px;
  }

  .nav_network_tg svg {
    width: 19.49px;
    height: 16.81px;
  }

  .videos_footer_wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .white_button {
    width: 100%;
  }

  #header_videos_nav {
    gap: 0;
    display: none;
  }

  .section {
    padding: 40px 0px;
  }

  .welcome_title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .welcome_title.yandex {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .welcome_title.zarabotok {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .welcome_subtitle {
    margin-bottom: 24px;
  }

  .black_button {
    width: 260px;
    font-size: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
  }

  .welcome_image {
    max-width: 212px;
  }

  .title {
    font-size: 24px;
    text-align: center;
  }

  .aboutUs_title {
    margin-bottom: 24px;
  }

  .aboutUs_text {
    font-size: 16px;
    line-height: 22px;
  }

  .aboutUs_image {
    max-width: 203px;
  }

  .fillForm_container {
    padding: 30px 50px 30px 50px;
  }

  .fillForm_title {
    margin-bottom: 24px;
  }

  .fillForm_li p {
    font-size: 16px;
    line-height: 22px;
  }

  .fillForm_ul {
    gap: 8px;
    margin-bottom: 24px;
  }

  .forWhom_li {
    flex: 1 1 calc(50% - 32px);
  }

  .forWhom_li p {
    line-height: 22px;
  }

  .forWhom_ul {
    gap: 32px;
  }

  .forWhom_title {
    margin-bottom: 32px;
  }

  .whatYouGet {
    padding: 30px 50px 30px 50px;
  }

  .startNow_image {
    max-width: 222px;
  }

  .startNow {
    gap: 20px;
  }

  .getInformation_title {
    margin-bottom: 24px;
  }

  .getInformation_content_title {
    font-size: 16px;
  }

  .getInformation_container {
    padding: 30px 38px 30px 38px;
  }

  .getInformation_form {
    max-width: 464px;
  }

  .default_input {
    font-size: 18px;
    height: 44px;
  }

  .select-selected {
    font-size: 18px;
    height: 44px;
  }

  .select-items div {
    font-size: 18px;
  }

  .footer_wrapper {
    margin-bottom: 16px;
  }

  .videos_section {
    flex-direction: column;
  }
}

@media (width <=620px) {
  .modal-get_info_.getInformation_container {
    padding: 50px 24px;
    border-radius: 30px;
    background: #fff;
    margin: 0 20px;
  }

  .modal-get_info_ .getInformation_form_text {
    color: #000;
  }

  .modal_close_svg {
    top: 20px;
    right: 20px;
  }

  .modal-get_info_title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
  }

  #header_nav {
    display: none;
  }

  .mobile_burger {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .header {
    padding: 8px 32px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
  }

  .section.welcome {
    flex-direction: column;
    background: #EEE9DE;
    border-radius: 20px 20px 0 0;
    padding: 50px 16px 8px 16px;
    align-items: center;
  }

  .welcome_title {
    text-align: center;
  }

  .welcome_subtitle {
    text-align: center;
  }

  .welcome_info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .welcome_info {
    margin-bottom: 40px;
  }

  .welcome_image {
    max-width: 360px;
    width: 100%;
    height: 334px;
    object-position: 50% 0%;
    object-fit: cover;
  }

  .main {
    padding: 0;
  }

  .desktop {
    display: none;
  }

  .aboutUs {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .section {
    padding: 40px 24px 40px 24px;
  }

  .aboutUs_image {
    max-width: 302px;
    width: 100%;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .aboutUs_info {
    margin: 0;
  }

  .fillForm_image {
    display: none;
  }

  .fillForm_container {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .whatYouGet_image {
    display: none;
  }

  .whatYouGet {
    border: none;
  }

  .startNow {
    flex-direction: column;
    background: #EEE9DE;
    border-radius: 20px 20px 0 0;
    align-items: center;
  }

  .startNow_image {
    max-width: 305px;
    width: 100%;
  }

  .getInformation_container {
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .getInformation_image_right,
  .getInformation_image_left {
    display: none;
  }

  .footer {
    padding: 30px 24px 30px 24px;
  }

  .footer_wrapper {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .menu ul {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  .videos_welcome {
    padding: 40px 0px 16px 0px;
  }

  .videos_main {
    padding: 0 24px;
  }

  .videos_footer {
    padding: 30px 0px 30px 0px;
  }

  .video-js .vjs-big-play-button {
    background: #fff;
    color: #000;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 25px;
    border-width: 2px;
    top: 50%;
    left: calc(50% + 12.5px);
  }
}

@media (width <=500px) {
  .modal_button_container {
    flex-direction: column;
  }

  .videos_section {
    padding: 40px 0px;
  }

  .videos_welcome_title {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 16px;
  }

  .videos_subtitle_two {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

  .videos_subtitle {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

  .videos_welcome_title span {
    color: #A88F59;
  }
}

@media (width <=400px) {
  .whatYouGet {
    margin: 0;
  }

  .black_button {
    width: 100%;
  }

  .fillForm_li p {
    line-height: 24px;
  }

  .forWhom_li p {
    font-size: 14px;
    line-height: 20px;
  }

  .startNow_text {
    font-size: 16px;
  }

  .startNow_li {
    gap: 16px;
  }

  .getInformation_content_title {
    text-align: left;
  }

  .getInformation_content_title {
    margin-bottom: 24px;
  }
}