@charset "UTF-8";
:root {
  --body-size: 14px;
  --error: #df2226;
  --default-black: #141416;
}
::-moz-selection {
    text-shadow: none;
    color: var(--white);
    background: var(--default);

}
::selection {
  text-shadow: none;
  color: var(--white);
  background: var(--default);
}
* {
  list-style: none;
  outline: none !important;
}
html,
body {
  overflow-x: hidden;
}
body {
  color: var(--default);
  font-size: var(--body-size);
  line-height: 1.25;
  font-weight: 400;
  font-family: var(--font-family);
  position: relative;
}

body:not(.loaded)  {
  visibility: hidden;
}
body.loaded  {
  visibility: visible;
}



ul,
p {
  margin: 0;
  padding: 0;
}
iframe {
  width: 100%;
  height: 347px;
  border: 0;
  overflow: hidden;
}
.btn,
.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  border-width: 2px;
}
img {
  max-width: 100%;
  height: auto;
}
a,
a:hover {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  padding: 0;
}
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
.grecaptcha-badge {
  display: none;
}
.text-email {
  height: 1em;
  vertical-align: -0.2em;
}
blockquote {
  padding: 40px;
  background-color: #ffffff;
  border-left: 2px solid #ff7171;
  position: relative;
  z-index: 9;
}
blockquote:before {
  content: "“";
  position: absolute;
  top: -7px;
  left: 25px;
  font-size: 120px;
  color: #7f7f7f;
  z-index: -1;
  opacity: 0.1;
}
blockquote p {
  line-height: 1.3;
  font-style: italic;
  color: #232323;
  font-size: 26px;
  margin-bottom: 10px;
  z-index: 9;
}
blockquote cite {
  font-size: 16px;
  font-style: normal;
  color: #7f7f7f;
}

/**
website
**/
body.menu-opened,
html.menu-opened {
    overflow: hidden;
}
.header-pt {
    padding-top: 124px;
}
.header.active-dark .megamenu-icon  .line ,
.header.active-dark .header-languages-dropdown > :first-child:after{
    background-color: var(--default) !important;
}
.header.active-dark {
    border-color: var(--default)!important;
    border-top: none !important;
}
.fixed-header.header-down .header.active-dark {
    border-color: transparent !important;
}
.header.active-dark .header-languages-dropdown .item.active,
.header.active-dark .header-languages-dropdown .item:hover,
.header.active-dark .menu-title {
    color: var(--default) !important;
}
.header.active-dark .header-languages-dropdown .item {
    color: var(--default-50) !important;
}
.text-default-black {
    color: var(--default-black);
}
.text-default-black-50 {
    color: var(--default-black-50);
}
.menu-content {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    background-image: url("/public/images/menu-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s ease;
}
body.menu-opened .menu-content {
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.menu-content-box {
    width: 69.3%;
}
.menu-content-box-blur {
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding-top: 42px;
    padding-right: var(--grid);
}
.sub-menu-dropdown {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 13%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
    transition: all .6s ease;
    width: calc(100% - 11.4%);
}
.link-header:hover .sub-menu-dropdown {
    left: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 100;
    pointer-events: all;
}
.menu-sub-link {
    color: white;
    transition: all .5s ease;
}
.menu-sub-link:hover {
    color: white;
}
.menu-content .left {
    flex-grow: 1;
    background: white;
    padding-left: var(--grid);
}
.menu-content .right {
    width: 47%;
    background-color: var(--default);
}
.link-header {
    border-bottom: 1px solid var(--default);
    transition: all 1s ease;
    z-index: 5;
    color: var(--default-black);
}
.link-header:not(.has-menu),
.link-header-sub-a {
    padding-bottom: 19px;
    padding-top: 20px;
    z-index: 10;
}
.link-header-sub-a {
    padding-right: 40px;
    transition: all 1s ease;
}
.link-header-sub-a:before,
.link-header:not(.has-menu):before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--default);
    width: 0;
    transition: all .5s ease;
    z-index: -1;
}
.link-header:hover,
.link-header:hover .link-header-sub-a {
    color: white;
}
.link-header:hover .link-header-sub-a:before,
.link-header:not(.has-menu):hover:before{
    width: 100%;
}
.menu-arrow img{
    width: 17px;
    transition: all 1.5s ease;
    filter: grayscale(1) brightness(0);
    -webkit-filter: grayscale(1) brightness(0);
}
.link-header:hover .menu-arrow img{
    filter: none;
    -webkit-filter: none;
    animation: arrow-move-horizontal infinite ease-in-out 1s forwards;
    transform: translateX(0);
}

