@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #212529;
}

html {
  font-size: 62.5%;
}

/* =10px */

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  color: #212529;
  overflow-x: hidden;
  background: url(../images/bkgrd.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #0D54B0;

  color: #0D54B0 !important;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a,
a:hover {
  text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article>*+* {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*-------------------------*/
.preloader {
  /*фиксированное позиционирование*/
  position: fixed;
  /* координаты положения */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* фоновый цвет элемента */
  background: #0D54B0;
  /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
  z-index: 1001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

.elimore_show {
  font-weight: 700;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}

/*-------------header----------*/

header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: all 0.5s ease 0s;
}

header .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  /* -webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap; */
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem 1.5rem;
}

header.fixed {
  background: #0D54B0;
  transition: all 0.5s ease 0s;
}

header.fixed .container {
  padding: 1.5rem;
}

.menu-wrap {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.menumob {
  width: calc(100% - 26.2rem);
  padding-right: 3rem;
}

.menumob.lang {
  width: 8rem;
  border-left: 1px solid #fff;
  padding-left: 1rem;
  padding-right: 0px;
  display: flex !important;
}
.mega-sub-menu .mega-menu-link:hover{
	color:rgba(117, 186, 255, 0.99) !important;
}
@media all and (min-width: 768px) {

	
  #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-enq_now_btn {
    display: none;
    visibility: hidden;
  }
}

@media all and (max-width: 768px) {
		.menumob.lang {
	    position: absolute;
    top: 5px;
		right: 66px;
		}
  .menumob.lang .dropdown-menu {
    width: fit-content !important;
    left: unset;
    background: #0D54B0;
  }

  #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu {
    width: 100% !important;
  }

  #mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item {
    position: relative;
  }

  #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-title1 {
    display: none !important;
  }

  .enq_now_btn {
    display: block;
    width: fit-content;
    margin: 10px 10px;
  }

  .enq_now_btn.pc_btn {
    display: none;
    visibility: hidden;
  }
  

  #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-enq_now_btn a.mega-menu-link {
    background: #fff;
    padding: 5px 15px;
    margin: 0 0 10px 10px;
    color: #004f8a;
    font-weight: 600;
    z-index: 99;
    line-height: 23px;
    height: 30px;
    white-space: nowrap;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #004f8a;
    width: fit-content;
    width: -moz-fit-content;
  }

  #mega-menu-wrap-main-menu .dropdown i::before {
    top: 0.5rem;
  }

  #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.icon>a.mega-menu-link>i {
    margin-right: 8px;
  }
}

.menu,
.header-body-right {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.galery-page {
  overflow: hidden;
}

.menumob a {
  font-weight: bold;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: .5s;
  text-transform: uppercase;
  color: #fff;
  padding: 0.4rem;
  text-decoration: none;
  display: block;
  margin-right: 0px;
}

.menumob a.dropdown-toggle {
  padding-right: 2rem;
}


.menu-item-has-children>.dropdown-toggle .dropbtn::before {
  content: "";
  border-top: 0.5rem solid #777777;
  border-right: 0.3rem solid transparent;
  border-left: 0.3rem solid transparent;
  border-bottom: 0px solid transparent;
  display: block;
  height: 0px;
  width: 0px;
  position: absolute;
  top: 0.8rem;
  right: -1rem;
}

.menu-item-has-children>.dropdown-toggle .dropbtn {
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: -3rem;
  position: relative;
}

.menu-item-has-children>.dropdown-toggle .dropbtn::after {
  content: url(//greenla.bestsoft.info/wp-content/themes/greenla/images/leng-arrow.svg);
  position: absolute;
  right: -1.5rem;
  line-height: 1;
}

.menu a:hover {
  text-decoration: none;
}

.menu-wrapper .dropdown-menu {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.12);
}

.menu-wrapper .dropdown-menu a:hover {
  color: #004f8a !important;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 35rem;
  z-index: 1;
  padding: 1rem !important;
  font-size: 1.4rem;
  line-height: 1.9rem;
  color: #5E5A53;
  left: -1.8rem;
}

.dropdown-menu.show {
  display: block;
  border-radius: 3px;
}

.dropdown-menu a:hover {
  color: #004f8a;
}

.menu .dropdown:last-child .dropdown-menu {
  right: 0px;
}

.dropdown-menu a {
  color: #403f43;
  font-weight: 400;
  padding: 0.5rem 1.2rem;
  position: relative;
  transition: all 0.3s ease 0s !important;
  text-transform: capitalize;
}

.menu-wrapper .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 22rem;
  overflow: auto;
  z-index: 1;
  left: -1.5rem;
  top: 5rem;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #5E5A53;
}

