/*------------| body frame start |-----------*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* html {
  overflow-x: hidden;
} */

html,
body {
  padding: 0px;
  margin: 0;
  min-height: 100%;
  width: 100%;
  height: 100%;
}

body {
  padding: 0px;
  margin: 0px;
  min-width: 320px;
  color: var(--white);
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 21px;
  font-style: normal;
  background: var(--Green);
  min-height: 100%;
  position: relative;
  overflow: auto;
}

/*=============== tags start ===================**/

*:focus,
a:hover,
a:active,
a:focus {
  outline: 0;
}

*:focus {
  outline-style: none;
  box-shadow: none;
}

button::-moz-focus-inner,
select::-moz-focus-inner {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  opacity: 1;
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.pageWrap a:not(footer a, .cky-banner-element),
.infoPopup a:not(footer a, .cky-banner-element) {
  background: linear-gradient(to right, var(--white), var(--white)), linear-gradient(to right, var(--Cream), var(--Cream));
  background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
  display: inline;
}

.pageWrap a:not(footer a, .cky-banner-element):hover,
.infoPopup a:not(footer a, .cky-banner-element):hover {
  background-size: 0 1px, 100% 1px;
  color: var(--Cream);
}


b,
strong {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500 !important;
}

figure {
  padding: 0px;
  margin: 0px;
}

img {
  border: 0px;
  outline: none;
  display: block;
  max-width: 100%;
  height: auto;
}

img.error {
  content: "";
}

input {
  margin: 0px;
}

button::-moz-focus-inner,
select::-moz-focus-inner {
  border: 0;
  outline: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
input[type="text"]:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0px;
  margin: 0px;
}

h1 {
  font-size: 48px;
  line-height: 58px;
  padding-bottom: 22px;
}

h2 {
  font-size: 36px;
  line-height: 42px;
  padding-bottom: 18px;
}

h3 {
  font-size: 30px;
  line-height: 34px;
  padding-bottom: 14px;
}

h4 {
  font-size: 28px;
  line-height: 32px;
  padding-bottom: 10px;
}

h5 {
  font-size: 25px;
  line-height: 30px;
  padding-bottom: 10px;
}

h6 {
  font-size: 15px;
  line-height: 18px;
  padding-bottom: 10px;
}

p {
  margin: 0px;
  padding: 0px 0px 25px 0px;
}

ul,
ol {
  padding: 0px 0px 20px 25px;
  margin: 0px;
}

ul li,
ol li {
  position: relative;
  padding: 0px 0px 5px 0px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  padding: 20px 0px 20px 25px;
  margin: 0px;
}

ul li {
  list-style: none;
}

.pageWrap ul li:before,
.infoPopup ul li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: -20px;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--white);
}

hr {
  padding: 0px;
  border: 0px;
  height: 1px;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.25);
}

blockquote,
blockquote * {
  position: relative;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 36px;
  margin: 0px 0px 35px 0px;
  padding: 0px 0px 0px 20px;
}

blockquote::before,
blockquote *::before {
  content: open-quote;
  position: absolute;
  left: 0px;
  top: 0;
  font-family: inherit;
  font-weight: normal;
  font-size: inherit;
  color: var(--Cream);
}

blockquote::after,
blockquote *::after {
  content: close-quote;
  position: relative;
  left: auto;
  right: 0px;
  top: 0;
  font-family: inherit;
  font-weight: normal;
  font-size: inherit;
  color: var(--Cream);
  bottom: 0;
}

pre {
  margin: 0;
  word-break: break-word;
}

header ul,
footer ul {
  padding: 0px;
}

header ul li::before,
footer ul li::before {
  display: none;
}




/* IFRAME */
.iframeWrapper {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  margin: 20px 0;
}

.iframeWrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

video {
  height: auto;
  width: 100%;
}

/* =========================================  BOX CSS =========================================  */



.box {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: rgba(118, 112, 105, 0.1);
}

.box:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(81, 140, 252, 0);
  mix-blend-mode: multiply;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.imageHolder {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
}

