* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter Tight", sans-serif;
}

html {
  background-color: rgb(234, 237, 239);
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.container {
  max-width: 1360px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: content-box;
}

.header {
  background-color: #fff;
}
.header .header__top {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.header .header__top .mob_menu_btn {
  display: none;
}
.header .header__top .header__logo img {
  width: 138px;
  height: 36px;
}
.header .header__top .header__give {
  color: #989ca2;
  font-size: 14px;
}
.header .header__top .header__give span {
  color: #181e2d;
}
.header .header__top .header__mark {
  text-decoration: none;
  border-radius: 900px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #39962d;
  background: #e6f0e5;
}
.header .header__top .header__mark::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #39962d;
}
.header .header__top .header__adress {
  display: flex;
  align-items: center;
}
.header .header__top .header__adress .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgb(234, 237, 239);
  display: flex;
  background-color: #eaedef;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.header .header__top .header__adress .icon svg {
  width: 18px;
  height: 18px;
}
.header .header__top .header__adress .adress {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
  letter-spacing: 0%;
  color: rgb(86, 91, 96);
}
.header .header__top .header__adress .adress span {
  font-weight: 700;
}
.header .header__top .mob_phone {
  display: none;
}
.header .header__top .header__social {
  display: flex;
  gap: 10px;
}
.header .header__top .header__social a img {
  width: 30px;
  height: 30px;
}
.header .header__top .header__phone {
  display: flex;
  align-items: center;
}
.header .header__top .header__phone .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: #eaedef;
  border: 1px solid rgb(234, 237, 239);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.header .header__top .header__phone .icon svg {
  width: 18px;
  height: 18px;
}
.header .header__top .header__phone .phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header .header__top .header__phone .phone span {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(152, 156, 162);
}
.header .header__top .header__phone .phone a {
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: rgb(39, 45, 55);
  text-decoration: none;
}
.header .header__top .header_btn {
  width: 152px;
  height: 43px;
  border-radius: 900px;
  background-color: #092440;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.header .header__top .header_btn:hover {
  background-color: #ef9b15;
  color: #fff;
}
.header .header__bottom {
  padding: 15px 0;
  border-top: 1px solid rgb(234, 237, 239);
}
.header .header__bottom nav > ul {
  gap: 0px;
}
.header .header__bottom nav > ul li:not(.has-child) a {
  padding: 13px 21px;
  border-radius: 9px;
  transition: all 0.3s;
}
.header .header__bottom nav > ul li:not(.has-child) a:hover {
  background-color: #00438a;
  color: #fff;
}
.header .header__bottom ul {
  display: flex;
  align-items: center;
  width: 100%;
}
.header .header__bottom ul li {
  display: flex;
  flex-direction: column;
  position: relative;
}
.header .header__bottom ul li a {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 125%;
  letter-spacing: 3%;
  color: rgba(39, 45, 55, 0.83);
  text-decoration: none;
  border-radius: 0;
}
.header .header__bottom ul li:hover a {
  color: rgb(39, 45, 55);
}
.header .header__bottom ul .current a {
  color: rgb(39, 45, 55);
}
.header .header__bottom ul .current::after {
  position: absolute;
  bottom: -20px;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background-color: #ef9b15;
}
.header .header__bottom ul .discont a {
  color: #ef9b15;
}
.header .header__bottom ul .discont a img {
  width: 17px;
  height: 17px;
  margin-right: 5px;
}
.header .header__bottom ul .online a {
  color: rgb(66, 6, 116);
  padding: 4px 7px;
  border-radius: 7px;
  border: 1px dashed rgb(66, 6, 116);
}
.header .header__bottom ul .online a::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: rgb(57, 150, 45);
  border-radius: 3px;
  margin-right: 5px;
}
.header .header__bottom ul .has-child {
  position: relative;
}
.header .header__bottom ul .has-child a {
  padding-left: 21px;
  padding-right: 21px;
}
.header .header__bottom ul .has-child svg {
  width: 15px;
  height: 15px;
  margin-left: 5px;
  transition: all 0.3s;
  transform: rotate(180deg);
}
.header .header__bottom ul .has-child .sub-menu {
  position: absolute;
  z-index: 9;
  padding-top: 35px;
  visibility: hidden;
  z-index: -1;
}
.header .header__bottom ul .has-child .sub-menu::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  z-index: -1;
  position: absolute;
  top: 30px;
  transform: rotate(45deg);
  left: 50px;
}
.header .header__bottom ul .has-child .sub-menu ul {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  min-width: 275px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.25);
}
.header .header__bottom ul .has-child .sub-menu ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header .header__bottom ul .has-child .sub-menu ul li a {
  padding: 14px 0 14px 20px;
  text-align: left;
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  letter-spacing: 3%;
  color: #fff;
  border-radius: 0;
  background-color: #181e2d;
  transition: none;
}
.header .header__bottom ul .has-child .sub-menu ul li:not(:last-child) {
  border-bottom: 1px solid #292929;
}
.header .header__bottom ul .has-child .sub-menu ul li:hover a {
  background-color: #00438a !important;
  color: #fff;
}
.header .header__bottom ul .has-child:hover a svg {
  transform: rotate(0deg);
}
.header .header__bottom ul .has-child:hover .sub-menu {
  visibility: visible;
  z-index: 9;
}

