@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-Regular.ttf') format('truetype');
  font-weight: 400;
  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;
}
body {
  line-height: 1.5;
  --gutter-x: 15px;
  --gutter-x2: -15px;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
}
body.modal-opened {
  overflow: hidden !important;
  width: 100%;
}
body main {
  overflow-x: clip;
}
p a {
  color: #112D5B;
}
.mobile-hamburger-menu {
  z-index: 999;
  position: relative;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 34px;
}
.mobile-hamburger-menu .hamburger-menu {
  position: relative;
  transform: translateY(6px);
  background: #000;
  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: #112D5B;
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #112D5B;
  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: #112D5B;
  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: #112D5B;
  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: 900;
}
#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: grey;
  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: gray;
}
#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: #999;
}
#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: #112D5B;
  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: #112D5B;
}
#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 #112D5B;
  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: #112D5B;
}
#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: #CC2739;
}
#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: #112D5B;
  /* Old browsers */
  background: -moz-linear-gradient(top, #112D5B 0%, #052151 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #112D5B 0%, #052151 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #112D5B 0%, #052151 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: #112D5B;
}
.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;
}
.gen-btn {
  min-width: 300px;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #00132D;
  width: max-content;
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  white-space: nowrap;
}
.gen-btn:hover {
  background-color: #CC2739;
}
.consultation_btn {
  color: #fff;
  background-color: #0EC12F;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: max-content;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.consultation_btn span {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}
.consultation_btn svg {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.consultation_btn:hover {
  scale: 1.05;
}
.consultation_btn_2 {
  color: #fff;
  background-color: #0EC12F;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  width: 400px;
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.consultation_btn_2 span {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
}
.consultation_btn_2 svg {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.consultation_btn_2:hover {
  scale: 1.05;
}
header .h-top {
  background-color: #112D5B;
  padding: 10px 0;
}
header .h-top .top-contacts {
  gap: 20px;
  margin-right: 20px;
}
header .h-top .top-contacts .top-contact {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  gap: 5px;
}
header .h-top .top-contacts .top-contact svg {
  width: 20px;
  height: 20px;
}
header .h-top .top-socials {
  gap: 4px;
}
header .h-top .top-socials li a svg {
  color: #fff;
  width: 20px;
  height: 20px;
}
header .h-bottom {
  background-color: #fff;
}
header .h-bottom .top-menu {
  display: flex;
  margin-right: 20px;
}
header .h-bottom .top-menu > li > a {
  display: block;
  font-size: 16px;
  color: #112D5B;
  font-weight: 500;
  padding: 28px 8px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .h-bottom .top-menu li {
  position: relative;
}
header .h-bottom .top-menu li:hover > ul.sub-menu {
  z-index: 15;
  opacity: 1;
  top: 100%;
  pointer-events: initial;
}
header .h-bottom .top-menu li ul.sub-menu {
  display: initial;
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 80%;
  left: 0%;
  background-color: #ffffff;
  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 .h-bottom .top-menu li ul.sub-menu::after {
  content: '';
  width: 100%;
  height: 20px;
  position: absolute;
  top: -10px;
  background: None;
  left: 0;
  z-index: 0;
}
header .h-bottom .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 .h-bottom .top-menu li ul.sub-menu li:hover {
  background-color: #e6e6e6;
}
header .h-bottom .top-menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  top: 0;
  pointer-events: initial;
}
header .h-bottom .top-menu li ul.sub-menu li:after {
  display: none;
}
header .h-bottom .top-menu li ul.sub-menu li a {
  white-space: nowrap;
  color: #112D5B;
  font-weight: 500;
  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 .h-bottom .top-menu li ul.sub-menu li ul.sub-menu {
  left: 100%;
  margin: 0;
  transform: translateX(0);
}
header .h-bottom .top-menu li ul.sub-menu li ul.sub-menu:before {
  display: none;
}
header .h-bottom .top-logo img {
  width: 220px;
  height: auto;
}
header .h-bottom .web-lang {
  cursor: pointer;
  z-index: 9;
}
header .h-bottom .web-lang > li {
  background-color: transparent;
  padding: 5px 10px;
  color: #112D5B;
  display: flex;
  align-items: center;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  border: 2px solid #112D5B;
}
header .h-bottom .web-lang > li svg {
  width: 20px;
  height: 20px;
}
header .h-bottom .web-lang > li:after {
  content: ' ';
  border: 5px solid;
  transform: translateY(50%);
  border-color: #112D5B transparent transparent transparent;
  margin-left: 10px;
}
header .h-bottom .web-lang > li:hover > ul.sub-menu {
  z-index: 15;
  opacity: 1;
  top: 100%;
  pointer-events: initial;
}
header .h-bottom .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: #ececec;
  border: 1px solid #fff;
  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 .h-bottom .web-lang li ul.sub-menu::after {
  content: '';
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
  background: None;
  left: 0;
  z-index: 0;
}
header .h-bottom .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 #ececec transparent;
}
header .h-bottom .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;
  background-color: #ececec;
}
header .h-bottom .web-lang li ul.sub-menu li:last-child {
  border-bottom: 0;
}
header .h-bottom .web-lang li ul.sub-menu li:hover {
  background-color: #d3d3d3;
}
header .h-bottom .web-lang li ul.sub-menu li a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #112D5B;
  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 .h-bottom .web-lang li ul.sub-menu li a img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
header .h-bottom .header-btn {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  background-color: #112D5B;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 4px 12px;
  margin-right: 20px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .h-bottom .header-btn:hover {
  background-color: #CC2739;
}


.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 15px;
  width: 300px;
  background-color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  animation: fadeIn 0.5s;
  z-index: 1000;
  /* Popup Header */
}
.whatsapp-popup .popup-header {
  display: flex;
  align-items: center;
  background-color: #008069;
  padding: 10px;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.whatsapp-popup .profile-pic {
  width: 50px;
  height: 50px;
  background: url('../../imgs/wp-logo.png') center / contain;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}
.whatsapp-popup .profile-info h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.whatsapp-popup .profile-info p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}
.whatsapp-popup .close-btn {
  margin-left: auto;
  font-size: 20px;
  cursor: pointer;
}
.whatsapp-popup .chat-area {
  background: url('../../imgs/background-whatsapp.jpg') center / cover;
  padding: 15px;
}
.whatsapp-popup .chat-area .popup-body {
  margin-bottom: 60px;
}
.whatsapp-popup .chat-area .popup-body .body-chat-box {
  padding: 6px 14px;
  position: relative;
  transform-origin: center top;
  z-index: 2;
  font-size: 15px;
  line-height: 1.39;
  max-width: calc(100% - 66px);
  border-radius: 0px 16px 16px;
  background-color: #ffffff;
  opacity: 1;
  hyphens: auto;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 0px 0px;
}
.whatsapp-popup .chat-area .popup-body .body-chat-box p {
  font-size: 14px;
  color: #333;
}
.whatsapp-popup .chat-area .popup-footer {
  text-align: center;
  padding: 10px;
}
.whatsapp-popup .chat-area .popup-footer .chat-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 0px 0px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.whatsapp-popup .chat-area .popup-footer .chat-btn svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.whatsapp-popup .chat-area .popup-footer .chat-btn:hover {
  background-color: #1DA851;
}
/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
}
.whatsapp-icon svg {
  width: 35px;
  height: 35px;
  color: #fff;
}
.whatsapp-icon .red-dot {
  position: absolute;
  top: 5px;
  right: 0px;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
}
footer {
  background-color: #052151;
}
footer .footer-top {
  padding: 50px 0;
  border-bottom: 4px double rgba(255, 255, 255, 0.5);
}
footer .footer-top .footer-col {
  margin-bottom: 30px;
}
footer .footer-top .footer-logo {
  margin-right: 50px;
  display: block;
}
footer .footer-top .footer-logo img {
  width: 300px;
  height: auto;
}
footer .footer-top .footer-text {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
footer .footer-top .footer-socials {
  display: flex;
}
footer .footer-top .footer-socials li {
  margin: 5px;
}
footer .footer-top .footer-socials li a {
  display: block;
  background-color: #fff;
  color: #112D5B;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 5px;
  -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: 25px;
  width: 25px;
}
footer .footer-top .footer-socials li a:hover {
  background-color: #CC2739;
  color: #fff;
}
footer .footer-center {
  border-bottom: 4px double rgba(255, 255, 255, 0.5);
  padding: 40px 0;
  position: relative;
  --gutter-x: 20px;
  --gutter-x2: -20px;
}
footer .footer-center::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  transform: translateX(-50%);
  border-right: 4px double rgba(255, 255, 255, 0.5);
}
footer .footer-center .footer-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
footer .footer-center .footer-group {
  margin-bottom: 35px;
}
footer .footer-center .footer-menu li a {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-center .footer-menu li a:hover {
  opacity: 0.6;
}
footer .footer-center .footer-contacts .footer-contact {
  display: flex;
  margin-bottom: 25px;
}
footer .footer-center .footer-contacts .footer-contact .contact-icon {
  margin-right: 20px;
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: max-content;
  width: max-content;
}
footer .footer-center .footer-contacts .footer-contact .contact-icon svg {
  width: 20px;
  height: 20px;
}
footer .footer-center .footer-contacts .footer-contact .contact-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
footer .footer-center .footer-contacts .footer-contact:hover .contact-icon {
  background-color: #fff;
  color: #CC2739;
}
footer .footer-center .footer-certificates {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
footer .footer-center .footer-contact-btn {
  margin-top: 30px;
  color: #fff;
  background-color: #0EC12F;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  width: 100%;
  max-width: 100%;
  border: 2px solid #fff;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-center .footer-contact-btn span {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
}
footer .footer-center .footer-contact-btn svg {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
footer .footer-bottom {
  padding: 25px 0;
}
footer .footer-bottom .footer-logos {
  gap: 30px;
}
footer .footer-bottom .footer-logos .footer-logo {
  display: block;
  height: 90px;
  width: auto;
}
footer .footer-copyright {
  padding: 15px 0;
  background-color: #CC2739;
}
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;
}
.video-box .video-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.video-box .play-icon {
  width: 80px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.video-box:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
}

#home-patient-gallery-area {
  margin-bottom: 100px;
}
#home-patient-gallery-area .section-title-area {
  text-align: center;
  margin-bottom: 80px;
}
#home-patient-gallery-area .section-title-area .section-title {
  margin-bottom: 40px;
}
#home-patient-gallery-area .owl-item img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
#home-patient-gallery-area .owl-dots {
  margin-top: 50px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
#home-patient-gallery-area .owl-dots .owl-dot span {
  background-color: #112D5B;
  width: 10px;
  height: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0;
}
#home-patient-gallery-area .owl-dots .owl-dot.active span {
  width: 24px;
  height: 6px;
}

