/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap");

:root {
  --orange: #f54613;
  --dark-blue: #022a52;
  --blue: #0466d9;
  --white: #fff;
  --gray: #ebebeb;
}
* {
  margin: 0;
  padding: 0;
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #fff;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder,
input[type="date"].input {
  color: rgba(255, 255, 255, 0.4);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}

select.input {
  background-color: rgba(250, 252, 255, 0.15); /* фон самого select */
}
select.input:focus {
  background-color: rgba(250, 252, 255, 0.25);
}
select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("../images/arrov-in.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 19px auto;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

select.input option {
  background-color: #003366; /* фон опций (виден только в Firefox) */
  color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  transition: opacity 0.4s;
  cursor: pointer;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1400px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
	overflow:hidden;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.mobail-menu {
  display: none;
}
.size,
.contact,
.blue-map {
  margin-top: 130px;
}
.p-top {
  padding-top: 130px;
}
.top-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.white.top-title {
  align-items: flex-start;
}
.white .title,
.white .subtitle {
  color: var(--white);
}
.title {
  color: var(--dark-blue);
  text-align: center;
  font-family: Oswald;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.subtitle {
  max-width: 800px;
  color: var(--dark-blue);
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* header */
.header .container {
  overflow: visible;
}
.header {
  position: fixed;
  top: 0;
  background-color: var(--white);
  z-index: 5;
  width: 100%;
  padding: 2px 0;
}
.heade-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap__logo {
  width: 98px;
  display: block;
}
.heade-menu ul {
  display: flex;
  gap: 48px;
  align-items: center;
}
.heade-menu ul a {
  color: #323232;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  display: block;
  transition: 0.3s all;
}
.heade-menu ul a::after {
  content: "";
  height: 1px;
  width: 0;
  left: 0;
  transition: 0.3s all;
  background-color: var(--orange);
  position: absolute;
  bottom: -1px;
}
.heade-menu ul li:hover a::after {
  width: 100%;
}
.heade-menu ul li {
  position: relative;
}
.heade-menu ul li:hover a {
  color: var(--orange);
}
.hesder-button_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.orange-button,
.blue-button {
  color: var(--white);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 3px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.orange-button {
  background-color: var(--orange);
}
.blue-button {
  background-color: var(--blue);
}
/* header */

/* hero */
.hero {
  height: 100vh;
  padding: 180px 0 50px;
  background: #022a52;
  position: relative;
  overflow: hidden;
}
.rewiew-hero {
  border-radius: 51px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: max-content;
}
.rewiew-hero img {
  display: block;
}
.rewiew-hero .people {
  width: 112px;
}
.rewiew-hero .star {
  width: 68px;
}
.rewiew-hero p {
  color: var(--white);
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.096px;
}
.hero-left {
  max-width: 600px;
}
.hero-title {
  color: var(--white);
  font-family: Oswald;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 96px */
  text-transform: uppercase;
  margin-top: 47px;
}
.hero-subtitle img {
  width: 37px;
}
.hero-subtitle {
  margin-top: 20px;
  display: flex;
  gap: 11px;
  align-items: flex-end;
  color: var(--orange);
  font-family: Oswald;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.hero-descr {
  margin-top: 30px;
  max-width: 475px;
  color: var(--white);
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.hero-button {
  margin-top: 65px;
  display: flex;
  gap: 20px;
}
.button-arrow {
  display: flex;
  align-items: center;
  border-radius: 3px;
  border: 2px solid #f54613;
}
.button-arrow .img {
  padding: 14px;
  background: #f54613;
}
.button-arrow p {
  color: var(--white);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 3px 0 0 3px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero .button-arrow p {
  min-width: 265px;
}
.hero .blue-button {
  min-width: 215px;
}
.hero-right {
  max-width: 67%;
  width: 1280px;
  position: absolute;
  right: -4%;
  top: 30px;
  padding-right: 28px;
  display: flex;
  height: 100%;
  align-items: center;
}
/* hero */

/* size */
.size {
  background-image: url(../images/size-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding-bottom: 100px;
}
.swiper--contant {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  margin-top: 30px;
  overflow: hidden;
}
.size .swiper-slide {
  border-radius: 3px;
  background: var(--gray);
  padding: 58px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
}
.prev,
.next {
  width: 70px;
  height: 70px;
  border-radius: 500px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 29px;
}
.swiper--container {
  width: 80%;
}
.prev img,
.next img {
  display: block;
  width: 12px;
  height: 24px;
}
.sw-top {
  display: flex;
  gap: 100px;
  align-items: center;
}
.sw-top p {
  color: var(--dark-blue);
  font-family: Oswald;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.orange-text {
  color: var(--white);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  border-radius: 20px;
  background: var(--orange);
  padding: 5px 10px;
}
.sw-text {
  max-width: 335px;
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.sw-bottom {
  display: flex;
  gap: 43px;
  align-items: center;
}
.sw-bottom p {
  color: var(--blue);
  font-family: Oswald;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.sw-bottom .blue-button {
  width: 160px;
  padding: 10px 14px;
}

/* size */

/* why */
.why--inner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-item {
  padding: 20px 32px 20px 20px;
  border-radius: 3px;
  background: var(--gray);
  display: flex;
  gap: 20px;
  align-items: center;
}
.why-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 38.571px;
  background: #0466d9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item .icon img {
  width: 25.714px;
  height: 25.714px;
}
.why-title {
  color: var(--dark-blue);
  font-family: Oswald;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}
.why-item .text {
  margin-top: 10px;
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
/* why */

/* how-works */
.how-works .subtitle {
  max-width: none;
}

.svg {
  height: 450px;
  height: 100%;
  position: relative;
}
.stages__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.svg div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 190px;
  opacity: 0;
}
.how-works--title {
  position: relative;
}
.how-works--title p {
  position: absolute;
  top: 0;
  color: var(--dark-blue);
  font-family: Oswald;
  font-size: 96px;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s all;
  opacity: 0;
}
.how-works--title p.active {
  position: relative;
  opacity: 1;
}
.how-works-top {
  margin-top: 50px;
  height: 470px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.how-works--text {
  position: relative;
  display: flex;
  justify-content: end;
}
.how-works--text p {
  position: absolute;
  top: 0;
  width: 340px;
  color: var(--dark-blue);
  text-align: right;
  font-family: Oswald;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  opacity: 0;
  transition: 0.3s all;
}
.how-works--text p.active {
  position: relative;
  right: 0;
  opacity: 1;
}
.how-works--inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 50px;
  height: 87vh;
}
.how-works--inner_bottom-num div {
  color: var(--orange);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%; /* 16.2px */
  text-transform: uppercase;
}
.how-works--inner_bottom-line {
  color: #d9d9d9;
}
.how-works--inner_bottom {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.how-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  overflow: hidden;
}

.how-works-grid div {
  display: flex;
  justify-content: space-between;
}

.how-works-grid div:first-child {
  display: flex;
  justify-content: start;
}
.how-works-grid div:last-child {
  display: flex;
  justify-content: end;
}
.bottom-line-item {
  position: relative;
  display: flex;
  align-items: center;
}
.bottom-line-item svg {
  position: relative;
  z-index: 2;
}
.bottom-line-item svg,
.bottom-line-item svg circle {
  transition: 0.6s all;
}
svg.actives {
  color: var(--orange);
}
.bottom-line {
  position: absolute;
  z-index: 0;
  top: 50%;
  bottom: 50%;
  width: 100%;
  height: 4px;
  background-color: #d9d9d9;
}

.bottom-line::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  height: 4px;
  background-color: var(--orange);
  width: 0;
  transition: 0.7s all;
  left: -1px;
}
.active .bottom-line::after {
  width: 100%;
}
/* how-works */

/* blue-map */
.blue-map {
  background: #022a52;
  padding: 100px 0;
}
.blue-map--inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.blue-map--right {
  max-width: 455px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.blue-map--buttom {
  display: flex;
  justify-content: space-between;
}
.blue-map--buttom > div {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
.blue-map--buttom > div::after {
  content: "";
  position: absolute;
  height: 133px;
  top: 16px;
  left: 22px;
  width: 2px;
  z-index: 0;
  background-color: var(--white);
}
.blue-map--item.active {
  background: var(--orange);
}
.blue-map--item {
  display: flex;
  border-radius: 50px;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.4s all;
}

.blue-map--item p {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blue-map--item svg {
  fill: var(--dark-blue);
  transition: 0.4s all;
}
.blue-map--item.active svg {
  fill: var(--orange);
}

#city-map {
  transition: opacity 0.2s ease;
  opacity: 1;
}
#city-map.updating {
  opacity: 0;
}

/* blue-map */

/* reviews */
.reviews .swiper-slide {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border-radius: 3px;
  background: #ebebeb;
  height: auto;
}
.reviews-sw .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reviews-top {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.reviews-top .name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-top .name .img {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.reviews-top .name .first {
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  width: max-content;
}
.reviews-top .name .last {
  color: rgba(2, 42, 82, 0.69);
  font-family: Inter;
  font-size: 14px;
  font-weight: 300;
}
.reviews-top .star {
  display: flex;
  align-items: center;
}
.reviews-top .star .img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.reviews-center {
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
}
.reviews-bottom {
  color: rgba(2, 42, 82, 0.69);
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
}
/* reviews */

/* faq */

.f-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s;
}
.f-bottom span {
  display: block;
  height: 15px;
}
.active .f-bottom {
  grid-template-rows: 1fr;
}
.f-bottom > div {
  min-height: 0;
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 18px;
  font-weight: 300;
  line-height: 110%; /* 19.8px */
}

.f-close {
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all;
}
.f-close div {
  position: absolute;
  background-color: var(--orange);
  width: 100%;
  height: 2px;
}
.f-close div:nth-child(1) {
  transform: rotate(90deg);
  transition: 0.5s all;
}
.faq-item.active .f-close {
  transform: rotate(180deg);
}
.faq-item.active .f-close div:nth-child(1) {
  transform: rotate(0deg);
}

.faq-item {
  padding: 20px 30px;
  border-radius: 3px;
  background: #ebebeb;
  cursor: pointer;
}
.f-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq-top_title {
  color: var(--dark-blue);
  font-family: Oswald;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%; /* 22px */
}
.faq--inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.faq-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-right .img {
  height: 100%;
}
.faq-right .img img {
  display: block;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
/* faq */

/* contact */
.contact {
  padding: 100px 0;

  background-image: url(../images/form-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact--inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contact .title,
.contact .subtitle {
  color: var(--white);
}

.form--content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}
.form--content .div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.input--text {
  color: var(--white);
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
}
.input {
  width: 100%;
  margin-top: 8px;
  border-radius: 3px;
  background-color: rgba(250, 252, 255, 0.15);
  padding: 15px 12px;
  color: var(--white);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}
input[type="date"].input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
input[type="date"].input {
  position: relative;
  background-image: url("../images/input.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px auto;
  padding-right: 20px;
}

.form--btn {
  margin-top: 50px;
  grid-column: span 2;
  width: 100%;
  display: flex;
  justify-content: center;
}
.form-orange {
  color: var(--white);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  width: 216px;
  padding: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #f54613;
}
/* contact */

/* footer */
.footer {
  padding: 40px 0 50px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.footer-contact {
  padding-top: 10px;
  display: flex;
  gap: 20px;
}
.footer-contact--item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-contact--item img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
}
.footer-contact--item .text {
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}
.footer-text {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-text .policy {
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%; /* 17.6px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.footer-text .text {
  color: var(--dark-blue);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%; /* 17.6px */
}
.mk {
  display: flex;
  align-items: center;
  gap: 5px;

  color: var(--dark-blue);
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
}
.footer-btn {
  width: 100%;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-btn > a {
  width: 100%;
}

/* Dropdown Navigation */
.has-dropdown {
  position: relative;
}
.heade-menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 100;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover > .dropdown {
  display: flex;
}
.dropdown li a {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 14px;
}
.dropdown li a::after {
  display: none;
}
/* footer */
