@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
body {
  line-height: 1.5;
  --gutter-x: 15px;
  --gutter-x2: -15px;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #414142;
}
body.modal-opened {
  overflow: hidden !important;
  width: 100%;
}
body main {
  overflow-x: clip;
}
p a {
  color: #29BFBE;
}
.mobile-hamburger-menu {
  z-index: 999;
  position: relative;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 34px;
  margin-left: 10px;
}
.mobile-hamburger-menu .hamburger-menu {
  position: relative;
  transform: translateY(6px);
  background: #fff;
  transition: all 0ms 300ms;
  width: 20px;
  height: 2px;
}
.mobile-hamburger-menu .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #000;
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #000;
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-hamburger-menu .hamburger-menu:after,
.mobile-hamburger-menu .hamburger-menu:before {
  width: 20px;
  height: 2px;
}
.mobile-hamburger-menu .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  background: #fff;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-hamburger-menu .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background: #fff;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.gen-col-mb {
  margin-bottom: 30px;
}
#side-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
}
#side-menu .backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  flex: 1;
  width: 100%;
  height: 100%;
}
#side-menu .content {
  padding: 80px 0 50px;
  width: 85%;
  background-color: #fff;
  box-shadow: -3px 0 10px 0 #00000026;
  margin-right: calc((50% + 56px) * -1);
  overflow-y: auto;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#side-menu .content.in {
  margin-right: 0;
}
#side-menu .content ul.menu li.current-menu-item a {
  font-weight: 700;
}
#side-menu .content ul.menu li.opened.menu-item-has-children > a svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content ul.menu li.opened > ul.sub-menu {
  max-height: 400px;
}
#side-menu .content ul.menu li.menu-item-has-children > a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 8px;
  right: 5px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #000;
}
#side-menu .content ul.menu li a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  color: #010A35;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
#side-menu .content ul.menu li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#side-menu .content ul.menu li ul.sub-menu li {
  background-color: #010A35;
}
#side-menu .content ul.menu li ul.sub-menu li a {
  color: #fff;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li {
  background-color: #021263;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li a {
  border-bottom-color: #fff;
}
#side-menu .content ul.menu li ul.sub-menu li.menu-item-has-children > a svg {
  filter: invert(1);
}
#side-menu .content .lang-list {
  margin-top: 20px;
}
#side-menu .content .lang-list li.opened.menu-item-has-children div svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content .lang-list li div {
  display: flex;
  align-items: center;
  height: 48px;
  color: #010A35;
  font-size: 14px;
  padding: 0 16px;
  font-weight: 500;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
#side-menu .content .lang-list li div svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 8px;
  right: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #010A35;
}
#side-menu .content .lang-list li .name {
  margin-left: 10px;
}
#side-menu .content ul.social-menu {
  margin-top: 30px;
}
#side-menu .content ul.social-menu li {
  margin: 5px;
}
#side-menu .content ul.social-menu li a {
  border: 1px solid #010A35;
  padding: 5px;
  display: block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