.scroll_menu {
  position: fixed;
  top: 62px;
  width: 100%;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0px 5px 39px 0px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgb(234, 237, 239);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
}
.scroll_menu .wa {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
  text-decoration: none;
  padding: 5px 10px 5px 5px;
  border-radius: 7px;
  border: 1px solid rgb(234, 237, 239);
}
.scroll_menu .wa svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.scroll_menu .call {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
  text-decoration: none;
  padding: 5px 10px 5px 5px;
  border-radius: 7px;
  border: 1px solid rgb(234, 237, 239);
}
.scroll_menu .call svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.scroll_menu .grade {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
  text-decoration: none;
  padding: 5px 10px 5px 5px;
  border-radius: 7px;
  border: 1px solid rgb(234, 237, 239);
}
.scroll_menu .grade svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.scroll_menu .price {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
  text-decoration: none;
  padding: 5px 10px 5px 5px;
  border-radius: 7px;
  border: 1px solid rgb(234, 237, 239);
}
.scroll_menu .price svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.show_scroll {
  visibility: visible;
  opacity: 1;
  z-index: 8;
}

.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-top: 62px;
  overflow: hidden;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.mobile_menu ul {
  padding-bottom: 27px;
  background-color: #fff;
  position: relative;
}
.mobile_menu ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(234, 237, 239);
  padding: 17px 16px 17px 16px;
}
.mobile_menu ul li:nth-child(1) {
  border-top: 1px solid rgb(234, 237, 239);
}
.mobile_menu ul li img {
  width: 17px;
  min-width: 17px;
  height: 17px;
  margin-right: 7px;
}
.mobile_menu ul li svg {
  width: 16px;
  height: 16px;
  margin-left: auto;
}
.mobile_menu ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 17px;
  line-height: 125%;
  letter-spacing: 3%;
  color: rgb(39, 45, 55);
  text-decoration: none;
}
.mobile_menu ul .discont a {
  color: #ef9b15;
}
.mobile_menu ul .has-child .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  height: 0;
  z-index: 9;
  background-color: #fff;
}
.mobile_menu ul .has-child .sub-menu .back_btn {
  font-weight: 500;
  font-size: 17px;
  line-height: 125%;
  letter-spacing: 3%;
  color: rgb(39, 45, 55);
  padding: 19.5px 16px;
  border-top: 1px solid rgb(234, 237, 239);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.5;
}
.mobile_menu ul .has-child .sub-menu .back_btn svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  margin-left: 0;
}
.mobile_menu ul .has-child .sub-menu ul li:nth-child(1) {
  background-color: rgb(250, 250, 250);
}
.mobile_menu ul .has-child .sub-menu ul li span {
  font-weight: 700;
  font-size: 19px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
}
.mobile_menu ul .has-child .sub-menu ul li a {
  font-weight: 500;
  font-size: 17px;
  line-height: 125%;
  letter-spacing: 3%;
  color: rgb(39, 45, 55);
  width: 100%;
}
.mobile_menu ul .has-child .open_sub_menu {
  height: 100%;
}
.mobile_menu .mobile__bottom {
  background-color: rgb(250, 250, 250);
  padding: 24px 16px;
}
.mobile_menu .mobile__bottom .mobile__btns {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
.mobile_menu .mobile__bottom .mobile__btns .grade {
  width: 199px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background-color: #ef9b15 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff !important;
  transition: all 0.3s;
}
.mobile_menu .mobile__bottom .mobile__btns .grade:hover {
  background-color: rgb(39, 45, 55) !important;
}
.mobile_menu .mobile__bottom .mobile__btns .call {
  width: 199px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background-color: #00438a;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
.mobile_menu .mobile__bottom .row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.mobile_menu .mobile__bottom .row .phone_wrap {
  display: flex;
  align-items: center;
}
.mobile_menu .mobile__bottom .row .phone_wrap .icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgb(234, 237, 239);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
}
.mobile_menu .mobile__bottom .row .phone_wrap .icon svg {
  width: 18px;
  height: 18px;
}
.mobile_menu .mobile__bottom .row .phone_wrap .phone {
  display: flex;
  flex-direction: column;
}
.mobile_menu .mobile__bottom .row .phone_wrap .phone a {
  font-weight: 700;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
  text-decoration: none;
  margin-bottom: 4px;
}
.mobile_menu .mobile__bottom .row .phone_wrap .phone span {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(152, 156, 162);
}
.mobile_menu .mobile__bottom .row .social {
  display: flex;
  gap: 6px;
}
.mobile_menu .mobile__bottom .row .social a img {
  width: 30px;
  height: 30px;
}
.mobile_menu .mobile__bottom .adress_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.mobile_menu .mobile__bottom .adress_wrap .icon {
  flex: 0 0 46px;
  height: 46px;
  border: 1px solid rgb(234, 237, 239);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
}
.mobile_menu .mobile__bottom .adress_wrap .icon svg {
  width: 18px;
  height: 18px;
}
.mobile_menu .mobile__bottom .adress_wrap .adress {
  font-weight: 400;
  font-size: 15px;
  line-height: 148%;
  letter-spacing: 0%;
  color: rgb(46, 50, 54);
}
.mobile_menu .mobile__bottom .adress_wrap .adress span {
  font-weight: 700;
}
.mobile_menu .mobile__bottom .email_wrap {
  display: flex;
  align-items: center;
}
.mobile_menu .mobile__bottom .email_wrap .icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgb(234, 237, 239);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
}
.mobile_menu .mobile__bottom .email_wrap .icon svg {
  width: 18px;
  height: 18px;
}
.mobile_menu .mobile__bottom .email_wrap .email {
  display: flex;
  flex-direction: column;
}
.mobile_menu .mobile__bottom .email_wrap .email a {
  font-weight: 700;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #00438a;
  margin-bottom: 4px;
}
.mobile_menu .mobile__bottom .email_wrap .email span {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(152, 156, 162);
}