.OF-cover {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

/* ========================================= section and containers ========================================= */

section:not(.videoHolder, .gallerySlider, .mapArea) {
  width: 100%;
  position: relative;
  padding: 100px 0px;
}

.centerBlock {
  padding: 0px 62px;
  position: relative;
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
}

.col_1_1,
.col_1_1_1,
.col_1_1_1_1,
.flexWrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.col_1_1,
.col_1_1_1,
.col_1_1_1_1,
.flexWrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-flow: row wrap;
  align-items: flex-start;
}

/* Spacing class */

.TBspace {
  padding: 60px 0px;
}

.Bspace {
  padding-bottom: 35px !important;
}

section.TBspace:last-child {
  padding-bottom: 120px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

/* WP- core css */

.alignnone,
div.alignnone {
  margin: 10px 20px 20px 0px;
  position: relative;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 10px auto 15px auto;
  position: relative;
}

.alignright,
div.alignright {
  float: right;
  margin: 10px 0px 30px 30px !important;
  position: relative;
  clear: right;
}

.alignleft,
div.alignleft {
  float: left;
  margin: 10px 30px 30px 0;
  position: relative;
}

a img.alignright {
  float: right;
  margin: 10px 0 30px 30px;
}

a img.alignnone {
  margin: 10px 30px 30px 0;
}

a img.alignleft {
  float: left;
  margin: 10px 30px 30px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: var(--white);
  max-width: 96%;
  padding: 0px;
}

.wp-caption.alignnone {
  margin: 0px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 10px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 10px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.wp-caption p.wp-caption-text {
  font-size: 15px;
  line-height: 20px;
  margin: 0;
  padding: 7px 7px 6px 7px;
  font-weight: 500;
  background-color: var(--Cream);
  color: var(--Green);
  font-family: 'Gilroy', sans-serif;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}


#wpadminbar a:before,
#wpadminbar a:after {
  display: none !important;
}

/* ANIMATION */
img.fadeIn {
  transition: opacity 1s ease .2s;
  -webkit-transition: opacity 1s ease .2s;
  -moz-transition: opacity 1s ease .2s;
  -o-transition: opacity 1s ease .2s;
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease;
  -webkit-transition: opacity 0.8s ease;
  -moz-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
}

.fadeIn.animateMe {
  opacity: 1;
}

.fadeInUp {
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.16, .84, .44, 1), transform 0.8s cubic-bezier(.16, .84, .44, 1);
  -webkit-transition: opacity 0.8s cubic-bezier(.16, .84, .44, 1), transform 0.8s cubic-bezier(.16, .84, .44, 1);
  -moz-transition: opacity 0.8s cubic-bezier(.16, .84, .44, 1), transform 0.8s cubic-bezier(.16, .84, .44, 1);
  -o-transition: opacity 0.8s cubic-bezier(.16, .84, .44, 1), transform 0.8s cubic-bezier(.16, .84, .44, 1);
  will-change: transform;
}

