@import url('../css/reset.css');

/*@import url('../css/magnific-popup.css');*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

*:hover,
*:focus {
  outline: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.39;
  color: #434343;
}

body.hidden {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

strong {
  font-weight: 600;
}

section.top-line-section {
  padding: 10px 0;
  padding-bottom: 5px;
  border-bottom: 1.5px solid #E4E4E4;
  transition: .5s;
}

section.top-line-section.active {
  background: #019EFF;
  border-bottom-color: #5BC4FF;
}

section.top-line-section.active  .top-line-wrap .logo svg path {
  fill: #fff;
}

.burger-wrap.active p {
  color: #fff;
}

.burger-wrap.active .burger .line {
  background: #fff;
}

.burger-wrap.active .burger .line:nth-child(2) {
  opacity: 0;
}

.burger-wrap.active .burger .line:first-child {
  transform: rotate(45deg) translate(6px, 4px);
}

.burger-wrap.active .burger .line:last-child {
  transform: rotate(-45deg) translate(6px, -4px);
}

.top-line-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-line-wrap .logo svg {
  width: 60px;
  transition: .5s;
}

ul.menu {
  display: flex;
  align-items: center;
}

ul.menu li a {
  padding: 5px 15px;
  color: #434343;
}

ul.menu li a span {
  transition: .3s;
  border-bottom: 1px solid transparent;
}

ul.menu li a:hover {
  color: #019EFF;
}

ul.menu li a:hover span {
  border-bottom-color: #019EFF;
}

.top-right {
  display: flex;
  align-items: center;
}

.top-right .phone {
  margin-right: 30px;
  font-size: 16px;
  color: #989898;
}

.top-right .phone a {
  font-size: 22px;
  font-weight: 600;
  color: #434343;
  margin-bottom: 2px;
  display: block;
}

.top-right .phone a span {
  transition: .3s;
  border-bottom: 1px solid transparent;
}

.top-right .phone a:hover {
  color: #019EFF;
}

.top-right .phone a:hover span {
  border-bottom-color: #019EFF;
}

.top-right .call {
  color: #019EFF;
}

.top-right .call span {
  transition: .3s;
  border-bottom: 1px solid transparent;
}

.top-right .call:hover span {
  border-bottom-color: #019EFF;
}






header {
  padding-top: 30px;
  padding-bottom: 120px;
}

.header-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.header-title {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 100%;
  max-width: 1250px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.header-title h1 {
  width: 520px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.header-title-right {
  width: calc(100% - 520px);
  padding-left: 100px;
}

.header-button {
  margin-top: 15px;
}

.header-button a {
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  background: #019EFF;
  box-shadow: 0px 2px 15px rgba(50, 85, 207, 0.25);
  color: #fff;
  min-height: 46px;
  transition: .3s;
}

.header-button a:hover {
  box-shadow: 0px 4px 25px rgba(50, 85, 207, 0.5);
}

.header-img {
  text-align: center;
}

.header-img img {
  max-width: 100%;
}

.header-mob-title {
  display: none;
}





section.about-section {
  padding: 120px 0;
  background: #F4F9FF;
  overflow: hidden;
}

h2 {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

h2 strong {
  color: #019EFF;
}

h2.title-h2 {
  display: flex;
  align-items: center;
}

h2.title-h2 img {
  margin-right: 10px;
}

.about-wrap {
  display: flex;
  align-items: flex-start;
}

.about-text {
  width: 594px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text-wrap {
  margin-top: 30px;
  display: flex;
}

.about-text-wrap .left {
  padding-right: 30px;
}

.about-text-wrap .left li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.about-text-wrap .left li:last-child {
  margin-bottom: 0;
}

.about-text-wrap .left li span.img {
  width: 36px;
  text-align: center;
}

.about-text-wrap .left li span.img img {
  max-width: 100%;
}

.about-text-wrap .left li span.text {
  width: calc(100% - 36px);
  padding-left: 10px;
}

.about-text-wrap .right {
  padding-left: 30px;
  border-left: 1.5px solid #B9D1E8;
  display: flex;
  align-items: center;
  font-size: 22px;
}

.about-img {
  width: calc(100% - 594px);
  padding-left: 30px;
  position: relative;
  text-align: right;
}

.about-img img {
  max-width: 100%;
  position: relative;
  z-index: 3;
}

.about-img::before {
  content: '';
  width: 189px;
  height: 975px;
  background: linear-gradient(180deg, #BFE7FF 0%, rgba(211, 238, 255, 0) 100%);
  transform: rotate(90deg);
  position: absolute;
  top: -170px;
  left: 425px;
  z-index: 2;
}






section.advan-section {
  padding-top: 120px;
  padding-bottom: 90px;
}

.advan-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.advan-item {
  width: calc(50% - 30px);
  margin: 0 15px;
  margin-bottom: 30px;
  background: #D9EDFF;
  padding: 30px 52px;
  position: relative;
  overflow: hidden;
}

.advan-item .digit {
  position: absolute;
  top: -24px;
  right: -4px;
  color: #fff;
  font-size: 72px;
  font-weight: 600;
}

.advan-item h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}





section.container-section {
  padding-top: 120px;
  padding-bottom: 90px;
  background: #F4F9FF;
}

.container-item {
  margin-bottom: 30px;
  width: 100%;
  max-width: 1010px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 79, 128, 0.2);
  padding: 20px;
  display: flex;
}

.container-item .charact {
  width: 230px;
}

.container-item .charact h4 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 22px;
}

.container-item .charact h4 strong {
  color: #019EFF;
}

.container-item .charact ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  word-break: break-all;
}

.container-item .charact ul li:last-child {
  margin-bottom: 0;
}

.container-item .charact ul li span.name {
  width: calc(100% - 56px);
  padding-right: 5px;
}

.container-item .charact ul li span.val {
  width: 56px;
  padding: 0 5px;
  background: #D9EDFF;
}

.container-item .img {
  width: 280px;
  padding-left: 15px;
  padding-right: 20px;
  text-align: center;
}

.container-item .img img {
  max-width: 100%;
}

.container-item .img p {
  color: #989898;
  margin-top: 10px;
}

.container-item .text {
  width: calc(100% - 510px);
}

.container-item-button {
  margin-top: 15px;
}

.container-item-button a {
  width: 264px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #019EFF;
  box-shadow: 0px 2px 15px rgba(50, 85, 207, 0.25);
  color: #fff;
  min-height: 46px;
  transition: .3s;
}

.container-item-button a:hover {
  box-shadow: 0px 4px 25px rgba(50, 85, 207, 0.5);
}






section.serv-section {
  padding-top: 120px;
  padding-bottom: 60px;
}

.serv-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.serv-wrap .img {
  width: calc(50% - 30px);
  margin: 0 15px;
}

.serv-wrap .img img {
  max-width: 100%;
}

.serv-wrap .text {
  width: calc(50% - 30px);
  margin: 0 15px;
}

.serv-wrap .text p, .serv-wrap .text ul {
  margin-bottom: 20px;
}

.serv-wrap .text p:last-child, .serv-wrap .text ul:last-child {
  margin-bottom: 0;
}

.serv-wrap .text ul li {
  padding-left: 24px;
  display: block;
  position: relative;
  margin-bottom: 5px;
}

.serv-wrap .text ul li:last-child {
  margin-bottom: 0;
}

.serv-wrap .text ul li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  width: 5px;
  height: 5px;
  background: #434343;
  border-radius: 50%;
}






section.contacts-section {
  padding-top: 60px;
  padding-bottom: 120px;
}

.contacts-wrap {
  display: flex;
  align-items: flex-start;
}

.contacts-left {
  width: calc(100% - 594px);
  padding-right: 30px;
}

.contacts-left p {
  margin-bottom: 20px;
  font-size: 22px;
}

.contacts-left p.contacts-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.contacts-left p.contacts-item img {
  width: 24px;
  margin-right: 10px;
}

.contacts-left p.contacts-item a {
  color: #019EFF;
  border-bottom: 1px solid transparent;
  transition: .3s;
}

.contacts-left p.contacts-item a:hover {
  border-bottom-color: #019EFF;
}

.contacts-left p.contacts-phone {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contacts-left p.contacts-phone a {
  color: #434343;
}

.contacts-left p.contacts-phone img {
  width: 35px;
  margin-right: 10px;
}

.contacts-left p.contacts-phone a.whatsapp {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.contacts-left p.contacts-phone a.whatsapp img {
  margin-bottom: 0;
}

.contacts-right {
  width: 594px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 79, 128, 0.2);
  padding: 20px;
}

.contacts-right h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.contacts-right p.sub {
  margin-bottom: 15px;
  text-align: center;
}

.contacts-right .input {
  margin-bottom: 5px;
  background: #D9EDFF;
  min-height: 65px;
  padding: 10px 12px;
}

.contacts-right .input label {
  font-size: 14px;
  color: #A1ADC7;
}

.contacts-right .input input {
  width: 100%;
  border: none;
  background: #D9EDFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #434343;
}

.contacts-right .input input::placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #434343;
}

.contacts-right > input {
  width: 100%;
  border: none;
  background: #D9EDFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #434343;
  margin-bottom: 5px;
  height: 45px;
  padding: 0 12px;
}

.contacts-right > input::placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #A1ADC7;
}

.contacts-right p.not-required {
  margin-bottom: 15px;
  font-size: 14px;
  color: #A1ADC7;
}

.contacts-right .form-bottom {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contacts-right .reg-form-button {
  width: 270px;
}

.contacts-right .reg-form-button button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  background: #019EFF;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: .5s;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.contacts-right .reg-form-button button:hover {
  box-shadow: 0px 2px 20px rgba(50, 85, 207, 0.4);
}

.contacts-right .safety {
  width: calc(100% - 270px);
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.contacts-right .safety p {
  margin-left: 10px;
  font-size: 14px;
  color: #515765;
}

.contacts-right p.policy {
  font-size: 14px;
  color: #515765;
}






footer {
  background: #019EFF;
  padding-top: 90px;
  padding-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #A8D6FF;
  font-size: 14px;
}

.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

ul.footer-menu {
  display: flex;
  align-items: center;
}

ul.footer-menu li a {
  padding: 0 15px;
  color: #fff;
}

ul.footer-menu li a span {
  transition: .3s;
  border-bottom: 1px solid transparent;
}

ul.footer-menu li a:hover span {
  border-bottom-color: #fff;
}

.footer-right p {
  margin-bottom: 10px;
  color: #fff;
}

.footer-right p:last-child {
  margin-bottom: 0;
}

.footer-right p a {
  color: #fff;
  transition: .3s;
  border-bottom: 1px solid transparent;
}

.footer-right p a:hover {
  border-bottom-color: #fff;
}





.burger-wrap {
  display: none;
  width: 45px;
}


.mob-menu-section {
  position: absolute;
  top: 57px;
  left: 0;
  width: 100%;
  height: calc(100% - 57px);
  overflow: auto;
  z-index: 50;
  background: #019EFF;
  padding: 20px;
  padding-top: 10px;
  display: none;
}

ul.mob-menu {
  margin-bottom: 24px;
}

ul.mob-menu li a {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.mob-info-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
}

.mob-info-item img {
  width: 16px;
  margin-right: 7px;
}

.mob-info-item a {
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: .3s;
}

.mob-info-item a:hover {
  border-bottom-color: #fff;
}

.mob-phone {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.mob-phone a {
  color: #fff;
}

.mob-phone img {
  width: 24px;
  margin-right: 10px;
}

.mob-phone a.whatsapp {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.mob-phone a.whatsapp img {
  margin-right: 0;
  width: 35px;
}

.mob-menu-button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.mob-menu-button a {
  width: 310px;
  max-width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: #019EFF;
}




.overlay {
  position: fixed;
  top: 0;
  left: 0; 
  width: 100%;
  height: 100%;
  background: rgba(1, 158, 255, 0.5);
  backdrop-filter: blur(25px);
  z-index: 99;
  display: none;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 594px;
  padding: 20px;
  padding-bottom: 0;
  background: #fff;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 30px);
  overflow: auto;
  display: none;
}

.modal::-webkit-scrollbar {
  width: 0;
}

.modal .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  cursor: pointer;
}

.modal h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.modal p.sub {
  margin-bottom: 15px;
  text-align: center;
}

.modal .input {
  margin-bottom: 5px;
  background: #D9EDFF;
  min-height: 65px;
  padding: 10px 12px;
}

.modal .input label {
  font-size: 14px;
  color: #A1ADC7;
}

.modal .input input {
  width: 100%;
  border: none;
  background: #D9EDFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #434343;
}

.modal .input input::placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #434343;
}

.modal > input {
  width: 100%;
  border: none;
  background: #D9EDFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #434343;
  margin-bottom: 5px;
  height: 45px;
  padding: 0 12px;
}

.modal > input::placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #A1ADC7;
}

.modal p.not-required {
  margin-bottom: 15px;
  font-size: 14px;
  color: #A1ADC7;
}

.modal .form-bottom {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.modal .reg-form-button {
  width: 270px;
}

.modal .reg-form-button button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  background: #019EFF;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: .5s;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.modal .reg-form-button button:hover {
  box-shadow: 0px 2px 20px rgba(50, 85, 207, 0.4);
}

.modal .safety {
  width: calc(100% - 270px);
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.modal .safety p {
  margin-left: 10px;
  font-size: 14px;
  color: #515765;
}

.modal p.policy {
  font-size: 14px;
  color: #515765;
}

.modal-img {
  text-align: center;
  margin-top: 20px;
}

.modal-img img {
  max-width: 100%;
}





.thanks-overlay {
  position: fixed;
  top: 0;
  left: 0; 
  width: 100%;
  height: 100%;
  background: rgba(1, 158, 255, 0.5);
  backdrop-filter: blur(25px);
  z-index: 99;
  display: none;
}

.thanks-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 594px;
  padding: 40px 20px;
  background: #fff;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 30px);
  overflow: auto;
  display: none;
}

.thanks-modal::-webkit-scrollbar {
  width: 0;
}

.thanks-modal .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  cursor: pointer;
}

.thanks-modal h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.thanks-modal p {
  text-align: center;
}













@media screen and (max-width: 1100px) {
  .top-right .call {
    display: none
  }

  .top-right .phone {
    margin-bottom: 0;
  }




  .contacts-right {
    width: 460px;
  }

  .contacts-left {
    width: calc(100% - 460px);
    padding-right: 15px;
  }

  .contacts-right .reg-form-button {
    width: 180px;
  }

  .contacts-right .safety {
    width: calc(100% - 180px);
  }
}

@media screen and (max-width: 960px) {
  body {
    font-size: 16px
  }

  ul.menu, .top-right {
    display: none
  }

  .burger-wrap {
    display: block;
  }

  .burger-wrap p {
    color: #32A4EA;
    font-size: 12px;
    margin-top: 4px;
    text-align: center
  }

  .burger .line {
    width: 22px;
    height: 2px;
    margin: 0 auto;
    margin-bottom: 5px;
    background: #32A4EA;
    transition: .5s;
  }

  .burger .line:last-child {
    margin-bottom: 0;
  }

  .top-line-wrap .logo svg {
    width: 36px;
    transform: translate(0, 3px);
  }




  header {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .header-title-right {
    display: none;
  }

  .header-title {
    margin-bottom: 20px;
  }

  .header-title h1 {
    width: 100%;
    font-size: 24px;
    text-align: center;
  }

  .header-img {
    margin-bottom: 20px;
  }

  .header-mob-title {
    display: block;
    text-align: center;
    padding: 0 15px;
  }

  .header-button {
    margin-bottom: 20px;
  }

  .header-button a {
    padding: 5px 47px;
    max-width: 100%;
  }





  section.about-section {
    padding: 60px 0;
  }

  h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
  }

  .about-wrap {
    flex-wrap: wrap;
  }

  .about-text {
    width: 100%;
    order: 2;
  }

  .about-text p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .about-img {
    width: 100%;
    order: 1;
    text-align: center;
    margin-bottom: 37px;
    padding: 0;
  }

  .about-img::before {
    display: none;
  }

  .about-text-wrap {
    display: block;
    margin-top: 20px;
    text-align: center;
  }

  .about-text-wrap .right {
    padding: 0;
    padding-top: 15px;
    border-left: none;
    border-top: 1px solid #B9D1E8;
    font-size: 18px;
    text-align: center;
    width: 100%;
    display: block;
  }

  .about-text-wrap .left {
    padding: 0;
    padding-bottom: 16px;
    display: inline-block;
    margin: 0 auto;
  }

  .about-text-wrap .left li span.img {
    width: 24px;
  }

  .about-text-wrap .left li span.text {
    width: calc(100% - 24px);
    padding-left: 8px;
    text-align: left;
  }






  section.advan-section {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  h2.title-h2 {
    justify-content: center;
  }

  h2.title-h2 img {
    max-width: 24px;
    margin-bottom: 5px;
  }

  .advan-wrap {
    display: block;
    margin: 0;
  }

  .advan-item {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    padding: 15px;
  }

  .advan-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
  }

  .advan-item .digit {
    top: -15px;
    right: -3px;
    font-size: 50px;
  }







  section.container-section {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .container-item {
    margin-bottom: 20px;
    padding: 15px;
    display: block;
  }

  .container-item .charact {
    width: 100%;
    margin-bottom: 15px;
  }

  .container-item .charact h4 {
    text-align: center;
    font-size: 18px;
  }

  .container-item .img {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }

  .container-item .text {
    width: 100%;
  }

  .container-item-button {
    display: flex;
    justify-content: center;
  }






  section.serv-section {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  section.serv-section .wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  section.serv-section h2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .serv-wrap {
    display: block;
    margin: 0;
  }

  .serv-wrap .img {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .serv-wrap .text {
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }






  section.contacts-section {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .contacts-wrap {
    display: block;
  }

  .contacts-left {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .contacts-left p {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contacts-left p.contacts-phone {
    font-size: 20px;
  }

  .contacts-left p.contacts-phone img {
    width: 24px;
  }

  .contacts-left p.contacts-phone a.whatsapp img {
    width: 35px;
  }

  .contacts-left p.contacts-item {
    font-size: 16px;
  }

  .contacts-right {
    width: 100%;
    padding: 15px;
  }

  .contacts-right h3 {
    font-size: 20px;
  }

  .contacts-right > input {
    padding: 0 8px;
    font-size: 16px;
  }

  .contacts-right > input::placeholder {
    font-size: 16px;
  }

  .contacts-right .input {
    padding: 6px 8px;
    min-height: 51px;
  }

  .contacts-right .input label {
    font-size: 12px;
  }

  .contacts-right p.not-required {
    font-size: 12px;
  }

  .contacts-right .input input {
    font-size: 16px;
  }

  .contacts-right .input input::placeholder {
    font-size: 16px;
  }

  .contacts-right .form-bottom {
    display: block;
  }

  .contacts-right .reg-form-button {
    width: 100%;
    max-width: 270px;
    margin-bottom: 15px;
  }

  .contacts-right .safety {
    width: 100%;
    padding: 0;
  }

  .contacts-right .safety img {
    max-width: 30px;
  }

  .contacts-right .safety p {
    font-size: 12px;
  }

  .contacts-right p.policy {
    font-size: 12px;
  }






  footer {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-logo {
    width: 45%;
    text-align: right;
    padding-right: 15px;
  }

  .footer-logo img {
    width: auto;
  }

  ul.footer-menu {
    width: 55%;
    display: block;
    padding-left: 10px;
  }

  ul.footer-menu li {
    margin-bottom: 20px;
  }

  ul.footer-menu li:last-child {
    margin-bottom: 0;
  }

  .footer-right {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }






  .modal {
    padding: 15px;
    padding-top: 30px;
  }

  .modal .close {
    padding: 14px 10px;
  }

  .modal h3 {
    font-size: 20px;
  }

  .modal > input {
    padding: 0 8px;
    font-size: 16px;
  }

  .modal > input::placeholder {
    font-size: 16px;
  }

  .modal .input {
    padding: 6px 8px;
    min-height: 51px;
  }

  .modal .input label {
    font-size: 12px;
  }

  .modal p.not-required {
    font-size: 12px;
  }

  .modal .input input {
    font-size: 16px;
  }

  .modal .input input::placeholder {
    font-size: 16px;
  }

  .modal .form-bottom {
    display: block;
  }

  .modal .reg-form-button {
    width: 100%;
    max-width: 270px;
    margin-bottom: 15px;
  }

  .modal .safety {
    width: 100%;
    padding: 0;
  }

  .modal .safety img {
    max-width: 30px;
  }

  .modal .safety p {
    font-size: 12px;
  }

  .modal p.policy {
    font-size: 12px;
  }

  .modal-img {
    display: none;
  }
}

@media screen and (max-width: 750px) {

}

@media screen and (max-width: 560px) {
  .header-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .header-img img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 524px;
    max-width: 524px;
  }
}

@media screen and (max-width: 440px) {

}