.menu-wrapper .dropdown-menu.show {
  display: block;
}

.menu-wrapper .dropdown-menu li a {
  padding: 1rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #5E5A53;
  display: block;
}

.wishlist_products_counter {
  width: 2rem;
  height: 1.8rem;
  background: url(../images/heart-ico.svg);
  background-size: contain;
  display: block;
  position: relative;
}

.logo {
  width: 21.2rem;
  display: inline-block;
}

.dropdown-toggle {
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  display: block;
  position: absolute;
  right: 0.5rem;
  transform: rotate(0.88turn);
  top: 0.9rem;
  transition: 1s;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(0.37turn);
  top: 1.6rem;
}

/**/


.homeSlider .slick-prev::before,
.homeSlider .slick-next::before {
  color: #004f8a;
  font-size: 20px;
  background-color: #fff;
  width: 5.5rem;
  height: 5.5rem;
  line-height: 5rem;
  border-radius: 50%;
  opacity: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;

}

.homeSlider .slick-arrow {
  position: absolute;
  top: 50%;
  background: transparent;
  border: 0px;
  font-size: 0px;
  z-index: 99;
}

.homeSlider .slick-prev::before {
  font-family: "IcoFont";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  content: "\ea93";
}

.homeSlider .slick-next::before {
  font-family: "IcoFont";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 1;
  content: "\ea94";

}

.homeSlider .slick-next {
  right: 0px;
}

.homeSliderCart {
  height: 75rem;
  position: relative;
}

.homeSliderCart picture {
  position: absolute;
  width: 100%;
  height: 100%;
}

.homeSliderCart picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homeSliderCart {
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.homeSliderCart .container {
  z-index: 999;
  position: relative;
  color: #fff;
  text-align: center;
}

.homeSliderCart .container h1 {
  color: #fff;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.homeSliderCart .container p {
  color: #fff;
  font-size: 3.0rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

.homeSliderCart::before {
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.homeSliderCart .btn {
background: #0D54B0 !important;
    border-radius: 3px !important;
	border: none !important;
	color:white !important;
    padding: 4px;
  font-size: 15px;
padding: 14px 36px !important;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  letter-spacing: 1px;
  background-color: #0D54B0;
	
	font-family: 'Arial' !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 17px !important;
    text-transform: uppercase !important;
	font-weight: 800;
}
/* 
.homeSliderCart .btn:hover {
  background-color: #fff;
  color: #004f8a;
} */

/**/
.our_services .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
    align-items: stretch;
  padding-top: 4rem;
  padding-bottom: 4rem;
	
}

.services-cart {
  width: calc(25% - 3rem);
  text-align: center;
  background: rgba(250, 250, 250, 0.6);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.06);
  padding: 6.5rem 2.5rem 4.5rem;
  border-radius: 0.5rem;
}

.service .icon {
  color: #fff;
  background-color: #0D54B0;
  width: 7rem;
  height: 7rem;
  line-height: 7rem;
  font-size: 2.6rem;
  text-align: center;
  transition: all 0.3s ease 0s;
  margin-bottom: 3rem;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 0.5rem 1.1rem rgba(0, 0, 0, 0.1);
}

.service h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
  color: #0D54B0;
height: 90px;
}

.service p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.8rem;
	text-align: left;
}


/*----------------footer-------------------*/

footer {
  padding: 60px 0 40px;
  background-color: #0D54B0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.8rem;
}

.footer-top {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
}

.footer-widget {
  width: 25%;
}

.footer-bottom {
  text-align: center;
  display: flex;
    flex-direction: column;
    margin: 20px auto;
}

.foot_social_link {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.foot_social_link a {
  color: #fff;
}

.footer-top {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

footer .fot-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
  color: #fff;
  color: #fff;
  font-size: 2.2rem;
}

footer .footer-top ul li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 7px;
  height: 2px;
  background-color: #fff;
  top: 15px;
  transition: .5s;
}

.foot-logo {
  width: 21.2rem;
  margin-bottom: 1rem;
}

.widget_title::after,
footer .fot-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: #fff;
  width: 56px;
  height: 3px;
}

.footer-widget {
  padding-right: 3rem;
}

footer ul {
  list-style-type: none;
  padding-left: 0px;
}

footer .footer-top ul li {
  padding-left: 1.4rem;
  line-height: 3.2rem;
  position: relative;
}