.open_mob_menu {
  visibility: visible;
  z-index: 59;
  opacity: 1;
}

.footer {
  padding: 40px 0;
  background: #f8f8f8;
}
.footer .footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}
.footer .footer__top .footer__col .footer__logo {
  display: flex;
  margin-bottom: 25px;
}
.footer .footer__top .footer__col .footer__adress .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: #eaedef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.footer .footer__top .footer__col .footer__adress img {
  width: 191px;
  height: 54px;
}
.footer .footer__top .footer__col .footer__mark {
  text-decoration: none;
  border-radius: 900px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #39962d;
  background: #e6f0e5;
}
.footer .footer__top .footer__col .footer__mark::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #39962d;
}
.footer .footer__top .footer__col .footer__dis {
  max-width: 304px;
  font-weight: 400;
  font-size: 14px;
  line-height: 152%;
  letter-spacing: 0%;
  color: rgb(152, 156, 162);
  margin-bottom: 25px;
}
.footer .footer__top .footer__col .footer__adress {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.footer .footer__top .footer__col .footer__adress .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: #eaedef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.footer .footer__top .footer__col .footer__adress .icon svg {
  width: 18px;
  height: 18px;
}
.footer .footer__top .footer__col .footer__adress .adress {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 14px;
  max-width: 295px;
  line-height: 148%;
  letter-spacing: 0%;
  color: #181e2d;
  text-decoration: none !important;
}
.footer .footer__top .footer__col .footer__adress .adress span {
  font-weight: 700;
}
.footer .footer__top .footer__col .footer__col_title {
  font-weight: 600;
  font-size: 19px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #181e2d;
  margin-bottom: 11px;
}
.footer .footer__top .footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer .footer__top .footer__col ul li {
  list-style: none;
}
.footer .footer__top .footer__col ul li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 125%;
  letter-spacing: 0%;
  color: rgba(24, 30, 45, 0.7450980392);
  transition: all 0.3s;
}
.footer .footer__top .footer__col ul li a:hover {
  color: rgb(255, 255, 255);
}
.footer .footer__top .footer__col .footer__social_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer__top .footer__col .footer__social_wrap span {
  font-weight: 500;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #181e2d;
}
.footer .footer__top .footer__col .footer__social_wrap .footer_social {
  display: flex;
  gap: 10px;
}
.footer .footer__top .footer__col .footer__social_wrap .footer_social a img {
  width: 39px;
  height: 39px;
}
.footer .footer__top .footer__col .footer__row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.footer .footer__top .footer__col .footer__row .footer__phone {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.footer .footer__top .footer__col .footer__row .footer__phone .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: #eaedef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.footer .footer__top .footer__col .footer__row .footer__phone .icon svg {
  width: 18px;
  height: 18px;
}
.footer .footer__top .footer__col .footer__row .footer__phone .phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer .footer__top .footer__col .footer__row .footer__phone .phone span {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(152, 156, 162);
}
.footer .footer__top .footer__col .footer__row .footer__phone .phone a {
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: #181e2d;
  text-decoration: none;
}
.footer .footer__top .footer__col .footer__row .footer__btn {
  width: 152px;
  height: 43px;
  border-radius: 900px;
  background-color: #00438a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  cursor: pointer;
}
.footer .footer__bottom {
  padding: 40px 0 0 0;
  border-top: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer__bottom .cop {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgba(24, 30, 45, 0.69);
}
.footer .footer__bottom .police {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgba(24, 30, 45, 0.69);
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(48, 49, 51, 0.9);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.modal .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(242, 242, 242);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 10px;
  cursor: pointer;
}
.modal .close svg {
  width: 16px;
  height: 16px;
}
.modal .modal_title {
  font-weight: 800;
  font-size: 30px;
  line-height: 123%;
  letter-spacing: -4%;
  color: rgb(39, 45, 55);
  margin-bottom: 25px;
}
.modal .modal_title span {
  color: #ef9b15;
}

.modal__no_accept .no_accept__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 727px;
}
.modal__no_accept .no_accept__items .item {
  padding: 4px;
  border-radius: 16px;
  border: 1px solid rgb(234, 237, 239);
  display: flex;
  align-items: center;
  width: 229px;
}
.modal__no_accept .no_accept__items .item .item_img {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  margin-right: 13px;
}
.modal__no_accept .no_accept__items .item .item__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
}
.modal__no_accept .no_accept_btn {
  padding: 22px 32px;
  border-radius: 900px;
  background-color: #0a9cda;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto 0 auto;
}