@keyframes  arrow-move-horizontal{
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

/**
footer
*/
.footer-box {
    border-top: 1px solid var(--default);
}
.contact-footer-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all .5s ease;
}
/*.footer-button:hover {*/
/*    color: white;*/
/*}*/
.footer-button:before {
    content: "";
    position: absolute;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--default);
    transition: all .5s ease;
    z-index: -1;
}
.footer-button {
    bottom: -5px;
}
/*.footer-button:hover:before {*/
/*    width: 111%;*/
/*    border-radius: 50px;*/
/*}*/
.contact-footer-button img {
    width: 10px;
}
.footer-icons {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}
.footer-icons.phone img {
    transition: all .5s ease;
}
.footer-icons.phone img {
    height: 20px;
}
.footer-icons.mail img {
    height: 18px;
}
.footer-icons.location img {
    height: 25px;
}
.footer-icons.fb img {
    height: 24px;
}
.footer-icons.ig img {
    height: 24px;
}
.footer-links-left {
    column-gap: 50px;
}
.footer-link-box:hover .footer-icons {
    background-color: var(--default);
}
.footer-link-box:hover .footer-icons img {
    filter: invert(1) brightness(4);
    -webkit-filter: invert(1) brightness(4);
}
.footer-links-right {
    column-gap: 35px;
}
.footer-line-between {
    border-bottom: 1px solid var(--default);
}
.footer-link-box {
    column-gap: 15px;
}
.titles-line-footer {
    column-gap: 52px;
}
.icon-home-img-box {
    height: 70px;
}
.icon-home-img-box.first img {
    height: 56px;
}
.icon-home-img-box.second img {
    height: 48px;
}
.icon-home-img-box.third img {
    height: 65px;
}
.icon-home-img-box.last img {
    height: 56px;
}
.icons-home-section {
    padding-left: 4%;
    padding-right: 6%;
    margin-top: 186px;
    margin-bottom: 195px;
}
.general-button:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    border-radius: 50%;
    background-color: var(--default);
    z-index: -1;
    transition: all .5s ease;
}
.general-button.white-general-button {
    color: white !important;
}
.general-button.white-general-button:before {
    background-color: white;
}
/*.general-button.white-general-button:hover .general-button-title{*/
/*    color: var(--default) !important;*/
/*}*/
/*.general-button:hover .general-button-title{*/
/*    color: white !important;*/
/*}*/
/*.general-button:hover:before{*/
/*    width: 110%;*/
/*    border-radius: 50px;*/
/*}*/
.general-button-img img {
    height: 15px;
}
.general-button-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-left: 15px;
}
.img-text-card-button-box {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 20px;
    z-index: 10;
    background-color: white;
}
.no-button-card .img-curve-one {
    bottom: 0;
    left: -40px;
    height: 51px;
}
.no-button-card .img-curve-two {
    height: 51px;
    top: -111px;
    right: 0;
}
.img-curve-one {
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: transparent;
    z-index: 30;
    bottom: -5px;
    left: -79px;
    border-bottom-right-radius: 25px;
    box-shadow: 10px 10px white;
}
.img-curve-two {
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: transparent;
    z-index: 30;
    top: -80px;
    right: -39px;
    border-bottom-right-radius: 25px;
    box-shadow: 10px 10px white;
}
.home-card-near-button .img-curve-two {
    top: -93px !important;
    right: 0 !important;
}
.home-top-card-button {
    padding: 20px 39px 5px 39px;
}
.img-text-card-text-box-title > span {
    color: var(--default);
    font-weight: 800;
}
.img-text-card-text-box {
    background-color: #f1f2f4;
    border-radius: 30px;
}
.home-card-box-top {
    padding: 85px 100px 91px 100px;
}
.img-text-card-border {
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    overflow: hidden;
}
.img-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 13%;
    background-color: white;
    height: 44%;
    border-bottom-right-radius: 20px;
    z-index: 5;
}
.img-shape > div:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: transparent;
    z-index: 30;
    bottom: -60px;
    left: 0;
    border-top-left-radius: 25px;
    box-shadow: -10px -10px white;
}
.img-shape > div:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: transparent;
    z-index: 30;
    top: 0;
    right: -40px;
    border-top-left-radius: 25px;
    box-shadow: -10px -10px white;
}
.home-card-box-top .desc-top {
    max-width: 94%;
}
.home-card-box-top .desc-bottom {
    max-width: 93%;
}
.about-card-parkforyou .desc-bottom > span {
    color: var(--default);
    font-weight: 500;
}
.home-banner {
    padding-top: 128px;
    padding-bottom: 148px;
    margin-bottom: 184px;
}
.home-banner > div {
    /*width: 80%;*/
    display: inline-block;
    margin: auto;
}
.home-banner > div > div > span{
    color: var(--primary);
    font-weight: 800;
}
.quote-start {
    position: absolute;
    top: -17px;
    left: -120px;
    width: 98px;
}
.quote-end {
    position: absolute;
    bottom: -27px;
    right: -94px;
    width: 98px;
}
.home-park-for-you {
    margin-bottom: 192px;
}
.how-work-circle {
    border-radius: 50%;
    width: 106px;
    height: 106px;
    transition: all .5s ease;
}
.how-work-col:hover .how-work-circle {
    transform: scale(1.1);
}
.how-work-col {
    max-width: 70%;
}
.how-work-col .desc {
    max-width: 96%;
}
.service-slide-icon {
    height: 90px;
}
.service-slide-icon img{
    transition: all .5s ease;
    height: 75px;
}
.home-services {
    background-color: #f8f8f8;
    padding-top: 53px;
    padding-bottom: 64px;
    margin-bottom: 181px;
}
.service-slide-desc{
    max-width: 87%;
    margin: auto;
}
/*.home-service-link:hover .service-slide-icon img{*/
/*    transform: scale(1.1);*/
/*}*/
.home-service-link .title {
    transition: all .5s ease;
}
/*.home-service-link:hover div:not(.service-slide-desc){*/
/*    color: var(--primary) !important;*/
/*}*/
.how-works-section {
    margin-bottom: 143px;
}
.why-title > span{
    color: var(--default) !important;
}
.why-img-box {
    min-width: 130px;
}
.why-img-box img{
    width: 100px;
}
.why-text-box .title {
    max-width: 95%;
}
.why-text-box .desc {
    max-width: 92%;
}
.why-col-mb {
    margin-bottom: 181px;
}
.solutions-img:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    background-color: var(--default-65);
}
.solution-box {
    padding-top: 106px;
    padding-bottom: 80px;
    background-color: #f8f8f8;
}
.solution-box > div {
    padding-left: 62px;
}
.solutions-btn {
    position: relative;
    z-index: 10;
}
.why-choose-section {
    margin-bottom: 165px;
}
.home-card-near {
    padding: 40px 52px 48px 52px;
}
.home-card-near-button {
    padding: 33px 0 5px 39px;
}
.li-img img {
    height: 14px;
}
.solutions-section {
    margin-bottom: 200px;
}
.home-near {
    margin-bottom: 200px;
}
/**
contact
*/
.pages-title-lines {
    column-gap: 5px;
    padding-left: 123px;
}
.pages-title-lines.about {
    margin-left: -15px;
}
.pages-title-lines > span {
    border-radius: 10px;
    width: 63px;
    height: 10px;
    background-color: var(--primary-30);
}
.pages-mt {
    margin-top: 115px;
}
.contact-top-desc {
    max-width: 54%;
    margin: auto;
}
#contact_form .form-control-with-label:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
    border-radius: 10px;
    background-color: white;
}
#contact_form input {
    height: 52px !important;
}
#contact_form label {
    color: var(--default-black-50);
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: row !important;
    padding-left: 0 !important;
}
#contact_form .start {
    color: #ff0000;
    padding-left: 5px;
    opacity: .5;
}
#contact_form .form-group {
    margin-bottom: 0 !important;
}
#contact_form textarea {
    height: 100px !important;
}
#contact_form textarea,
#contact_form input {
    background: none !important;
    outline: none !important;
    border-radius: 0 !important;
    border: none !important;
    padding-top: 14px !important;
    padding-bottom: 5px !important;
    padding-left: 0 !important;
}
.contact-container-form {
    border-top-right-radius: 30px;
    overflow: hidden;
}
.contact-right {
    background-color: #f1f2f4;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 53px 69px 43px 69px;
}
.contact-left img{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.dates-button.contact {
    color: var(--default);
    width: 37%;
}
#contact_form .error-msg {
    position: absolute;
    left: 0;
    bottom: -31px;
    color: #ff0000 !important;
    font-size: 14px;
}
#contact_form .error-msg label {
    color: #ff0000 !important;
}
#contact_form .form-group {
    position: relative;
}
#contact-form-btn {
    background-color: transparent !important;
}
#contact-form-btn.inactive {
    opacity: .5;
    pointer-events: none;
}
.contact-form-desc {
    margin-bottom: 200px;
}
.contact-card-icon {
    /*height: 50px;*/
    margin-bottom: 20px;
}
.contact-card-icon.phone img{
    height: 37px;
}
.contact-card-icon.location img{
    height: 46px;
}
.contact-card-icon.mail img{
    height: 33px;
}
.contact-col-info {
    box-shadow: 6px 7px 14px -1px rgba(0,0,0,0.25);
    -webkit-box-shadow: 6px 7px 14px -1px rgba(0,0,0,0.25);
    -moz-box-shadow: 6px 7px 14px -1px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 30px;
    padding: 26px 10px 34px 10px;
    background-color: #f8f8f8;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contact-col-info:hover {
    transform: scale(1.05) rotate(0deg) translate(0px, -10px) skewX(0deg);
}
.contact-cards {
    margin-top: 194px;
    margin-bottom: 190px;
}
.contact-reach-desc {
    max-width: 65%;
}
.contact-reach-desc > span {
    color: var(--default);
    font-size: 25px;
    font-weight: 500;
}
.contact-iframe {
    /*padding-top: 55%;*/
    height: 100vh;
    margin-bottom: 198px;
}
.contact-iframe iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.contact-banner {
    background-color: var(--default);
    padding-top: 64px;
    padding-bottom: 82px;
}
.contact-button-links {
    border: 1px solid white;
    border-radius: 50px;
    background-color: white;
    color: var(--default) !important;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: all .5s ease;
    width: 324px;
}
.contact-button-links.primary-btn:hover {
    background-color: white;
    border-color: white;
}
.contact-button-links:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--default) !important;
}
.contact-button-links.primary-btn {
    background-color: var(--primary);
    border-color: var(--primary);
}
.contact-banner > div {
    padding-right: 11.6%;
}
.no-button-card {
    padding-top: 60px;
    width: 50%;
}
.about-card-parkforyou {
    padding: 73px 128px 73px 128px;
}
.img-text-card-pt.active {
    height: 112.5%;
}
.about-parkforyou {
    margin-top: 194px;
    margin-bottom: 266px;
}
.about-three-years {
    margin-bottom: 266px;
}
.about-card-years {
    padding: 133px 78px 139px 78px;
}
.philosophy-row {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 3px 12px 3px rgba(0,0,0,0.25);
    -webkit-box-shadow: 6px 3px 12px 3px rgba(0,0,0,0.25);
    -moz-box-shadow: 6px 3px 12px 3px rgba(0,0,0,0.25);
}
.philosophy-row.left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.philosophy-icon img{
    height: 112px;
}
.about-philosophy {
    background-color: #f8f8f8;
    padding-top: 62px;
    padding-bottom: 97px;
    margin-bottom: 177px;
}
.philosophy-row {
    width: 70%;
}
.philosophy-row-desc {
    width: 86%;
    padding-top: 39px;
    padding-bottom: 42px;
}
.default-span > span {
    color: var(--default);
    font-weight: 600;
}
.default-span.title > span {
    font-weight: 800;
}
.what-is-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
}
.about-what-park-desc {
    width: 91%;
}
.what-is-key-desc {
    max-width: 90%;
}
.about-experience {
    padding-top: 66px;
    padding-bottom: 156px;
}
.about-experience-desc {
    width: 88%;
    margin: auto;
}
.about-experience-icon {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .6);;
    height: 160px;
    width: 250px;
}
.about-experience-icon.first img {
    height: 117px;
}
.about-experience-icon.second img {
    height: 121px;
}
.about-experience-icon.last img {
    height: 125px;
}
.about-experience-icons {
     margin-top: -107px;
    column-gap: 20px;
    margin-bottom: 192px;
}
.about-what-park {
    margin-bottom: 185px;
}
.about-choose-col:not(:last-child):not(:nth-child(5)) {
    margin-bottom: 120px;
}
.about-choose-col > div{
    box-shadow: 1px 7px 15px 2px rgba(0,0,0,0.25);
    -webkit-box-shadow: 1px 7px 15px 2px rgba(0,0,0,0.25);
    -moz-box-shadow: 1px 7px 15px 2px rgba(0,0,0,0.25);
    border-radius: 30px;
    padding: 50px 20px 50px 20px;
}
.about-choose {
    background-color: #f8f8f8;
    padding-top: 76px;
    padding-bottom: 136px;
    margin-bottom: 190px;
}
.about-choose-icon {
    height: 125px;
}
.about-choose-icon.first img {
    height: 100px;
}
.about-choose-icon.second img {
    height: 102px;
}
.about-choose-icon.third img {
    height: 100px;
}
.about-choose-icon.fourth img {
    height: 110px;
}
.about-choose-icon.fifth img {
    height: 96px;
}
.about-choose-icon.last img {
    height: 122px;
}
.about-choose-col .desc {
    max-width: 90%;
}
.about-private .row{
    border-radius: 30px;
    overflow: hidden;
}
.about-private {
    margin-bottom: 193px;
}
/*.about-private-col.active {*/
/*    padding-top: 48%;*/
/*}*/
.about-private-col {
    padding-top: 34%;
    transition: all .8s ease;
}
.about-private-right .about-private-box .desc {
    margin-left: auto;
}
.about-private-right .about-private-box {
    right: 12%;
    left: auto;
}
.about-private-img {
    position: absolute;
    inset: 0;
}
.about-private-img:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--default-65);
    z-index: 10;
}
.about-private-box {
    position: absolute;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    transition: all .5s ease;
}
.about-private-col:not(.active) .about-private-box {
    display: none;
}
.about-private-col:not(.active) .about-private-img:before {
    opacity: 0;
}
.about-private-box .desc {
    max-width: 85%;
}
.banner-box-text,
.banner-box-btn {
    z-index: 20;
}
.bottom-banner {
    padding-top: 115px;
    padding-bottom: 120px;
}
.banner-box-text .title span {
    color: var(--primary);
    font-weight: 800;
}
.bottom-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--default-40);
    z-index: 10;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}
.pages-title-lines.services {
    margin-left: 33px;
}
.service-card-services {
    padding: 51px 127px 51px 127px;
}
.service-top-card .desc-bottom span {
    font-size: 22px;
}
.service-top-card{
    margin-top: 194px;
}
.service-top-card .desc-bottom span {
    color: var(--default);
    font-weight: 500;
}
.service-col-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.col-core {
    padding: 53px 15px 57px 15px;
    box-shadow: 4px 7px 13px 3px rgba(0,0,0,0.25);
    -webkit-box-shadow: 4px 7px 13px 3px rgba(0,0,0,0.25);
    -moz-box-shadow: 4px 7px 13px 3px rgba(0,0,0,0.25);
    border-radius: 30px;
    background-color: #f8f8f8;
}
.col-arrow img {
    width: 64px;
}
.service-top-card {
    margin-bottom: 242px;
}
.service-main-box {
    padding-top: 78%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 6px 6px 8px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 6px 6px 8px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 6px 6px 8px 0px rgba(0,0,0,0.25);
}
.service-main-box:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--default-30);
    z-index: 5;
    transition: all .5s ease;
}
.service-main-box-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 33px 20px 33px 20px;
    right: 0;
}
.service-main-box-text .desc{
    display: none;
    transition: all .5s ease;
}
.service-main-box:hover .service-main-box-text .desc{
    display: block;
}
.service-main-box:hover:before{
    background-color: var(--default-80);
}
.services-title-main {
    margin-bottom: 115px;
}
.services-core {
    margin-bottom: 179px;
}
.premium-service-btn img {
    width: 10px;
    transition: all .5s ease;
}
.premium-service-btn:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: transparent;
    z-index: 30;
    top: -60px;
    left: 0;
    border-bottom-left-radius: 25px;
    box-shadow: -10px 10px white;
}
.premium-service-btn:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: transparent;
    z-index: 30;
    bottom: -1px;
    right: -40px;
    border-bottom-left-radius: 25px;
    box-shadow: -10px 10px white;
}
.premium-services-box:hover .premium-service-btn img {
    transform: rotate(-90deg);
}
.premium-service-btn > div {
    width: 48px;
    height: 48px;
    background-color: var(--default);
    border-radius: 50%;
}
.premium-service-btn {
    background-color: white;
    border-top-right-radius: 30px;
    padding: 48px 64px 48px 87px;
}
.premium-services-box {
    padding-top: 78%;
    overflow: hidden;
    border-radius: 30px;
    border-bottom-left-radius: 0;
}
.premium-services-box:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--default-30);
    transition: all .5s ease;
    z-index: 5;
}
.premium-services-box:hover:before {
    background-color: var(--default-80);
}
.premium-services-box-button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
.premium-services-box-button .title {
    transition: all .5s ease;
}
.premium-services-box:hover .premium-services-box-button .title {
    opacity: 0;
}
.premium-services-box-text {
    position: absolute;
    top: 100%;
    opacity: 0;
    z-index: 10;
    left: 0;
    right: 0;
    transition: all .5s ease;
    padding: 20px;
}
.premium-services-box:hover .premium-services-box-text {
    top: 7%;
    opacity: 1;
}
.services-main-cards {
    margin-bottom: 138px;
}
.services-security-row {
    padding-top: 42px;
    padding-bottom: 57px;
}
.services-security-row.has-bg {
    background-color: #f8f8f8;
}
.services-security-text-box {
    max-width: 60%;
}
.services-security-text-box .desc span{
    color: var(--default);
    font-size: 22px;
    font-weight: 600;
}
.services-security-icon-box.first img{
    width: 260px;
}
.services-security-icon-box.second img{
    width: 292px;
}
.services-security-icon-box.last img{
    width: 406px;
}
.services-premium {
    margin-bottom: 194px;
}
.services-why-card {
    padding: 79px 74px 85px 74px;
}
.services-why-card .desc-top > span {
    color: var(--default);
    font-weight: 600;
}
.services-security {
    margin-bottom: 194px;
}
.services-why-card-section {
    margin-bottom: 262px;
}
.contact-left.contact-success {
    padding-top: 72%;
}
.footer-mail img{
    height: 23px;
    filter: hue-rotate(135deg) saturate(180%) brightness(39%) contrast(120%);
    -webkit-filter: hue-rotate(135deg) saturate(180%) brightness(39%) contrast(120%);
    transition: all .5s ease;
}
.footer-link-box:hover .footer-mail img{
    filter: none;
    -webkit-filter: none;
}
.contact-email-icon img{
    height: 30px;
}
.fixed-header.header-down .header {
    padding-right: var(--grid) !important;
}
    /**
    end website
    */