footer .footer-top ul li:hover::before {
  background-color: #fc5b62;
}

footer .footer-top ul li a {
  color: #fff;
}

footer .footer-top ul li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 7px;
  height: 2px;
  background-color: #fff;
  top: 15px;
  transition: .5s;
}

.foot_social_link li {
  margin: 0 5px;
}

.why_choose {
  margin-bottom: 4.5rem;
}

.why_choose .whyChooseRow {
  background: rgba(250, 250, 250, 0.6);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
}

.why_choose .container .col6 {
  width: 50%;
}

.why_choose .row,
.whyChooseRow {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
}

.why-choose-img {
  position: relative;
}

.video-btn {
  background-color: #0D54B0;
  width: 8rem;
  height: 8rem;
  color: #fff;
  line-height: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 1.7rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: .5s;
  border: 1px solid #0D54B0;
}

.video-btn:hover {
  background-color: #fff;
  width: 8rem;
  height: 8rem;
  color: #004f8a;
  line-height: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 1.7rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: .5s;
}

.single-choose i {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  transition: all 0.3s ease 0s;
  margin-right: 2.5rem;
  display: inline-block;
  position: relative;
  margin-top: 5px;
  margin-left: 0;
  width: 5.5rem;
  height: 5.5rem;
  line-height: 5.5rem;
  border-radius: 50%;
  box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.1);
  background-color: #0D54B0 !important;
}

.single-choose .choose-content {
  width: calc(100% - 8rem);
}

.single-choose {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-right: 2rem;
  margin-bottom: 2rem;
}

.why_choose .section-title,
.whyChooseRow .row {
  padding-left: 3rem;
}

.whyChooseRow h2 {
  color: #0D54B0;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.whyChooseRow span {
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: #004f8a;
  font-weight: bold;
}

.section-title {
  padding-bottom: 3rem;
  padding-top: 2rem;
}

.single-choose h4 {
  font-size: 1.8rem;
  text-transform: capitalize;
  color: #0D54B0;
}

.single-choose p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.8rem;
}

.testimonialContainer .section-title h2 {
  color: #0D54B0;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 3rem;
  text-align: center;
}

.testimonialContainer .section-title span {
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: #0D54B0;
  font-weight: bold;
  text-align: center;
  display: block;
}

.testimonialContainer {
  background: rgba(250, 250, 250, 0.6);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  padding-bottom: 2rem;
}

.single-testimonial {
  padding: 3rem 2.5rem;
}

.testimonial-content {
  color: #0D54B0;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: center;
}

.single-testimonial li {
  list-style: none !important;
}

.testimonial .title {
  display: block;
  color: #0D54B0;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0;
}

.single-testimonial {
  text-align: center;
}

.test-rating i {
  color: #ffc000;
}

.testimonialSlider .slick-prev::before,
.testimonialSlider .slick-next::before {
  color: #fff;
  font-size: 20px;
  background-color: #0D54B0;
  width: 5.5rem;
  height: 5.5rem;
  line-height: 5rem;
  border-radius: 50%;
  opacity: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;

}

.testimonialSlider .slick-arrow {
  position: absolute;
  top: calc(50% - 2.75rem);
  background: transparent;
  border: 0px;
  font-size: 0px;
  z-index: 99;
  padding: 0px;
}

.testimonialSlider .slick-prev::before {
  font-family: "IcoFont";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  content: "\ea93";
}

.testimonialSlider .slick-next::before {
  font-family: "IcoFont";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 1;
  content: "\ea94";

}

.testimonialSlider .slick-prev {
  left: -2.75rem;
}

.testimonialSlider .slick-next {
  right: -2.75rem;
}

.testimonial {
  margin-bottom: 4.5rem;
}

.slick-slide {
  transition: all 0.5s ease 0s;
}

.slick-center {
  background: #0D54B0;
  color: #fff;
  transition: all 0.5s ease 0s;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
}

.slick-center .testimonial-content {
  color: #fff;
}

.testimonial .slick-center .title {
  color: #fff;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.homeSliderCart .container {
  width: 100%;
}

.page-up {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 1;
  cursor: pointer;
  background: #fff;
  width: 4.5rem;
  height: 4.5rem;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.4rem;
}

.page-up i {
  color: #004f8a !important;
  font-size: 2rem;
}

/*--------page-----------*/
.blog-text h4 {
  line-height: 2.6rem;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  color: #0D54B0;
}