.fadeInUp.animateMe {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.emphasized {
  /* font-style: italic; */
  position: relative;
  margin: 0;
}


/* IMAGELOADER */
p img+.imgloader {
  display: none;
}

.imgloader {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../images/loader.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40px;
}

img[data-lazy-src] {
  opacity: 0;
}

img.lazyloaded {
  opacity: 1 !important;
}

img.lazyloaded~.imgloader {
  opacity: 0;
}

header .imgloader,
footer .imgloader {
  display: none;
}


/* Table Css */
table {
  margin: 30px 0px;
  width: 100%;
  border: 1px solid #c4c4c4;
  border-collapse: collapse;
}

table * {
  padding-bottom: 0px;
}

table tr {
  background: #EDF0F6;
  margin-bottom: 5px;
  border: 1px solid #c4c4c4;
}

tr:nth-child(even) {
  background: #FBFBFB;
}

td,
th {
  padding: 10px 15px;
  font-size: 17px;
  line-height: 21px;
  text-align: left;
  border: 1px solid #c4c4c4;

}

p+table,
ol+table,
ul+table,
h1+table,
h2+table,
h3+table,
h4+table,
h5+table,
h6+table {
  margin-top: 0px;
}



/* Slick CSS */

/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

.slick-disabled {
  display: none !important;
}

.slick-slide>div {
  padding-right: 40px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow {
  margin: 0 20px;
  cursor: pointer;
}

.slick-arrow:first-child {
  margin-left: 0px;

}

.slick-arrow:last-child {
  margin-right: 0px;
}

.slick-arrow.slick-hidden {
  display: none;
}


/* Cookie Policy  */
 .cky-consent-container,
.cky-consent-container .cky-consent-bar {
  border-radius: 30px 0px 30px 0px !important;

}

.cky-notice .cky-title {
  display: none;
}

.cky-notice-des p {
  padding-bottom: 20px !important;
}

.cky-notice-des p,
.cky-notice-des p a {
  font-size: 15px;
  font-family: 'GilroyRegular', sans-serif;
  line-height: 21px;
  transition: 0.5s ease;
}

.cky-notice-des p a:hover {
  color: var(--Light_Green);
}

.cky-notice-des p a {
  border-bottom: 1px solid var(--Green);
}

.cky-notice-btn-wrapper,
.cky-prefrence-btn-wrapper {
  margin-top: 0 !important;
}

.cky-notice-btn-wrapper .cky-btn,
.cky-prefrence-btn-wrapper .cky-btn {
  font-size: 17px;
  border: 1px solid var(--Green) !important;
  color: var(--Green) !important;
  text-transform: capitalize !important;
}

.cky-notice-btn-wrapper .cky-btn.cky-btn-accept,
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-accept {
  background-color: var(--Green) !important;
  color: var(--white) !important;
}

.cky-prefrence-btn-wrapper+div {
  display: none !important;
}

.cky-banner-element {
  border: 1px solid var(--white);
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.5s ease;
}

.cky-banner-element:hover {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--Green);
} 

/* .moove-gdpr-info-bar-container{
    padding: 30px!important;
}

#moove_gdpr_cookie_info_bar{
    width: 440px!important;
    border-radius: 30px 0px 30px 0px !important;
}
.moove-gdpr-info-bar-content{
  display: flex;
  flex-direction: column;
  padding: 0!important;
}
.moove-gdpr-cookie-notice p{
font-size: 15px!important;
font-family: 'GilroyRegular', sans-serif!important;
line-height: 21px!important;
transition: 0.5s ease!important;
padding-bottom: 20px !important;
font-weight: normal!important;
}
.moove-gdpr-button-holder{
  display: flex;
  justify-content: space-between!important;
  padding: 0!important;
    width: 100%;
    flex-direction: row-reverse!important;
}

.mgbutton{
  width: auto!important;
font-size: 17px!important;
border: 1px solid var(--Green) !important;
color: var(--Green) !important;
background-color: transparent!important;
text-transform: capitalize !important;
border-radius: 0!important;
  font-family: inherit!important;
  line-height: 24px!important;
  padding:8px!important;
  font-weight: 500!important;
  border-radius:2px!important;
  cursor: pointer!important;
  text-align: center!important;
  text-transform: none!important;
  min-height: 0!important;
  overflow-wrap: break-word!important;
  min-width: 120px!important;
  margin: 0px!important;
}
.moove-gdpr-infobar-allow-all{
background-color: var(--Green) !important;
color: var(--white) !important;
}
.moove-gdpr-modal-footer-content .moove-gdpr-button-holder{
  padding: 0px 20px!important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon {
  background-color: var(--Green)!important;
  border: 1px solid var(--Green)!important;
} */




.cky-audit-table-element table tr {
  background: transparent!important;
  border: 1px solid #fff!important;
}
.cky-cookie-audit-table th {
  background-color: transparent!important;
  border: 1px solid #fff!important;
}
.cky-cookie-audit-table th,
.cky-cookie-audit-table td {
  color: #fff!important;
  background: transparent!important;
}