#side-menu .content ul.social-menu li a svg {
  color: #010A35;
}
#left-whatsapp {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
#left-whatsapp a {
  height: 52px;
  width: 52px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58d164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58d164 0%, #2cb842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#left-whatsapp a:hover {
  padding-left: 5px;
  width: 57px;
}
#left-whatsapp a svg {
  color: #fff;
}
#mobile-footer-cta-buttons {
  padding-bottom: 14px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
}
#mobile-footer-cta-buttons:before {
  content: " ";
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #29BFBE;
}
#mobile-footer-cta-buttons .row {
  --gutter-x: 4px;
  --gutter-x2: -4px;
}
#mobile-footer-cta-buttons .button-x {
  height: 52px;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 0 10px;
  color: #fff;
}
#mobile-footer-cta-buttons .button-x.button-call {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #010c42;
  /* Old browsers */
  background: -moz-linear-gradient(top, #010c42 0%, #010727 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #010c42 0%, #010727 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #010c42 0%, #010727 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
}
#mobile-footer-cta-buttons .button-x.button-whatsapp {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58D164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58D164 0%, #2CB842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
}
#mobile-footer-cta-buttons .button-x span.text {
  margin-left: 12px;
  font-weight: 400;
  font-size: 14px;
}
.iti__country-list {
  background-color: #fff;
  color: #29BFBE;
}
.iti__country-list .iti__flag-box,
.iti__country-list .iti__country-name {
  color: #000;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-left: 52px !important;
}
.success {
  position: absolute;
  bottom: -125px;
  padding: 15px;
  border-radius: 15px;
  background: #389d26;
  color: #FFF;
  width: 94%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: all, 0.4s;
}
.success.show {
  opacity: 1;
  bottom: -80px;
  transition: all, 0.4s;
}
.unsuccessful {
  position: absolute;
  bottom: -125px;
  padding: 15px;
  border-radius: 15px;
  background: red;
  color: #FFF;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all, 0.4s;
}
.unsuccessful.show {
  opacity: 1;
  bottom: -80px;
  transition: all, 0.4s;
}
.btn-primary {
  background-color: #29BFBE;
  border: 2px solid #29BFBE;
  min-width: 240px;
  max-width: 100%;
  height: 46px;
  padding: 0 10px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-primary:hover {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.btn-secondary {
  background-color: #010A35;
  border: 2px solid #010A35;
  min-width: 240px;
  max-width: 100%;
  font-size: 18px;
  height: 46px;
  padding: 0 10px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-secondary svg {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  display: block;
}
.btn-secondary:hover {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #fff;
  min-width: 240px;
  max-width: 100%;
  height: 46px;
  padding: 0 10px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-outline:hover {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  background-color: #fff;
  color: #29BFBE;
}
.consultation-btn {
  color: #fff;
  background-color: #0E9233;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: max-content;
  display: flex;
  align-items: center;
  padding: 6px 18px;
  max-width: 100%;
  gap: 10px;
  font-size: 18px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 50px auto 0;
}
.consultation-btn span {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}
.consultation-btn svg {
  width: 30px;
  height: 30px;
}
.consultation-btn:hover {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.section-top-title {
  line-height: 1.2;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
.section-title {
  line-height: 1.2;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}
.section-text {
  font-size: 18px;
  color: #fff;
}
header {
  background-color: #010A35;
}
header .h-right {
  width: 100%;
}
header .h-right .top-contacts {
  gap: 20px;
  margin-top: 10px;
}
header .h-right .top-contacts .top-contact {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  font-style: italic;
}
header .h-right .top-contacts .top-contact svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
header .top-logo .logo-img {
  width: 300px;
  height: auto;
}
header .web-lang {
  cursor: pointer;
  z-index: 9;
}
header .web-lang > li {
  background-color: #010A35;
  border: 1px solid #fff;
  padding: 5px 10px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
header .web-lang > li svg {
  width: 20px;
  height: 20px;
}
header .web-lang > li:after {
  content: ' ';
  border: 5px solid;
  transform: translateY(50%);
  border-color: #fff transparent transparent transparent;
  margin-left: 10px;
}
header .web-lang > li:hover > ul.sub-menu {
  z-index: 15;
  opacity: 1;
  top: 100%;
  pointer-events: initial;
}
header .web-lang li ul.sub-menu {
  display: initial;
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 80%;
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F3F3F3;
  border: 1px solid #F3F3F3;
  pointer-events: none;
  width: max-content;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .web-lang li ul.sub-menu::after {
  content: '';
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
  background: None;
  left: 0;
  z-index: 0;
}
header .web-lang li ul.sub-menu:before {
  content: ' ';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  border: 10px solid;
  border-color: transparent transparent #fff transparent;
}
header .web-lang li ul.sub-menu li {
  padding: 0;
  margin: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .web-lang li ul.sub-menu li:last-child {
  border-bottom: 0;
}
header .web-lang li ul.sub-menu li:hover {
  background-color: #dadada;
}
header .web-lang li ul.sub-menu li a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #414142;
  margin: 0;
  padding: 5px 15px 5px 10px;
  display: block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
header .web-lang li ul.sub-menu li a img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
header .top-menu {
  display: flex;
  margin-right: 20px;
}
header .top-menu > li > a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  padding: 20px 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
}
header .top-menu li {
  position: relative;
}
header .top-menu li:hover > ul.sub-menu {
  z-index: 15;
  opacity: 1;
  top: 100%;
  pointer-events: initial;
}
header .top-menu li ul.sub-menu {
  display: initial;
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 80%;
  left: 0%;
  background-color: #010A35;
  border: none;
  pointer-events: none;
  min-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .top-menu li ul.sub-menu::after {
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  top: -10px;
  background: None;
  left: 0;
  z-index: 0;
}
header .top-menu li ul.sub-menu li {
  padding: 0;
  margin: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .top-menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  top: 0;
  pointer-events: initial;
}
header .top-menu li ul.sub-menu li:after {
  display: none;
}
header .top-menu li ul.sub-menu li a {
  white-space: nowrap;
  color: #fff;
  margin: 0;
  padding: 6px 24px 6px 12px;
  display: block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
}
header .top-menu li ul.sub-menu li ul.sub-menu {
  left: 100%;
  margin: 0;
  transform: translateX(0);
}
header .top-menu li ul.sub-menu li ul.sub-menu:before {
  display: none;
}
footer {
  background-color: #010A35;
}
footer .footer-top {
  padding: 40px 0;
  border-bottom: 1px solid #fff;
}
footer .footer-top .footer-top-inner {
  gap: 50px;
}
footer .footer-top .footer-logo {
  display: block;
}
footer .footer-top .footer-logo .logo-img {
  width: 360px;
  height: auto;
  max-width: 100%;
}
footer .footer-top .footer-socials {
  display: flex;
  gap: 30px;
}
footer .footer-top .footer-socials li a {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  padding: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-top .footer-socials li a svg {
  height: 30px;
  width: 30px;
}
footer .footer-top .footer-socials li a:hover {
  background-color: #fff;
  color: #010A35;
}
footer .footer-bottom {
  padding: 40px 0;
  border-bottom: 1px solid #fff;
}
footer .footer-bottom .footer-col {
  margin-bottom: 30px;
}
footer .footer-bottom .footer-title {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
footer .footer-bottom .footer-menu li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-bottom .footer-menu li a:hover {
  color: #010A35;
}
footer .footer-bottom .footer-contacts .footer-contact {
  display: flex;
  margin-bottom: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-bottom .footer-contacts .footer-contact .contact-icon {
  margin-right: 10px;
}
footer .footer-bottom .footer-contacts .footer-contact .contact-icon svg {
  color: #fff;
  width: 20px;
  height: 20px;
}
footer .footer-bottom .footer-contacts .footer-contact .contact-text {
  font-size: 18px;
  color: #fff;
}
footer .footer-bottom .footer-contacts .footer-contact:last-child {
  margin: 0;
}
footer .footer-bottom .footer-contacts .footer-contact:hover {
  color: #010A35;
}
footer .footer-bottom .footer-map-box {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
}
footer .footer-bottom .footer-map-box iframe {
  display: block;
  width: 300%;
  height: 260px;
  margin-left: -100%;
}
footer .footer-copyright {
  padding: 15px 0;
}
footer .footer-copyright .copyright {
  font-size: 14px;
  color: #fff;
}
footer .footer-copyright .footer-cr-logo img {
  width: 150px;
  height: auto;
}
@media (max-width: 1440px) {
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    min-width: 200px;
    font-size: 16px;
    height: 44px;
  }
  .btn-primary svg,
  .btn-secondary svg,
  .btn-outline svg {
    width: 28px;
    height: 28px;
  }
  .consultation-btn {
    font-size: 16px;
  }
  .section-top-title {
    font-size: 22px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-text {
    font-size: 16px;
  }
  header .top-logo .logo-img {
    width: 240px;
  }
  header .top-menu {
    margin-right: 10px;
  }
  header .top-menu > li > a {
    font-size: 14px;
    padding: 20px 6px;
  }
  header .top-menu li ul.sub-menu li a {
    font-size: 14px;
  }
  footer .footer-top .footer-top-inner {
    gap: 40px;
  }
  footer .footer-top .footer-logo .logo-img {
    width: 320px;
  }
  footer .footer-top .footer-socials {
    gap: 20px;
  }
  footer .footer-bottom .footer-menu li a {
    font-size: 16px;
  }
  footer .footer-bottom .footer-contacts .footer-contact .contact-text {
    font-size: 14px;
  }
  footer .footer-bottom .footer-map-box iframe {
    height: 240px;
  }
}
@media (max-width: 1200px) {
  header .top-logo .logo-img {
    width: 200px;
  }
  footer .footer-top .footer-top-inner {
    gap: 30px;
  }
  footer .footer-top .footer-logo .logo-img {
    width: 280px;
  }
  footer .footer-top .footer-socials {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    min-width: 160px;
    font-size: 14px;
    height: 40px;
  }
  .btn-primary svg,
  .btn-secondary svg,
  .btn-outline svg {
    width: 28px;
    height: 28px;
  }
  .consultation-btn {
    font-size: 14px;
  }
  .section-top-title {
    font-size: 20px;
  }
  .section-title {
    font-size: 28px;
  }
  header {
    padding: 10px 0;
  }
  footer .footer-top .footer-top-inner {
    gap: 20px;
  }
  footer .footer-top .footer-logo .logo-img {
    width: 260px;
  }
  footer .footer-top .footer-socials {
    gap: 10px;
  }
  footer .footer-top .footer-socials li a svg {
    width: 25px;
    height: 25px;
  }
  footer .footer-bottom .footer-col {
    margin-bottom: 20px;
  }
  footer .footer-bottom .footer-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  footer .footer-bottom .footer-menu li a {
    font-size: 14px;
  }
  footer .footer-bottom .footer-contacts .footer-contact .contact-text {
    font-size: 14px;
  }
  footer .footer-bottom .footer-map-box iframe {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .section-top-title {
    font-size: 18px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-text {
    font-size: 14px;
  }
  header .top-logo .logo-img {
    width: 180px;
  }
  footer .footer-top .footer-socials {
    gap: 10px;
  }
  footer .footer-copyright {
    padding: 20px 0 80px;
  }
  footer .footer-copyright .copyright {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    min-width: 140px;
  }
  header .top-logo .logo-img {
    width: 160px;
  }
}