.page_container {
  background: rgba(250, 250, 250, 0.6);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.06);
  /* border-radius: 0.5rem; */
  /* padding-top: 2rem; */
  /* padding-bottom: 2rem; */
  /* margin-top: 4.5rem !important; */
  /* margin-bottom: 4.5rem !important; */
  min-height: calc(100vh - 60rem);
}

.wp-block-table {
  background: rgba(250, 250, 250, 0.6);
  border: 1px solid #004f8a !important;
  margin-bottom: 1rem;
}

.wp-block-table table {
  border-collapse: collapse;
}

td.has-text-align-center img {
  margin: 0 auto;
}

.wp-block-table tr th,
.wp-block-table tr td {
  padding: 0.3rem 1rem;
  text-align: center;
  border-bottom: 1px solid #004f8a !important;
}

.blog-text a {
  text-decoration: underline;
  color: #0D54B0;
  font-weight: bold;
  text-decoration: underline;
}

.video-btn {
  color: #fff !important;
}

.video-btn:hover {
  color: #004f8a !important;
}

.page_banner {
  height: 36.8rem;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.galery-page {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.page_banner::before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}

.page_banner picture {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.page_banner picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_banner .container {
  position: relative;
  z-index: 1;
}

.page_banner .container h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  padding-top: 13rem;
  text-transform: capitalize;
}

.blog-text {
  padding: 10px 30px 30px;
  font-size: 1.5rem;
  line-height: 2.8rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
}

.blog-text p {
  padding-bottom: 1.5rem;
}

.blog-text ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  /* left: 3rem !important; */
}

.blog-text ul li {
  list-style: disc;
}

.comment_text {
  margin-bottom: 1.5rem;
}

/**/
.blog-text h4.com-title {
  font-size: 1.7rem;
  color: #0D54B0;
}

.comment_text .date {
  font-weight: 500;
  font-size: 1.5rem;
}

.comment_text strong {
  color: #0D54B0;
}

/**/
.page_container.contact iframe {
  width: 100%;
  margin-bottom: 2rem;
}

.page_container.contact .blog-text .row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}
.page_container.contact .blog-text .wpcf7 form>.row{
    align-items: self-end;
}
.page_container.contact .blog-text .row .actions {
  display: flex;
}

.page_container.contact .form-group.col6 {
  width: 48%;
}

.page_container.contact .form-group.col6 .seemore_label{
 color: #0D54B0;
}

.page_container.contact .form-group.col6.fixflex_input {
  align-self: baseline;
}
.page_container.contact .form-group.col6.fixflex_input .wpcf7-list-item.first {
  margin-left: 0;
}
.page_container.contact .form-group.cust_date .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.page_container.contact .form-group input,
.page_container.contact .form-group textarea,
.page_container.contact .form-group {
  width: 100%;
}

.contact_address {
  width: 40%;
}

.contact-form {
  width: 60%;
}

