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

:root {
  --white-color: #fff;
  --blue-color: #0098df;
  --black-color: #1c1c1c;
  --main-font: 'Inter', sans-serif;
  --second-font: 'Manrope', sans-serif;
  --third-font: 'Montserrat', sans-serif;
  --fourth-font: 'Montserrat Alternates', sans-serif;
  --fifth-font: 'Geologica Roman', sans-serif;
  --font-extra-light: 200;
  --font-light: 300;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --tab-width: 746px;
  --desktop-width: 1440px;
  --transition-dur-funct: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideArrowIn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(10px);
    opacity: 0;
  }
  51% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideArrowOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-10px);
    opacity: 0;
  }
  51% {
    transform: translateX(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideArrowDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0;
  }
  51% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideArrowUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0;
  }
  51% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* BASIC */

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

a {
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  fill: var(--black-color);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.custom_bt {
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
}

.custom_links a, .custom_links {
  text-decoration: none;
  color: currentColor;
}

li {
	list-style: none;
}

.custom_list {
  list-style: none !important;
}

.blue_btns:hover .arrow-icon,
.hero_btns:hover .arrow-icon {
  animation: slideArrowIn 0.3s ease-in-out forwards;
}

.blue_btns:not(:hover) .arrow-icon,
.hero_btns:not(:hover) .arrow-icon {
  animation: slideArrowOut 0.3s ease-in-out forwards;
}

.custom_header__contacts-whatsapp:hover .custom_header__contacts-whatsapp--img {
  animation: slideArrowUp 0.3s ease-in-out forwards;
}

.custom_header__contacts-whatsapp:not(:hover)
  .custom_header__contacts-whatsapp--img {
  animation: slideArrowDown 0.3s ease-in-out forwards;
}

.custom_phone-link:hover {
  animation: slideArrowUp 0.5s ease-in-out forwards;
}

.custom_phone-link:not(:hover) {
  animation: slideArrowDown 0.5s ease-in-out forwards;
}

body {
  font-family: var(--main-font);
  color: var(--black-color);
  background-color: #ffff;
  font-size: 16px;
  position: relative;
}

.custom_container {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 746px) {
  .custom_container {
    max-width: 744px;
  }
}

@media screen and (min-width: 1440px) {
  .custom_container {
    max-width: 1440px;
  }
}

.custom_text {
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/*Header top part*/
.custom_header {
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

.custom_header_container-top {
  background-color: #fff;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  min-height: 84px;
}

.custom_header__nav {
  display: none;
}

.custom_header-logo {
  margin-right: auto;
}

@media screen and (min-width: 746px) {
  .custom_header {
    max-width: 724px;
    width: 100%;
    margin: 0 auto;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .custom_header_container-top {
    padding: 0px 0px 0px 20px;
    height: 100%;
  }

  .custom_header-logo {
    margin-right: 60px;
  }

  .custom_header-burger--bt {
    display: none;
  }

  .custom_header__nav {
    display: inline-block;
    height: 100%;
    width: 100%;
  }
}

.custom_nav_list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.custom_nav_list a, .custom_nav_list {
  font-weight: var(--font-semi-bold);
  line-height: 125%;
  display: flex;
  align-items: center;
  width: 100%;
}

.custom_nav_list-item svg {
  fill: #fff;
}

.custom_nav_list-item:last-child .blue_btns {
  position: fixed;
  top: 0px;
  right: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 214px;
  background-color: var(--blue-color);
  height: 84px;
  color: #fff;
  justify-content: center;
  gap: 4px;
  font-size: 15px;
  line-height: 133%;
}

.custom_nav_list-item:last-child .blue_btns:hover,
.custom_nav_list-item:last-child .blue_btns:focus {
  background-color: #004edf;
}

.custom_nav_list-item:first-child {
  margin-right: 30px;
}

.custom_nav_list-item:nth-child(2) {
  margin-right: auto;
}

.nav_links:hover,
.nav_links:focus {
  outline: none;
  line-height: 125%;
  border-bottom: 1px solid var(--blue-color);
  text-decoration-skip-ink: none;
  color: var(--blue-color);
  transition: border color var(--transition-dur-funct);
}

/*Header bottom part*/

.custom_header_container-bottom {
  padding: 20px 10px;
  width: 100%;
  max-width: 704px;
  background-color: var(--black-color);
  margin: 0 auto;
  margin-bottom: auto;
}

.custom_header-title {
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 18px;
}

.custom_header-subtitle {
  font-weight: 500;
  color: #fff;
  margin-bottom: 22px;
}

.custom_header__contacts {
  color: #fff;
  display: grid;
  grid-gap: 18px;
  grid-template-columns: 5.44fr 1fr;
  width: 100%;
  grid-template-areas: 'phone whatsapp' 'contactUs contactUs';
}

.custom_header__contacts-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.custom_header__contacts-item svg {
  fill: #fff;
}

.custom_header__contacts-item:first-child {
  grid-area: phone;
  background-color: #f0f0f0;
}

.custom_header__contacts-item:first-child a {
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  line-height: 125%;
  display: flex;
  height: 100%;
  width: 100%;
}

.custom_header__contacts-item:nth-child(2) {
  grid-area: contactUs;
  background-color: var(--blue-color);
}

.custom_header__contacts-item:nth-child(2) a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #fff;
  height: 100%;
  width: 100%;
  justify-content: center;
}

.custom_header__contacts-item:nth-child(2):hover a {
  background-color: #004edf;
}

.custom_header__contacts-item:last-child {
  grid-area: whatsapp;
  background-color: #0e8e5b;
}

.custom_header__contacts-item:last-child svg {
  fill: #fff;
}

.custom_header__contacts-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.custom_header__contacts-whatsapp:hover,
.custom_header__contacts-whatsapp:focus {
  outline: none;
  background-color: #004edf;
}

@media screen and (min-width: 746px) {
  .custom_header_container-bottom {
    padding: 30px;
    max-width: 724px;
  }

  .custom_header-title {
    font-size: 44px;
    max-width: 638px;
  }

  .custom_header-subtitle {
    max-width: 521px;
    font-size: 20px;
  }

  .custom_header__contacts {
    display: flex;
    align-items: center;
  }

  .custom_header__contacts-item:not(:last-child) {
    width: 274px;
    height: 60px;
    min-height: 60px;
  }

  .custom_header__contacts-item:last-child {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 1440px) {
  .custom_header {
    max-width: 1440px;
    margin: 0 auto;
  }

  .custom_header-title {
    font-size: 64px;
    max-width: 1225px;
  }

  .custom_header__contacts {
    display: flex;
    align-items: center;
  }

  .custom_header__contacts-item:not(:last-child) {
    width: 274px;
    height: 60px;
    min-height: 60px;
  }
}

/* HERO */
.custom_hero .custom_container {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom_hero {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(../images/background/Hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 800px;
  padding: 84px 0px 10px 0px;
  display: flex;
  flex-direction: column;
}

.hero_container {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 746px) {
  .custom_hero {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.2) 100%
      ),
      url(../images/background/hero-tab.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1133px;
    padding: 104px 20px 20px 20px;
  }

  .hero_container {
    padding: 0;
    max-width: 724px;

  }

  .custom_hero .custom_container {
    max-width: 744px;
  }
}

@media screen and (min-width: 1440px) {
  .custom_hero {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.2) 100%
      ),
      url(../images/background/hero-desktop.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1024px;
    padding: 104px 60px 40px 60px;
  }

  .custom_header_container-bottom {
    max-width: 1440px;
    width: 100%;
  }
  .custom_hero .custom_container {
    max-width: 1440%;
  }

  .hero_container{
    max-width: 1440px;
  }


}


.hero_container li {
  margin-bottom: 30px;
  width: 100%;
}

.hero_container li:last-child {
  margin-bottom: 0px;
}

.hero_container a {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  border-bottom: 1px solid #fff;
  font-size: 18px;
}

.hero_container svg {
  fill: #fff;
}

@media screen and (min-width: 1440px) {
  .hero_container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero_container li {
    margin-bottom: 0;
    max-width: 420px;
    width: 100%;
  }
}

/* OFFER SECTION */

.offer {
  background-color: #f0f6f8;
}

.offer_container {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.offer_title-container {
  margin-bottom: 20px;
}

.offer_title-container h3 {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 39px;
  margin-bottom: 10px;
}

.offer_title-container h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 31px;
  background-color: var(--black-color);
  transform: translateY(-50%);
}

.offer_title-container h2 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.offer_title-container a {
  display: none;
}

/*List blocks*/

.offer_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.offer_list-item {
  padding: 25px 24px;
  width: 100%;
  min-height: 256px;
  background-color: #fff;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.offer_list-item:last-child {
  margin-bottom: 0;
}

.offer_list-item--block {
  position: relative;
}

.offer_list-item--block li:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #f0f6f8;
  margin-bottom: 20px;
}

.offer_list-item--block h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.offer_list-item--block h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.offer_list-item--block p {
  opacity: 0.8;
}

.offer_contatct-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--blue-color);
  min-height: 50px;
  color: #fff;
  font-size: 15px;
  line-height: 133%;
}

.offer_contatct-btn:hover,
.offer_contatct-btn:focus {
  background-color: #004edf;
}

.offer_contatct-btn svg {
  fill: #fff;
}

@media screen and (min-width: 746px) {
  .offer_list-item--block h2 {
    font-size: 42px;
  }

  .offer_list-item {
    min-height: 145px;
    margin-bottom: 20px;
  }

  .offer_list-item:last-child {
    margin-bottom: 0;
  }

  .offer_list-item--block {
    position: relative;
  }

  .offer_list-item--block li:first-child {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 0;
  }

  .offer_list-item p {
    max-width: 566px;
  }
}

@media screen and (min-width: 1440px) {
  .offer_container {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .offer_contatct-btn {
    position: absolute;
    max-width: 180px;
    width: 100%;
    height: 60px;
    left: 60px;
    bottom: 253px;
  }

  .offer_title-container {
    max-width: 447px;
    width: 100%;
  }

  .offer_list {
    max-width: 741px;
  }

  .offer_list-item p {
    max-width: 603px;
  }
}

/*advantages*/

.advantages_container {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages-subtitle {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 39px;
  margin-bottom: 10px;
}

.advantages-subtitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 31px;
  background-color: var(--black-color);
  transform: translateY(-50%);
}

.advantages-title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.advantages-text {
  max-width: 658px;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.advantages_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.advantages_list-item {
  background-color: #f0f6f8;
  padding: 20px;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.advantages_list-item:last-child {
  margin-bottom: 0;
}

.advantages_list-item--block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advantages_list-item--block h4 {
  font-weight: 400;
  font-size: 26px;
  max-width: 220px;
}

.advantages_list-item--block p {
  font-size: 16px;
}

.advantages_list-item--block li {
  width: 100%;
  position: relative;
}

.advantages_list-item--block li:first-child {
  margin-bottom: 20px;
}

.advantages_list-item svg {
  fill: var(--black-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(-45deg) translateY(-50%);
}

@media screen and (min-width: 746px) {
  .advantages_list-item--block br:last-child {
    display: none;
  }
}

@media screen and (min-width: 746px) {
  .advantages-title {
    font-size: 42px;
  }

  .advantages-text {
    margin-bottom: 60px;
  }

  .advantages_list-item {
    max-width: 100%;
  }

  .advantages_list-item--block h4 {
    font-weight: 400;
    font-size: 26px;
    max-width: 215px;
  }
}

@media screen and (min-width: 1440px) {
  .advantages_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .advantages_list-item {
    flex-basis: calc((100% - 60px) / 3);
    min-height: 190px;
  }

  .advantages_list-item--block {
    min-height: 150px;
  }

  .advantages_list-item--block li:first-child {
    margin-bottom: auto;
  }
}

/* VIDEO*/

.video_container {
  object-fit: cover;
  width: 100%;
  position: relative;
}

.my-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video_logo-link {
  position: absolute;
  bottom: 8px;
  left: 20px;
}

.video_logo-link svg {
  width: 173px;
  height: 42px;
  fill: #fff;
}

@media screen and (min-width: 746px) {
  .video_logo-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }

  .video_logo-link svg {
    width: 288.55px;
    height: 69px;
  }
}

@media screen and (min-width: 1440px) {
  .video_logo-link {
    position: absolute;
    bottom: 40px;
    left: 40px;
  }

  .video_logo-link svg {
    width: 552px;
    height: 132px;
  }
}

/* Facilities*/

.facilities {
  background-color: #f0f6f8;
}

.facilities_container {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facilities-subtitle {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 39px;
  margin-bottom: 10px;
}

.facilities-subtitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 31px;
  background-color: var(--black-color);
  transform: translateY(-50%);
}

.facilities-title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.facilities-text {
  max-width: 658px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.facilities_list {

  align-items: center;
  gap: 10px;
  display: grid;
  grid-template-rows: 1fr;
}

.facilities_list-item {
  background-color: #fff;
  padding: 20px;
}

.facilities_list-item:last-child {
  background-color: var(--blue-color);
  padding: 0;
  width: 100%;
  height: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facilities_list-item:last-child a {
  font-size: 22px;
  gap: 7.5px;
  line-height: 170%;
}

.facilities_list-item:last-child:hover a {
  background-color: #004edf;
}

.facilities_list-item--block {
  display: flex;
  flex-direction: column;
  min-height: 205px;
}

.facilities_list-item--block svg {
  fill: #0098df;
}

.facilities_list-item--block h3 {
  font-weight: 600;
  font-size: 22px;
}

.facilities_list-item--block p {
  font-weight: 400;
  font-size: 16px;
  max-width: 490px;
  width: 100%;
}

.facilities_list-item--block li:first-child {
  margin-bottom: 16px;
}

.facilities_list-item--block li:nth-child(2) {
  margin-bottom: auto;
}

.facilities_list-item:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  gap: 7.5px;
  font-size: 22px;
  font-weight: 600;
  line-height: 170%;
  color: #fff;
}

.facilities_list-item:last-child svg {
  fill: #fff;
}

@media screen and (min-width: 746px) {
  .facilities_container {
    padding: 60px 10px;
  }

  .facilities-title {
    font-size: 42px;
  }

  .facilities_list {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .facilities_list-item--block {
    min-height: 216px;
  }

  .facilities_list-item {
    flex-basis: calc((100% - 28px) / 2);
    min-height: 190px;
  }

  .advantages_list-item--block {
    min-height: 150px;
  }

  .advantages_list-item--block li:first-child {
    margin-bottom: auto;
  }

  .facilities_list-item:last-child {
    min-height: 256px;
  }
}

@media screen and (min-width: 1440px) {
  .facilities_container {
    padding: 60px;
  }

  .facilities_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .facilities_list-item--block {
    min-height: 216px;
  }

  .facilities_list-item {
    flex-basis: calc((100% - 84px) / 4);
    min-height: 248px;
  }
}

/*SLIDER SECTION */

.slider_section_container {
  padding: 10px;
}

.custom_slider {
  min-height: 358px;
  margin: 0 auto;
}

.aboutUs_container {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
}

.aboutUs-subtitle {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 39px;
  margin-bottom: 10px;
}

.aboutUs-subtitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 31px;
  background-color: var(--black-color);
  transform: translateY(-50%);
}

.aboutUs-title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.infrustucture-items,
.logicalAdv-item {
  padding-left: 42px;
  position: relative;
  margin-bottom: 14px;
}

.infrustucture_list {
  margin-bottom: 20px;
}

.infrustucture-items:last-child {
  margin-bottom: 0;
}

.check-pic {
  fill: var(--blue-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-pic {
  fill: var(--black-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.infrustucture-items div {
  max-width: 234px;
}

.infrustucture-items h3 {
  font-size: 16px;
  line-height: 156%;
}

.infrustucture-items p {
  font-size: 16px;
  line-height: 156%;
}

.logicalAdv {
  background-color: #f0f6f8;
  padding: 20px;
}

.logicalAdv h2 {
  font-family: 700;
  font-size: 26px;
  margin-bottom: 23px;
}

.logicalAdv-item h3,
.logicalAdv-item p {
  max-width: 194px;
  font-size: 16px;
  line-height: 156%;
}

.logicalAdv {
  margin-bottom: 40px;
}

@media screen and (min-width: 746px) {
  .logicalAdv-item h3,
  .logicalAdv-item p {
    max-width: 554px;
  }

  .custom_slider {
    min-height: 654px;
    max-width: 620px;
  }

  .aboutUs-title {
    font-size: 42px;
  }

  .slider_section_container {
    padding: 60px 20px;
  }
}

@media screen and (min-width: 1440px) {
  .slider_section_container {
    padding: 60px;
    display: flex;
  }

  .slider_section_container .offer_contatct-btn {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 253px;
  }

  .custom_slider {
    width: 620px;
    margin: 0 40px 0 0;
  }

  .custom_slides {
    width: 620px;
  }

  .aboutUs_container {
    width: 100%;
    padding: 0;
  }
}

.swiper_container_custom {
  overflow: hidden;
  position: relative;
}


.swiper_button_next_custom, .swiper_button_prev_custom {
  border-radius: 44px;
  background: #FFF;
  display: flex;
  padding: 9px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.icon_prev_swiper_button_prev_custom{
  transform: rotate(180deg);
}

.box_btn_navigation{
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  width: 100%;
  justify-content: space-between;
  padding: 0 20px;
}

.swiper_pagination_custom {
  position: static;
  display: flex;
  align-items: center;
  width: 252.064px !important;
  gap: 10.703px;
  margin-top: 16.055px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-pagination-bullet{
  width: 100%;
  height: 2.141px;
  opacity: 0.3;
  border-radius: 0;
  transition: var(--transition-dur-funct);
  background-color: #1C1C1C;
}

.swiper-pagination-bullet-active{
  opacity: 1;
}

.swiper_slide_img{
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.box_btn_navigation{
  display: none;
}


@media screen and (min-width: 746px) {
  .box_btn_navigation{
    display: flex;
  }

  .swiper_slide_img{
    height: 620px;
  }

  .swiper_pagination_custom{
    width: 471px !important;
    gap: 20px;
  }

  .swiper-pagination-bullet{
    height: 4px;
  }

}


/* FORM SECTION */

.custom_form_sectiom {
  padding: 30px 10px;
  background-color: var(--black-color);
}

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

.form_contacts_container {
  margin-bottom: 40px;
}

.form_title_container {
  position: relative;
  margin-bottom: 37px;
}

.form_title_container::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.form_title_container h2 {
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 18px;
}

.form_title_container p {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}

.form_contacts_item {
  position: relative;
  padding-left: 42px;
  margin-bottom: 26px;
}

.form_contacts_item:last-child {
  margin-bottom: 0;
}

.form_contacts-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.form_contacts_item h4 {
  font-weight: 200;
  font-size: 18px;
  line-height: 121%;
  color: #fff;
  margin-bottom: 2px;
}

.form_contacts_item p {
  font-weight: 700;
  font-size: 20px;
  line-height: 121%;
  color: #fff;
}

.form_contacts-link {
  font-weight: 700;
  font-size: 20px;
  line-height: 121%;
  color: #fff;
}

.form_contacts-link:hover,
.form_contacts-link:focus {
  outline: none;
  color: var(--blue-color);
  transition: border color var(--transition-dur-funct);
}

@media screen and (min-width: 746px) {
  .custom_form_sectiom {
    padding: 60px 20px 90px;
  }

  .form_contacts_container {
    margin-bottom: 100px;
  }

  .form_title_container h2 {
    font-weight: 700;
    font-size: 42px;
  }

  .form_title_container p {
    font-weight: 300;
    font-size: 20px;
  }

  .form_contacts_item {
    position: relative;
    padding-left: 52px;
  }

  .form_contacts-icon {
    width: 40px;
    height: 40px;
  }

  .form_contacts_item h4 {
    font-size: 22px;
  }

  .form_contacts_item p,
  .form_contacts-link {
    font-size: 28px;
  }
}

@media screen and (min-width: 1440px) {
  .custom_form_sectiom .custom_container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
  }

  .custom_form_sectiom {
    padding: 60px 60px 90px 60px;
  }

  .form_title_container h2 {
    /*max-width: 340px;*/
  }

  .form_title_container p {
    max-width: 610px;
  }

  .form_contacts_item {
    max-width: 415px;
  }

  .form_contacts_container {
    margin-bottom: 0;
  }
}

/* FORMA */

.form-container h2 {
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.form-container {
  width: 100%;
}


.wpforms-submit {
  width: 100% ;
  height: 50px ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  gap: 4px ;
  background-color: var(--blue-color) ;
  outline: none ;
  color: #fff ;
  font-weight: 600 ;
  font-size: 15px ;
  line-height: 133% ;
  border: none;
}

.wpforms-submit::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-size: 100% 100%;
  background-position-x: 0;
  background-image: url("../images/icons/arrow.svg");
  transition: var(--transition-dur-funct);
}

.wpforms-submit:hover::after {
  background-position-x: 23px;
}


.wpforms-submit svg {
  fill: #fff ;
}

.wpforms-submit:hover,
.wpforms-submit:focus {
  background-color: #004edf;
  cursor: pointer;
}


#wpforms-error-noscript {
  display: none;

}

#wpforms-confirmation-21 p {
    color: #fff;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-color: transparent;
  background-color: #383838;
  color: #fff;
  transition: all 0.6s ease;
}

input {
  min-height: 50px;
}

textarea {
  min-height: 127px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 106%;
  opacity: 0.6;
  transition: all 0.6s ease;
}

input:focus::placeholder {
  font-size: 10px;
  opacity: 1;
  transform: translateX(-5px) translateY(-12px);
  transition: all 0.6s ease;
}

textarea:focus::placeholder {
  font-size: 10px;
  opacity: 1;
  transform: translateX(-5px) translateY(-5px);
  transition: all 0.6s ease;
}

input:focus,
textarea:focus {
  border-color: #fff;
  outline: none;
  transition: all 0.6s ease;
}

@media screen and (min-width: 746px) {
  .form-container h2 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  input,
  textarea {
    margin-bottom: 20px;
  }

  input {
    min-height: 57px;
  }

  textarea {
    min-height: 247px;
  }
}

@media screen and (min-width: 1440px) {
  .form-container {
    max-width: 610px;
  }

  .form-container h2 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  input,
  textarea {
    margin-bottom: 20px;
  }

  input {
    min-height: 57px;
  }

  textarea {
    min-height: 247px;
  }
}

/* FOOTER*/

footer {
  background-color: #f0f6f8;
  padding: 40px 20px;
}

.footer_container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.footer_container::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

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

.footer-logo svg {
  width: 320px;
  height: 75px;
}

.footer_logo_container {
  margin-bottom: 40px;
}

.footer_logo_container .custom_list li:first-of-type {
  margin-bottom: 40px;
  text-align: center;
}

.sign_link {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black-color);
  width: 100%;
  border-bottom: 2px solid var(--black-color);
  font-size: 16px;
  font-weight: 400;
}

.sign_link span {
  opacity: 0.5;
}

.footer_nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 65px;
}

.footer_nav h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 32px;
}

.footer_nav-item:first-child {
  margin-bottom: 21px;
}

.footer_nav-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
}

.footer_contacts h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 32px;
}

.footer_contacts .form_contacts_item:not(:last-child) {
  margin-bottom: 32px;
  color: var(--black-color);
}

.footer_contacts .form_contacts-icon {
  fill: var(--black-color);
}

.footer_contacts .form_contacts-link,
.footer_contacts .form_contacts_item p {
  color: var(--black-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  max-width: 250px;
}

.footer_contacts .form_contacts_list {
  margin-bottom: 42px;
}

.social_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12.71px;
}

.social_list-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48.71px;
  height: 48.71px;
  background-color: #fff;
  border-radius: 50%;
}

.social_list-link svg {
  fill: var(--black-color);
}

.social_list-link:hover {
  background-color: var(--blue-color);
  transition: all 2ms easy;
}

.social_list-link:hover svg {
  fill: #fff;
  transition: all 2ms easy;
}

.copyright {
  padding: 14px 0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 171%;
}

@media screen and (min-width: 746px) {

  .offer_title-container h2 {
    font-size: 42px;
  }

  footer {
    padding: 60px 60px 0 60px;
  }

  .footer-logo svg {
    width: 420px;
    height: 99px;
  }

  .footer_logo_container {
    margin-bottom: 60px;
  }

  .footer_logo_container .custom_list li:first-of-type {
    margin-bottom: 60px;
  }

  .sign_link {
    font-size: 22px;
  }

  .footer_nav {
    margin-bottom: 60px;
  }

  .footer_nav h4 {
    margin-bottom: 30px;
  }

  .footer_nav-item:first-child {
    margin-bottom: 20px;
  }

  .footer_contacts h4 {
    margin-bottom: 30px;
  }

  .footer_contacts .form_contacts_item:not(:last-child) {
    margin-bottom: 30px;
  }

  .footer_contacts .form_contacts-link,
  .footer_contacts .form_contacts_item p {
    max-width: 100%;
  }

  .footer_contacts .form_contacts_list {
    margin-bottom: 40px;
  }

  .social_list {
    justify-content: flex-start;
    gap: 12px;
  }

  .copyright {
    padding: 30px 0;
  }
}

@media screen and (min-width: 746px) {
  .footer_container {
    margin-bottom: 66px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer_container::after {
    bottom: -66px;
  }

  .footer_logo_container {
    margin-bottom: 0px;
  }

  .footer_logo_container .custom_list li:first-of-type {
    margin-bottom: 131px;
  }

  .social_list {
    justify-content: flex-end;
  }
}

.footer-form_contacts-icon {
  width: 28px;
  height: 28px;
}


html {
  scroll-behavior: smooth;
}

/* MENU */
.custom_menu {
  background-color: #fff;
  width: 100%;
  height: 0px;
  transition: height 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-open.custom_menu {
  height: 292px;
}

.custom_menu .custom_header__nav {
  display: block;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease-in-out, transform 0.5s ease-in-out;
}

.is-open.custom_menu .custom_header__nav {
  opacity: 1;
  visibility: visible;
}

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

.custom_menu .custom_nav_list-item {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 14px 0 0;
}

.custom_menu .custom_nav_list-item:last-child {
  margin: 0;
  width: 100%;
}

.custom_menu .custom_nav_list-item:last-child .blue_btns {
  position: relative;
  height: 100%;
  width: 100%;
}

.open-menu {
  max-width: 320px;
}

@media screen and (min-width: 746px) {
  .custom_menu {
    display: none;
  }
}

/* MODAL*/

.modal_container form {
  display: flex;
  flex-direction: column;
}

.modal_container {
  position: fixed;
  width: 95%;
  height: 95%;
  background-color: #fff;
  z-index: 99999;
  top: 1000%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 69px 20px 20px 20px;
  overflow-y: auto;
  transition: all 0.5s ease-in-out;
}

.modal-is-open.modal_container {
  top: 50%;
  left: 50%;
}

.modal-close-button {
  display: flex;
  gap: 4px;
  font-weight: 500;
  font-size: 18px;
  line-height: 128%;
  color: #1c1c1c;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-close-button svg {
  fill: #1c1c1c;
  transition: transform 0.3s ease;
}

.modal-close-button:hover {
  color: var(--blue-color);
}

.modal-close-button:hover svg {
  fill: var(--blue-color);
  transform: rotate(180deg);
}

.modal_container h2 {
  font-size: 26px;
  font-weight: 500;
  color: #1c1c1c;
  margin-bottom: 26px;
}

.modal_container input,
.modal_container textarea {
  resize: none;
  border: none;
  background-color: inherit;
  border-bottom: 1px solid #bcc5ca;
  color: var(--black-color);
  padding: 15px 0;
}

.modal_container textarea,
.modal_container input {
  font-weight: 300;
  font-size: 20px;
  line-height: 255%;
  color: var(--black-color);
  margin-bottom: 16px;
}

.modal_container input::placeholder,
.modal_container textarea::placeholder,
.modal_container input:focus::placeholder,
.modal_container textarea:focus::placeholder {
  font-weight: 300;
  font-size: 20px;
  line-height: 255%;
  color: #485060;
  opacity: 0.5;
  transform: translateX(0) translateY(0);
}

.modal_container textarea::placeholder {
  line-height: 0;
}

.modal_container textarea {
  margin-bottom: 20px;
}

input:focus,
textarea:focus {
  border-bottom: 1px solid var(--black-color);
  outline: none;
  transition: all 0.6s ease;
}

@media screen and (min-width: 1440px) {
  .modal_container {
    max-width: 670px;
    width: 100%;
    max-height: 844px;
    padding: 89px 40px 40px 40px;
  }

  .modal_container textarea {
    margin-bottom: 50px;
  }

  .modal_container h2 {
    font-size: 32px;
    margin-bottom: 26px;
  }

  .modal_container input {
    margin-bottom: 26px;
  }

  .modal_container input::placeholder,
  .modal_container textarea::placeholder,
  .modal_container input:focus::placeholder,
  .modal_container textarea:focus::placeholder {
    font-size: 26px;
    line-height: 196%;
  }

  .modal-close-button {
    top: 40px;
    right: 40px;
  }
}

.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 47, 66, 0.4);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-active {
  opacity: 1;
  visibility: visible;
}

.open-modal {
  border: none;
}

.footer-logo_icon{
  width: 100% !important;
}