.modal__success {
  width: 410px;
}
.modal__success .title {
  font-family: "Vela Sans";
  font-weight: 800;
  font-size: 30px;
  line-height: 123%;
  letter-spacing: -4%;
  color: rgb(39, 45, 55);
  margin-bottom: 25px;
}
.modal__success .text {
  font-weight: 500;
  font-size: 17px;
  line-height: 154%;
  letter-spacing: 0%;
  color: rgba(39, 45, 55, 0.7);
  margin-bottom: 25px;
}
.modal__success .btn {
  width: 100%;
  height: 63px;
  border-radius: 900px;
  background-color: #0a9cda;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}

.modal__call {
  width: 410px;
}
.modal__call .title {
  font-family: "Vela Sans";
  font-weight: 800;
  font-size: 30px;
  line-height: 123%;
  letter-spacing: -4%;
  color: rgb(39, 45, 55);
  margin-bottom: 25px;
}
.modal__call form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.modal__call form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal__call form label span {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
}
.modal__call form label span sup {
  margin-left: 5px;
  color: rgb(255, 0, 0);
}
.modal__call form label input {
  width: 100%;
  height: 56px;
  border: 1px solid rgb(206, 208, 211);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(39, 45, 55);
  padding-left: 43px;
}
.modal__call form label .name {
  background-image: url("../img/form/user.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center left 15px;
}
.modal__call form label .tel {
  background-image: url("../img/form/tel.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center left 15px;
}
.modal__call form .police_wrap {
  display: flex;
  align-items: flex-start;
}
.modal__call form .police_wrap .custom_check {
  min-width: 22px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1px solid #00438a;
  margin-right: 9px;
  cursor: pointer;
}
.modal__call form .police_wrap .custom_check input {
  display: none;
}
.modal__call form .police_wrap .custom_check .item {
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background-color: #00438a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__call form .police_wrap .current .item {
  opacity: 1;
}
.modal__call form .police_wrap p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  color: rgb(105, 109, 116);
}
.modal__call form .police_wrap p a {
  color: rgb(105, 109, 116);
}
.modal__call form input[type=submit] {
  width: 100%;
  height: 63px;
  border-radius: 900px;
  background-color: #0a9cda;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  border: none;
}

.modal_akcii {
  background-color: transparent;
  width: 63vmin;
  height: 86vmin;
  overflow: visible;
  padding: 0;
}
.modal_akcii .close {
  border: none;
  right: 41px;
  top: -30px;
  width: 30px;
  height: 30px;
}
.modal_akcii .close svg {
  width: 30px;
  height: 30px;
}
.modal_akcii .akcii_slider_modal {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}
.modal_akcii .akcii_slider_m {
  width: 515px;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}
.modal_akcii .akcii_slider_m .akcii_mob {
  height: 100%;
}
.modal_akcii .akcii_slider_m .akcii {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.modal_akcii .akcii_slider_m .akcii::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 67, 138, 0) 0%, #00438a 100%);
}
.modal_akcii .akcii_slider_m .akcii .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_akcii .akcii_slider_m .akcii .bg img {
  height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal_akcii .akcii_slider_m .akcii .dis {
  position: absolute;
  z-index: 5;
  top: 25px;
  left: 25px;
  border-radius: 8px;
  padding: 5px 6px;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0%;
}
.modal_akcii .akcii_slider_m .akcii .type_1 {
  background-color: #0a9cda;
  color: #fff;
}
.modal_akcii .akcii_slider_m .akcii .type_2 {
  background-color: #ef9b15;
  color: #fff;
}
.modal_akcii .akcii_slider_m .akcii .content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 25px;
}
.modal_akcii .akcii_slider_m .akcii .content .title {
  font-family: "Vela Sans";
  font-weight: 700;
  font-size: 27px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 10px;
}
.modal_akcii .akcii_slider_m .akcii .content .title span {
  color: #ef9b15;
}
.modal_akcii .akcii_slider_m .akcii .content .subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.8);
}
.modal_akcii .akcii_slider_m_nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal_akcii .akcii_slider_m_nav .prev {
  width: 53px;
  height: 53px;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal_akcii .akcii_slider_m_nav .prev svg {
  width: 17px;
  height: 17px;
}
.modal_akcii .akcii_slider_m_nav .next {
  width: 53px;
  height: 53px;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal_akcii .akcii_slider_m_nav .next svg {
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
}
.modal_akcii .akcii_slider_m_nav .swiper-button-disabled {
  opacity: 0.1;
}

.scroll_top {
  position: fixed;
  z-index: 50;
  right: 60px;
  bottom: 79px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #00438a;
  cursor: pointer;
  display: flex;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.scroll_top:hover::after {
  background-color: #00438a;
}
.scroll_top:hover::before {
  background-image: url("../img/chevron-down-white.svg");
  transform: rotate(0deg);
  background-size: 12px 12px;
}
.scroll_top::after {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 2px;
  width: 40px;
  height: 50px;
  box-shadow: 0px 2.14px 5.7px 0px rgba(0, 0, 0, 0.11);
  border-radius: 50px;
  transition: all 0.3s;
}
.scroll_top::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 18px;
  background-image: url("../img/chevron-down.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  transform: rotate(180deg);
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .scroll_top {
    right: 15px;
  }
}
.showScroll {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .header {
    background-color: #fff;
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header .header__top {
    padding: 18px 0;
    height: 62px;
  }
  .header .header__top .mob_menu_btn {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background-color: rgb(234, 237, 239);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    margin-right: 10px;
    position: relative;
  }
  .header .header__top .mob_menu_btn span {
    width: 12px;
    border: 1px solid rgb(39, 45, 55);
    border-radius: 2px;
  }
  .header .header__top .toggle_menu span:nth-last-child(2) {
    display: none;
  }
  .header .header__top .toggle_menu span:nth-last-child(1) {
    position: absolute;
    transform: rotate(45deg);
  }
  .header .header__top .toggle_menu span:nth-last-child(3) {
    transform: rotate(-45deg);
  }
  .header .header__top .header__logo {
    margin-right: auto;
  }
  .header .header__top .header__logo img {
    width: 130px;
    height: 26px;
  }
  .header .header__top .header__give {
    display: none;
  }
  .header .header__top .header__mark {
    display: none;
  }
  .header .header__top .header__adress {
    display: none;
  }
  .header .header__top .mob_phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10px;
  }
  .header .header__top .mob_phone a {
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    text-decoration: none;
    color: rgb(39, 45, 55);
  }
  .header .header__top .mob_phone span {
    font-weight: 500;
    font-size: 11px;
    line-height: 120%;
    letter-spacing: 0%;
    color: rgb(152, 156, 162);
  }
  .header .header__top .header__social {
    display: flex;
    gap: 4px;
    margin-right: 0;
  }
  .header .header__top .header__social a img {
    width: 26px;
    height: 26px;
  }
  .header .header__top .header__phone {
    display: none;
  }
  .header .header__top .header_btn {
    display: none;
  }
  .header .header__bottom {
    display: none;
  }
  .footer {
    padding: 20px 0;
  }
  .footer .footer__top {
    padding-bottom: 0;
    flex-direction: column;
  }
  .footer .footer__top .footer__col {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer .footer__top .footer__col .footer__logo {
    display: flex;
    margin-bottom: 11px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer__top .footer__col .footer__dis {
    max-width: 356px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer__top .footer__col .footer__adress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer__top .footer__col .footer__adress .icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }
  .footer .footer__top .footer__col .footer__adress .adress {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 13px;
    line-height: 148%;
    letter-spacing: 0%;
  }
  .footer .footer__top .footer__col .footer__col_title {
    font-size: 17px;
    margin-bottom: 7px;
    display: flex;
  }
  .footer .footer__top .footer__col .footer__col_title::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("../img/ar.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px;
    margin-left: auto;
    transform: rotate(180deg);
  }
  .footer .footer__top .footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 0;
    overflow: hidden;
  }
  .footer .footer__top .footer__col ul li a {
    font-size: 14px;
  }
  .footer .footer__top .footer__col .footer__social_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  .footer .footer__top .footer__col .footer__social_wrap span {
    display: none;
  }
  .footer .footer__top .footer__col .footer__social_wrap .footer_social {
    display: flex;
    gap: 10px;
  }
  .footer .footer__top .footer__col .footer__social_wrap .footer_social a img {
    width: 39px;
    height: 39px;
  }
  .footer .footer__top .footer__col .footer__row {
    display: flex;
    justify-content: center;
  }
  .footer .footer__top .showFooter .footer__col_title::after {
    transform: rotate(180deg);
  }
  .footer .footer__top .showFooter ul {
    min-height: 100px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer .footer__bottom .cop {
    font-size: 13px;
  }
  .footer .footer__bottom .police {
    font-size: 13px;
  }
  .modal {
    padding: 20px;
  }
  .modal .modal_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .modal__no_accept {
    width: calc(100% - 30px);
  }
  .modal__no_accept .no_accept__items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
    max-width: 100%;
  }
  .modal__no_accept .no_accept__items .item {
    padding: 4px;
    border-radius: 16px;
    width: 100%;
  }
  .modal__no_accept .no_accept__items .item .item_img {
    width: 52px;
    height: 52px;
    border-radius: 11px;
    margin-right: 13px;
  }
  .modal__no_accept .no_accept__items .item .item__text {
    font-size: 16px;
  }
  .modal__no_accept .no_accept_btn {
    padding: 22px 32px;
    border-radius: 900px;
    background-color: #0a9cda;
    font-size: 15px;
    width: 100%;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal__success .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .modal__success .text {
    margin-bottom: 20px;
  }
  .modal__success .btn {
    width: 100%;
    height: 63px;
    font-size: 15px;
  }
  .modal__call .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .modal__call form {
    gap: 20px;
  }
  .modal_akcii {
    width: 370px;
    height: 100vh;
    padding: 0;
  }
  .modal_akcii .akcii_slider_m {
    width: 370px;
    height: 100%;
    overflow: visible;
    border-radius: 30px;
  }
  .modal_akcii .akcii_slider_m .akcii_mob {
    height: 100%;
  }
  .modal_akcii .akcii_slider_m .akcii {
    width: 370px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  .modal_akcii .akcii_slider_m .akcii::after {
    content: "";
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(39, 45, 55, 0) 60.6%, #272D37 100%);
  }
  .modal_akcii .akcii_slider_m .akcii .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal_akcii .akcii_slider_m .akcii .bg img {
    height: 100%;
    min-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal_akcii .akcii_slider_m .akcii .dis {
    position: absolute;
    z-index: 5;
    top: 25px;
    left: 25px;
    border-radius: 8px;
    padding: 5px 6px;
    font-weight: 600;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0%;
  }
  .modal_akcii .akcii_slider_m .akcii .type_1 {
    background-color: rgb(221, 57, 93);
    color: #fff;
  }
  .modal_akcii .akcii_slider_m .akcii .type_2 {
    background-color: #ef9b15;
    color: rgb(39, 45, 55);
  }
  .modal_akcii .akcii_slider_m .akcii .content {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 25px;
  }
  .modal_akcii .akcii_slider_m .akcii .content .title {
    font-family: "Vela Sans";
    font-weight: 700;
    font-size: 27px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 10px;
  }
  .modal_akcii .akcii_slider_m .akcii .content .title span {
    padding: 8px 10px;
    border-radius: 30px;
    background-color: rgb(39, 45, 55);
    color: #ef9b15;
  }
  .modal_akcii .akcii_slider_m .akcii .content .subtitle {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.8);
  }
  .modal_akcii .akcii_slider_m_nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__top .footer__col .footer__adress .adress {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  .header .header__top .header__logo img {
    width: 90px;
    height: 26px;
  }
  .header .header__top .mob_phone a {
    font-size: 10px;
  }
  .modal__call {
    width: calc(100% - 30px);
  }
  .modal__success {
    width: calc(100% - 30px);
  }
  .modal_akcii {
    width: calc(100% - 70px);
  }
  .scroll_menu {
    overflow: auto;
  }
  .footer .footer__top .footer__col .footer__row .footer__phone .phone a {
    font-size: 14px;
  }
  .modal_akcii .close {
    right: -28px;
    top: 52px;
  }
  .modal_akcii .akcii_slider_m {
    width: 100%;
  }
  .modal_akcii .akcii_slider_m .akcii {
    width: 100%;
  }
}
.open_bg {
  z-index: 1002;
  opacity: 1;
}

.open_modal {
  z-index: 1003;
  opacity: 1;
}/*# sourceMappingURL=main.css.map */