.font-noto {
  font-family: 'Noto Serif Display', serif;
}
.font-nexa-heavy {
  font-family: 'Nexa Heavy', sans-serif;
  /*url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700,900");*/
}
.loader {
  position: relative;
  pointer-events: none;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.btn.loader:before,
.btn.loader:after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
.btn.btn-b-width-2.loader:before,
.btn.btn-b-width-2.loader:after {
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
}
.input-group-append .btn.loader::before,
.input-group-append .btn.loader::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loader:before {
  content: "";
  background-color: rgba(255,255,255,0.7);
}
.loader:after {
  content: "";
  -webkit-animation:la-spin 2s infinite linear;
  animation:la-spin 2s infinite linear;
  color: var(--primary);
  width: 30px;
  height: 30px;
  margin: auto;
  /*background-image: url('/public/images/loader.svg');*/
  background-image: url('/public/images/loader-icon.gif');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.loader:before,
body.loader:after {
  position: fixed;
  z-index: 1000;
}
.circle-text-wrap {
  position: relative;
  width: 230px;
  height: 230px;
  -webkit-animation: la-spin 20s infinite linear;
  animation: la-spin 20s infinite linear;
  overflow: hidden;
}
.circle-text {
  position: absolute;
  width: 230px;
  height: 230px;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: rotate(-50deg) translate(50%,0);
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
.circle-text span {
  height: 115px;
  position: absolute;
  left: -1px;
  top: 0;
  transform-origin: bottom center;
  transform: rotate(8.6deg);
  width: 1em;
  text-align: center;
}
.circle-text-wrap.default .circle-text {
  color: var(--default);
}
.arrow-text {
  height: 0;
  display: inline-block;
  border-top: 0.35em solid transparent;
  border-bottom: 0.35em solid transparent;
}
.arrow-text.left {
  border-right: 0.35em solid;
}
.arrow-text.right {
  border-left: 0.35em solid;
}
/*Forms*/
/*.form-control {*/
/*  box-shadow: none;*/
/*  outline: none;*/
/*  border: 0px;*/
/*  border-radius: 0px;*/
/*  height: 52px;*/
/*  padding: 0px 20px;*/
/*}*/
.form-control:hover,
.form-control:focus,
.form-control:active {
  box-shadow: none;
  outline: none;
}
textarea {
  resize: none;
}
textarea.form-control {
  height: 250px;
}
::-webkit-input-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
::-moz-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
:-ms-input-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
::placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
.line-control .form-control {
  padding: 5px 0;
  height: auto;
  border-bottom: 2px solid var(--default-20);
  letter-spacing: 0.05em;
}
.form-control-with-label .form-control {
  padding: 20px 10px 3px;
}
.form-control-with-label.line-2 .form-control {
  padding: 45px 10px 3px;
}
.form-control-with-label.line-control .form-control {
  padding: 20px 0 3px;
}
.form-control-with-label.line-control.line-2 .form-control {
  padding: 45px 0 3px;
}
.form-control-with-label label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 3px 10px;
  font-size: 1em;
  color: var(--default);
  margin: 0;
  pointer-events: none;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 23px;
}
.form-control-with-label.line-control label {
  padding: 3px 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.form-control-with-label label span {
  display: block;
}
.form-control-with-label {
  position: relative;
}
.form-control-with-label.focused label,
.form-control-with-label.always-focused label {
  opacity: 0.5;
  font-size: 12px;
}
.form-control-with-label:not(.always-focused):not(.focused) label {
  min-height: 100%;
  padding: 15px 0 3px;
}
.form-control-with-label.textarea-label:not(.always-focused):not(.focused) label {
  min-height: 50px;
}
.form-control-with-label .bootstrap-select > .dropdown-toggle::after {
  margin-top: -15px;
}
.input-group .form-control-with-label:first-child .form-control {
  border-right: 0;
}
.form-control-with-label.line-control .form-control {
  background-color: transparent;
}
.form-control-with-label.line-control textarea.form-control {
  height: 160px;
}


.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-control-with-label.is-invalid .form-control,
.form-radio-group.is-invalid  {
  background-image: none;
  border-color: rgba(223,34,38,0.2);
  color: var(--error);
}


.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control-with-label.is-invalid .form-control:focus,
.form-radio-group.is-invalid:focus {
  border-color:  #495057;
  color: inherit;
  box-shadow: none; /* optional: remove red shadow */
}





.form-control-with-label.is-invalid label,
.form-radio-group.is-invalid .form-radio-group-label {
  color: var(--error);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  box-shadow: none;
}
.form-radio-group {
  border-bottom: 2px solid var(--default-20);
}
.form-radio-group-label {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.sk-checkbox,
.sk-radio {
  padding-left: 0;
  font-size: inherit;
}
.sk-checkbox .sk-square-check,
.sk-checkbox .sk-rounded-check,
.sk-radio .sk-square-check,
.sk-radio .sk-rounded-check {
  position: relative;
  display: inline-block;
  top: 0;
  margin-right: 0.15em;
}
.sk-square-check,
.sk-rounded-check {
  border: 2px solid var(--default-20);
  height: 1.2em;
  width: 1.2em;
}
.sk-square-check {
  border-radius: 0;
  height: 1.4em;
  width: 1.4em;
  vertical-align: text-top;
}
.sk-square-check::after {
  margin-left: -0.3em;
  margin-top: -0.7em;
  width: 0.6em;
  height: 1.2em;
}
.sk-square-check::after {
  border: solid var(--secondary);
}
.sk-rounded-check::after {
  margin-left: 0;
  margin-top: 0;
  width: auto;
  height: auto;
  border-radius: 50%;
  left: 2px;
  bottom: 2px;
  right: 2px;
  top: 2px;
  background-color: var(--default);
}
.sk-square-check.square::after {
  width: auto;
  height: auto;
  border: 0;
  -webkit-transform: none;
  transform: none;
  background-color: var(--default);
  left: 2px;
  bottom: 2px;
  right: 2px;
  top: 2px;
  margin: auto;
}
.sk-checkbox > input:checked ~ .sk-rounded-check,
.sk-radio > input:checked ~ .sk-rounded-check {
  border-color: var(--default);
}
.sk-checkbox > input:checked ~ .sk-square-check.square,
.sk-radio > input:checked ~ .sk-square-check.square {
  border-color: var(--default);
}
/*Carousel*/
.swiper.with-pseudos {
  overflow: visible;
}
.swiper.with-pseudos::before,
.swiper.with-pseudos::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 10000px;
  background-color: var(--white);
  z-index: 2;
}
.swiper.with-pseudos::before {
  left: -10000px;
}
.swiper.with-pseudos::after {
  right: -10000px;
}
.slick-track {
  margin: 0;
}
.swiper-slide.auto {
  width: auto;
}
.swiper-vertical .swiper-slide.auto {
  width: 100%;
  height: auto;
}
.swiper-scrollbar {
  z-index: 1;
  cursor: pointer;
}
.swiper-scrollbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: -5px;
  z-index: -1;
}
.swiper-scrollbar-drag {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*Header*/
.header {
  /*position: absolute;*/
  /*  top: 0;*/
  /*  left: 0;*/
  /*  right: 0;*/
    background-color: transparent;
    border-top: 1px solid white;
    border-bottom: 2px solid rgba(255, 255, 255, .4);
    z-index: 4000;
    padding: 29px 40px 29px 0;
}
header .logo img {
  height: 40px;
}
.fixed-header.header-down .logo img {
    height: 40px;
}
.header .logo .white {
  display: none;
}
.megamenu-toggle {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.megamenu-icon {
    width: 47px;
    height: 40px;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    row-gap: 4px;
    transform: rotate(-53deg);
}
.megamenu-icon .line {
    background-color: white;
    border-radius: 10px;
    height: 4px;
}
.megamenu-icon .line:nth-child(1) {
    width: 69%;
    margin-right: 6px;
}
.megamenu-icon .line:nth-child(2) {
    width: 100%;
}
.megamenu-icon .line:nth-child(3) {
    width: 51%;
    margin-right: 6px;
}


.megamenu-toggle .megamenu-icon .line {
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, left 0.2s ease-in-out, width 0.2s ease-in-out;
}

.megamenu-toggle.open .megamenu-icon .line:nth-child(1),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(1) {
  -webkit-transform: rotate(-75deg) translate(-10px, -6px);
  -moz-transform: rotate(-75deg) translate(-10px, -6px);
  -ms-transform: rotate(-75deg) translate(-10px, -6px);
  -o-transform: rotate(-75deg) translate(-10px, -6px);
  transform: rotate(-75deg) translate(-10px, -6px);
  top: 8px;
  left: -5px;
  width: 60%;
  margin-right: 0;
}


.megamenu-toggle.open .megamenu-icon .line:nth-child(2),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(2) {
  /*-webkit-transform: rotate(45deg) translate(-4px, 2px);*/
  /*-moz-transform: rotate(45deg) translate(-4px, 2px);*/
  /*-ms-transform: rotate(45deg) translate(-4px, 2px);*/
  /*-o-transform: rotate(45deg) translate(-4px, 2px);*/
  /*transform: rotate(45deg) translate(-4px, 2px);*/
  /*top: 3px;*/
  /*left: -5px;*/
  /*width: 35px;*/
    opacity: 0;
}

.megamenu-toggle.open .megamenu-icon .line:nth-child(3),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(3) {
  -webkit-transform: rotate(2deg) translate(-4px, -7px);
  -moz-transform: rotate(2deg) translate(-4px, -7px);
  -ms-transform: rotate(2deg) translate(-4px, -7px);
  -o-transform: rotate(2deg) translate(-4px, -7px);
  transform: rotate(2deg) translate(-4px, -7px);
  top: -11px;
  left: -5px;
  width: 92%;
  margin-right: 0;
}






.megamenu-toggle:hover {
  color: var(--primary);
}
.header-languages {
  position: relative;
}
.header-languages-toggle {
  border: 1px solid var(--default-30);
  line-height: 1;
  padding: 2px 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages-toggle .arrow {
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--default-30);
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages:hover .header-languages-toggle,
.header-languages.active .header-languages-toggle {
  background-color: var(--default) !important;
  border-color: var(--default) !important;
  color: white !important;
}
.header-languages:hover .header-languages-toggle .arrow,
.header-languages.active .header-languages-toggle .arrow  {
  border-top-color: white;
}
.header-languages-dropdown {
    /*position: absolute;*/
    /*top: 100%;*/
    /*left: 0;*/
    /*right: 0;*/
    /*background: var(--default);*/
    /*text-align: center;*/
    /*opacity: 0;*/
    /*pointer-events: none;*/
    /*-webkit-transition: all 0.3s ease;*/
    /*transition: all 0.3s ease;*/
    /*color: white;*/
    /*border-top: 1px solid;*/
}
.header-languages-dropdown > :first-child {
    padding-right: 6px;
    margin-right: 4px;
}
.header-languages-dropdown > :first-child:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: white;
}
.header-languages.active .header-languages-dropdown {
    /*opacity: 1;*/
    /*pointer-events: all;*/
    /*z-index: 1;*/
}
.lang-div {
    background-color: #000000;
    padding-top: 7px;
    padding-bottom: 12px;
}
.header-languages-dropdown .item {
    color: white;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-languages-dropdown .item.active {
    color: rgba(255, 255, 255, 1);
}
.header-languages-dropdown .item:not(.active) {
    cursor: pointer;
    color: rgba(255, 255, 255, .5);
}
.header-languages-dropdown .item:not(.active):hover {
    color: rgba(255, 255, 255, 1);
}
body.white-header .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: white;
}
body.white-header .header .logo .black {
  display: none;
}
body.white-header .header .logo .white {
  display: block;
}
body.white-header .header .megamenu-toggle:hover {
  color: var(--default);
}
body.white-header .header .header-languages-toggle {
  border-color: rgba(255,255,255,0.8);
  color: rgba(255,255,255,0.8);
}
body.white-header .header .header-languages-toggle .arrow {
  border-top: 4px solid;
}
/*Fixed Header*/
.fixed-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  /*position: fixed;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*-ms-transform: translateY(calc(-100% - 30px));*/
  /*transform: translateY(calc(-100% - 30px));*/
  /*opacity: 0;*/
  /*-webkit-transition: transform 0.3s ease;*/
  /*transition: transform 0.3s ease;*/
  /*pointer-events: none;*/
  /*z-index: 1001;*/
  /*-webkit-box-shadow: 0 0 18px 0 rgba(35,31,32,0.35);*/
  /*-moz-box-shadow: 0 0 18px 0 rgba(35,31,32,0.35);*/
  /*box-shadow: 0 0 18px 0 rgba(35,31,32,0.35);*/
  /*background-color: rgba(0, 0, 0, 0.6);*/
}
/*.fixed-header.header-down {*/
/*  pointer-events: all;*/
/*  opacity: 1;*/
/*  -ms-transform: translateY(0);*/
/*  transform: translateY(0);*/
/*}*/

.fixed-header.header-UP {
    animation: headerUp 0.3s ease forwards;
}
.fixed-header.header-down {
    position: fixed;
    animation: headerDown 0.3s ease forwards;
    transform: translateY(calc(-100% - 30px));
    box-shadow: 0px 7px 6px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 7px 6px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 7px 6px 0px rgba(0,0,0,0.25);
    background-color: white;

}
body.menu-opened .fixed-header{
    position: absolute !important;
    z-index: -1 !important;
}
.sticky-logo {
    display: none;
}
.fixed-header.header-down .sticky-logo {
    display: block;
}
.default-logo {
    display: block;
}
.fixed-header.header-down .default-logo {
    display: none;
}
.fixed-header.header-down .header-languages {
    display: none;
}

.fixed-header.header-down .megamenu-icon  .line ,
.fixed-header.header-down .header-languages-dropdown > :first-child:after{
    background-color: var(--default) !important;
}
.fixed-header.header-down {
    border-color: var(--default)!important;
}
.fixed-header.header-down .header-languages-dropdown .item.active,
.fixed-header.header-down .header-languages-dropdown .item:hover,
.fixed-header.header-down .menu-title {
    color: var(--default) !important;
}
.fixed-header.header-down .header-languages-dropdown .item {
    color: var(--default-50) !important;
}
@keyframes headerDown {
    from {
        transform: translateY(calc(-100% - 30px));
    }
    to {
        transform: translateY(0);
    }
}
@keyframes headerUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(-100% - 30px));
    }
}
/*.fixed-header.header-down .logo img {*/
/*    height: 40px;*/
/*}*/
/*Homepage Slider*/
#homepage-slider {
  position: relative;
}
.homepage-slider-image {
  padding-top: 107%;
  position: relative;
}
.homepage-slider-over {
  /*background-color: rgba(37,33,88,0.25);*/
  background-color: rgba(3, 41, 96, .65);
  color: white;
    /*backdrop-filter: blur(7px);*/
    /*-webkit-filter: blur(7px);*/
    z-index: 10;
}
.homepage-slider-content {
    z-index: 40;
    padding-top: 266px;
    width: 93%;
    margin: auto;
}
.owl-carousel.homepage-slider-carousel .owl-nav button {
  width: 110px;
  height: 110px;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 125px;
  bottom: 50px;
  margin: auto;
  color: rgba(255,255,255,0.35);
  z-index: 1;
  font-size: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.owl-carousel.homepage-slider-carousel .owl-nav .owl-prev {
  left: 0;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 15px;
  color: rgba(255,255,255,0.2);
}
.owl-carousel.homepage-slider-carousel .owl-nav .owl-next {
  right: 40px;
}
.owl-carousel.homepage-slider-carousel .owl-nav button:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 1em;
  height: 1em;
}
.owl-carousel.homepage-slider-carousel .owl-nav button.owl-prev:after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: -45%;
}
.owl-carousel.homepage-slider-carousel .owl-nav button.owl-next:after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -0.5em;
}
.owl-carousel.homepage-slider-carousel .owl-nav button span {
  display: none;
}
.owl-carousel.homepage-slider-carousel .owl-nav button:hover {
  border-color: transparent;
  background-color: rgba(255,255,255,0.4);
  color: var(--default);
}
.homepage-slider-number {
  position: relative;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}
