@charset "UTF-8";
.js-particles canvas {
  display: block;
  vertical-align: bottom;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1.4s ease;
  transition: opacity 0.8s ease, transform 1.4s ease;
}

.js-particles {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

main {
  background-color: #3371b2;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 2rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-container {
  max-width: 112rem;
  margin: 0 auto;
}

.u-phone-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 55px;
}

.u-width-full {
  width: 100% !important;
}

.u-height-full {
  height: 100% !important;
}

.u-phone-seven-box {
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
}

.u-phone-seven {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: inherit;
  line-height: normal;
}

.u-phone-input {
  padding-left: 0 !important;
  border-bottom: none !important;
}
.u-phone-input:focus {
  border-bottom: none !important;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .btn, .btn:link, .btn:visited {
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 23.2em) {
  .btn, .btn:link, .btn:visited {
    padding: 1.5rem 1.5rem;
    font-size: 1.2rem;
  }
}
.btn, .btn:link, .btn:visited {
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--blue {
  background-color: #004d9f;
  color: #fff;
}
.btn--blue::after {
  background-color: #004d9f;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.black-screen {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.menu-icon {
  height: 5rem;
  width: 5rem;
  margin-left: 2rem;
}

.menu-social {
  height: 6rem;
  width: 6rem;
}

.menu-social-box {
  display: flex;
  gap: 2rem;
}

.wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 20%;
  background-image: linear-gradient(to right bottom, #3371b2, #003e7f);
  transition: all 0.6s ease-in-out;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  z-index: 10;
}
@media (max-width: 50em) {
  .wrapper {
    width: 30%;
  }
}
@media only screen and (max-width: 37.5em) {
  .wrapper {
    width: 35%;
  }
}
@media (max-width: 28em) {
  .wrapper {
    width: 50%;
  }
}

#active:checked ~ .black-screen {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s;
}

#active:checked ~ .wrapper {
  right: 0;
}

#active:checked ~ label {
  position: fixed;
}

.menu-btn {
  position: absolute;
  z-index: 15;
  right: 2rem;
  top: 2rem;
  height: 5rem;
  width: 5rem;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.menu-btn:hover span, .menu-btn:hover::before, .menu-btn:hover::after {
  border-bottom: 2px solid #d3d3d3;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 30%;
  width: 55%;
  border-bottom: 2px solid #fff;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn:before {
  transform: translateY(-8px);
}

.menu-btn:after {
  transform: translateY(8px);
}

.close {
  z-index: 15;
  height: 50px;
  width: 50px;
  pointer-events: none;
  transition: background 0.6s;
}

/* closing animation */
#active:checked + .menu-btn span {
  transform: scaleX(0);
}

#active:checked + .menu-btn:before {
  transform: rotate(45deg);
  border-color: #fff;
}

#active:checked + .menu-btn:after {
  transform: rotate(-45deg);
  border-color: #fff;
}

input[type=checkbox] {
  display: none;
}

#active:checked ~ .wrapper ul li a {
  opacity: 1;
}

#active:checked + .menu-social-box {
  opacity: 1;
}

.wrapper ul li a {
  transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wrapper ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wrapper ul li a:link, .wrapper ul li a:visited {
  display: block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 235%;
  transition: all 0.4s;
}
@media only screen and (max-width: 37.5em) {
  .wrapper ul li a:link, .wrapper ul li a:visited {
    background-image: none;
  }
}
.wrapper ul li a:hover, .wrapper ul li a:active {
  background-position: 100%;
  color: #004d9f;
  transform: translateX(1rem);
}
@media only screen and (max-width: 37.5em) {
  .wrapper ul li a:hover, .wrapper ul li a:active {
    color: #fff;
  }
}

#active:checked + .menu-btn:hover::after {
  border-color: #d3d3d3;
}