.contact_address {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.page_container.contact .form-group.grid-inside .wpcf7-form-control.wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.form-control {
  display: block;
  width: 100%;
  height: 4.6rem;
  padding: 0px 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact .form-control {
  border-radius: 0px;
  background-color: #f1f6f9;
  border-color: #f1f6f9;
  margin-bottom: 15px;
  font-size: 12px;
}

.page_container.contact .form-group textarea {
  height: 100px;
}

.wpcf7-form-control-wrap.dnights input {
  pointer-events: none;
}

.actions .btn {
  background-color: #0D54B0;
  border: 1px solid #0D54B0;
  border-radius: 4px;
  color: #fff;
  font-size: 1.5rem;
  padding: 0rem 3rem;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  height: 4.6rem;
}

.contact_address i {
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  background-color: #0D54B0;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  text-align: center;
  float: left;
  margin-right: 2.4rem;
}

.contact_address {
  color: #0D54B0;
  font-weight: bold;
  padding-left: 4.5rem;
}

.contact_address p {
  padding-bottom: 0px;
}

.single-contact-info {
  margin-bottom: 2.5rem;
  min-height: 4.5rem;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*--------------------galery-----------------*/

.card {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  background: rgba(250, 250, 250, 0.6);
  color: #0D54B0 !important;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.single-gallery {
  width: 37rem;
}

.single-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.card-body {
  width: calc(100% - 60rem);
  padding: 2rem;
}

.card-block-last {
  width: 23rem;
  padding: 2rem;
  display: none;
}

.card-title {
  font-size: 1.8rem;
  color: #004f8a !important;
  margin-top: 0px;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.card-title a {
  color: #0D54B0 !important;
}

.list-group-item {
  padding: 1.2rem 2rem 0rem 2rem;
}

.list-group {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.card-block-last h5 {
  font-size: 1.8rem;
  color: #004f8a;
  margin-top: 0px;
  margin-top: 1.2rem;
}

.list-group-item p {
  margin-bottom: 1.5rem;
}

.card-text {
  margin-bottom: 1.5rem;
}

.list-group-item i {
  margin-right: 1rem;
}

.card:first-child {
  margin-top: 2rem;
}

.card {
  margin-bottom: 2rem;
}

.single-gallery {
  position: relative;
}

.single-gallery:hover:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.single-gallery a {
  background-color: #0D54B0 !important;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  transition: .5s;
  opacity: 0;
  z-index: 2;
}

.single-gallery a:hover {
  background-color: #fff !important;
  color: #0D54B0;
}

.slider-nav .slick-center {
  background: transparent;
}

.slider-nav {
  margin-top: 2rem;
}

.single-gallery:hover a {
  opacity: 1;
}

.slider-for img {
  height: 83rem;
  width: 100%;
  object-fit: cover;
}

.slider-nav img {
  height: 15rem;
  width: 100%;
  object-fit: cover;
  border: 4px solid #fff;
}

.galery-page {
  background: rgba(250, 250, 250, 0.6);
  margin-top: 1.5rem;
}

.galery-page-top {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.galery-page-top .col8 {
  width: 100%;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;

}

.galery-page-top .col4 {
  width: 34%;
  padding-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: none;
}

.slider-for .slick-prev::before,
.slider-for .slick-next::before,
.slider-nav .slick-prev::before,
.slider-nav .slick-next::before {
  color: #fff;
  font-size: 20px;
  background-color: #0D54B0;
  width: 5.5rem;
  height: 5.5rem;
  line-height: 5rem;
  border-radius: 50%;
  opacity: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;

}

.slider-for .slick-arrow,
.slider-nav .slick-arrow {
  position: absolute;
  top: calc(50% - 2.75rem);
  background: transparent;
  border: 0px;
  font-size: 0px;
  z-index: 99;
  padding: 0px;
}

.slider-for .slick-prev::before,
.slider-nav .slick-prev::before {
  font-family: "IcoFont";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  content: "\ea93";
}

.slider-for .slick-next::before,
.slider-nav .slick-next::before {
  font-family: "IcoFont";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 1;
  content: "\ea94";

}

.slider-for .slick-prev,
.slider-nav .slick-prev {
  left: -5rem;
  opacity: 0;
  transition: 1s;
}

.slider-for .slick-next,
.slider-nav .slick-next {
  right: -5rem;
  opacity: 0;
  transition: 1s;
}

.slider-for:hover .slick-prev,
.slider-nav:hover .slick-prev {
  left: 2rem;
  opacity: 1;
}

.slider-for:hover .slick-next,
.slider-nav:hover .slick-next {
  right: 2rem;
  opacity: 1;
}

.galery-page-top .title {
  font-size: 2.4rem;
  color: #0D54B0;
  margin-bottom: 1rem;
}

.list-group li {
  list-style: none;
}

.list-group {
  margin-left: 0px;
}

.slider-for img {
  border: 4px solid #fff;
}

.blog-text .list-group li {
  list-style: none;
}

.blog-text .list-group {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 0rem !important;
}

.blog-text .list-group p {
  margin-bottom: 0px;
}

.map iframe {
  width: 100%;
}

.galery-why-choose-img {
  width: 50%;
}

.galery-page .list-group-item {
  padding: 1rem 3rem 0rem 0rem;
}

.w30 .list-group li {
  list-style: none;
  width: 33%;
}

.w30 .list-group li span {
  padding-left: 1rem;
  font-weight: 500;
  font-family: Arial;
  font-size: 1.5rem;
}

.elimore_hide,
.elimore_show {
  color: #0D54B0;
  text-decoration: underline;
  font-weight: 900;
}

.slick-center .elimore_hide,
.slick-center .elimore_show {
  color: #fff;
}

@media (max-width: 1200px) {
  .testimonial .slick-slider {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .homeSliderCart .container {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .homeSliderCart .container h1 {
    color: #fff;
    /*font-size: 4rem;*/
    font-weight: 700;
    margin-bottom: 2rem;
  }

  .section-title {
    padding-bottom: 1rem;
    padding-top: 2rem;
  }
}

@media (max-width: 1500px) {
  .divisions-list a {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
	.service h4 {
    height: 60px !important;
}
  .slider-for img {
    height: 40rem;
  }

  .galery-why-choose-img {
    width: 100%;
  }

  .w30 .list-group li {
    list-style: none;
    width: 50%;
  }

  .single-gallery {
    width: 40%;
  }

  .card-body {
    width: 60%;
  }

  .card-block-last {
    width: 100%;
  }

  .list-group-item {
    padding: 1.2rem 2rem 0rem 0rem;
  }

  .contact_address,
  .contact-form {
    width: 100%;
  }

  .logo {
    z-index: 1;
  }

  .page_banner .container h1 {
    font-size: 3rem;
  }

  html {
    font-size: 62.5%;
  }

  .tfm-top-ContentWrap {
    width: 100%;
  }

  .ourteamCartImg {
    width: 30rem;
    height: 30rem;
  }

  .team-copy {
    width: calc(100% - 30rem);
  }

  .ourteamCart {
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
  }

  .productsContentCart.col6 {
    width: 100%;
  }

  .services-cart {
    width: calc(50% - 1.5rem);
    margin-bottom: 2rem;
  }

  .menumob a {
    line-height: 1.2;
    height: auto;
    font-weight: 400;
  }

  .twitterFeedWrap,
  .slsVideoWrap {
    width: 100%;
  }

  .twitterFeedWrap,
  .slsVideoWrap {
    width: 100%;
    margin: 0 auto 5rem;
  }

  .contentWrap .twitter-tweet {
    margin-right: auto;
  }

  .twitterFeedWrap {
    height: auto;
  }

  .why_choose .container .col6 {
    width: 100%;
  }

  .why-choose-img img {
    width: 50rem;
    height: 50rem;
    object-fit: cover;
    margin: 0 auto;
  }

  .footer-widget {
    width: 50%;
  }

  .menumob a {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .menumob a {
    padding: 0.8rem 2rem 0.8rem 0.5rem;
  }

  .menu .dropdown .dropdown-menu {
    right: 0px;
  }

  .contact_address {
    padding-left: 0rem;
  }

  .section-title p {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .menu {
    padding-left: 2rem;
  }

  header .container {
    padding: 1.5rem;
    max-width: 100%;
    flex-wrap: wrap;
  }
}

@media all and (max-width: 768px) {
  header.fixed .container {
    padding: 1.5rem;
  }

  .test-rating {
    width: 100%;
    display: block;
  }

  .w30 .list-group li {
    list-style: none;
    width: 100%;
  }

  .single-gallery,
  .card-body,
  .card-block-last {
    width: 100%;
  }

  .dropdown-menu {
    background-color: transparent;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: #fff;
  }

  .menumob a {
    display: inline-block;
    z-index: 1;
  }

  .dropdown-menu {
    position: sticky;
    padding-left: 2rem !important;
  }

  .homeSlider .slick-arrow {
    display: none !important;
  }

  .menumob {
    /* display: -ms-flexbox; */
    /* display: -webkit-flex; */
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding-bottom: 4rem;
    overflow-y: scroll;
    max-height: calc(100vh - 58px);
  }

  header.bg {
    background: #0D54B0;
  }

  .menumob.show {
    top: 0px;
    opacity: 1;
    position: relative;
  }

  .menumob a {
    font-size: 2rem;
    line-height: 1.2;
    height: auto;
  }

  .burger {
    height: 20px;
    width: 30px;
    position: relative;
    margin-right: 0rem;
  }

  .burger:hover {
    cursor: pointer;
  }

  .burger::before {
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    top: 0px;
    display: block;
    background: #fff;
  }

  .burger::after {
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    bottom: 0px;
    display: block;
    background: #fff;
  }

  .burger span {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    top: calc(50% - 2px);
    display: block;
    background: #fff;
  }

  .dropdown-toggle::after {
    display: none;
  }

  .menumob li {
    width: 100%;
  }

  .dropdown i {
    position: absolute;
    right: 0px;
  }

  .dropdown i::before {
    content: "";
    width: 10px;
    height: 8px;
    transform: rotate(0deg);
    display: inline-block;
    position: absolute;
    top: 0.7rem;
    left: 1.05rem;
    border-left: 12px solid #fff;
    border-top: 4px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 4px solid transparent;
  }

  .dropdown.actives i::before {
    border-left: 12px solid #fc5b62;
  }

  .dropdown.actives i::before {
    transform: rotate(90deg);
  }

  .dropdown-menu a {
    color: #fff;
  }

  .menu {
    margin: 2rem auto 1rem !important;
    max-width: 33rem;
  }

  .page_banner .container h1 {
    font-size: 2.8rem;
    padding-top: 5rem;
  }

  .blog-text {
    padding: 10px 0px 30px;
    font-size: 1.5rem;
    line-height: 2.8rem;
  }

  .homeSliderCart {
    min-height: 100vh;
    height: auto;
    position: relative;
  }

  .homeSliderCart .container h1 {
    /*font-size: 2.4rem;*/
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
  }

  .homeSliderCart .btn {
    display: inline-block;
  }

  .homeSlider .slick-prev::before,
  .homeSlider .slick-next::before {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
  }

  .homeSliderCart .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .services-cart {
    width: 100%;
    margin-bottom: 2rem;
  }

  .why_choose .container .col6 {
    width: 100%;
  }

  .why_choose .section-title,
  .whyChooseRow .row {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .single-choose i {
    margin-right: 1.5rem;
    width: 4.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
  }

  .single-choose .choose-content {
    width: calc(100% - 6rem);
  }

  .footer-widget {
    width: 50%;
  }

  .menumob a {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .3px;
    transition: .5s;
    text-transform: uppercase;
    color: #fff;
    padding: 0.8rem 0.5rem 0.8rem 0.5rem;
    text-decoration: none;
    /*display: block;*/
    margin-right: 0px;
  }

  .menumob a.dropdown-toggle {
    padding-right: 0rem;
  }


  .dropdown-menu {
    position: sticky;
    padding: 0rem !important;
  }

  .menumob a {
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: capitalize;
    padding: 0.8rem 2.3rem;
    padding: 0.5rem 1rem;
    margin: 0.2rem 0.5rem;
  }

  .why-choose-img img {
    width: auto;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
  }

  .footer-widget {
    width: 100%;
    margin-bottom: 2rem;
  }

  .testimonialContainer .section-title h2,
  .whyChooseRow h2 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .testimonialSlider .slick-prev::before,
  .testimonialSlider .slick-next::before {
    color: #004f8a;
    background-color: #fff;
    width: 4.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
  }
}

@media all and (max-width: 576px) {
  .blog-text iframe {
    height: 30rem;
  }

  .homeSliderCart .container h1 {
    font-size: 4rem;
  }

  .slider-for img {
    height: 26rem;
  }

  .galery-page-top .col4,
  .galery-page-top .col8 {
    width: 100%;
  }

  .galery-page-top .col8 {
    border-right: 0px solid #211E3B;
    border-bottom: 1px solid #211E3B;
    padding-right: 0rem;
  }

  .blog-text ul {
    column-count: 2 !important;
  }

  .page_container.contact .form-group.grid-inside .wpcf7-form-control.wpcf7-checkbox {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 769px) {

  .burger,
  .close {
    display: none;
  }

  .container {
    max-width: 720px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 1180px) {
  .container {
    max-width: 1229px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
  }
}

.menu-footer {
  display: none;
}

.fot-title {
  display: none;
}

.icofont-social-google-map {
  display: none;
}

@media (max-width: 576px) {
  .wp-image-2685 {
    max-height: 00px;
  }
}

@media (max-width: 576px) {
  .wp-image-2684 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2683 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2682 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2681 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2680 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2698 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2708 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2707 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2706 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2662 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2661 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2660 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2659 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2658 {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .wp-image-2657 {
    max-height: 300px;
  }
}

#bwg_container1_0 #bwg_container2_0 #spider_popup_overlay_0 {
  background-color: rgba(0, 0, 0, .8) !important;
  opacity: 1 !important;
}

.bwg_slider img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.SumoSelect>.optWrapper>.MultiControls,
.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont,
.bwg_thumbnail .search_tags {
  display: none !important;
}

.SumoSelect>.optWrapper {
  display: none !important;

}

.bwg_thumbnail.bwg_container .search_line .SumoSelect {
  padding: 0;
}

.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,
.bwg_thumbnail.bwg_container .search_line .search_tags_container {
  background: none;
  border: none;
}

.bwg_thumbnail.bwg_container .search_line .search_tags_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: none;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.SumoSelect>.optWrapper>.options {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.SumoSelect>.optWrapper.multiple>.options li.opt span {
  display: none !important;
}

.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt label {
  color: #403f43;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
}

.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt.selected label {
  color: #0D54B0;
}

.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt {
  line-height: unset !important;
}

.search_line .SumoSelect>.optWrapper.multiple.isFloating {
  padding-bottom: 0 !important;
}

.SumoSelect>.optWrapper.isFloating {
  position: static;
  width: 100%;
  margin: unset;
  max-height: unset;
}

.reset_tags {

  /* color: #403f43 !important; */
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none !important;

  margin: 0 20px 0 0 !important;
}

.bwg_tags_container_0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cust_tags_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cust_tags_select a {
  margin-right: 20px;
  /* color: #403f43 !important; */
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none !important;
}

.enq_now_btn {
  background: #fff;
  padding: 5px 15px;
  color: #004f8a;
  font-weight: 600;
  z-index: 99;
  white-space: nowrap;
  /*box-shadow: 0px 0.2rem 1.1rem rgb(0 0 0 / 70%);*/
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #004f8a;
}

a.open_pdf_btn {
  background-color: #0D54B0;
  border: 1px solid #0D54B0;
  border-radius: 4px;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem 3rem;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  height: 4.6rem;
  text-decoration: unset;
}

.contact-form .form-group label {
  font-size: 11px;
  width: fit-content;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu,
#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item {
  position: unset;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
  min-width: 250px;
}

.fixflex_input input {
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  width: 15px !important;
  min-width: 15px;
  height: 15px !important;
  cursor: pointer;
  display: block;
}

.fixflex_input input:checked {
  border-color: #0b76ef;
  background-color: #0b76ef;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
}

.fixflex_input .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fixflex_input .wpcf7-list-item label .wpcf7-list-item-label {
  line-height: 1.5rem;
  font-size: 12px;
}

/* .flexbl_reason input,
.flexbl_reason label {
  display: none;
} */

.contact_title {
  color: #0D54B0;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 25px;
}
.front_modal{
	    position: fixed;
    display: flex;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background: rgba(30, 30, 30, .87) !important;
    /* padding: 50px 20px 20px; */
    transition: all .3s ease;
}
.front_modal .modal, .front_modal .modal__video {
    width: 100%;
    height: 100%;
}
.front_modal.active {
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}
.front_modal .modal__video video, .front_modal .modal__video iframe, .front_modal .modal__video img {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
}
.appartament_page_video_btn{
	background: #0D54B0 !important;
    border-radius: 3px !important;
    border: none !important;
    color: white !important;
    font-size: 15px;
    padding: 14px 36px !important;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    font-weight: 400;
    letter-spacing: 1px;
    background-color: #0D54B0;
    font-family: 'Arial' !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 17px !important;
    text-transform: uppercase !important;
    font-weight: 800;
	max-width: 350px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
#volume{
    border: none;
    outline: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: #0D54B0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
#volume>svg path{
  stroke: white;
}
#volume.volume_off>svg path:nth-child(2),
#volume.volume_off>svg path:nth-child(3){
display: none;
}
.apartament__text-more{
  cursor: pointer;
}
.all_pages_footer{
  width: 72%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 338px;
}
.all_pages_footer a{
  color: white;
  font-size: 10px;
  transition: .5s;
  margin: 0 5px;
}
.all_pages_footer a:hover{
opacity: .7;
}
.all_pages_footer a[href*="weather"] {
    display:none;
}
.hero__item_top{
	font-family: 'Arial' !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 17px !important;
    text-transform: uppercase !important;
    color: white;
    display: flex;
    flex-direction: column;
	max-width: 380px;
    width: 100%;
    padding: 10px !important;
}
.hero__item_sm_desc{
	    font-size: 9px !important;
    margin-top: 5px;
}
.for_all_page{
	margin-top: 25px;
}
.nta_wa_button{
	position: fixed;
    right: 10px;
    bottom: 5px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-enq_now_btn a,
#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.virtual_tour_btn a{
	max-width: 185px;
    width: 100% !important;
	    justify-content: center;
	    font-size: 9px !important;
}
.sg-popup-content .sgpb-popup-builder-content-html{
	height: 100%;
}
.sg-popup-content .sgpb-popup-builder-content-html>.sgpb-main-html-content-wrapper{
	height: 100%;
}
@media all and (max-width: 1180px) {
  .all_pages_footer{
    max-height: 408px;
  }
		.service h4{
		height: 120px;
	}
}
@media all and (max-width: 993px) {

  .all_pages_footer{
    margin-top: 25px;
    width: 100%;
  }
}
@media all and (max-width: 768px) {
	.hero__item_top{
		 max-width: 100%;
    width: 100% !important;
	}
}
@media all and (max-width: 777px) {
  .all_pages_footer{
    flex-direction: row;
    max-height: unset;
  }
  .all_pages_footer a{
    margin: 0 5px;
  }
}


