body {
  line-height: 1.5;
  --gutter-x: 16px;
  --gutter-x2: -16px;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #6C6C6C;
}
body.modal-opened {
  overflow: hidden !important;
  width: 100%;
}
body main {
  overflow-x: clip;
}
body:not(body.home) header {
  background-color: #fff;
  position: unset;
}
p a {
  color: #1D719D;
}
.mobile-hamburger-menu {
  z-index: 9;
  position: relative;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 34px;
  margin-left: 20px;
}
.mobile-hamburger-menu .hamburger-menu {
  position: relative;
  transform: translateY(6px);
  background: #1D719D;
  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: #1D719D;
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #1D719D;
  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: #1D719D;
  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: #1D719D;
  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;
  inset: 0;
  z-index: 999;
  justify-content: flex-end;
  backdrop-filter: blur(2px);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#side-menu .backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  flex: 1;
  z-index: 1;
}
#side-menu .content {
  z-index: 2;
  width: 85%;
  max-width: 450px;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 60px 0 40px;
  position: relative;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
}
#side-menu .content.in {
  transform: translateX(0);
}
#side-menu .content .sidebar-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}
#side-menu .content ul.menu,
#side-menu .content ul.social-menu,
#side-menu .content .lang-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#side-menu .content ul.menu li a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  color: #3E3E3E;
  font-size: 14px;
  border-bottom: 1px solid #e8e8f1;
  position: relative;
}
#side-menu .content ul.menu li.current-menu-item a {
  font-weight: bold;
}
#side-menu .content ul.menu li.menu-item-has-children > a svg {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  color: #3E3E3E;
  width: 40px;
  height: 40px;
  padding: 8px;
}
#side-menu .content ul.menu li.opened > a svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content ul.menu li.opened > ul.sub-menu {
  max-height: 400px;
  overflow-y: auto;
}
#side-menu .content ul.menu li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0 0 16px ;
}
#side-menu .content ul.menu li ul.sub-menu li a {
  color: #6C6C6C;
  border-bottom-color: #e8e8f1;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li a {
  border-bottom-color: #e8e8f1;
}
#side-menu .content .lang-list {
  margin-top: 20px;
}
#side-menu .content .lang-list li div {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  color: #3E3E3E;
  font-weight: 500;
}
#side-menu .content .lang-list li div svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  color: #3E3E3E;
}
#side-menu .content .lang-list li.opened > div svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content .lang-list li .name {
  margin-left: 10px;
}
#side-menu .content ul.social-menu {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#side-menu .content ul.social-menu li a {
  border-radius: 4px;
  display: block;
}
#left-whatsapp {
  position: fixed;
  left: 0;
  top: 20%;
  z-index: 9;
}
#left-whatsapp a {
  height: 75px;
  width: 75px;
  /* 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;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
#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: #1D719D;
}
#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: #e9853d;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e9853d 0%, #cb793f 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #e9853d 0%, #cb793f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e9853d 0%, #cb793f 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: #1D719D;
}
.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: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.success.show {
  opacity: 1;
  bottom: -80px;
}
.unsuccessful {
  position: absolute;
  bottom: -125px;
  padding: 15px;
  border-radius: 15px;
  background: red;
  color: #FFF;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.unsuccessful.show {
  opacity: 1;
  bottom: -80px;
  transition: all, 0.4s;
}
.section-top-title {
  font-size: 20px;
  font-weight: bold;
  color: #2DB5A3;
  line-height: 1.2;
}
.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1D719D;
  line-height: 1.2;
}
.section-text {
  font-size: 18px;
  color: #6C6C6C;
  line-height: 1.2;
}
.primary-btn {
  min-width: 260px;
  padding: 6px 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #D8712F;
  border: 2px solid #D8712F;
  text-align: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  white-space: nowrap;
}
.primary-btn:hover {
  background-color: #fff;
  color: #D8712F;
}
.secondary-btn {
  min-width: 260px;
  padding: 6px 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #195A7C;
  border: 2px solid #195A7C;
  text-align: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  white-space: nowrap;
}
.secondary-btn:hover {
  color: #195A7C;
  background-color: #fff;
}
.bordered-btn {
  min-width: 260px;
  padding: 6px 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 500;
  color: #195A7C;
  background-color: #fff;
  border: 2px solid #195A7C;
  text-align: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  white-space: nowrap;
}
.bordered-btn:hover {
  color: #fff;
  background-color: #195A7C;
}
header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  padding: 8px 0;
}
header .top-logo img {
  width: 180px;
  height: auto;
}
header .web-lang {
  cursor: pointer;
  z-index: 9;
}
header .web-lang > li {
  border: 2px solid #D8712F;
  padding: 5px 10px;
  color: #D8712F;
  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: #ffffff;
  border: 1px solid #fff;
  pointer-events: none;
  width: max-content;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
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;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
}
header .web-lang li ul.sub-menu li:last-child {
  border-bottom: 0;
}
header .web-lang li ul.sub-menu li:hover {
  background-color: #e6e6e6;
}
header .web-lang li ul.sub-menu li a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #1D719D;
  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;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  list-style: none;
}
header .top-menu > li {
  position: relative;
}
header .top-menu > li > a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #1D719D;
  padding: 12px 16px;
  text-decoration: none;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .top-menu > li > a:hover {
  color: #155272;
}
header .top-menu > li::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1D719D;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .top-menu > li:hover::after {
  width: 100%;
}
header .top-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
header .top-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 9;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .top-menu li ul.sub-menu li {
  position: relative;
}
header .top-menu li ul.sub-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .top-menu li ul.sub-menu li a:hover {
  color: #1D719D;
}
header .top-menu li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
}
header .top-menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
header .header-btn {
  background-color: #D8712F;
  font-size: 20px;
  font-weight: 600;
  padding: 4px 24px;
  color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .header-btn:hover {
  background-color: #1D719D;
}
footer {
  position: relative;
}
footer .footer-decor {
  position: absolute;
  right: 0;
  bottom: 75%;
  width: 25%;
  height: auto;
  display: block;
  z-index: -1;
  min-width: 400px;
}
footer .footer-path {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: -4px;
}
footer .footer-path svg {
  display: block;
  aspect-ratio: 1920/150;
}
footer .footer-top {
  background-color: #1D719D;
  padding: 0 0 40px;
  position: relative;
  z-index: 2;
}
footer .footer-top .footer-col {
  margin-bottom: 24px;
}
footer .footer-top .footer-logo {
  margin-bottom: 32px;
  display: block;
}
footer .footer-top .footer-logo img {
  width: 360px;
  height: auto;
  max-width: 100%;
}
footer .footer-top .footer-text {
  font-size: 18px;
  color: #fff;
}
footer .footer-top .footer-socials {
  display: flex;
  width: max-content;
  flex-direction: column;
  gap: 16px;
  background-color: rgba(180, 204, 216, 0.452);
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  padding: 36px 24px;
  position: relative;
}
footer .footer-top .footer-socials li a {
  display: block;
  color: #fff;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-top .footer-socials li a.instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}
footer .footer-top .footer-socials li a svg {
  height: 50px;
  width: 50px;
}
footer .footer-top .footer-socials li a:hover {
  color: #D8712F;
}
footer .footer-top .footer-title {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  margin: 16px 0;
}
footer .footer-top .footer-menu li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-top .footer-menu li a:hover {
  opacity: 0.6;
}
footer .footer-top .footer-contacts .footer-contact {
  display: flex;
  margin-bottom: 15px;
  color: #fff;
}
footer .footer-top .footer-contacts .footer-contact:last-child {
  margin: 0;
}
footer .footer-top .footer-contacts .footer-contact .contact-icon {
  margin-right: 8px;
}
footer .footer-top .footer-contacts .footer-contact .contact-icon svg {
  width: 20px;
  height: 20px;
}
footer .footer-top .footer-contacts .footer-contact .contact-text {
  font-size: 18px;
  font-weight: 500;
}
footer .footer-copyright {
  padding: 15px 0;
  background-color: #D8712F;
}
footer .footer-copyright .copyright {
  font-size: 14px;
  color: #fff;
}
footer .footer-copyright .footer-cr-logo img {
  width: 150px;
  height: auto;
}
.video-box {
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  box-shadow: -7.07px 7px 16px #B4CCD896;
}
.video-box .video-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
}
.video-box .play-icon {
  width: 50px !important;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.video-box:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
}
.form-loader {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-top: 2px solid #333;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1440px) {
  header .top-logo img {
    width: 160px;
  }
  header .top-menu > li > a {
    padding: 8px 12px;
    font-size: 16px;
  }
  header .header-btn {
    font-size: 18px;
  }
  .primary-btn,
  .secondary-btn,
  .bordered-btn {
    min-width: 240px;
    font-size: 18px;
  }
  .section-top-title {
    font-size: 18px;
  }
  .section-title {
    font-size: 28px;
  }
  footer .footer-top .footer-logo img {
    width: 320px;
  }
  footer .footer-top .footer-title {
    margin: 12px 0;
    font-size: 20px;
  }
  footer .footer-top .footer-text {
    font-size: 16px;
  }
  footer .footer-top .footer-menu li a {
    font-size: 16px;
  }
  footer .footer-top .footer-contacts .footer-contact .contact-text {
    font-size: 16px;
  }
  footer .footer-top .footer-socials {
    padding: 24px 16px;
  }
  footer .footer-top .footer-socials li a svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1200px) {
  header .top-logo img {
    width: 140px;
  }
  header .top-menu > li > a {
    font-size: 14px;
  }
  header .header-btn {
    font-size: 16px;
  }
  .primary-btn,
  .secondary-btn,
  .bordered-btn {
    min-width: 200px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  header .top-logo img {
    width: 120px;
  }
  .primary-btn,
  .secondary-btn,
  .bordered-btn {
    min-width: 180px;
  }
  .bordered-btn {
    width: 180px;
    font-size: 14px;
  }
  footer .footer-top .footer-logo img {
    width: 240px;
  }
  footer .footer-top .footer-title {
    margin: 8px 0;
  }
  footer .footer-top .footer-socials {
    padding: 16px;
  }
  footer .footer-top .footer-socials li a svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .primary-btn,
  .secondary-btn,
  .bordered-btn {
    min-width: 160px;
    padding: 4px 8px;
  }
  .section-top-title {
    font-size: 16px;
  }
  .section-title {
    font-size: 24px;
  }
  header .top-logo img {
    width: 100px;
  }
  footer .footer-top {
    padding: 40px 0;
  }
  footer .footer-top .footer-logo img {
    width: 200px;
  }
  footer .footer-top .footer-socials {
    margin-top: 20px;
  }
  footer .footer-copyright {
    padding: 20px 0 80px;
  }
  footer .footer-copyright .copyright {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .primary-btn,
  .secondary-btn,
  .bordered-btn {
    min-width: 140px;
  }
}