#active:checked + .menu-btn:hover::before {
  border-color: #d3d3d3;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.popup__content {
  display: flex;
  justify-content: center;
}
.popup .popup_form {
  width: 60%;
  position: relative;
  z-index: 5;
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, transparent 50%), url(../img/popup_img.jpeg);
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  transition: all 0.4s;
}
@media (max-width: 62.5em) {
  .popup .popup_form {
    width: 90%;
  }
}
@media only screen and (max-width: 37.5em) {
  .popup .popup_form {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.8);
    grid-template-columns: 1fr;
    padding: 3rem;
  }
}
.popup__form {
  display: flex;
  align-items: center;
  padding: 6rem;
  height: 40rem;
}
@media only screen and (max-width: 37.5em) {
  .popup__form {
    align-items: flex-start;
    text-align: center;
    font-size: 2.6rem;
    padding: 0;
    height: auto;
  }
}
.popup__form2 {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-self: end;
  margin-bottom: 2rem;
}
.popup__text {
  font-size: 1.6rem;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
}
.popup__close:link, .popup__close:visited {
  color: #777;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 6rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
@media only screen and (max-width: 37.5em) {
  .popup__close:link, .popup__close:visited {
    top: 0;
  }
}
.popup__close:hover {
  color: #004d9f;
}

/* картинка на странице */
.image__wrapper {
  display: flex;
  justify-content: center;
  grid-column: 1/3;
}

.minimized {
  width: 8rem;
  height: 10rem;
  cursor: pointer;
}

.header {
  background-color: #004d9f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  position: relative;
  z-index: 5;
}
@media (max-width: 84em) {
  .header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.header .logo-box {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header .logo-box__logo {
  width: 28rem;
  margin-top: -1.5rem;
}
@media (max-width: 30.625em) {
  .header .logo-box__logo {
    width: 26rem;
  }
}
@media (max-width: 28.75em) {
  .header .logo-box__logo {
    width: 22rem;
  }
}
.header .logo-box__text {
  font-size: 1rem;
  color: #d3d3d3;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 0.3rem;
}
@media only screen and (max-width: 37.5em) {
  .header .logo-box__text {
    font-size: 0.8rem;
  }
}
@media (max-width: 26.875em) {
  .header .logo-box__text {
    display: none;
  }
}
.header .location-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.header .location-box__icon {
  height: 3rem;
  width: 3rem;
  fill: #fff;
}
@media (max-width: 43.125em) {
  .header .location-box__icon {
    height: 2rem;
    width: 2rem;
  }
}
.header .location-box__text {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 43.125em) {
  .header .location-box__text {
    font-size: 1.3rem;
  }
}
.header .location-box__text-break {
  display: none;
}
@media (max-width: 23.75em) {
  .header .location-box__text-break {
    display: block;
  }
}
@media (max-width: 21.25em) {
  .header .location-box__text-break {
    display: none;
  }
}
.header .phone-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.header .phone-box__icon {
  height: 3rem;
  width: 3rem;
  fill: #fff;
}
@media (max-width: 43.125em) {
  .header .phone-box__icon {
    height: 2rem;
    width: 2rem;
  }
}
.header .phone-box__tel:link, .header .phone-box__tel:visited {
  text-decoration: none;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 43.125em) {
  .header .phone-box__tel:link, .header .phone-box__tel:visited {
    font-size: 1.3rem;
  }
}
.header .phone-box__tel:hover, .header .phone-box__tel:active {
  color: #d3d3d3;
}

.wrap {
  display: flex;
  margin-left: auto;
  gap: 4rem;
}
@media (max-width: 84em) {
  .wrap {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-left: 0;
    margin-top: 1.5rem;
    justify-self: center;
    gap: 0;
    column-gap: 4rem;
  }
}
@media (max-width: 51.5em) {
  .wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 21.25em) {
  .wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.header-email:link,
.header-email:visited {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 43.125em) {
  .header-email:link,
  .header-email:visited {
    font-size: 1.3rem;
  }
}

.header-email:hover,
.header-email:active {
  color: #d3d3d3;
}

@media (max-width: 19.375em) {
  #header-address {
    overflow-wrap: break-word;
    max-width: 200px;
  }
}

.hero {
  height: 90vh;
  z-index: 5;
  background-image: linear-gradient(to right, rgba(238, 238, 238, 0.05) 35%, #eeeeee 100%), url(../img/bg/bg.jpg);
  background-size: cover;
  background-position: center 10%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
}
.hero__indent {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .hero__indent {
    display: block;
  }
}
@media (max-width: 62.5em) {
  .hero {
    justify-items: center;
  }
}
@media (max-width: 50em) {
  .hero {
    background-image: linear-gradient(to bottom, rgba(238, 238, 238, 0.35) 50%, #eeeeee 100%), url(../img/bg3.jpg);
    background-position: right 35% bottom 60%;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero {
    background-position: right 70% bottom 60%;
  }
}
@media (max-width: 23.0625em) {
  .hero {
    background-position: right 85% bottom 60%;
  }
}
.hero .hero-box {
  width: 60%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 50em) {
  .hero .hero-box {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero .hero-box {
    padding: 0;
  }
}
.hero__heading {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  animation: moveInLeft 0.5s;
  text-align: center;
  color: #333;
}
.hero__heading-main {
  text-transform: uppercase;
  display: block;
}
@media (max-width: 68.75em) {
  .hero__heading-main {
    font-size: 3.4rem;
  }
}
@media (max-width: 43em) {
  .hero__heading-main {
    font-size: 3.2rem;
  }
}
@media (max-width: 31.25em) {
  .hero__heading-main {
    font-size: 2.6rem;
  }
}
@media (max-width: 25.75em) {
  .hero__heading-main {
    font-size: 2rem;
  }
}
@media (max-width: 19.25em) {
  .hero__heading-main {
    font-size: 1.8rem;
  }
}
.hero__heading-sub {
  font-size: 2.8rem;
  display: block;
}
@media (max-width: 31.25em) {
  .hero__heading-sub {
    font-size: 2rem;
  }
}
@media (max-width: 25.75em) {
  .hero__heading-sub {
    font-size: 1.8rem;
  }
}
@media (max-width: 21.25em) {
  .hero__heading-sub {
    font-size: 1.3rem;
  }
}
.hero__benefits {
  list-style: none;
  animation: moveInLeft 0.5s;
}
.hero__benefit {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  gap: 1rem;
}
.hero__benefit:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 25.75em) {
  .hero__benefit {
    font-size: 1.4rem;
  }
}
@media (max-width: 21.25em) {
  .hero__benefit {
    font-size: 1.3rem;
  }
}
.hero__benefit__icon {
  height: 2.5rem;
  width: 2.5rem;
  fill: #004d9f;
}

.headings_border {
  display: flex;
  justify-content: center;
}

.service {
  padding: 9.6rem 3.2rem;
  background-color: #3371b2;
}
.service__heading {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  border-bottom: 1px solid #fff;
}
@media (max-width: 23.125em) {
  .service__heading {
    font-size: 2.6rem;
  }
}
.service__subheading {
  font-size: 1.8rem;
  color: #fff;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 5rem;
}
@media (max-width: 56.25em) {
  .service-box {
    grid-template-columns: 1fr;
    row-gap: 10rem;
    width: 50%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .service-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7rem;
  }
}

.heading-tertiary {
  font-size: 1.6rem;
  background-color: #004d9f;
}

.card {
  position: relative;
  height: 42rem;
  z-index: 5;
}
.card__icon {
  height: 15rem;
  width: 15rem;
  margin-bottom: 2rem;
}
.card__side {
  height: 42rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  background-color: #004d9f;
}
.card__side--back {
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 56.25em) {
  .card__side--back {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 37.5em) {
  .card__side--back {
    padding: 3rem;
  }
}
.card__side--back-1 {
  background-color: #fff;
}
.card:hover .card__side--front {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 56.25em) {
  .card:hover .card__side--front {
    opacity: 1;
    visibility: visible;
  }
}
.card:hover .card__side--back {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 56.25em) {
  .card:hover .card__side--back {
    opacity: 1;
    visibility: visible;
  }
}
.card__heading {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 56.25em) {
  .card__heading {
    font-size: 2.8rem;
  }
}
@media (max-width: 23.125em) {
  .card__heading {
    font-size: 2.4rem;
  }
}
.card__heading-sub {
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #d3d3d3;
}
.card .work-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 56.25em) {
  .card .work-list {
    gap: 1rem;
  }
}
.card .work-list__heading {
  color: #000;
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 1px solid #333;
}
@media (max-width: 56.25em) {
  .card .work-list__heading {
    border-left: none;
  }
}
.card .work-list__heading-main {
  font-size: 2.2rem;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .card .work-list__heading-main {
    display: none;
  }
}
.card .work-list__heading-sub {
  font-size: 1.6rem;
  display: block;
}
@media (max-width: 56.25em) {
  .card .work-list__heading {
    border-top: 1px solid #fff;
    color: #fff;
  }
}
.card .work-list .border-service {
  border-left: 3px solid red;
}
.card .work-list__list {
  list-style: none;
}
.card .work-list__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1rem;
  font-size: 1.8rem;
  align-items: center;
  color: #000;
}
.card .work-list__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 63em) {
  .card .work-list__item {
    font-size: 1.4rem;
  }
}
@media (max-width: 56.25em) {
  .card .work-list__item {
    color: #fff;
  }
}
@media only screen and (max-width: 37.5em) {
  .card .work-list__item {
    font-size: 1.5rem;
  }
}
.card .work-list .hero__benefit__icon {
  fill: #004d9f;
}
@media (max-width: 56.25em) {
  .card .work-list .hero__benefit__icon {
    fill: #fff;
  }
}
@media (max-width: 56.25em) {
  .card {
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card .card__heading {
    top: 10rem;
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
    padding-top: 1rem;
  }
  .card__side--back {
    height: 63%;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 56.25em) and (max-width: 56.25em) {
  .card__side--back {
    background-color: #004d9f;
    height: 49%;
  }
}
@media only screen and (max-width: 56.25em) and (max-width: 37.5em) {
  .card__side--back {
    height: auto;
  }
}

.features {
  padding: 9.6rem 3.2rem;
  background-color: #3371b2;
}
.features__wrapper {
  display: flex;
  gap: 5rem;
  justify-content: space-between;
}
@media (max-width: 50em) {
  .features__wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.features .service__heading {
  color: #fff;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  position: relative;
  z-index: 5;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
}
.feature-box__icon {
  height: 4rem;
  width: 4rem;
  margin-bottom: 0.5rem;
}
.feature-box__heading {
  font-size: 2rem;
}
.feature-box__text {
  grid-column: 1/3;
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.section-book {
  padding: 9.6rem 3.2rem;
  background-color: #3371b2;
}
.section-book__wrapper {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .section-book__wrapper {
    max-width: 50rem;
  }
}

.book {
  position: relative;
  z-index: 5;
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 50%, transparent 50%), url(../img/bg2.jpg);
  background-size: 100%;
  border-radius: 8px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .book {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.8);
    grid-template-columns: 1fr;
  }
}
.book__form2 {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-self: end;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .book__form2 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.book__form {
  display: flex;
  align-items: center;
  padding: 6rem;
  height: 40rem;
}
@media only screen and (max-width: 37.5em) {
  .book__form {
    align-items: flex-start;
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: center;
    font-size: 2.6rem;
    padding: 3rem;
  }
}

.form__group:last-child {
  align-self: center;
}
.form__input {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: #fff;
  border: none;
  border-bottom: 3px solid transparent;
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #004d9f;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #333;
}
.form__input::-webkit-input-placeholder {
  color: #222;
}
.form__label {
  font-size: 1.4rem;
  color: #000;
  font-weight: 700;
  margin-left: 2.5rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__radio-group {
  width: 49%;
  display: inline-block;
}
.form__radio-input {
  display: none;
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.heading-cta {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 37.5em) {
  .heading-cta {
    font-size: 3rem;
  }
}
@media (max-width: 23rem) {
  .heading-cta {
    font-size: 2.8rem;
  }
}

.book__text {
  font-size: 1.6rem;
  font-weight: 500;
}

.footer {
  position: relative;
  z-index: 5;
  padding: 3rem 3.2rem;
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.footer a,
.footer p {
  font-size: 1.6rem;
  text-decoration: none;
  color: #222;
}
@media only screen and (max-width: 37.5em) {
  .footer a,
  .footer p {
    font-size: 1.4rem;
  }
}

.copy {
  font-size: 1.4rem;
  color: #222;
}
@media only screen and (max-width: 37.5em) {
  .copy {
    font-size: 1rem;
  }
}

.copy-box {
  display: flex;
  flex-direction: column;
}

.contacts {
  padding: 9.6rem 3.2rem;
  background-color: #3371b2;
}
.contacts__container {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 5rem;
}
@media (max-width: 50em) {
  .contacts__container {
    gap: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts__container {
    grid-template-rows: 0.5fr 1fr;
  }
}
.contacts__map {
  position: relative;
  z-index: 5;
  background-image: url(../img/map.png);
  border-radius: 8px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 68.75em) {
  .contacts__map {
    grid-column: 1/2;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts__map {
    grid-column: 1/span 2;
    grid-row: 2/3;
  }
}
.contacts__info {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  justify-self: end;
  padding: 3rem;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 68.75em) {
  .contacts__info {
    grid-column: 2/3;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts__info {
    grid-column: 1/span 2;
    grid-row: 1/2;
    justify-self: stretch;
  }
}
.contacts__info-box {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  column-gap: 1rem;
}
.contacts__info-icon {
  width: 3.5rem;
  height: 3.5rem;
  fill: #004d9f;
}
.contacts__info-icon-location {
  width: 4rem;
  height: 4rem;
  margin-left: -0.8rem;
}
.contacts__info-title {
  font-size: 1.6rem;
  color: #000;
}
@media (max-width: 56.25em) {
  .contacts__info-title {
    font-size: 1.4rem;
  }
}
.contacts__info-email:link, .contacts__info-email:visited {
  font-size: 2rem;
  color: #000;
  text-decoration: none;
  grid-column: 1/-1;
}
@media (max-width: 56.25em) {
  .contacts__info-email:link, .contacts__info-email:visited {
    font-size: 1.7rem;
  }
}
.contacts__info-email:hover, .contacts__info-email:active {
  color: #004d9f;
}
.contacts__info-adress {
  font-size: 2rem;
  color: #000;
  grid-column: 1/-1;
}
@media (max-width: 56.25em) {
  .contacts__info-adress {
    font-size: 1.7rem;
  }
}
@media (max-width: 45em) {
  .contacts__info-adress {
    grid-template-columns: 1.5fr 1fr;
  }
}
.contacts__info-phone {
  grid-column: 1/-1;
}
.contacts__info-phone:link, .contacts__info-phone:visited {
  font-size: 2.4rem;
  text-decoration: none;
  color: #000;
}
@media (max-width: 57.375em) {
  .contacts__info-phone:link, .contacts__info-phone:visited {
    font-size: 2rem;
  }
}
@media (max-width: 56.25em) {
  .contacts__info-phone:link, .contacts__info-phone:visited {
    font-size: 1.7rem;
  }
}
.contacts__info-phone:hover, .contacts__info-phone:active {
  color: #004d9f;
}
.contacts__social-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.contacts__social-item:hover {
  transform: scale(1.1);
}
@media (max-width: 45em) {
  .contacts__social-icon {
    width: 4.5rem;
  }
}

.error {
  color: red;
}

.error_label {
  margin-bottom: 2rem;
}

/*# sourceMappingURL=style.css.map */