.homepage-slider-number .item {
  display: flex;
  align-items: center;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.homepage-slider-number .item:not(:first-child) {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.homepage-slider-number .item.active {
  opacity: 1;
}
.homepage-slider-bottom {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  z-index: 1;
  color: white;
}
.homepage-slider-scroll {
  background-color: rgba(255,255,255,0.3);
  height: 2px;
  margin-bottom: 10px;
  position: relative;
}
.homepage-slider-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: white;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
/*Important Links*/
.important-link-wrap {
  min-height: 95px;
  height: 100%;
  text-align: center;
  background-color: var(--default-10);
  padding: 10px 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.important-link-item:nth-child(2) .important-link-wrap {
  background-color: var(--default-05);
}
.important-link-item:nth-child(3) .important-link-wrap {
  background-color: var(--default-07);
}
.important-link-item:nth-child(4) .important-link-wrap {
  background-color: var(--default-12);
}
.important-link-item:nth-child(5) .important-link-wrap {
  background-color: var(--default-09);
}
.important-link-item:nth-child(6) .important-link-wrap {
  background-color: var(--default-03);
}
.important-link-wrap:hover {
  background-color: var(--default-15) !important;
}
.important-link-image {
  height: 40px;
  margin-bottom: 15px;
}
.important-link-title {
  font-style: italic;
  letter-spacing: 0.05em;
}
/*Top Attractions*/
#top-attractions {
  position: relative;
}
.top-attractions-set:not(.active),
.top-attractions-button:not(.active) {
  display: none;
}
.top-attractions-car-image {
  position: relative;
  padding-top: 65%;
}
.top-attractions-car-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
  width: 85px;
  z-index: 1;
  pointer-events: none;
}
.top-attractions-car-over {
  color: white;
  z-index: 2;
}
.top-attractions-car-over::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
  height: 200px;
  z-index: -1;
}
.owl-carousel.top-attractions-carousel .owl-nav button {
  width: 35px;
  height: 35px;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  color: white;
  z-index: 1;
  font-size: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.owl-carousel.top-attractions-carousel .owl-nav .owl-prev {
  left: 0;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.owl-carousel.top-attractions-carousel .owl-nav .owl-next {
  right: 15px;
}
.owl-carousel.top-attractions-carousel .owl-nav button:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 1em;
  height: 1em;
}
.owl-carousel.top-attractions-carousel .owl-nav button.owl-prev:after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: -45%;
}
.owl-carousel.top-attractions-carousel .owl-nav button.owl-next:after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -0.5em;
}
.owl-carousel.top-attractions-carousel .owl-nav button span {
  display: none;
}
.owl-carousel.top-attractions-carousel .owl-nav button:hover {
  border-color: transparent;
  background-color: rgba(255,255,255,0.4);
  color: var(--default);
}
.top-attractions-tab-item:not(:last-child) {
  margin-bottom: 10px;
}
.top-attractions-tab {
  pointer-events: auto;
  text-align: center;
}
.top-attractions-tab-wrap {
  position: relative;
  padding-top: 50%;
  background-color: rgba(37,33,88,0.1);
  border-radius: 20px;
  color: var(--default-40);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-style: italic;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.top-attractions-tab-over {
  padding: 5px;
}
.top-attractions-tab-icon {
  height: 25px;
  margin-bottom: 5px;
  fill: var(--default-40);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top-attractions-tab:hover .top-attractions-tab-wrap,
.top-attractions-tab.active .top-attractions-tab-wrap {
  background-color: var(--primary);
  color: white;
}
.top-attractions-tab:hover .top-attractions-tab-icon,
.top-attractions-tab.active .top-attractions-tab-icon {
  fill: white;
}
/*Featured Articles*/
.homepage-feature-article-title {
  height: 2.5em;
}
.homepage-feature-article-arrow {
  width: 21px;
  height: 21px;
  border: 2px solid;
  border-radius: 50%;
  position: relative;
  font-size: 7px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 5px;
}
.homepage-feature-article-arrow::after {
  content: "";
  border-top: 2px solid;
  border-right: 2px solid;
  width: 1em;
  height: 1em;
  position: relative;
  left: -0.25em;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
}
.homepage-feature-article-date {
  border-top: 2px solid var(--primary);
  margin-top: 5px;
  padding-top: 5px;
  position: relative;
}
.homepage-feature-article-date::before {
  content: "";
  pointer-events: none;
  position: absolute;
  height: 6px;
  left: 0;
  top: -4px;
  right: 0;
  background-color: var(--primary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.homepage-feature-article-wrap:hover .homepage-feature-article-arrow {
  background-color: var(--default);
  border-color: var(--default);
  color: white;
}
.homepage-feature-article-wrap:hover .homepage-feature-article-date::before {
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.homepage-feature-articles-swiper::before {
  display: none;
}
.homepage-feature-articles-swiper.with-pseudos::after {
  width: 100px;
  right: var(--min-grid);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  pointer-events: none;
}
.homepage-feature-articles-swiper .swiper-scrollbar {
  z-index: 3;
}
.homepage-feature-articles-swiper .swiper-scrollbar-drag {
  height: 4px;
}
.homepage-feature-articles-swiper .swiper-scrollbar .swiper-scrollbar-drag:hover {
  height: 6px;
  top: -2px;
}
/*Featured Projects*/
#featured-projects {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#featured-projects:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--primary-10);
  height: 260vw;
  z-index: -1;
  max-height: 80%;
}
.featured-projects-tab {
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 4px 7px;
  border-radius: 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.featured-projects-tab:hover,
.featured-projects-tab.active {
  background-color: var(--primary);
  color: white;
}
.featured-projects-dropdown:not(.active) {
  display: none;
}
.featured-projects-wrap > * {
  margin: 10px 0;
}
.featured-projects-wrap > *:first-child {
  margin-top: 0;
}
.featured-projects-wrap > *:last-child {
  margin-bottom: 0;
}
.featured-projects-image {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.featured-projects-image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.featured-projects-item.left .featured-projects-image {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.featured-projects-item.right .featured-projects-image {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.featured-projects-title {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  font-family: 'Noto Serif Display', serif;
}
.featured-projects-desc {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--default-50);
}
.featured-projects-item:hover .featured-projects-image img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*Page Header Section*/
.page-header-section {
  margin-top: 50px;
}
.page-header-border {
  padding-bottom: 50px;
  border-bottom: 2px solid var(--default-20);
}
.page-header-image {
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
}
.page-header-paragraph b {
  color: var(--default);
}
/*Layout - Community Leader*/
.community-leader-text .circle-text-wrap {
  position: absolute;
  top: -272px;
  left: -190px;
}
.community-leader-text .circle-text {
  color: var(--default);
}
.community-leader-image {
  position: relative;
  padding-top: 50%;
}
/*Community Members*/
.community-member-res-image {
  position: relative;
  padding-top: 114%;
  overflow: hidden;
}
.community-member-res-item:nth-child(2n+1) .community-member-res-image {
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}
.community-member-res-item:nth-child(2n+2) .community-member-res-image {
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
/*360 - Video*/
.attraction-publish-action-button {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.attraction-publish-action-button > img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.attraction-publish-action-over {
  position: relative;
  padding: 2px;
  background-color: var(--primary-80);
  color: var(--white);
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  min-height: 32vw;
}
.attraction-publish-action-over .icon {
  margin-bottom: 20px;
}
.attraction-publish-action-over .icon svg {
  height: 50px;
  fill: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.attraction-publish-action-button:hover > img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*360 - Video Pop Up*/
.tour-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1091;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: rgba(255,255,255,0.8);
}
.tour-popup.active {
  pointer-events: all;
  opacity: 1;
}
.tour-popup-container {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  margin: 25px;
  height: calc(100svh - 50px);
}
.tour-popup iframe {
  width: 100%;
  height: 100%;
}
#tour-360-popup iframe:not(.active) {
  display: none;
}
.tour-popup-close {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 31px;
  font-weight: 100;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.tour-popup-close::after {
  content: "+";
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tour-popup-close:hover {
  background-color: var(--default);
  color: var(--white);
}
/*Contact*/
#contact-form-error-agree {
    position: absolute;
    right: 0;
    bottom: -22px;
}
.contact-header {
  position: relative;
}
.contact-header-image {
  position: relative;
  padding-top: 155%;
}
.contact-header-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(37,33,88,0.7) 0%,rgba(37,33,88,0) 100%);
}
.contact-header-over {
  background-color: var(--default-25);
  color: white;
  padding-top: 130px;
}
.contact-page-info {
  background-color: #f4f0ea;
  overflow: hidden;
}
.contact-page-info p:not(:last-child) {
  margin-bottom: 1em;
}
.contact-page-info .loader:before {
  background-color: rgba(244,240,234,0.7);
}
.contact-map {
  filter: sepia(0.4) grayscale(0.4) hue-rotate(340deg);
  height: 100%;
  position: relative;
  min-height: 335px;
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.my-contact-form .text-danger {
  font-size: 12px;
  position: relative;
  top: 2px;
  color: var(--error) !important;
}
/*Footer Banners*/
.footer-banner-res-image {
  padding-top: 83%;
  position: relative;
  overflow: hidden;
}
.footer-banner-res-image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-banner-res-title {
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: break-word;
}
.footer-banner-res-item:nth-child(2n+1) .footer-banner-res-image {
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  margin-bottom: 10px;
}
.footer-banner-res-item:nth-child(2n+2) .footer-banner-res-image {
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
  margin-top: 10px;
  -ms-flex-order: 2;
  order: 2;
}
.footer-banner-res-item:nth-child(2n+2) .footer-banner-res-title {
  -ms-flex-order: 1;
  order: 1;
}
.footer-banner-res-wrap:hover .footer-banner-res-image img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*Footer Important Links*/
#footer-important-links .important-link-wrap {
  min-height: 90px;
}
#footer-important-links .important-link-image {
  height: 40px;
  margin-bottom: 10px;
}
.community-leader-image {
  position: relative;
  padding-top: 66%;
  overflow: hidden;
}
.community-leader-image.left {
  padding-top: 97.3033%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
/*Footer*/
footer {
  overflow: hidden;
}
footer img {
  height: 105px;
}
.footer-top {
  background-color: #292a67;
  border-bottom-right-radius: 40px;
}
.footer-social a {
  width: 25px;
  height: 25px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}
.footer-social a:hover {
  background-color: var(--primary);
  color: white;
}
.footer-right {
  border-top-left-radius: 40px;
}
.footer-menu li:not(:last-child) {
  margin-bottom: 5px;
}




/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
    header .logo img {
        height: 52px;
    }
    .fixed-header.header-down .logo img {
        height: 40px;
    }
  /*Modal*/
  .modal-dialog-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-bottom .modal-content {
    border-radius: 40px;
  }
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 80%;
  }
  /*Top Attractions*/
  .top-attractions-tab-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .top-attractions-tab-icon {
    height: 40px;
    margin-bottom: 10px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 100%;
  }
}
/* md */
@media (min-width: 768px) {
  /*All*/
  :root {
    --body-size: 16px;
  }

    .footer-button:hover {
        color: white;
    }
    .footer-button:hover:before {
        width: 111%;
        border-radius: 50px;
    }
    .general-button.white-general-button:hover .general-button-title{
        color: var(--default) !important;
    }
    .general-button:hover .general-button-title{
        color: white !important;
    }
    .general-button:hover:before{
        width: 110%;
        border-radius: 50px;
    }

  /*Header*/
  header .logo img {
    height: 50px;
  }
    .fixed-header.header-down .logo img {
        height: 40px;
    }
  /*Forms*/
  .form-control-with-label.line-control textarea.form-control {
    height: 205px;
  }
  /*Fixed Header*/
  /*.fixed-header .logo img {*/
  /*  height: 50px;*/
  /*}*/
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 65%;
  }
  .owl-carousel.homepage-slider-carousel .owl-nav button {
    top: 200px;
    bottom: 70px;
  }
  /*Important Links*/
  .important-link-wrap {
    min-height: 180px;
  }
  .important-link-image {
    height: 55px;
    margin-bottom: 20px;
  }
  /*Top Attractions*/
  .owl-carousel.top-attractions-carousel .owl-nav button {
    width: 100px;
    height: 100px;
    border-width: 2px;
    font-size: 20px;
  }
  .owl-carousel.top-attractions-carousel .owl-nav button:after {
    border-top-width: 2px;
    border-right-width: 2px;
  }
  /*Featured Articles*/
  .homepage-feature-article-arrow {
    width: 25px;
    height: 25px;
  }
  /*Featured Projects*/
  #featured-projects:before {
    height: 50vw;
  }
  .featured-projects-tab {
    padding: 8px 15px;
  }
  .featured-projects-item.left {
    margin-top: -45px;
  }
  .featured-projects-title {
    font-size: 30px;
  }
  .featured-projects-desc {
    font-size: 20px;
  }
  /*360 - Video*/
  .attraction-publish-action-over {
    min-height: 28vw;
  }
  .attraction-publish-action-over .icon svg {
    height: 75px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 75%;
  }
  .contact-header-image::after {
    height: 250px;
  }
  .contact-header-over {
    padding-top: 250px;
  }
  /*Footer Banners*/
  .footer-banner-res-title {
    font-size: 17px;
  }
  /*Footer Important Links*/
  #footer-important-links .important-link-wrap {
    min-height: 125px;
  }
  #footer-important-links .important-link-image {
    height: 50px;
    margin-bottom: 15px;
  }
  /*Footer*/
  .footer-top {
    border-bottom-right-radius: 75px;
  }
  footer img {
    height: 130px;
  }
  .footer-social a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
  .footer-right {
    border-top-left-radius: 75px;
  }
  .footer-menu li:not(:last-child) {
    margin-bottom: 15px;
  }
}
/* lg */
@media (min-width: 992px) {

    /*.img-text-card-pt.active {*/
    /*    padding-top: 136.2%;*/
    /*}*/
  .homepage-slider-image {
    padding-top: 68%;
  }



  /*All*/
  .circle-text-wrap {
    width: 275px;
    height: 275px;
  }
  .circle-text {
    width: 275px;
    height: 275px;
  }
  .circle-text span {
    height: 137.5px;
  }
  /*Top Attractions*/
  .top-attractions-tab-wrap {
    background-color: rgba(255, 255, 255, 0.7);
    padding-top: 100%;
  }
  .top-attractions-car-image {
    padding-top: 585px;
  }
  .top-attractions-car-image::after {
    width: 300px;
  }
  .top-attractions-front {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 160px;
    z-index: 3;
    pointer-events: none;
  }
  .top-attractions-tab-icon {
    height: 40px;
    margin-bottom: 10px;
  }
  .owl-carousel.top-attractions-carousel .owl-nav .owl-next {
    right: 200px;
  }
  /*Featured Articles*/
  .homepage-feature-articles-swiper.with-pseudos::after {
    width: 250px;
  }
  /*Featured Projects*/
  .featured-projects-item.left {
    margin-top: -125px;
  }
  /*Page Header Section*/
  .page-header-border {
    padding-bottom: 80px;
  }
  /*Contact*/
  .contact-map {
    min-height: 47vw;
  }
  .my-contact-form .text-danger {
    text-align: right;
  }
  .contact-page-info p:not(:last-child) {
    margin-bottom: 1.7em;
  }
  /*Footer Banners*/
  .footer-banner-res-item:nth-child(2n+2) {
    margin-top: 30px;
  }
  /*Footer*/
  .footer-right {
    border-top: 10px solid var(--default);
    border-left: 10px solid var(--default);
  }
}
/* xl */
@media (min-width: 1200px) {
  /*All*/
  :root {
    --body-size: 18px;
  }
  /*Header*/
  header .logo img {
    height: 60px;
  }
    .fixed-header.header-down .logo img {
        height: 40px;
    }
  /*Fixed Header*/
  /*.fixed-header.header-down .logo img {*/
  /*  height: 52px;*/
  /*}*/
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 50%;
    /*padding-top: 48.5%*/
  }
  .owl-carousel.homepage-slider-carousel .owl-nav button {
    width: 210px;
    height: 210px;
    font-size: 40px;
  }
  .owl-carousel.homepage-slider-carousel .owl-nav .owl-prev {
    font-size: 20px;
  }
  .homepage-slider-bottom {
    bottom: 54px;
  }
  /*Important Links*/
  .important-link-image {
    height: 70px;
  }
  /*Top Attractions*/
  .owl-carousel.top-attractions-carousel .owl-nav button {
    width: 210px;
    height: 210px;
    font-size: 40px;
  }
  /*Featured Projects*/
  .featured-projects-title {
    font-size: 40px;
  }
  .featured-projects-desc {
    font-size: 26px;
  }
  /*Page Header Section*/
  .page-header-border {
    padding-bottom: 100px;
  }
  /*Layout - Community Leader*/
  .community-leader-text .circle-text-wrap {
    left: -125px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 50%;
  }
}
/* xxl */
@media (min-width: 1500px) {
    .bottom-banner.services-banner {
        padding-top: 102px;
        padding-bottom: 100px;
    }
  /*Header*/
  header .logo img {
    height: 64px;
  }
    .fixed-header.header-down .header {
        padding: 10px 40px 10px 0;
    }

  .fixed-header.header-down .logo img {
      height: 45px;
  }
  /*Forms*/
  .form-control-with-label.line-control textarea.form-control {
    height: 250px;
  }
  /*Homepage Slider*/
  .owl-carousel.homepage-slider-carousel .owl-nav button {
    top: 225px;
  }
  /*Important Links*/
  .important-link-wrap {
    min-height: 275px;
  }
  /*Top Attractions*/
  .top-attractions-car-image {
    padding-top: 840px;
  }
  .top-attractions-car-image::after {
    width: 450px;
  }
  .top-attractions-front {
    width: 240px;
  }
  .top-attractions-tab-item:not(:last-child) {
    margin-bottom: 35px;
  }
  .top-attractions-tab-icon {
    height: 70px;
    margin-bottom: 25px;
  }
  .owl-carousel.top-attractions-carousel .owl-nav .owl-next {
    right: 350px;
  }
  /*Layout - Community Leader*/
  .community-leader-text .circle-text-wrap {
    left: 0;
  }
  /*360 - Video*/
  .attraction-publish-action-over {
    min-height: 25vw;
  }
  .attraction-publish-action-over .icon svg {
    height: 100px;
  }
  /*Contact*/
  .contact-header-image::after {
    height: 350px;
  }
  .contact-header-over {
    padding-top: 350px;
  }
  /*Footer Banners*/
  .footer-banner-res-title {
    font-size: 20px;
  }
  /*Footer Important Links*/
  #footer-important-links .important-link-wrap {
    min-height: 140px;
  }
  /*Footer*/
  .footer-top {
    border-bottom-right-radius: 250px;
  }
  footer img {
    height: 160px;
  }
  .footer-right {
    border-top-left-radius: 250px;
  }
}
/* xxxl */
@media (min-width: 1750px) {
  /*Layout - Community Leader*/
  .community-leader-text .circle-text-wrap {
    top: -255px;
  }
}
/*Responsive - Desktop First*/
/* xxl */
@media (max-width: 1749.98px) {
    .services-why-card {
        padding: 60px 74px 60px 74px;
    }
    .what-is-key-desc {
        max-width: 86%;
    }
    .service-card-services {
        padding: 51px 78px 51px 78px;
    }
    .about-card-years {
        padding: 100px 78px 100px 78px;
    }
    .about-card-parkforyou {
        padding: 73px 100px 73px 100px;
    }
    .contact-banner > div {
        padding-right: 7%;
    }
    .home-card-box-top {
        padding: 65px 80px 71px 80px;
    }
}
@media (max-width: 1700.98px) {
    .icons-home-section {
        /*margin-top: 210px;*/
        margin-top: 303px;
    }
}
@media (max-width: 1649.98px) {
    .menu-content-box {
        width: 75%;
    }
}
@media(max-width: 1599.98px) {
    .premium-services-box:hover .premium-services-box-text {
        top: 0;
    }
    .premium-service-btn {
        padding: 27px 50px 40px 50px;
    }
    .premium-services-box-button .title br {
        display: none;
    }
}
/* xl */
@media (max-width: 1499.98px) {
    .how-works-section {
        margin-bottom: 124px;
    }
    .icons-home-section {
        margin-top: 346px;
        margin-bottom: 129px;
    }
    .service-top-card .desc-bottom span {
        font-size: 21px;
    }
    .services-why-card-section {
        margin-bottom: 170px;
    }
    .services-why-card {
        padding: 50px 74px 50px 74px;
    }
    .services-security {
        margin-bottom: 104px;
    }
    .services-premium {
        margin-bottom: 104px;
    }
    .services-security-text-box {
        max-width: 63%;
    }
    .services-security-icon-box.first img{
        width: 230px;
    }
    .services-security-icon-box.second img{
        width: 262px;
    }
    .services-security-icon-box.last img{
        width: 330px;
    }
    .services-security-text-box .desc span{
        font-size: 20px;
    }
    .services-main-cards {
        margin-bottom: 63px;
    }
    .services-core {
        margin-bottom: 90px;
    }
    .services-title-main {
        margin-bottom: 70px;
    }
    .service-top-card {
        margin-bottom: 148px;
    }
    .service-card-services {
        padding: 41px 70px 41px 70px;
    }
    .banner-box-text {
        max-width: 66%;
    }
    .banner-box-text .title br {
        display: none;
    }
    .banner-box-text > :nth-child(2) br {
        display: none;
    }
    .bottom-banner {
        padding-top: 90px;
        padding-bottom: 98px;
    }
    .about-private {
        margin-bottom: 106px;
    }
    .about-choose {
        margin-bottom: 99px;
    }
    .about-private-box {
        left: 8%
    }
    .about-private-right .about-private-box {
        right: 8%;
    }
    .about-experience-icons {
        margin-bottom: 103px;
    }
    .about-choose-icon {
        height: 100px;
    }
    .about-choose-icon.first img {
        height: 80px;
    }
    .about-choose-icon.second img {
        height: 80px;
    }
    .about-choose-icon.third img {
        height: 80px;
    }
    .about-choose-icon.fourth img {
        height: 90px;
    }
    .about-choose-icon.fifth img {
        height: 86px;
    }
    .about-choose-icon.last img {
        height: 100px;
    }
    .about-choose-col:not(:last-child):not(:nth-child(5)) {
        margin-bottom: 100px;
    }
    .about-what-park {
        margin-bottom: 95px;
    }
    .about-philosophy {
        margin-bottom: 91px;
    }
    .what-is-circle {
        width: 65px;
        height: 65px;
    }
    .philosophy-icon img{
        height: 112px;
    }
    .philosophy-row {
        width: 85%;
    }
    .about-card-parkforyou {
        padding: 63px 70px 63px 70px;
    }
    .about-card-years {
        padding: 73px 70px 73px 70px;
    }
    .contact-banner > div {
        padding-right: 4%;
    }
    .contact-reach-desc {
        max-width: 80%;
    }
    .contact-iframe {
        margin-bottom: 120px;
    }
    .contact-reach-desc > span {
        font-size: 24px;
    }

    .contact-cards {
        margin-top: 124px;
        margin-bottom: 120px;
    }
    .about-parkforyou {
        margin-top: 124px;
        margin-bottom: 166px;
    }
    .service-top-card {
        margin-top: 124px;
    }
    .about-three-years {
        margin-bottom: 156px;
    }
    .contact-form-desc {
        margin-bottom: 100px;
    }
    .contact-right {
        padding: 30px 40px 43px 40px;
    }
    .pages-title-lines {
        padding-left: 142px;
    }
    .header-pt {
        padding-top: 108px;
    }
    .home-near {
        margin-bottom: 130px;
    }
    .solutions-section {
        margin-bottom: 129px;
    }
    .why-choose-section {
        margin-bottom: 124px;
    }
    .home-services {
        margin-bottom: 114px;
    }
    .why-col-mb {
        margin-bottom: 120px;
    }
    .why-img-box {
        min-width: 110px;
    }
    .why-img-box img{
        width: 80px;
    }
    .how-work-circle {
        width: 90px;
        height: 90px;
    }
    .home-park-for-you {
        margin-bottom: 130px;
    }
    .quote-start {
        top: -21px;
    }
    .home-banner > div > div br{
        display: none;
    }
    .home-banner > div > div {
        max-width: 80%;
    }
    .home-banner {
        padding-top: 100px;
        padding-bottom: 131px;
        margin-bottom: 114px;
    }
    .home-card-box-top {
        padding: 55px 70px 61px 70px;
    }
    .icons-home-section {
        padding-left: 2%;
        padding-right: 2%;
    }
    .homepage-slider-content {
        padding-top: 180px;
    }
    .footer-links-left {
        column-gap: 30px;
    }
    .footer-links-right {
        column-gap: 20px;
    }
    .header {
        padding: 23px 30px 23px 0;
    }
}
@media(max-width: 1349.98px) {
    .contact-left.contact-success {
        padding-top: 80%;
    }
    .img-text-card-border {
        border-bottom-left-radius: 30px;
    }
    .premium-services-box {
        padding-top: 90%;
    }
    .sub-menu-dropdown {
        padding-left: 8%;
    }
    .about-card-years .img-text-card-text-box-title br {
        display: none;
    }
}
@media (max-width: 1299.98px) {
    .img-shape > div::before {
        bottom: -58px;
    }
    .img-text-card-border:before {
        width: 20%;
    }
    .services-security-icon-box.first img{
        width: 220px;
    }
    .services-security-icon-box.second img{
        width: 242px;
    }
    .services-security-icon-box.last img{
        width: 300px;
    }
    .contact-banner > div {
        padding-right: 2%;
    }
    .menu-content-box {
        width: 80%;
    }
    .icons-home-section {
        padding-left: 1%;
        padding-right: 1%;
    }
}
/* lg */
@media (max-width: 1199.98px) {
    .contact-form-desc {
        margin-bottom: 95px;
    }
    .contact-cards {
        margin-top: 104px;
        margin-bottom: 92px;
    }
    .contact-iframe {
        margin-bottom: 101px;
    }
    .services-why-card-section {
        margin-bottom: 104px;
    }
    .contact-iframe {
        height: 70vh;
    }
    .pages-title-lines.about {
        margin-left: -22px;
    }
    .about-three-years {
        margin-bottom: 102px;
    }
    .about-parkforyou {
        margin-bottom: 105px;
    }
    .service-top-card {
        margin-bottom: 90px;
    }
    .img-text-card-pt.active {
        height: auto;
    }
    .services-core {
        margin-bottom: 90px;
    }
    .services-main-cards {
        margin-bottom: 71px;
    }
    .services-premium {
        margin-bottom: 103px;
    }
    .contact-email-icon img {
        height: 22px;
    }
    .contact-left.contact-success {
        padding-top: 100%;
    }

    .service-top-card .desc-bottom span {
        font-size: 20px;
    }
    .home-card-near-button .img-curve-one {
        left: -95px;
    }
    .img-curve-two {
        display: none;
    }
    .img-text-card-border:before {
        content: none;
    }
    .services-why-card {
        padding: 50px 60px 50px 60px;
    }
    /*.services-security-text-box {*/
    /*    max-width: 67%;*/
    /*}*/
    /*.services-security-icon-box.first img{*/
    /*    width: 260px;*/
    /*}*/
    /*.services-security-icon-box.second img{*/
    /*    height: 292px;*/
    /*}*/
    /*.services-security-icon-box.last img{*/
    /*    height: 406px;*/
    /*}*/
    .services-security-text-box .desc span{
        font-size: 20px;
    }
    .services-security-text-box .desc span{
        font-size: 18px;
    }
    .premium-services-box {
        padding-top: 78%;
    }
    .col-arrow img {
        width: 60px;
    }
    .pages-title-lines.services {
        margin-left: 12px;
    }
    .service-card-services {
        padding: 31px 50px 31px 50px;
    }
    .about-choose,
    .about-private {
        margin-bottom: 95px;
    }
    .about-private-col {
        padding-top: 40%;
    }
    .about-experience-icons {
        margin-bottom: 97px;
    }
    .about-choose-icon {
        height: 90px;
    }
    .about-choose-icon.first img {
        height: 65px;
    }
    .about-choose-icon.second img {
        height: 65px;
    }
    .about-choose-icon.third img {
        height: 65px;
    }
    .about-choose-icon.fourth img {
        height: 75px;
    }
    .about-choose-icon.fifth img {
        height: 65px;
    }
    .about-choose-icon.last img {
        height: 85px;
    }
    .about-choose-col:not(:last-child):not(:nth-child(5)) {
        margin-bottom: 50px;
    }
    .about-what-park {
        margin-bottom: 102px;
    }
    .about-experience-icon {
        height: 140px;
        width: 230px;
    }
    .about-experience-icon.first img {
        height: 95px;
    }
    .about-experience-icon.second img {
        height: 91px;
    }
    .about-experience-icon.last img {
        height: 103px;
    }
    .about-experience {
        padding-top: 45px;
        padding-bottom: 140px;
    }
    .about-philosophy {
        margin-bottom: 90px;
    }
    .philosophy-icon img{
        height: 95px;
    }
    .philosophy-row-desc {
        width: 84%;
        padding-top: 39px;
        padding-bottom: 42px;
    }
    .about-card-years {
        padding: 43px 50px 43px 50px;
    }
    .no-button-card {
        display: none;
    }
    .about-card-parkforyou {
        padding: 43px 50px 43px 50px;
    }
    .contact-banner > div {
        padding-right: 0;
    }
    .contact-button-links {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 245px;
    }
    .contact-reach-desc > span {
        font-size: 23px;
    }
    .contact-right {
        padding: 30px 20px 33px 20px;
    }
    .pages-mt {
        margin-top: 95px;
    }
    .pages-title-lines {
        padding-left: 161px;
    }
    .contact-top-desc {
        max-width: 70%;
    }
    .header-pt {
        padding-top: 98px;
    }
    .home-near {
        margin-bottom: 98px;
    }
    .solutions-section {
        margin-bottom: 98px;
    }
    .home-card-near-button {
        padding: 15px var(--grid) 5px calc(var(--grid) + 15px);
    }
    .why-choose-section {
        margin-bottom: 97px;
    }
    .solution-box {
        padding-top: 40px;
        padding-bottom: 47px;
    }
    .home-services {
        margin-bottom: 82px;
    }
    .why-img-box {
        min-width: 90px;
    }
    .why-col-mb {
        margin-bottom: 80px;
    }
    .why-img-box {
        min-width: 110px;
    }
    .why-img-box img{
        width: 80px;
    }

    .how-works-section {
        margin-bottom: 63px;
    }
    .home-services {
        padding-top: 35px;
        padding-bottom: 50px;
    }
    .home-banner {
        margin-bottom: 84px;
    }
    .how-work-circle {
        width: 60px;
        height: 60px;
    }
    .home-park-for-you {
        margin-bottom: 97px;
    }
    .quote-start {
        left: -95px;
    }
    .quote-start,
    .quote-end {
        width: 85px;
    }
    .icons-home-section {
        margin-top: 320px;
        margin-bottom: 91px;
    }
    .img-text-card-border {
        margin-left: var(--min-grid);
        margin-right: var(--min-grid);
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .img-text-card-pt {
        padding-top: 50%;
    }
    .icon-home-img-box {
        height: 60px;
    }
    .icon-home-img-box.first img {
        height: 51px;
    }
    .icon-home-img-box.second img {
        height: 43px;
    }
    .icon-home-img-box.third img {
        height: 60px;
    }
    .icon-home-img-box.last img {
        height: 51px;
    }
    .icons-home-section {
        padding-left: 0;
        padding-right: 0;
    }
    .footer-links-left {
        row-gap: 15px;
    }
    .link-header:not(.has-menu),
    .link-header-sub-a {
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .header {
        padding: 23px var(--grid) 23px 0;
    }
  .footer-column:first-child::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    margin-left: -20px;
    margin-right: -20px;
    z-index: 1;
    width: 130%;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
  .footer-column {
    position: relative;
  }
    .terms-email-image {
        width: 135px;
    }
}
/* md */
@media (max-width: 991.98px) {
    .quote-start,
    .quote-end {
        width: 55px;
    }
    .quote-start {
        left: -50px;
        top: -36px;
    }
    .quote-end {
        bottom: -42px;
        right: -50px;
    }
    .how-work-col .title br{
        display: none;
    }
    .contact-iframe {
        height: 50vh;
    }
    .menu-sub-link {
        color: var(--default-black) !important;
    }
    .menu-arrow {
        position: absolute;
        right: var(--grid);
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        cursor: pointer;
    }
    .link-header.has-menu > span {
        position: relative;
    }
    .contact-email-icon img {
        height: 20px;
    }
    .footer-mail img {
        height: 20px;
    }
    .contact-right.success {
        padding: 70px 20px 70px 20px;
    }
    .contact-left.contact-success {
        padding-top: 0;
    }
    #contact-form-error-agree {
        bottom: -22px;
    }
    .service-top-card .desc-bottom span {
        font-size: 19px;
    }
    .premium-service-btn::before {
        width: 30px;
        height: 43px;
        top: -42px;
        left: 0;
        border-bottom-left-radius: 20px;
    }
    .premium-service-btn::after {
        height: 45px;
    }
    .home-card-near-button .img-curve-one {
        left: -75px;
    }
    .img-curve-one {
        width: 30px;
        height: 30px;
        bottom: -5px;
        left: -55px;
        border-bottom-right-radius: 15px;
    }
    .services-why-card-section {
        margin-bottom: 66px;
    }
    .services-why-card {
        padding: 30px var(--grid) 30px var(--grid);
    }
    .services-security {
        margin-bottom: 65px;
    }
    .services-premium {
        margin-bottom: 65px;
    }
    .services-security-row {
        padding-top: 22px;
        padding-bottom: 21px;
    }
    .services-security-icon-box.first img {
        width: 150px;
    }
    .services-security-icon-box.second img {
        width: 175px;
    }
    .services-security-icon-box.last img {
        width: 230px;
    }
    .services-security-text-box {
        max-width: 100%;
    }
    .services-security-text-box.res-right {
        margin-left: auto;
    }
    .services-security-icon-box.res-right {
        margin-left: auto;
    }
    .services-security-text-box .desc span{
        font-size: 16px;
    }
    .services-main-cards {
        margin-bottom: 55px;
    }
    .premium-services-box-button .title{
        display: flex;
        align-items: center;
        justify-content: start;
    }
    .premium-services-box {
        padding-top: 70%;
        border-radius: 20px;
        border-bottom-left-radius: 0;
    }
    .premium-service-btn {
        padding: 10px 25px 10px 25px;
        border-top-right-radius: 20px;
    }
    .premium-service-btn > div {
        width: 31px;
        height: 31px;
    }
    .premium-service-btn img {
        width: 7px;
    }
    .services-core {
        margin-bottom: 55px;
    }
    .services-title-main {
        margin-bottom: 28px;
    }
    .service-main-box {
        border-radius: 20px;
    }
    .service-col-num {
        width: 60px;
        height: 60px;
    }
    .col-core {
        padding: 20px 10px 20px 10px;
        border-radius: 20px;
    }
    .col-arrow img {
        width: 58px;
        transform: rotate(90deg);
    }
    .service-top-card {
        margin-bottom: 53px;
    }
    .pages-title-lines.services {
        margin-left: 6px;
    }
    .service-card-services {
        padding: 19px var(--grid) 24px var(--grid);
    }
    .banner-box-text {
        max-width: 90%;
    }
    .bottom-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .about-choose,
    .about-private{
        margin-bottom: 63px;
    }
    .about-private .row {
        border-radius: 0;
    }
    .about-private-col:not(.active) .about-private-box {
        display: block;
    }
    .about-private-right .about-private-box .desc {
        margin-left: 0;
    }
    .about-private-right .about-private-box {
        right: auto;
        left: var(--grid);
    }
    .about-private-box {
        position: absolute;
        left: var(--grid);
        top: auto;
        transform: translateY(0);
        bottom: 20px;
    }
    .about-private-col:not(.active) .about-private-img::before {
        opacity: 1;
    }
    .about-private-col.active .about-private-box .desc {
        display: block;
    }
    .about-private-box .desc{
        /*display: none;*/
        display: block;
    }
    .about-experience-icons {
        margin-bottom: 62px;
    }
    .about-choose-icon {
        height: auto;
    }
    .about-choose-col > div {
        padding: 20px 20px 20px 20px;
        border-radius: 20px;
    }
    .about-choose-col:not(:last-child) {
        margin-bottom: 30px;
    }
    .about-what-park {
        margin-bottom: 63px;
    }
    .about-philosophy {
        margin-bottom: 55px;
    }
    .what-is-circle {
        width: 60px;
        height: 60px;
    }
    .philosophy-row.left .philosophy-icon{
        margin-left: auto;
    }
    .philosophy-row.left {
        padding-right: var(--grid);
    }
    .philosophy-row.right {
        padding-left: var(--grid);
    }
    .philosophy-row-desc {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
    .philosophy-row {
        padding-top: 39px;
        padding-bottom: 42px;
    }
    .philosophy-icon img {
        height: 70px;
    }
    .pages-title-lines.about {
        margin-left: -27px;
    }
    .about-card-parkforyou {
        padding: 35px var(--grid) 35px var(--grid);
    }
    .about-card-years {
        padding: 35px var(--grid) 35px var(--grid);
    }
    .img-text-card-pt.active {
        height: auto;
    }
    .contact-banner {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .contact-banner > div {
        padding-right: 0;
    }
    .contact-reach-desc > span {
        font-size: 22px;
    }
    .contact-iframe {
        margin-bottom: 65px;
    }
    .contact-cards {
        margin-top: 64px;
        margin-bottom: 55px;
    }
    .about-parkforyou {
        margin-top: 60px;
        margin-bottom: 65px;
    }
    .service-top-card {
        margin-top: 60px;
    }
    .about-three-years {
        margin-bottom: 65px;
    }
    .contact-card-icon {
        margin-bottom: 15px;
    }
    .contact-card-icon.phone img{
        height: 32px;
    }
    .contact-card-icon.location img{
        height: 41px;
    }
    .contact-card-icon.mail img{
        height: 28px;
    }
    .contact-col-info {
        border-radius: 20px;
        padding: 15px 10px 15px 10px;

    }
    .contact-form-desc {
        margin-bottom: 30px;
    }
    .dates-button.contact {
        width: 50%;
    }
    .contact-right {
        padding: 15px 20px 15px 20px;
    }
    .contact-right {
        border-radius: 12px;
    }
    #contact_form input {
        height: 45px !important;
    }
    #contact_form .error-msg {
        bottom: -26px;
        font-size: 12px;
    }
    .contact-top-desc {
        max-width: 80%;
    }
    .pages-mt {
        margin-top: 60px;
    }
    .pages-title-lines {
        padding-left: 180px;
    }
    .header-pt {
        padding-top: 82px;
    }
    .home-near {
        margin-bottom: 48px;
    }
    .solutions-section {
        margin-bottom: 48px;
    }
    .home-card-near {
        padding: 25px var(--grid) 28px var(--grid);
    }
    .home-card-near-button {
        padding: 15px var(--grid) 5px calc(var(--grid) + 15px);
    }
    .why-choose-section {
        margin-bottom: -32px;
    }
    .solutions-img {
        padding-top: 55%;
    }
    .solution-box {
        padding-top: 20px;
        padding-bottom: 26px;
    }
    .solution-box > div {
        padding-left: var(--grid);
    }
    .home-services {
        margin-bottom: 36px;
    }
    .why-img-box {
        min-width: 90px;
    }
    .why-col-mb {
        margin-bottom: 80px;
    }
    .why-col-mb-forall {
        margin-bottom: 80px;
    }
    .how-works-section {
        margin-bottom: 30px;
    }
    .service-slide-icon {
        height: 70px;
    }
    .service-slide-icon img {
        height: 60px;
    }
    .home-services {
        padding-top: 15px;
        padding-bottom: 25px;
    }
    .how-work-circle {
        width: 50px;
        height: 50px;
    }
    .home-park-for-you {
        margin-bottom: 47px;
    }
    .home-banner > div > div {
        max-width: 90%;
    }
    .home-banner {
        padding-top: 51px;
        padding-bottom: 55px;
        margin-bottom: 36px;
    }
    .general-button::before {
        width: 31px;
    }
    .general-button-img img {
        height: 12px;
    }
    .home-top-card-button {
        padding: 10px var(--grid) 5px 25px;
    }
    .img-text-card-button-box {
        border-top-left-radius: 15px;
    }
    .general-button-img {
        width: 31px;
        height: 31px;
        margin-left: 15px;
    }
    .img-text-card-pt {
        padding-top: 55%;
    }
    .home-card-box-top {
        padding: 15px var(--grid) 23px var(--grid);
    }
    .img-text-card-text-box {
        border-radius: 10px;
    }
    .icons-home-section {
        margin-top: 329px;
        margin-bottom: 46px;
    }
    .slider-desc br {
        display: none;
    }
    .res-center-container {
        top: 54%;
        position: relative;
        transform: translateY(-50%);
    }
    .homepage-slider-content {
        padding-top: 0;
        width: 100%;
    }
    .link-header.active .link-header-sub-a {
        color: white !important;
    }
    .link-header.active .link-header-sub-a:before {
        width: 100%;
    }

    .link-header:hover .menu-arrow img{
        animation: none;
    }
    .menu-arrow img {
        width: 15px;
        transition: all .5s ease !important;
    }
    .link-header.active .menu-arrow img{
        transform: rotate(90deg);
        filter: grayscale(1) brightness(4);
        -webkit-filter: grayscale(1) brightness(4);
    }
    .link-header.has-menu {
        border-bottom: none;
    }
    .link-header.has-menu > :first-child {
        border-bottom: 1px solid var(--default);
    }
    .link-header .sub-menu-dropdown {
        display: none !important;
        position: static !important;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 100;
        pointer-events: all;
        padding-left: 15px !important;
    }
    .link-header.active .sub-menu-dropdown {
        display: flex !important;
    }
    .menu-sub-link {
        color: var(--default-black);
    }
    .menu-sub-link:hover {
        color: var(--default-black);
    }
    body.menu-opened .megamenu-icon .line {
        background-color: var(--default-black);
    }
    .megamenu-toggle-res{
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .menu-content-box {
        width: 100%;
    }
    .footer-button:before {
        width: 31px;
        height: 31px;
    }
    .footer-button {
        bottom: 0;
        margin-left: 13px;
    }
    .contact-footer-button {
        width: 31px;
        height: 31px;
    }
    .footer-icons {
        width: 34px;
        height: 34px;
    }
    .footer-icons.phone img {
        height: 16px;
    }
    .footer-icons.mail img {
        height: 14px;
    }
    .footer-icons.fb img {
        height: 19px;
    }
    .footer-icons.ig img {
        height: 19px;
    }
    .footer-icons.location img {
        height: 19px;
    }

    .header {
        padding: 15px var(--grid) 15px 0;
    }
    .megamenu-icon {
        width: 39px;
        height: 36px;
    }

  /*Contact*/
  .contact-page-info-circle {
    position: relative;
    z-index: 1;
  }
  .contact-page-info-circle:before {
    content: "";
    position: absolute;
    left: -1000px;
    right: -1000px;
    top: 0;
    bottom: -1000px;
    background-color: white;
    z-index: -1;
  }
  /*Footer*/
  .footer-column {
    position: relative;
    /*margin-top: 15px;*/
    /*padding-top: 15px;*/
    /*border-top: 1px solid rgba(255,255,255,0.5);*/
  }

  .footer-column:first-child::before {
    content:'';
    position: absolute;
    top:-16px;
    left:0;
    margin-left: -20px;
    margin-right: -20px;
    z-index: 1;
    width: 130%;
    border-top: 1px solid rgba(255,255,255,0.7);
  }
  .footer-column:first-child {
    margin-top: 30px;
  }


    .terms-email-image {
        width: 115px;
    }
}
/* sm */
@media (max-width: 767.98px) {


    .footer-button {
        margin-left: 0;
    }
    .general-button-title,
    .footer-button {
      transition: all .5s ease;
    }
    .general-button:hover .general-button-title,
    .footer-button:hover{
        color: var(--primary) !important;
    }
    .quote-start {
        left: -50px;
    }
    .quote-end {
        right: -50px;
    }
    .home-banner > div > div {
        max-width: 83%;
    }
    .contact-email-icon img {
        height: 16px;
    }
    .footer-mail img {
        height: 17px;
    }
    #contact-form-error-agree {
        bottom: -20px;
    }
    .service-top-card .desc-bottom span {
        font-size: 18px;
    }
    .home-card-near-button .img-curve-one {
        left: -60px;
    }
    .services-why-card-section {
        margin-bottom: 33px;
    }
    .services-why-card {
        padding: 20px var(--grid) 22px var(--grid);
    }
    .services-security {
        margin-bottom: 33px;
    }
    .services-premium {
        margin-bottom: 33px;
    }
    .services-security-icon-box.first img {
        width: 130px;
    }
    .services-security-icon-box.second img {
        width: 155px;
    }
    .services-security-icon-box.last img {
        width: 210px;
    }
    .services-security-text-box .desc span{
        font-size: 14px;
    }
    .services-main-cards {
        margin-bottom: 25px;
    }
    .premium-services-box {
        padding-top: 80%;
    }
    .services-core {
        margin-bottom: 25px !important;
    }
    .service-col-num {
        width: 40px;
        height: 40px;
    }
    .col-arrow img {
        width: 45px;
    }
    .service-top-card {
        margin-bottom: 25px;
    }
    .pages-title-lines.services {
        margin-left: 0;
    }
    .bottom-banner {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .banner-box-text {
        max-width: 100%;
    }
    .about-choose,
    .about-private{
        margin-bottom: 33px;
    }
    .about-private-col {
        padding-top: 56%;
    }
    .about-choose {
        padding-top: 18px;
        padding-bottom: 27px;
    }
    .about-choose-icon.first img {
        height: 45px;
    }
    .about-choose-icon.second img {
        height: 45px;
    }
    .about-choose-icon.third img {
        height: 45px;
    }
    .about-choose-icon.fourth img {
        height: 45px;
    }
    .about-choose-icon.fifth img {
        height: 45px;
    }
    .about-choose-icon.last img {
        height: 60px;
    }
    .about-choose-col:not(:last-child) {
        margin-bottom: 20px;
    }
    .about-choose-col:not(:last-child):not(:nth-child(5)) {
        margin-bottom: 20px;
    }
    .about-what-park {
        margin-bottom: 33px;
    }
    .about-experience-desc {
        width: 90%;
        margin: auto;
    }
    .about-experience-desc br {
        display: none;
    }
    .about-experience-title {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .about-experience-icon {
        height: 125px;
        width: 215px;
    }
    .about-experience-icon.first img {
        height: 80px;
    }
    .about-experience-icon.second img {
        height: 79px;
    }
    .about-experience-icon.last img {
        height: 80px;
    }
    .about-experience {
        padding-top: 20px;
        padding-bottom: 22px;
    }
    .about-experience-icons {
        margin-top: 20px;
        column-gap: 0;
        row-gap: 20px;
        margin-bottom: 33px;
    }
    .about-what-park-desc {
        width: 100%;
    }
    .what-is-key-desc {
        max-width: 100%;
    }
    .what-is-circle {
        width: 40px;
        height: 40px;
    }
    .about-philosophy {
        padding-top: 16px;
        padding-bottom: 34px;
        margin-bottom: 25px;
    }
    .philosophy-row {
        width: 90%;
    }
    .philosophy-row {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .philosophy-icon img {
        height: 60px;
    }
    .pages-title-lines.about {
        margin-left: -31px;
    }
    .about-parkforyou {
        margin-top: 33px;
        margin-bottom: 33px;
    }
    .service-top-card {
        margin-top: 33px;
    }
    .about-three-years {
        margin-bottom: 33px;
    }
    .about-card-parkforyou {
        padding: 19px var(--grid) 24px var(--grid);
    }
    .about-card-years {
        padding: 19px var(--grid) 24px var(--grid);
    }
    .contact-button-links {
        width: 70%;
    }
    .contact-banner {
        padding-top: 25px;
        padding-bottom: 34px;
    }
    .contact-banner br {
        display: none;
    }
    .contact-reach-desc {
        max-width: 100%;
    }
    .contact-reach-desc > span {
        font-size: 20px;
    }
    .contact-iframe {
        margin-bottom: 33px;
    }

    .contact-cards {
        margin-top: 37px;
        margin-bottom: 28px;
    }
    .contact-card-icon {
        margin-bottom: 10px;
    }
    .contact-card-icon.phone img {
        height: 25px;
    }
    .contact-card-icon.location img {
        height: 32px;
    }
    .contact-card-icon.mail img {
        height: 20px;
    }
    .dates-button.contact {
        width: 70%;
    }
    .contact-top-desc {
        max-width: 100%;
    }
    .pages-mt {
        margin-top: 25px;
    }
    .pages-title-lines {
        padding-left: 170px;
    }
    .pages-title-lines > span {
        width: 56px;
        height: 7px;
    }
    .header-pt {
        padding-top: 84px;
    }
    .home-near {
        margin-bottom: 33px;
    }
    .solutions-section {
        margin-bottom: 33px;
    }
    .why-choose-section {
        margin-bottom: 11px;
    }
    .solutions-img {
        padding-top: 70%;
    }
    .home-services {
        margin-bottom: 23px;
    }
    .why-img-box img {
        width: 40px;
    }
    .why-img-box {
        min-width: 55px;
    }
    .why-col-mb {
        margin-bottom: 20px;
    }
    .why-col-mb-forall {
        margin-bottom: 20px;
    }
    .how-works-section {
        margin-bottom: 12px;
    }
    .home-banner {
        margin-bottom: 25px;
    }
    .how-work-col {
        max-width: 85%;
    }
    .how-work-col .desc {
        max-width: 100%;
    }
    .home-park-for-you {
        margin-bottom: 33px;
    }
    .img-text-card-pt {
        padding-top: 75%;
    }
    .icons-home-section {
        margin-top: 307px;
        margin-bottom: 31px;
    }
    .icon-home-img-box {
        height: 60px;
    }
    .icon-home-img-box.first img {
        height: 40px;
    }
    .icon-home-img-box.second img {
        height: 32px;
    }
    .icon-home-img-box.third img {
        height: 48px;
    }
    .icon-home-img-box.last img {
        height: 40px;
    }
    .terms-email-image {
        width: 105px;
        margin-top: -2px;
    }
}
/* xs */
@media (max-width: 575.98px) {
    .quote-start,
    .quote-end {
        width: 45px;
    }
    .quote-start {
        left: -30px;
    }
    .quote-end {
        right: -30px;
    }
    .contact-email-icon img {
        height: 16px;
    }
    .footer-mail img {
        height: 15px;
    }
    .service-top-card .desc-bottom span {
        font-size: 14px;
    }
    .services-security-icon-box.first img {
        width: 100px;
    }
    .services-security-icon-box.second img {
        width: 110px;
    }
    .services-security-icon-box.last img {
        width: 130px;
    }

    .premium-services-box {
        padding-top: 90%;
    }
    .pages-title-lines.services {
        margin-left: 0;
    }
    .about-private-col {
        padding-top: 82%;
    }
    .about-private-box .desc {
        max-width: 95%;
    }
    .about-experience-icon {
        height: 120px;
        width: 195px;
    }
    .about-experience-icon.first img {
        height: 60px;
    }
    .about-experience-icon.second img {
        height: 59px;
    }
    .about-experience-icon.last img {
        height: 60px;
    }
    .philosophy-icon img {
        height: 40px;
    }
    .pages-title-lines.about {
        margin-left: 0;
    }
    .contact-reach-desc > span {
        font-size: 15px;
    }
    .pages-title-lines > span {
        width: 35px;
        height: 5px;
    }
    .pages-title-lines {
        padding-left: 0;
    }
    .header-pt {
        padding-top: 72px;
    }
    .solutions-img {
        padding-top: 85%;
    }
    .img-text-card-pt {
        padding-top: 85%;
    }
  /*Modal*/
  .modal-dialog-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: end;
    min-height: calc(100% - 50px);
    margin: 50px 0 0;
  }
  .modal-dialog-bottom .modal-content {
    border-radius: 40px 40px 0 0;
  }
  /*Featured Articles*/
  .homepage-feature-articles-swiper .swiper-slide {
    width: auto;
  }
  .homepage-feature-article-item {
    width: 215px;
  }
    .terms-email-image {
        width: 91px;
        margin-top: -1px;
    }
}

@media (max-width: 399.98px) {
    .services-premium {
        padding-right: var(--grid);
    }
}