@media (max-width: 1440px) {
  header .h-bottom .top-logo img {
    width: 200px;
  }
  header .h-bottom .top-menu {
    margin-right: 15px;
  }
  header .h-bottom .top-menu > li a {
    padding: 24px 6px;
  }
  header .h-bottom .header-btn {
    font-size: 16px;
    margin-right: 15px;
  }
  footer .footer-top {
    padding: 30px 0;
  }
  footer .footer-top .footer-logo {
    margin-right: 25px;
  }
  footer .footer-top .footer-logo img {
    width: 280px;
  }
  footer .footer-center {
    --gutter-x: 15px;
    --gutter-x2: -15px;
  }
  footer .footer-center .footer-title {
    font-size: 20px;
  }
  footer .footer-center .footer-menu li a {
    font-size: 16px;
  }
  footer .footer-center .footer-contacts .footer-contact .contact-icon {
    margin-right: 10px;
  }
  footer .footer-center .footer-contacts .footer-contact .contact-text {
    font-size: 16px;
  }
  .consultation_btn_2 {
    width: 360px;
  }
}
@media (max-width: 1200px) {
  header .h-bottom .top-logo img {
    width: 160px;
  }
  header .h-bottom .top-menu {
    margin-right: 10px;
  }
  header .h-bottom .top-menu > li a {
    padding: 20px 4px;
    font-size: 14px;
  }
  header .h-bottom .top-menu li ul.sub-menu li a {
    font-size: 14px;
  }
  header .h-bottom .header-btn {
    font-size: 14px;
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .gen-btn {
    min-width: 280px;
    font-size: 16px;
  }
  header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0px 0px 25px #0000003b;
  }
  header .h-bottom {
    padding: 10px 0;
  }
  header .h-bottom .web-lang {
    margin-right: 10px;
  }
  .consultation_btn_2 {
    width: 320px;
  }
  .consultation_btn span,
  .consultation_btn_2 span {
    font-size: 16px;
  }
  .consultation_btn svg,
  .consultation_btn_2 svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  footer .footer-top {
    padding: 30px 0;
  }
  footer .footer-top .footer-logo {
    margin-right: 25px;
  }
  footer .footer-top .footer-logo img {
    width: 240px;
  }
  footer .footer-top .footer-text {
    font-size: 14px;
  }
  footer .footer-center .footer-col {
    margin-bottom: 20px;
  }
  footer .footer-center .footer-group {
    margin-bottom: 20px;
  }
  footer .footer-center:after {
    display: none;
  }
  footer .footer-center .footer-title {
    font-size: 18px;
  }
  footer .footer-center .footer-menu li a {
    font-size: 14px;
  }
  footer .footer-center .footer-contacts .footer-contact .contact-icon {
    margin-right: 10px;
  }
  footer .footer-center .footer-contacts .footer-contact .contact-text {
    font-size: 14px;
  }
  footer .footer-bottom .footer-logos {
    gap: 25px;
  }
  footer .footer-bottom .footer-logos .footer-logo {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .gen-btn {
    min-width: 240px;
  }
  .consultation_btn_2 {
    width: 280px;
  }
  footer .footer-top {
    padding: 25px 0;
  }
  footer .footer-top .footer-logo {
    margin: 0 0 20px;
  }
  footer .footer-top .footer-logo img {
    width: 200px;
  }
  footer .footer-top .footer-text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footer-center {
    padding: 30px 0;
  }
  footer .footer-center .footer-col {
    margin-bottom: 20px;
  }
  footer .footer-center .footer-group {
    margin-bottom: 20px;
  }
  footer .footer-center:after {
    display: none;
  }
  footer .footer-center .footer-title {
    font-size: 18px;
  }
  footer .footer-center .footer-menu li a {
    font-size: 14px;
  }
  footer .footer-center .footer-contacts .footer-contact .contact-icon {
    margin-right: 10px;
  }
  footer .footer-center .footer-contacts .footer-contact .contact-text {
    font-size: 14px;
  }
  footer .footer-center .footer-contact-btn span {
    font-size: 18px;
  }
  footer .footer-bottom .footer-logos {
    gap: 15px;
  }
  footer .footer-bottom .footer-logos .footer-logo {
    height: 70px;
  }
  footer .footer-copyright {
    padding: 20px 0 80px;
  }
  footer .footer-copyright .copyright {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  footer .footer-center .footer-menu {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
