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

.ratio {
    position: relative;
    display: block;
    overflow: hidden;
}

.ratio::before {
    display: block;
    width: 100%;
    content: "";
}

.ratio-1\:1::before {
    padding-bottom: 100%;
}

.ratio-2\:1::before {
    padding-bottom: 50%;
}

.ratio-3\:2::before {
    padding-bottom: 66.66667%;
}

.ratio-3\:4::before {
    padding-bottom: 133.33333%;
}

.ratio-4\:3::before {
    padding-bottom: 75%;
}

.ratio-4\:1::before {
    padding-bottom: 25%;
}

.ratio-5\:4::before {
    padding-bottom: 80%;
}

.ratio-8\:5::before {
    padding-bottom: 62.5%;
}

.ratio-15\:9::before {
    padding-bottom: 60%;
}

.ratio-16\:9::before {
    padding-bottom: 56.25%;
}

.ratio-33\:35::before {
    padding-bottom: 106.06061%;
}

.ratio-45\:40::before {
    padding-bottom: 88.88889%;
}

.ratio-45\:50::before {
    padding-bottom: 111.11111%;
}

.ratio-45\:55::before {
    padding-bottom: 122.22222%;
}

.ratio-69\:50::before {
    padding-bottom: 72.46377%;
}

.ratio-69\:65::before {
    padding-bottom: 94.2029%;
}

.ratio-69\:70::before {
    padding-bottom: 101.44928%;
}

.ratio-69\:80::before {
    padding-bottom: 115.94203%;
}

.ratio-57\:60::before {
    padding-bottom: 105.26316%;
}

.ratio-57\:45::before {
    padding-bottom: 78.94737%;
}

.ratio-93\:60::before {
    padding-bottom: 64.51613%;
}

:root {
    --font-primary: "Jost", sans-serif;
}

:root {
    --text-14: 14px;
    --text-15: 15px;
    --text-16: 16px;
    --text-18: 18px;
    --text-20: 20px;
    --text-24: 24px;
    --text-30: 30px;
    --text-36: 36px;
    --text-38: 38px;
    --text-40: 40px;
    --text-44: 44px;
    --text-55: 55px;
    --text-62: 62px;
    --text-72: 72px;
    --text-82: 82px;
}

:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-border: #DDDDDD;
    --color-accent-1: #f8f5f5;
    --color-accent-2: #F7F0EC;
    --color-dark-1: #181D24;
    --color-dark-2: #191D23;
    --color-dark-3: #121418;
    --color-dark-4: #71677A;
    --color-dark-5: #2F3337;
    --color-theme: #022768;
}

.bgtheme {
    background-color: #022768;
}

[data-anim-wrap] {
    pointer-events: none;
}

[data-anim-wrap].animated {
    pointer-events: auto;
}

@keyframes reveal {
    100% {
        opacity: 1;
    }
}

[data-anim^='slide-'],
[data-anim-child^='slide-'] {
    opacity: 0;
    transition-property: opacity, transform;
    pointer-events: none;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-anim^='slide-'].is-in-view,
[data-anim-child^='slide-'].is-in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

[data-anim^='slide-up'],
[data-anim-child^='slide-up'] {
    transform: translate3d(0, 40px, 0);
}

[data-anim^='slide-down'],
[data-anim-child^='slide-down'] {
    transform: translate3d(0, -40px, 0);
}

[data-anim^='slide-right'],
[data-anim-child^='slide-right'] {
    transform: translate3d(-40px, 0, 0);
}

[data-anim^='slide-left'],
[data-anim-child^='slide-left'] {
    transform: translate3d(40px, 0, 0);
}

[data-anim^='fade'],
[data-anim-child^='fade'] {
    opacity: 0;
    transition-property: opacity;
    pointer-events: none;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-anim^='fade'].is-in-view,
[data-anim-child^='fade'].is-in-view {
    opacity: 1;
    pointer-events: auto;
}

[data-anim*="delay-1"],
[data-anim-child*="delay-1"] {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

[data-anim*="delay-1"]::after,
[data-anim-child*="delay-1"]::after {
    animation-delay: 0.1s;
}

[data-anim*="delay-1"]>*,
[data-anim-child*="delay-1"]>* {
    animation-delay: 0.1s;
}

[data-anim*="delay-2"],
[data-anim-child*="delay-2"] {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

[data-anim*="delay-2"]::after,
[data-anim-child*="delay-2"]::after {
    animation-delay: 0.2s;
}

[data-anim*="delay-2"]>*,
[data-anim-child*="delay-2"]>* {
    animation-delay: 0.2s;
}

[data-anim*="delay-3"],
[data-anim-child*="delay-3"] {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

[data-anim*="delay-3"]::after,
[data-anim-child*="delay-3"]::after {
    animation-delay: 0.3s;
}

[data-anim*="delay-3"]>*,
[data-anim-child*="delay-3"]>* {
    animation-delay: 0.3s;
}

[data-anim*="delay-4"],
[data-anim-child*="delay-4"] {
    transition-delay: 0.4s;
    animation-delay: 0.4s;
}

[data-anim*="delay-4"]::after,
[data-anim-child*="delay-4"]::after {
    animation-delay: 0.4s;
}

[data-anim*="delay-4"]>*,
[data-anim-child*="delay-4"]>* {
    animation-delay: 0.4s;
}

[data-anim*="delay-5"],
[data-anim-child*="delay-5"] {
    transition-delay: 0.5s;
    animation-delay: 0.5s;
}

[data-anim*="delay-5"]::after,
[data-anim-child*="delay-5"]::after {
    animation-delay: 0.5s;
}

[data-anim*="delay-5"]>*,
[data-anim-child*="delay-5"]>* {
    animation-delay: 0.5s;
}

[data-anim*="delay-6"],
[data-anim-child*="delay-6"] {
    transition-delay: 0.6s;
    animation-delay: 0.6s;
}

[data-anim*="delay-6"]::after,
[data-anim-child*="delay-6"]::after {
    animation-delay: 0.6s;
}

[data-anim*="delay-6"]>*,
[data-anim-child*="delay-6"]>* {
    animation-delay: 0.6s;
}

[data-anim*="delay-7"],
[data-anim-child*="delay-7"] {
    transition-delay: 0.7s;
    animation-delay: 0.7s;
}

[data-anim*="delay-7"]::after,
[data-anim-child*="delay-7"]::after {
    animation-delay: 0.7s;
}

[data-anim*="delay-7"]>*,
[data-anim-child*="delay-7"]>* {
    animation-delay: 0.7s;
}

[data-anim*="delay-8"],
[data-anim-child*="delay-8"] {
    transition-delay: 0.8s;
    animation-delay: 0.8s;
}

[data-anim*="delay-8"]::after,
[data-anim-child*="delay-8"]::after {
    animation-delay: 0.8s;
}

[data-anim*="delay-8"]>*,
[data-anim-child*="delay-8"]>* {
    animation-delay: 0.8s;
}

[data-anim*="delay-9"],
[data-anim-child*="delay-9"] {
    transition-delay: 0.9s;
    animation-delay: 0.9s;
}

[data-anim*="delay-9"]::after,
[data-anim-child*="delay-9"]::after {
    animation-delay: 0.9s;
}

[data-anim*="delay-9"]>*,
[data-anim-child*="delay-9"]>* {
    animation-delay: 0.9s;
}

[data-anim*="delay-10"],
[data-anim-child*="delay-10"] {
    transition-delay: 1s;
    animation-delay: 1s;
}

[data-anim*="delay-10"]::after,
[data-anim-child*="delay-10"]::after {
    animation-delay: 1s;
}

[data-anim*="delay-10"]>*,
[data-anim-child*="delay-10"]>* {
    animation-delay: 1s;
}

[data-anim*="delay-11"],
[data-anim-child*="delay-11"] {
    transition-delay: 1.1s;
    animation-delay: 1.1s;
}

[data-anim*="delay-11"]::after,
[data-anim-child*="delay-11"]::after {
    animation-delay: 1.1s;
}

[data-anim*="delay-11"]>*,
[data-anim-child*="delay-11"]>* {
    animation-delay: 1.1s;
}

[data-anim*="delay-12"],
[data-anim-child*="delay-12"] {
    transition-delay: 1.2s;
    animation-delay: 1.2s;
}

[data-anim*="delay-12"]::after,
[data-anim-child*="delay-12"]::after {
    animation-delay: 1.2s;
}

[data-anim*="delay-12"]>*,
[data-anim-child*="delay-12"]>* {
    animation-delay: 1.2s;
}

[data-anim*="delay-13"],
[data-anim-child*="delay-13"] {
    transition-delay: 1.3s;
    animation-delay: 1.3s;
}

[data-anim*="delay-13"]::after,
[data-anim-child*="delay-13"]::after {
    animation-delay: 1.3s;
}

[data-anim*="delay-13"]>*,
[data-anim-child*="delay-13"]>* {
    animation-delay: 1.3s;
}

[data-anim*="delay-14"],
[data-anim-child*="delay-14"] {
    transition-delay: 1.4s;
    animation-delay: 1.4s;
}

[data-anim*="delay-14"]::after,
[data-anim-child*="delay-14"]::after {
    animation-delay: 1.4s;
}

[data-anim*="delay-14"]>*,
[data-anim-child*="delay-14"]>* {
    animation-delay: 1.4s;
}

[data-anim*="delay-15"],
[data-anim-child*="delay-15"] {
    transition-delay: 1.5s;
    animation-delay: 1.5s;
}

[data-anim*="delay-15"]::after,
[data-anim-child*="delay-15"]::after {
    animation-delay: 1.5s;
}

[data-anim*="delay-15"]>*,
[data-anim-child*="delay-15"]>* {
    animation-delay: 1.5s;
}

[data-anim*="delay-16"],
[data-anim-child*="delay-16"] {
    transition-delay: 1.6s;
    animation-delay: 1.6s;
}

[data-anim*="delay-16"]::after,
[data-anim-child*="delay-16"]::after {
    animation-delay: 1.6s;
}

[data-anim*="delay-16"]>*,
[data-anim-child*="delay-16"]>* {
    animation-delay: 1.6s;
}

[data-anim*="delay-17"],
[data-anim-child*="delay-17"] {
    transition-delay: 1.7s;
    animation-delay: 1.7s;
}

[data-anim*="delay-17"]::after,
[data-anim-child*="delay-17"]::after {
    animation-delay: 1.7s;
}

[data-anim*="delay-17"]>*,
[data-anim-child*="delay-17"]>* {
    animation-delay: 1.7s;
}

[data-anim*="delay-18"],
[data-anim-child*="delay-18"] {
    transition-delay: 1.8s;
    animation-delay: 1.8s;
}

[data-anim*="delay-18"]::after,
[data-anim-child*="delay-18"]::after {
    animation-delay: 1.8s;
}

[data-anim*="delay-18"]>*,
[data-anim-child*="delay-18"]>* {
    animation-delay: 1.8s;
}

[data-anim*="delay-19"],
[data-anim-child*="delay-19"] {
    transition-delay: 1.9s;
    animation-delay: 1.9s;
}

[data-anim*="delay-19"]::after,
[data-anim-child*="delay-19"]::after {
    animation-delay: 1.9s;
}

[data-anim*="delay-19"]>*,
[data-anim-child*="delay-19"]>* {
    animation-delay: 1.9s;
}

[data-anim*="delay-20"],
[data-anim-child*="delay-20"] {
    transition-delay: 2s;
    animation-delay: 2s;
}

[data-anim*="delay-20"]::after,
[data-anim-child*="delay-20"]::after {
    animation-delay: 2s;
}

[data-anim*="delay-20"]>*,
[data-anim-child*="delay-20"]>* {
    animation-delay: 2s;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
}

body {
    padding: 0;
    font-family: 'Poppins';
    width: 100%;
    background-color: white;
    color: var(--color-dark-1);
    font-size: 16px;
    line-height: 1.875;
}

select,
input:not([type="range"]),
textarea {
    border: 0;
    outline: none;
    width: 100%;
    background-color: transparent;
}

main {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    transition: color 0.2s ease-in-out;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    font-size: 14px;
    color: var(--color-light-1);
}

.-mobileScroll>* {
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .-mobileScroll {
        overflow-x: scroll;
    }
}

.video.-type-1 {
    position: relative;
    padding: 380px 0;
    z-index: 0;
}

@media (max-width: 1199px) {
    .video.-type-1 {
        padding: 300px 0;
    }
}

@media (max-width: 991px) {
    .video.-type-1 {
        padding: 180px 0;
    }
}

@media (max-width: 767px) {
    .video.-type-1 {
        padding: 120px 0;
    }
}

@media (max-width: 575px) {
    .video.-type-1 {
        padding: 60px 0;
        text-align: center;
    }
}

.video.-type-1 .video__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.video.-type-1 .video__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.video.-type-1 .video__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.video.-type-1 .video__title {
    font-size: 82px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: white;
}

@media (max-width: 1199px) {
    .video.-type-1 .video__title {
        font-size: 62px;
    }
}

@media (max-width: 767px) {
    .video.-type-1 .video__title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .video.-type-1 .video__title {
        font-size: 34px;
    }
}

.video.-type-1 .video__button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid white;
    border-radius: 100%;
    font-size: 24px;
    width: 140px;
    height: 140px;
    color: white;
}

@media (max-width: 767px) {
    .video.-type-1 .video__button {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 575px) {
    .video.-type-1 .video__button {
        width: 80px;
        height: 80px;
    }
}

.propSingleHero {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh;
    z-index: 0;
}

.propSingleHero__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.propSingleHero__bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.propSingleHero__button {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .propSingleHero__button {
        bottom: 30px;
    }
}

button {
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    text-decoration: none;
}

button:focus {
    outline: 0;
}


/* .button {

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  font-size: 16px;

  font-weight: 400;

  line-height: 30px;

  text-transform: uppercase;

  border: 1px solid transparent;

  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

} */

.button.-md {
    padding: 10px 30px;
}

.button.-min-260 {
    min-width: 260px;
}

.button.-underline:hover {
    text-decoration: underline;
}

.button.-white:hover {
    border-color: var(--color-white);
    background-color: var(--color-white) !important;
    color: white !important;
}

.button.-outline-white {
    border-color: var(--color-white);
}

.button.-outline-white:hover {
    background-color: var(--color-white);
    border-color: transparent;
    color: white !important;
}

.button.-black:hover {
    border-color: var(--color-black);
    background-color: var(--color-black) !important;
    color: white !important;
}

.button.-outline-black {
    border-color: var(--color-black);
}

.button.-outline-black:hover {
    background-color: var(--color-black);
    border-color: transparent;
    color: white !important;
}

.button.-border:hover {
    border-color: var(--color-border);
    background-color: var(--color-border) !important;
    color: white !important;
}

.button.-outline-border {
    border-color: var(--color-border);
}

.button.-outline-border:hover {
    background-color: var(--color-border);
    border-color: transparent;
    color: white !important;
}

.button.-accent-1:hover {
    border-color: var(--color-accent-1);
    background-color: var(--color-accent-1) !important;
    color: white !important;
}

.button.-outline-accent-1 {
    border-color: var(--color-accent-1);
}

.button.-outline-accent-1:hover {
    background-color: var(--color-accent-1);
    border-color: transparent;
    color: white !important;
}

.button.-accent-2:hover {
    border-color: var(--color-accent-2);
    background-color: var(--color-accent-2) !important;
    color: white !important;
}

.button.-outline-accent-2 {
    border-color: var(--color-accent-2);
}

.button.-outline-accent-2:hover {
    background-color: var(--color-accent-2);
    border-color: transparent;
    color: white !important;
}

.button.-dark-1:hover {
    border-color: var(--color-dark-1);
    background-color: var(--color-dark-1) !important;
    color: white !important;
}

.button.-outline-dark-1 {
    border-color: var(--color-dark-1);
}

.button.-outline-dark-1:hover {
    background-color: var(--color-dark-1);
    border-color: transparent;
    color: white !important;
}

.button.-dark-2:hover {
    border-color: var(--color-dark-2);
    background-color: var(--color-dark-2) !important;
    color: white !important;
}

.button.-outline-dark-2 {
    border-color: var(--color-dark-2);
}

.button.-outline-dark-2:hover {
    background-color: var(--color-dark-2);
    border-color: transparent;
    color: white !important;
}

.button.-dark-3:hover {
    border-color: var(--color-dark-3);
    background-color: var(--color-dark-3) !important;
    color: white !important;
}

.button.-outline-dark-3 {
    border-color: var(--color-dark-3);
}

.button.-outline-dark-3:hover {
    background-color: var(--color-dark-3);
    border-color: transparent;
    color: white !important;
}

.button.-dark-4:hover {
    border-color: var(--color-dark-4);
    background-color: var(--color-dark-4) !important;
    color: white !important;
}

.button.-outline-dark-4 {
    border-color: var(--color-dark-4);
}

.button.-outline-dark-4:hover {
    background-color: var(--color-dark-4);
    border-color: transparent;
    color: white !important;
}

.button.-dark-5:hover {
    border-color: var(--color-dark-5);
    background-color: var(--color-dark-5) !important;
    color: white !important;
}

.button.-outline-dark-5 {
    border-color: var(--color-dark-5);
}

.button.-outline-dark-5:hover {
    background-color: var(--color-dark-5);
    border-color: transparent;
    color: white !important;
}

.button.-outline-white:hover {
    background-color: white !important;
    color: var(--color-dark-1) !important;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    width: 160px;
    height: 160px;
}

.play-button.-sm {
    width: 90px;
    height: 90px;
}

@media (max-width: 767px) {
    .play-button {
        width: 100px;
        height: 100px;
    }
    .play-button>i {
        font-size: 18px !important;
    }
}

.play-button:hover {
    color: var(--color-accent-1);
}

.headtheme {
    color: var(--color-theme);
}

.arrowButton.-type-1 {
    display: flex;
    align-items: center;
}

.arrowButton.-type-1>span {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.arrowButton.-type-1>span i {
    transform: rotate(-90deg);
}

.contactForm select,
.contactForm input:not([type="range"]),
.contactForm textarea {
    font-size: 16px;
    line-height: 30px;
    border-bottom: 1px solid #dfdede;
    padding-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contactForm select:focus,
.contactForm input:not([type="range"]):focus,
.contactForm textarea:focus {
    outline: none;
    border-color: var(--color-dark-1);
}

.contactForm ::-moz-placeholder {
    font-weight: 400;
}

.contactForm ::placeholder {
    font-weight: 400;
}

.contactForm__caption {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
}

input.text-white::-moz-placeholder {
    color: white;
}

input.text-white::placeholder {
    color: white;
}

.form-checkbox {
    cursor: pointer;
    position: relative;
    display: flex;
}

.form-checkbox label {
    margin: 0;
    margin-left: 9px;
    font-size: 14px;
}

.form-checkbox__mark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-accent-1);
    border-radius: 4px;
}

.form-checkbox__icon {
    display: none;
    position: absolute;
    font-size: 8px;
    color: var(--color-dark-1);
}

.form-checkbox input {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    opacity: 0;
}

.form-checkbox input:checked~.form-checkbox__mark {
    background-color: var(--color-accent-2);
    border-color: var(--color-dark-1);
}

.form-checkbox input:checked~.form-checkbox__mark .form-checkbox__icon {
    display: block;
}

.form-checkbox:hover input~.form-checkbox__mark {
    background-color: var(--color-accent-2);
}

.form-checkbox:hover input:checked~.form-checkbox__mark {
    background-color: var(--color-accent-2);
}

.form-radio {
    display: flex;
    align-items: center;
}

.form-radio .radio {
    cursor: pointer;
    position: relative;
    display: block;
}

.form-radio .radio__mark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio__icon {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    transform-origin: center;
    opacity: 1;
    transform: scale(0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio input {
    cursor: pointer;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.form-radio .radio input:checked~.radio__mark {
    border-color: var(--color-dark-1);
    background-color: var(--color-dark-1);
}

.form-radio .radio input:checked~.radio__mark .radio__icon {
    background-color: var(--color-white);
    opacity: 1;
    transform: scale(1);
}

.form-switch .switch {
    cursor: pointer;
    position: relative;
    width: 55px;
    height: 30px;
}

.form-switch .switch__slider {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-accent-2);
    transition: .3s;
    border-radius: 30px;
}

.form-switch .switch__slider::before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 100%;
    box-shadow: 0px 10px 40px 0px #0000000D;
    transition: .3s;
}

.form-switch .switch input {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.form-switch .switch input:checked+.switch__slider {
    background-color: var(--color-dark-1);
}

.form-switch .switch input:checked+.switch__slider::before {
    transform: translateX(25px);
    background-color: white;
}

.select {
    position: relative;
}

.select__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-accent-1);
    background-color: white;
    text-align: left;
}

.select__icon {
    width: 20px;
    height: 20px;
}

.select__dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 100%;
    min-height: 240px;
    max-height: 340px;
    border: 1px solid var(--color-dark-1);
    transition: all 0.2s ease;
    pointer-events: none;
    opacity: 0;
}

.select__dropdown.-is-visible {
    opacity: 1;
    pointer-events: auto;
}

.select__options {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: scroll;
}

.select__options::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.select__options::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.select__options__button {
    display: flex;
    align-items: center;
    font-size: 16px;
    text-align: left;
    padding: 6px 20px;
    transition: all 0.15s ease;
}

.select__options__button:hover {
    cursor: pointer;
    background-color: var(--color-accent-2) !important;
    color: var(--color-accent-1) !important;
}

.select__options__button:focus {
    color: var(--color-accent-1) !important;
}

.select__search {
    flex-shrink: 0;
    height: 50px !important;
    border: 1px solid #F7F0EC !important;
    color: black;
    padding: 0 20px !important;
    margin: 0 20px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.select.-multiple .select__dropdown {
    padding: 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.text-14 {
    font-size: var(--text-14) !important;
}

.text-15 {
    font-size: var(--text-15) !important;
}

.text-16 {
    font-size: var(--text-16) !important;
}

.text-18 {
    font-size: var(--text-18) !important;
}

.text-20 {
    font-size: var(--text-20) !important;
}

.text-24 {
    font-size: var(--text-24) !important;
}

.text-30 {
    font-size: var(--text-30) !important;
}

.text-36 {
    font-size: var(--text-36) !important;
}

.text-38 {
    font-size: var(--text-38) !important;
}

.text-40 {
    font-size: var(--text-40) !important;
}

.text-44 {
    font-size: var(--text-44) !important;
}

.text-55 {
    font-size: var(--text-55) !important;
}

.text-62 {
    font-size: var(--text-62) !important;
}

.text-72 {
    font-size: var(--text-72) !important;
}

.text-82 {
    font-size: var(--text-82) !important;
}

@media (max-width: 1199px) {
    .xl\:text-14 {
        font-size: var(--text-14) !important;
    }
    .xl\:text-15 {
        font-size: var(--text-15) !important;
    }
    .xl\:text-16 {
        font-size: var(--text-16) !important;
    }
    .xl\:text-18 {
        font-size: var(--text-18) !important;
    }
    .xl\:text-20 {
        font-size: var(--text-20) !important;
    }
    .xl\:text-24 {
        font-size: var(--text-24) !important;
    }
    .xl\:text-30 {
        font-size: var(--text-30) !important;
    }
    .xl\:text-36 {
        font-size: var(--text-36) !important;
    }
    .xl\:text-38 {
        font-size: var(--text-38) !important;
    }
    .xl\:text-40 {
        font-size: var(--text-40) !important;
    }
    .xl\:text-44 {
        font-size: var(--text-44) !important;
    }
    .xl\:text-55 {
        font-size: var(--text-55) !important;
    }
    .xl\:text-62 {
        font-size: var(--text-62) !important;
    }
    .xl\:text-72 {
        font-size: var(--text-72) !important;
    }
    .xl\:text-82 {
        font-size: var(--text-82) !important;
    }
}

@media (max-width: 991px) {
    .lg\:text-14 {
        font-size: var(--text-14) !important;
    }
    .lg\:text-15 {
        font-size: var(--text-15) !important;
    }
    .lg\:text-16 {
        font-size: var(--text-16) !important;
    }
    .lg\:text-18 {
        font-size: var(--text-18) !important;
    }
    .lg\:text-20 {
        font-size: var(--text-20) !important;
    }
    .lg\:text-24 {
        font-size: var(--text-24) !important;
    }
    .lg\:text-30 {
        font-size: var(--text-30) !important;
    }
    .lg\:text-36 {
        font-size: var(--text-36) !important;
    }
    .lg\:text-38 {
        font-size: var(--text-38) !important;
    }
    .lg\:text-40 {
        font-size: var(--text-40) !important;
    }
    .lg\:text-44 {
        font-size: var(--text-44) !important;
    }
    .lg\:text-55 {
        font-size: var(--text-55) !important;
    }
    .lg\:text-62 {
        font-size: var(--text-62) !important;
    }
    .lg\:text-72 {
        font-size: var(--text-72) !important;
    }
    .lg\:text-82 {
        font-size: var(--text-82) !important;
    }
}

@media (max-width: 767px) {
    .md\:text-14 {
        font-size: var(--text-14) !important;
    }
    .md\:text-15 {
        font-size: var(--text-15) !important;
    }
    .md\:text-16 {
        font-size: var(--text-16) !important;
    }
    .md\:text-18 {
        font-size: var(--text-18) !important;
    }
    .md\:text-20 {
        font-size: var(--text-20) !important;
    }
    .md\:text-24 {
        font-size: var(--text-24) !important;
    }
    .md\:text-30 {
        font-size: var(--text-30) !important;
    }
    .md\:text-36 {
        font-size: var(--text-36) !important;
    }
    .md\:text-38 {
        font-size: var(--text-38) !important;
    }
    .md\:text-40 {
        font-size: var(--text-40) !important;
    }
    .md\:text-44 {
        font-size: var(--text-44) !important;
    }
    .md\:text-55 {
        font-size: var(--text-55) !important;
    }
    .md\:text-62 {
        font-size: var(--text-62) !important;
    }
    .md\:text-72 {
        font-size: var(--text-72) !important;
    }
    .md\:text-82 {
        font-size: var(--text-82) !important;
    }
}

@media (max-width: 575px) {
    .sm\:text-14 {
        font-size: var(--text-14) !important;
    }
    .sm\:text-15 {
        font-size: var(--text-15) !important;
    }
    .sm\:text-16 {
        font-size: var(--text-16) !important;
    }
    .sm\:text-18 {
        font-size: var(--text-18) !important;
    }
    .sm\:text-20 {
        font-size: var(--text-20) !important;
    }
    .sm\:text-24 {
        font-size: var(--text-24) !important;
    }
    .sm\:text-30 {
        font-size: var(--text-30) !important;
    }
    .sm\:text-36 {
        font-size: var(--text-36) !important;
    }
    .sm\:text-38 {
        font-size: var(--text-38) !important;
    }
    .sm\:text-40 {
        font-size: var(--text-40) !important;
    }
    .sm\:text-44 {
        font-size: var(--text-44) !important;
    }
    .sm\:text-55 {
        font-size: var(--text-55) !important;
    }
    .sm\:text-62 {
        font-size: var(--text-62) !important;
    }
    .sm\:text-72 {
        font-size: var(--text-72) !important;
    }
    .sm\:text-82 {
        font-size: var(--text-82) !important;
    }
}

@media (max-width: 479px) {
    .xs\:text-14 {
        font-size: var(--text-14) !important;
    }
    .xs\:text-15 {
        font-size: var(--text-15) !important;
    }
    .xs\:text-16 {
        font-size: var(--text-16) !important;
    }
    .xs\:text-18 {
        font-size: var(--text-18) !important;
    }
    .xs\:text-20 {
        font-size: var(--text-20) !important;
    }
    .xs\:text-24 {
        font-size: var(--text-24) !important;
    }
    .xs\:text-30 {
        font-size: var(--text-30) !important;
    }
    .xs\:text-36 {
        font-size: var(--text-36) !important;
    }
    .xs\:text-38 {
        font-size: var(--text-38) !important;
    }
    .xs\:text-40 {
        font-size: var(--text-40) !important;
    }
    .xs\:text-44 {
        font-size: var(--text-44) !important;
    }
    .xs\:text-55 {
        font-size: var(--text-55) !important;
    }
    .xs\:text-62 {
        font-size: var(--text-62) !important;
    }
    .xs\:text-72 {
        font-size: var(--text-72) !important;
    }
    .xs\:text-82 {
        font-size: var(--text-82) !important;
    }
}

.lh-1 {
    line-height: 1 !important;
}

.lh-11 {
    line-height: 1.1 !important;
}

.lh-12 {
    line-height: 1.2 !important;
}

.lh-13 {
    line-height: 1.3 !important;
}

.lh-14 {
    line-height: 1.4 !important;
}

.lh-15 {
    line-height: 1.5 !important;
}

.lh-16 {
    line-height: 1.6 !important;
}

.lh-17 {
    line-height: 1.7 !important;
}

.lh-18 {
    line-height: 1.8 !important;
}

.lh-19 {
    line-height: 1.9 !important;
}

.lh-2 {
    line-height: 2 !important;
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

@media (max-width: 1199px) {
    .xl\:text-center {
        text-align: center !important;
    }
    .xl\:text-right {
        text-align: right !important;
    }
    .xl\:text-left {
        text-align: left !important;
    }
}

@media (max-width: 991px) {
    .lg\:text-center {
        text-align: center !important;
    }
    .lg\:text-right {
        text-align: right !important;
    }
    .lg\:text-left {
        text-align: left !important;
    }
}

@media (max-width: 767px) {
    .md\:text-center {
        text-align: center !important;
    }
    .md\:text-right {
        text-align: right !important;
    }
    .md\:text-left {
        text-align: left !important;
    }
}

@media (max-width: 575px) {
    .sm\:text-center {
        text-align: center !important;
    }
    .sm\:text-right {
        text-align: right !important;
    }
    .sm\:text-left {
        text-align: left !important;
    }
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.header.-type-1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 130px;
    color: white;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-1 {
        height: auto;
    }
}

.header.-type-1 .header__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 991px) {
    .header.-type-1 .header__container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .header.-type-1 .header__container {
        padding: 30px;
    }
}

.header.-type-1 .header__left {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-1 .header__left {
        width: 100%;
        justify-content: space-between;
    }
    .header.-type-1 .header__left>*:nth-child(1) {
        order: 2;
    }
    .header.-type-1 .header__left>*:nth-child(2) {
        order: 1;
    }
}

.header.-type-1 .header__menuBtn {
    display: flex;
    align-items: center;
    color: white;
}

.header.-type-1 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-1 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.header.-type-1 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: white;
}

.header.-type-1 .header__menuBtn span {
    margin-left: 15px;
}

.header.-type-1 .header__logo {
    position: relative;
    margin-left: 110px;
    z-index: 0;
}

@media (max-width: 991px) {
    .header.-type-1 .header__logo {
        margin-left: 50px;
    }
}

@media (max-width: 767px) {
    .header.-type-1 .header__logo {
        margin-left: 0;
        max-width: 140px;
    }
}

.header.-type-1 .header__logo>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.header.-type-1 .header__right {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-1 .header__right {
        display: none;
    }
}

.header.-type-1 .header__number {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-1 .header__number {
        margin-right: 40px;
    }
}

.header.-type-1 .header__socials {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-1 .header__socials {
        margin-right: 40px;
    }
}

.header.-type-1 .header__socials>a {
    font-size: 15px;
}

.header.-type-1 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-1 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-1 .header__language {
        margin-right: 40px;
    }
}

.header.-type-1 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

.header.-type-1.-dark-always,
.header.-type-1.-dark {
    color: black;
    background-color: white !important;
}

.header.-type-1.-dark-always .header__menuBtn,
.header.-type-1.-dark .header__menuBtn {
    color: var(--color-dark-1) !important;
}

.header.-type-1.-dark-always .header__menuBtn i::before,
.header.-type-1.-dark-always .header__menuBtn i::after,
.header.-type-1.-dark .header__menuBtn i::before,
.header.-type-1.-dark .header__menuBtn i::after {
    background-color: var(--color-dark-1) !important;
}

.header.-type-1.-dark-always .header__logo>*:nth-child(1),
.header.-type-1.-dark .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-1.-dark-always .header__logo>*:nth-child(2),
.header.-type-1.-dark .header__logo>*:nth-child(2) {
    opacity: 1;
}

.header.-type-1.-is-sticky {
    background-color: var(--color-dark-1);
}

.header.-type-2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 130px;
    color: white;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-2 {
        height: auto;
    }
}

.header.-type-2 .header__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 767px) {
    .header.-type-2 .header__container {
        padding: 30px;
    }
}

.header.-type-2 .header__left {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-2 .header__left {
        width: 100%;
        justify-content: space-between;
    }
    .header.-type-2 .header__left>*:nth-child(1) {
        order: 2;
    }
    .header.-type-2 .header__left>*:nth-child(2) {
        order: 1;
    }
}

.header.-type-2 .header__menuBtn {
    display: flex;
    align-items: center;
    color: white;
}

.header.-type-2 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-2 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.header.-type-2 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: white;
}

.header.-type-2 .header__menuBtn span {
    margin-left: 15px;
}

.header.-type-2 .header__logo {
    position: relative;
    z-index: 0;
}

@media (max-width: 767px) {
    .header.-type-2 .header__logo {
        max-width: 140px;
    }
}

.header.-type-2 .header__logo>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.header.-type-2 .header__right {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-2 .header__right {
        display: none;
    }
}

.header.-type-2 .header__number {
    margin-right: 60px;
}

.header.-type-2 .header__socials {
    margin-right: 60px;
}

.header.-type-2 .header__socials>a {
    font-size: 15px;
}

.header.-type-2 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-2 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.header.-type-2 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

.header.-type-2.-dark {
    color: black;
    background-color: white !important;
}

.header.-type-2.-dark .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-2.-dark .header__logo>*:nth-child(2) {
    opacity: 1;
}

.header.-type-2.-is-sticky {
    background-color: var(--color-dark-1);
}

.header.-type-3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    height: 110px;
    color: white;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-3 {
        align-items: center;
        height: 90px;
    }
}

.header.-type-3 .header__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 60px;
    border-bottom: 1px solid white;
}

@media (max-width: 991px) {
    .header.-type-3 .header__container {
        margin: 0 40px;
    }
}

@media (max-width: 767px) {
    .header.-type-3 .header__container {
        height: 100%;
        padding: 0 30px;
        margin: 0;
    }
}

.header.-type-3 .header__left {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-3 .header__left {
        width: 100%;
        justify-content: space-between;
    }
    .header.-type-3 .header__left>*:nth-child(1) {
        order: 2;
    }
    .header.-type-3 .header__left>*:nth-child(2) {
        order: 1;
    }
}

.header.-type-3 .header__menuBtn {
    display: flex;
    align-items: center;
    color: white;
}

.header.-type-3 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-3 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.header.-type-3 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: white;
}

.header.-type-3 .header__menuBtn span {
    margin-left: 15px;
}

.header.-type-3 .header__line {
    background-color: white;
    width: 1px;
    height: 82px;
}

.header.-type-3 .header__logo {
    position: relative;
    z-index: 0;
}

@media (max-width: 767px) {
    .header.-type-3 .header__logo {
        margin-left: 0;
        max-width: 140px;
    }
}

.header.-type-3 .header__logo>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.header.-type-3 .header__right {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-3 .header__right {
        display: none;
    }
}

.header.-type-3 .header__number {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-3 .header__number {
        margin-right: 40px;
    }
}

.header.-type-3 .header__socials {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-3 .header__socials {
        margin-right: 40px;
    }
}

.header.-type-3 .header__socials>a {
    font-size: 15px;
}

.header.-type-3 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-3 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-3 .header__language {
        margin-right: 40px;
    }
}

.header.-type-3 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

.header.-type-3.-dark {
    color: black;
    background-color: white !important;
}

.header.-type-3.-dark .header__menuBtn {
    color: var(--color-dark-1) !important;
}

.header.-type-3.-dark .header__menuBtn i::before,
.header.-type-3.-dark .header__menuBtn i::after {
    background-color: var(--color-dark-1) !important;
}

.header.-type-3.-dark .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-3.-dark .header__logo>*:nth-child(2) {
    opacity: 1;
}

.header.-type-3.-dark .header__button {
    border: 1px solid black;
    padding: 12px 0;
    color: black !important;
}

.header.-type-3.-is-sticky {
    background-color: var(--color-dark-1);
}

.header.-type-4 {
    position: absolute;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 130px;
    color: white;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-4 {
        height: auto;
    }
}

.header.-type-4 .header__container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 767px) {
    .header.-type-4 .header__container {
        padding: 30px;
    }
}

.header.-type-4 .header__left {
    display: none;
}

@media (max-width: 767px) {
    .header.-type-4 .header__left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .header.-type-4 .header__left>*:nth-child(1) {
        order: 2;
    }
    .header.-type-4 .header__left>*:nth-child(2) {
        order: 1;
    }
}

.header.-type-4 .header__menuBtn {
    display: flex;
    align-items: center;
}

.header.-type-4 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-4 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.header.-type-4 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: white;
}

.header.-type-4 .header__menuBtn span {
    margin-left: 15px;
}

.header.-type-4 .header__logo {
    position: relative;
    margin-left: 110px;
    z-index: 0;
}

@media (max-width: 767px) {
    .header.-type-4 .header__logo {
        margin-left: 0;
        max-width: 140px;
    }
}

.header.-type-4 .header__logo>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.header.-type-4 .header__right {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-4 .header__right {
        display: none;
    }
}

.header.-type-4 .header__number {
    margin-right: 60px;
}

.header.-type-4 .header__socials {
    margin-right: 60px;
}

.header.-type-4 .header__socials>a {
    font-size: 15px;
}

.header.-type-4 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-4 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.header.-type-4 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

.header.-type-4.-dark {
    color: black;
    background-color: white !important;
}

.header.-type-4.-dark .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-4.-dark .header__logo>*:nth-child(2) {
    opacity: 1;
}

.header.-type-4.-is-sticky {
    background-color: var(--color-dark-3);
}

main.-menuSidebarMargin {
    padding-left: 80px;
}

@media (max-width: 767px) {
    main.-menuSidebarMargin {
        padding-left: 0;
    }
}

.menuSidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 65px 0;
    width: 80px;
    background-color: var(--color-dark-3);
    color: white;
    z-index: 700;
}

@media (max-width: 767px) {
    .menuSidebar {
        display: none;
    }
}

.menuSidebar__menuBtn {
    display: flex;
    color: white;
}

.menuSidebar__menuBtn i {
    font-size: 25px;
}

.menuSidebar__arrow {
    display: flex;
}

.menuSidebar__arrow i {
    font-size: 22px;
}

.header.-type-5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 130px;
    color: white;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-5 {
        height: auto;
    }
}

.header.-type-5 .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 991px) {
    .header.-type-5 .header__container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .header.-type-5 .header__container {
        padding: 30px;
    }
}

.header.-type-5 .header__left {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header.-type-5 .header__left {
        display: none;
    }
}

.header.-type-5 .header__menuBtn {
    display: none;
    align-items: center;
    color: white;
}

@media (max-width: 991px) {
    .header.-type-5 .header__menuBtn {
        display: flex;
    }
}

.header.-type-5 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-5 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.header.-type-5 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: white;
}

.header.-type-5 .header__menuBtn span {
    margin-left: 15px;
}

.header.-type-5 .header__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .header.-type-5 .header__center {
        position: relative;
        left: unset;
        transform: none;
    }
}

.header.-type-5 .header__logo {
    position: relative;
    z-index: 0;
}

@media (max-width: 767px) {
    .header.-type-5 .header__logo {
        max-width: 140px;
    }
}

.header.-type-5 .header__logo>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.header.-type-5 .header__right {
    display: flex;
    align-items: center;
}

.header.-type-5 .header__number {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-5 .header__number {
        margin-right: 40px;
    }
}

.header.-type-5 .header__socials {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-5 .header__socials {
        margin-right: 40px;
    }
}

.header.-type-5 .header__socials>a {
    font-size: 15px;
}

.header.-type-5 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-5 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-5 .header__language {
        margin-right: 40px;
    }
}

.header.-type-5 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

.header.-type-5.-dark-always,
.header.-type-5.-dark {
    color: black;
    background-color: white !important;
}

.header.-type-5.-dark-always .header__menuBtn,
.header.-type-5.-dark .header__menuBtn {
    color: var(--color-dark-1) !important;
}

.header.-type-5.-dark-always .header__menuBtn i::before,
.header.-type-5.-dark-always .header__menuBtn i::after,
.header.-type-5.-dark .header__menuBtn i::before,
.header.-type-5.-dark .header__menuBtn i::after {
    background-color: var(--color-dark-1) !important;
}

.header.-type-5.-dark-always .header__logo>*:nth-child(1),
.header.-type-5.-dark .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-5.-dark-always .header__logo>*:nth-child(2),
.header.-type-5.-dark .header__logo>*:nth-child(2) {
    opacity: 1;
}

.header.-type-5.-is-sticky {
    background-color: var(--color-dark-1);
}

.headerMenu {
    display: flex;
}

.headerMenu__item {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    color: white;
    font-size: 16px;
    line-height: 1;
}

.headerMenu__item+* {
    margin-left: 30px;
}

.headerMenu__item a {
    transition: .1s;
}

.headerMenu__item a:hover {
    color: currentColor;
    text-decoration: underline;
}

.headerMenu__item .headerMenuSubnav a:hover {
    color: var(--color-theme);
    text-decoration: none;
}

.headerMenu__item:hover>.headerMenuSubnav {
    pointer-events: auto;
    opacity: 1;
}

.headerMenuSubnav {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: white;
    padding: 20px 0;
    min-width: 250px;
    max-width: 100%;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.headerMenuSubnav__item {
    position: relative;
}

.headerMenuSubnav__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    padding: 12px 30px;
}

.headerMenuSubnav__item a i {
    font-size: 10px;
}

.headerMenuSubnav__item>.headerMenuSubnav {
    top: unset;
    left: unset;
    left: 100%;
    top: 0;
}

.headerMenuSubnav__item:hover>.headerMenuSubnav {
    pointer-events: auto;
    opacity: 1;
}

.header.-type-6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 100px;
    padding-top: 5px;
    color: white;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
}

@media (max-width: 767px) {
    .header.-type-6 {
        height: auto;
    }
}

.header.-type-6 .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 991px) {
    .header.-type-6 .header__container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .header.-type-6 .header__container {
        padding: 30px;
    }
}

.header.-type-6 .header__left {
    display: flex;
    align-items: center;
}

.header.-type-6 .header__menuBtn {
    display: none;
    align-items: center;
    color: white;
}

@media (max-width: 1199px) {
    .header.-type-6 .header__menuBtn {
        display: flex;
    }
}

.header.-type-6 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-6 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.header.-type-6 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: white;
}

.header.-type-6 .header__menuBtn span {
    margin-left: 15px;
}

.header.-type-6 .header__logo {
    position: relative;
    z-index: 0;
    margin-right: 120px;
}

.header.-type-6 .header__logo img {
    width: 240px;
}

@media (max-width: 1399px) {
    .header.-type-6 .header__logo {
        margin-right: 80px;
    }
}

@media (max-width: 1199px) {
    .header.-type-6 .header__logo {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .header.-type-6 .header__logo {
        max-width: 140px;
    }
}

.header.-type-6 .header__logo>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.header.-type-6 .header__right {
    display: flex;
    align-items: center;
}

.header.-type-6 .header__number {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-6 .header__number {
        margin-right: 40px;
    }
}

@media (max-width: 1199px) {
    .header.-type-6 .header__button {
        margin-left: 30px;
    }
}

.header.-type-6 .header__socials {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-6 .header__socials {
        margin-right: 40px;
    }
}

.header.-type-6 .header__socials>a {
    font-size: 15px;
}

.header.-type-6 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-6 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-6 .header__language {
        margin-right: 40px;
    }
}

.header.-type-6 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

@media (max-width: 1199px) {
    .header.-type-6 .headerMenu {
        display: none;
    }
}

.header.-type-6.-dark-always,
.header.-type-6.-dark {
    color: black;
    background-color: white !important;
}

.header.-type-6.-dark-always .header__menuBtn,
.header.-type-6.-dark .header__menuBtn {
    color: var(--color-dark-1) !important;
}

.header.-type-6.-dark-always .header__menuBtn i::before,
.header.-type-6.-dark-always .header__menuBtn i::after,
.header.-type-6.-dark .header__menuBtn i::before,
.header.-type-6.-dark .header__menuBtn i::after {
    background-color: var(--color-dark-1) !important;
}

.header.-type-6.-dark-always .header__logo>*:nth-child(1),
.header.-type-6.-dark .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-6.-dark-always .header__logo>*:nth-child(2),
.header.-type-6.-dark .header__logo>*:nth-child(2) {
    opacity: 1;
}

.header.-type-6.-dark-always .header__button,
.header.-type-6.-dark .header__button {
    border-color: var(--color-dark-1);
    color: var(--color-dark-1);
}

.header.-type-6.-is-sticky {
    background-color: #022768;
}

.header.-type-7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 130px;
    color: black;
    background-color: white !important;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-7 {
        height: auto;
    }
}

.header.-type-7 .header__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 767px) {
    .header.-type-7 .header__container {
        padding: 30px;
    }
}

.header.-type-7 .header__left {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-7 .header__left {
        width: 100%;
        justify-content: space-between;
    }
    .header.-type-7 .header__left>*:nth-child(1) {
        order: 2;
    }
    .header.-type-7 .header__left>*:nth-child(2) {
        order: 1;
    }
}

.header.-type-7 .header__menuBtn {
    display: none;
    align-items: center;
    color: black;
}

@media (max-width: 1199px) {
    .header.-type-7 .header__menuBtn {
        display: flex;
        margin-left: 30px;
    }
}

.header.-type-7 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-7 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: black;
}

.header.-type-7 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: black;
}

.header.-type-7 .header__menuBtn span {
    margin-left: 15px;
}

.header.-type-7 .header__logo {
    position: relative;
    z-index: 0;
}

@media (max-width: 767px) {
    .header.-type-7 .header__logo {
        max-width: 140px;
    }
}

.header.-type-7 .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-7 .header__logo>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
}

.header.-type-7 .header__right {
    display: flex;
    align-items: center;
}

.header.-type-7 .header__number {
    margin-right: 60px;
}

@media (max-width: 1399px) {
    .header.-type-7 .header__number {
        margin-right: 40px;
    }
}

@media (max-width: 991px) {
    .header.-type-7 .header__number {
        display: none;
    }
}

@media (max-width: 767px) {
    .header.-type-7 .header__button {
        display: none;
    }
}

.header.-type-7 .header__socials {
    margin-right: 60px;
}

.header.-type-7 .header__socials>a {
    font-size: 15px;
}

.header.-type-7 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-7 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.header.-type-7 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

.header.-type-7 .headerMenu {
    margin-right: 60px;
}

@media (max-width: 1399px) {
    .header.-type-7 .headerMenu {
        margin-right: 40px;
    }
}

.header.-type-7 .headerMenu a {
    color: black;
}

@media (max-width: 1199px) {
    .header.-type-7 .headerMenu {
        display: none;
    }
}

.header.-type-7.-is-sticky {
    background-color: var(--color-dark-1);
}

.header.-type-9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 120px;
    color: white;
    z-index: 700;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-9 {
        height: auto;
    }
}

.header.-type-9 .header__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-9 .header__container {
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .header.-type-9 .header__container {
        padding: 30px;
    }
}

.header.-type-9 .header__left {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-9 .header__left {
        width: 100%;
        justify-content: space-between;
    }
    .header.-type-9 .header__left>*:nth-child(1) {
        order: 2;
    }
    .header.-type-9 .header__left>*:nth-child(2) {
        order: 1;
    }
}

.header.-type-9 .header__menuBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 120px;
    background-color: var(--color-dark-1);
    color: white;
}

@media (max-width: 767px) {
    .header.-type-9 .header__menuBtn {
        background-color: transparent;
        width: auto;
    }
}

.header.-type-9 .header__menuBtn i {
    position: relative;
    height: 11px;
    width: 25px;
}

.header.-type-9 .header__menuBtn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.header.-type-9 .header__menuBtn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: white;
}

.header.-type-9 .header__logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 225px;
    background-color: var(--color-accent-1);
    z-index: 0;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .header.-type-9 .header__logo {
        background-color: transparent;
        max-width: 140px;
    }
}

.header.-type-9 .header__logo>*:nth-child(2) {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.header.-type-9 .header__right {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header.-type-9 .header__right {
        display: none;
    }
}

.header.-type-9 .header__number {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-9 .header__number {
        margin-right: 40px;
    }
}

.header.-type-9 .header__socials {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-9 .header__socials {
        margin-right: 40px;
    }
}

.header.-type-9 .header__socials>a {
    font-size: 15px;
}

.header.-type-9 .header__socials>a+a {
    margin-left: 20px;
}

.header.-type-9 .header__language {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

@media (max-width: 991px) {
    .header.-type-9 .header__language {
        margin-right: 40px;
    }
}

.header.-type-9 .header__language span {
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: white;
    margin: 0 15px;
}

.header.-type-9.-dark {
    color: black;
    background-color: white !important;
}

.header.-type-9.-dark .header__menuBtn {
    color: var(--color-dark-1) !important;
    background-color: white;
}

.header.-type-9.-dark .header__menuBtn i::before,
.header.-type-9.-dark .header__menuBtn i::after {
    background-color: var(--color-dark-1) !important;
}

.header.-type-9.-dark .header__logo {
    background-color: white !important;
}

.header.-type-9.-dark .header__logo>*:nth-child(1) {
    opacity: 0;
}

.header.-type-9.-dark .header__logo>*:nth-child(2) {
    opacity: 1;
}

.header.-type-9.-dark .header__button {
    border: 1px solid black;
    color: black;
}

.header.-type-9.-is-sticky {
    background-color: var(--color-dark-1);
}

.header.-type-9.-is-sticky .header__logo {
    background-color: var(--color-dark-1);
}

.hero.-type-1 {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero.-type-1 {
        height: 700px;
    }
}

.hero.-type-1 .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #4F80AF 0%, #E3E1DE 100%);
    z-index: -1;
}

.hero.-type-1 .hero__content {
    padding-top: 200px;
}

@media (max-width: 479px) {
    .hero.-type-1 .hero__content {
        padding-top: 120px;
    }
}

.hero.-type-1 .hero__title {
    position: relative;
    overflow: hidden;
    font-size: 8.4vw;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.4;
    line-height: 1;
    color: white;
    text-align: center;
}

@media (max-width: 1199px) {
    .hero.-type-1 .hero__title {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .hero.-type-1 .hero__title {
        font-size: 60px;
    }
}

@media (max-width: 479px) {
    .hero.-type-1 .hero__title {
        padding: 0 20px;
        font-size: 54px;
    }
}

.hero.-type-1 .hero__front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero.-type-1 .hero__front {
        left: -30%;
        width: 200%;
    }
}

@media (max-width: 479px) {
    .hero.-type-1 .hero__front {
        left: -60%;
        width: 290%;
    }
}

.hero.-type-1 .hero__front img {
    width: 100%;
    height: auto;
}

.hero.-type-2 {
    position: relative;
    width: 100%;
    height: 860px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .hero.-type-2 {
        height: 80vh;
    }
}

@media (max-width: 767px) {
    .hero.-type-2 {
        height: 60vh;
    }
}

.hero.-type-2 .container {
    position: relative;
    height: 100%;
}

.hero.-type-2 .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero.-type-2 .hero__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero.-type-2 .hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero.-type-2 .hero__title {
    position: absolute;
    bottom: -70px;
    left: 0;
    text-transform: uppercase;
    color: white;
    font-size: 150px;
    font-weight: 500;
    line-height: 1;
    z-index: 2;
}

@media (max-width: 1199px) {
    .hero.-type-2 .hero__title {
        bottom: -1em;
        font-size: 120px;
    }
}

@media (max-width: 991px) {
    .hero.-type-2 .hero__title {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .hero.-type-2 .hero__title {
        bottom: -0.5em;
        font-size: 72px;
    }
}

@media (max-width: 575px) {
    .hero.-type-2 .hero__title {
        font-size: 12.8vw;
        padding: 0 15px;
    }
}

.hero.-type-2 .hero__buttonDown {
    position: absolute;
    bottom: -50px;
    right: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: var(--color-dark-1);
    border: 1px solid var(--color-accent-1);
    color: white;
    font-size: 20px;
    z-index: 10;
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .hero.-type-2 .hero__buttonDown {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575px) {
    .hero.-type-2 .hero__buttonDown {
        display: none;
    }
}

.hero.-type-3 {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero.-type-3 .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero.-type-3 .hero__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero.-type-3 .hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero.-type-3 .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 300px;
    padding-bottom: 180px;
}

@media (max-width: 767px) {
    .hero.-type-3 .hero__content {
        padding-top: 200px;
        padding-bottom: 120px;
    }
}

@media (max-width: 575px) {
    .hero.-type-3 .hero__content {
        padding-top: 160px;
        padding-bottom: 80px;
    }
}

.hero.-type-3 .hero__subtitle {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .hero.-type-3 .hero__subtitle {
        font-size: 16px;
        line-height: 1.4;
    }
}

.hero.-type-3 .hero__title {
    font-size: 82px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .hero.-type-3 .hero__title {
        font-size: 64px;
    }
}

@media (max-width: 767px) {
    .hero.-type-3 .hero__title {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .hero.-type-3 .hero__title {
        font-size: 42px;
    }
}

.hero.-type-3 .hero__button {
    margin-top: 20px;
}

.hero.-type-4 {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero.-type-4 .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero.-type-4 .hero__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero.-type-4 .hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero.-type-4 .hero__content {
    display: flex;
    flex-direction: column;
    color: white;
    padding-top: 370px;
    padding-bottom: 300px;
}

@media (max-width: 991px) {
    .hero.-type-4 .hero__content {
        padding-top: 300px;
        padding-bottom: 200px;
    }
}

@media (max-width: 767px) {
    .hero.-type-4 .hero__content {
        padding-top: 220px;
        padding-bottom: 120px;
    }
}

@media (max-width: 575px) {
    .hero.-type-4 .hero__content {
        padding-top: 200px;
        padding-bottom: 120px;
    }
}

.hero.-type-4 .hero__subtitle {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .hero.-type-4 .hero__subtitle {
        font-size: 16px;
        line-height: 1.4;
    }
}

.hero.-type-4 .hero__title {
    font-size: 82px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

@media (max-width: 991px) {
    .hero.-type-4 .hero__title {
        font-size: 64px;
    }
}

@media (max-width: 767px) {
    .hero.-type-4 .hero__title {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .hero.-type-4 .hero__title {
        font-size: 42px;
    }
}

.hero.-type-4 .hero__button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid white;
    width: 120px;
    height: 120px;
    margin-top: 35px;
}

@media (max-width: 767px) {
    .hero.-type-4 .hero__button {
        width: 100px;
        height: 100px;
        margin-top: 24px;
    }
}

.hero.-type-5 {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero.-type-5 .hero__lines>* {
    position: absolute;
    top: 144px;
    left: 50%;
    max-width: unset;
    transform: translateX(-50%);
    z-index: -1;
}

.hero.-type-5 .hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 43%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 575px) {
    .hero.-type-5 .hero__bg {
        display: none;
    }
}

.hero.-type-5 .hero__bg>*:nth-child(1) {
    height: 100%;
    width: 100%;
}

.hero.-type-5 .hero__bg>*:nth-child(2) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 64vw;
    max-width: unset;
}

@media (max-width: 991px) {
    .hero.-type-5 .hero__bg>*:nth-child(2) {
        width: 80vw;
    }
}

@media (max-width: 575px) {
    .hero.-type-5 .hero__bg>*:nth-child(2) {
        display: none;
    }
}

.hero.-type-5 .hero__icon {
    position: absolute;
    top: 160px;
    left: -80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: var(--color-accent-1);
    color: white;
    text-align: center;
    z-index: 10;
}

@media (max-width: 767px) {
    .hero.-type-5 .hero__icon {
        display: none;
    }
}

.hero.-type-5 .hero__icon::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    z-index: -1;
}

.hero.-type-5 .hero__icon>*:nth-child(1) {
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.5px;
}

.hero.-type-5 .hero__icon>*:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-top: 10px;
}

.hero.-type-5 .hero__content {
    display: flex;
    flex-direction: column;
    color: white;
    padding: 0 60px;
    padding-top: 290px;
    padding-bottom: 260px;
}

@media (max-width: 991px) {
    .hero.-type-5 .hero__content {
        padding: 0 30px;
        padding-top: 180px;
        padding-bottom: 280px;
    }
}

@media (max-width: 575px) {
    .hero.-type-5 .hero__content {
        padding: 0 15px;
        padding-top: 180px;
        padding-bottom: 120px;
    }
}

.hero.-type-5 .hero__badges {
    display: flex;
    margin-bottom: 25px;
}

.hero.-type-5 .hero__badges>* {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 200px;
}

.hero.-type-5 .hero__badges>*+* {
    margin-left: 15px;
}

.hero.-type-5 .hero__title {
    font-size: 82px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

@media (max-width: 1199px) {
    .hero.-type-5 .hero__title {
        font-size: 72px;
    }
}

@media (max-width: 991px) {
    .hero.-type-5 .hero__title {
        font-size: 64px;
    }
    .hero.-type-5 .hero__title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero.-type-5 .hero__title {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .hero.-type-5 .hero__title {
        font-size: 38px;
        margin-bottom: 15px;
    }
}

.hero.-type-5 .hero__text {
    font-size: 18px;
    line-height: 1.7;
}

.hero.-type-6 {
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
    z-index: 2;
}

@media (max-width: 767px) {
    .hero.-type-6 {
        padding-top: 110px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .hero.-type-6 {
        padding-bottom: 40px;
    }
}

.hero.-type-6 .hero__image {
    position: absolute;
    bottom: -150px;
    right: 0;
    width: 55%;
    height: 800px;
    z-index: -1;
}

@media (max-width: 767px) {
    .hero.-type-6 .hero__image {
        position: relative;
        bottom: unset;
        width: 100%;
        height: 350px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero.-type-6 .hero__image {
        height: 300px;
    }
}

.hero.-type-6 .hero__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero.-type-6 .hero__title {
    text-transform: uppercase;
    font-size: 82px;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .hero.-type-6 .hero__title {
        font-size: 55px;
    }
}

@media (max-width: 575px) {
    .hero.-type-6 .hero__title {
        font-size: 40px;
    }
}

.hero.-type-6 .hero__text {
    margin-top: 6px;
}

.hero.-type-6 .hero__button {
    margin-top: 32px;
}

@media (max-width: 575px) {
    .hero.-type-6 .hero__button {
        margin-top: 20px;
    }
}

.hero.-type-6 .hero__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    font-size: 20px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    margin-top: 120px;
}

@media (max-width: 767px) {
    .hero.-type-6 .hero__arrow {
        display: none;
    }
}

.hero.-type-7 {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.hero.-type-7 .hero__nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    z-index: 1;
}

.hero.-type-7 .hero__nav>* {
    background-color: white;
    color: black;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer
}

.hero.-type-7 .hero__nav>*:hover {
    background-color: var(--color-accent-2);
}

.hero.-type-7 .hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero.-type-7 .hero__bg::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero.-type-7 .hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero.-type-7 .hero__content {
    display: flex;
    flex-direction: column;
    color: white;
    padding-top: 280px;
    padding-bottom: 260px;
    text-shadow: 0px 0px 5px #00000094;
}

.hero.-type-7 .hero__subtitle {
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.hero.-type-7 .hero__title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

@media (max-width: 991px) {
    .hero.-type-7 .hero__title {
        font-size: 64px;
    }
}

@media (max-width: 767px) {
    .hero.-type-7 .hero__title {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .hero.-type-7 .hero__title {
        font-size: 42px;
    }
}

.hero.-type-8 {
    position: relative;
    margin: 20px;
    margin-bottom: 0;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero.-type-8 {
        padding-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .hero.-type-8 {
        margin: 0;
    }
}

.hero.-type-8 .hero__content {
    color: white;
    padding: 280px 0;
}

@media (max-width: 1199px) {
    .hero.-type-8 .hero__content {
        padding-top: 200px;
        padding-bottom: 360px;
    }
}

@media (max-width: 991px) {
    .hero.-type-8 .hero__content {
        padding-top: 180px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .hero.-type-8 .hero__content {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.hero.-type-8 .hero__bg {
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 12px;
    z-index: -1;
}

@media (max-width: 575px) {
    .hero.-type-8 .hero__bg {
        border-radius: 0;
    }
}

.hero.-type-8 .hero__bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero.-type-8 .hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero.-type-8 .hero__subtitle {
    display: flex;
    margin-bottom: 30px;
}

.hero.-type-8 .hero__title {
    font-size: 82px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 1199px) {
    .hero.-type-8 .hero__title {
        font-size: 72px;
    }
}

@media (max-width: 767px) {
    .hero.-type-8 .hero__title {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .hero.-type-8 .hero__title {
        font-size: 44px;
    }
}

.hero.-type-8 .hero__text {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 10px;
}

.hero.-type-8 .heroForm {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 450px;
    max-width: 100%;
    padding: 50px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0px 24px 128px 0px #00000024;
}

@media (max-width: 991px) {
    .hero.-type-8 .heroForm {
        position: relative;
        bottom: unset;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero.-type-8 .heroForm {
        padding: 30px;
    }
}

.hero.-type-8 .heroForm__title {
    margin-bottom: 30px;
}

.hero.-type-9 {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero.-type-9 {
        height: 80vh;
    }
}

.hero.-type-9 .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

@media (max-width: 767px) {
    .hero.-type-9 .hero__bg {
        height: 80vh;
    }
}

.hero.-type-9 .hero__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero.-type-9 .hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero.-type-9 .hero__nav {
    position: absolute;
    top: 50%;
    left: 60px;
    display: flex;
    flex-direction: column;
    color: white;
    transform: translateY(-50%);
    z-index: 5;
}

@media (max-width: 991px) {
    .hero.-type-9 .hero__nav {
        left: 40px;
    }
}

@media (max-width: 767px) {
    .hero.-type-9 .hero__nav {
        left: 20px;
    }
}

@media (max-width: 575px) {
    .hero.-type-9 .hero__nav {
        position: absolute;
        flex-direction: row;
        top: unset;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
    }
}

.hero.-type-9 .hero__nav>* {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 32px;
    background-color: transparent;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.5;
}

@media (max-width: 767px) {
    .hero.-type-9 .hero__nav>* {
        height: 50px;
        padding: 0 16px;
    }
}

@media (max-width: 575px) {
    .hero.-type-9 .hero__nav>* {
        height: 40px;
        padding: 0 12px;
    }
}

.hero.-type-9 .hero__nav>*::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: white;
    transition: all 0.2 cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

@media (max-width: 575px) {
    .hero.-type-9 .hero__nav>*::before {
        top: unset;
        width: 100%;
        height: 1px;
    }
}

.hero.-type-9 .hero__nav>*.swiper-pagination-bullet-active {
    opacity: 1;
}

.hero.-type-9 .hero__nav>*.swiper-pagination-bullet-active::before {
    opacity: 1;
}

.hero.-type-9 .hero__lines>* {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hero.-type-9 .hero__lines>*:nth-child(1) {
    left: 60px;
}

.hero.-type-9 .hero__lines>*:nth-child(2) {
    right: 60px;
}

@media (max-width: 991px) {
    .hero.-type-9 .hero__lines>*:nth-child(1) {
        left: 40px;
    }
    .hero.-type-9 .hero__lines>*:nth-child(2) {
        right: 40px;
    }
}

@media (max-width: 767px) {
    .hero.-type-9 .hero__lines>*:nth-child(1) {
        left: 20px;
    }
    .hero.-type-9 .hero__lines>*:nth-child(2) {
        right: 20px;
    }
}

@media (max-width: 575px) {
    .hero.-type-9 .hero__lines>*:nth-child(1) {
        left: 15px;
    }
    .hero.-type-9 .hero__lines>*:nth-child(2) {
        right: 15px;
    }
}

.hero.-type-9 .hero__content {
    display: flex;
    flex-direction: column;
    color: white;
    padding-top: 265px;
    padding-bottom: 265px;
}

@media (max-width: 1199px) {
    .hero.-type-9 .hero__content {
        padding-top: 240px;
        padding-bottom: 180px;
    }
}

@media (max-width: 575px) {
    .hero.-type-9 .hero__content {
        padding-top: 180px;
        padding-bottom: 150px;
    }
}

.hero.-type-9 .hero__subtitle {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .hero.-type-9 .hero__subtitle {
        font-size: 16px;
        line-height: 1.4;
    }
}

.hero.-type-9 .hero__title {
    font-size: 82px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .hero.-type-9 .hero__title {
        font-size: 64px;
    }
}

@media (max-width: 767px) {
    .hero.-type-9 .hero__title {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .hero.-type-9 .hero__title {
        font-size: 38px;
    }
}

.hero.-type-9 .hero__button {
    margin-top: 20px;
}

.hero.-type-10 {
    position: relative;
    height: 100vh;
    z-index: 0;
    padding-top: 120px;
}

@media (max-width: 575px) {
    .hero.-type-10 {
        padding-top: 18vh;
    }
}

.hero.-type-10 .container {
    height: 100%;
}

.hero.-type-10 .row {
    height: 100%;
}

.hero.-type-10 .hero__lines {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 180px;
    right: 180px;
    display: flex;
    justify-content: space-between;
    z-index: -1;
}

@media (max-width: 991px) {
    .hero.-type-10 .hero__lines {
        left: 100px;
        right: 100px;
    }
}

@media (max-width: 767px) {
    .hero.-type-10 .hero__lines {
        left: 20px;
        right: 20px;
    }
}

.hero.-type-10 .hero__lines>* {
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero.-type-10 .hero__slider {
    height: 100%;
}

.hero.-type-10 .hero__title {
    position: relative;
    width: calc(100% + 100px);
    letter-spacing: 2.5px;
}

@media (max-width: 1399px) {
    .hero.-type-10 .hero__title {
        width: calc(100% + 200px);
    }
}

@media (max-width: 991px) {
    .hero.-type-10 .hero__title {
        width: 100%;
    }
}

.hero.-type-10 .hero__list {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.hero.-type-10 .hero__list li {
    list-style: disc inside;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .hero.-type-10 .hero__list li {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .hero.-type-10 .hero__list li {
        margin-bottom: 10px;
    }
}

.hero.-type-10 .hero__image {
    height: 100%;
}

.hero.-type-10 .hero__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero.-type-10 .hero__image img {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .hero.-type-10 .hero__image img {
        height: 40vh;
    }
}

.hero.-type-10 .hero__pagination {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero.-type-10 .hero__pagination>* {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: white;
}

.hero.-type-10 .hero__pagination>*::after {
    content: "";
    position: absolute;
    border: 1px solid white;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero.-type-10 .hero__pagination>*+* {
    margin-top: 20px;
}

.hero.-type-10 .hero__pagination>*.is-active::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .hero.-type-10 .hero__pagination {
        right: unset;
        top: unset;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
    .hero.-type-10 .hero__pagination>*+* {
        margin-top: 0;
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .hero.-type-10 .hero__pagination>*::after {
        width: 20px;
        height: 20px;
    }
    .hero.-type-10 .hero__pagination>*+* {
        margin-left: 15px;
    }
}

.imageCard.-type-1 {
    position: relative;
    z-index: 0;
}

.imageCard.-type-1 .imageCard__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.imageCard.-type-1 .imageCard__title {
    position: absolute;
    bottom: 100px;
    left: 100px;
    font-size: 24px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 991px) {
    .imageCard.-type-1 .imageCard__title {
        bottom: 50px;
        left: 50px;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .imageCard.-type-1 .imageCard__title {
        bottom: 30px;
        left: 30px;
    }
}

.imageCard.-type-2 .imageCard__image {
    margin-bottom: 30px;
}

.imageCard.-type-2 .imageCard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
}

.imageCard.-type-2 .imageCard__text {
    line-height: 30px;
}

.imageCard.-type-3 {
    position: relative;
}

.imageCard.-type-3 .imageCard__image {
    position: relative;
    z-index: 0;
}

.imageCard.-type-3 .imageCard__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(24, 29, 36, 0) 0%, #181D24 100%);
    z-index: -1;
}

.imageCard.-type-3 .imageCard__content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 30px;
    color: white;
}

.imageCard.-type-3 .imageCard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
}

.imageCard.-type-3 .imageCard__text {
    line-height: 30px;
}

.imageCard.-type-4 {
    position: relative;
}

.imageCard.-type-4 .imageCard__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    margin: 20px;
    background-color: white;
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.imageCard.-type-4 .imageCard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    color: var(--color-dark-1);
}

.imageCard.-type-4 .imageCard__text {
    line-height: 30px;
    color: var(--color-dark-1);
}

.imageCard.-type-4:hover .imageCard__content {
    transform: none;
    opacity: 1;
}

.imageCard.-type-5 {
    position: relative;
    z-index: 0;
}

.imageCard.-type-5 .imageCard__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.imageCard.-type-5 .imageCard__content {
    position: absolute;
    bottom: 100px;
    left: 100px;
}

@media (max-width: 991px) {
    .imageCard.-type-5 .imageCard__content {
        bottom: 50px;
        left: 50px;
    }
}

@media (max-width: 575px) {
    .imageCard.-type-5 .imageCard__content {
        bottom: 30px;
        left: 30px;
    }
}

.imageCard.-type-5 .imageCard__title {
    font-size: 24px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 991px) {
    .imageCard.-type-5 .imageCard__title {
        font-size: 20px;
    }
}

.imageCard.-type-5 .imageCard__text {
    text-transform: uppercase;
}

.iconCard.-type-1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #64616133;
}

.iconCard.-type-1 .iconCard__content {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}

.iconCard.-type-1 .iconCard__icon {
    font-size: 50px;
}

.iconCard.-type-1 .iconCard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 14px;
}

.iconCard.-type-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.iconCard.-type-2 .iconCard__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    font-size: 40px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    margin: 0 auto;
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .iconCard.-type-2 .iconCard__icon {
        margin-bottom: 20px;
    }
}

.iconCard.-type-2 .iconCard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
}

.iconCard.-type-2 .iconCard__text {
    margin-top: 6px;
}

.iconCard.-type-2:hover .iconCard__icon {
    color: white;
    background-color: var(--color-accent-1);
}

.iconCard.-type-2:hover .iconCard__title {
    color: white;
}

.iconCard.-type-2:hover .iconCard__text {
    color: white;
}

.iconCard.-type-2.-hover-2:hover .iconCard__icon {
    color: white;
    background-color: var(--color-accent-1);
}

.iconCard.-type-2.-hover-2:hover .iconCard__title {
    color: black;
}

.iconCard.-type-2.-hover-2:hover .iconCard__text {
    color: black;
}

.iconCard.-type-2.-dark:hover .iconCard__icon {
    color: white;
    background-color: var(--color-accent-1);
}

.iconCard.-type-2.-dark:hover .iconCard__title {
    color: black;
}

.iconCard.-type-2.-dark:hover .iconCard__text {
    color: black;
}

.iconCard.-type-2.-light .iconCard__icon {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.iconCard.-type-2.-light:hover .iconCard__icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.iconCard.-type-3 {
    display: flex;
}

@media (max-width: 575px) {
    .iconCard.-type-3 {
        flex-direction: column;
    }
}

.iconCard.-type-3 .iconCard__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    font-size: 40px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    margin-right: 20px;
}

@media (max-width: 575px) {
    .iconCard.-type-3 .iconCard__icon {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 12px;
    }
}

.iconCard.-type-3 .iconCard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
}

.iconCard.-type-3 .iconCard__text {
    margin-top: 6px;
}

.iconCard.-type-4 .iconCard__content {
    position: relative;
}

.iconCard.-type-4 .iconCard__icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    color: var(--color-accent-1);
    font-size: 126px;
    z-index: 1;
    opacity: 0.2;
}

.iconCard.-type-4 .iconCard__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.iconCard.-type-4 .iconCard__text {
    margin-top: 14px;
}

.iconCard.-type-4 .iconCard__button {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 32px;
    text-transform: uppercase;
    margin-top: 30px;
}

.iconCard.-type-4 .iconCard__button span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    margin-right: 15px;
}

.iconCard.-type-4 .iconCard__button span i {
    font-size: 16px;
}

.numberCard.-type-1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.numberCard.-type-1 .numberCard__number {
    font-size: 150px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.5px;
    text-align: center;
    color: #F7F0EC;
}

@media (max-width: 991px) {
    .numberCard.-type-1 .numberCard__number {
        font-size: 100px;
    }
}

@media (max-width: 575px) {
    .numberCard.-type-1 .numberCard__number {
        font-size: 90px;
    }
}

.numberCard.-type-1 .numberCard__title {
    position: absolute;
    z-index: 1;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
}

.blogCard.-type-1 .blogCard__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    border: 1px solid var(--color-accent-1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
    .blogCard.-type-1 .blogCard__content {
        min-height: 410px;
    }
}

.blogCard.-type-1 .blogCard__tag {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-1 .blogCard__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-1 .blogCard__date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-1 .blogCard__date>*:nth-child(1) {
    font-size: 62px;
    font-weight: 500;
    line-height: 76px;
    letter-spacing: 2.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-1 .blogCard__date>*:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-1:hover .blogCard__title {
    color: white;
}

.blogCard.-type-1:hover .blogCard__date>* {
    color: white;
}

.blogCard.-type-1.-hover-accent:hover .blogCard__content {
    background-color: var(--color-accent-1);
    border-color: transparent;
}

.blogCard.-type-2 .blogCard__image {
    position: relative;
    z-index: 0;
}

.blogCard.-type-2 .blogCard__date {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    z-index: 1;
}

.blogCard.-type-2 .blogCard__date>*:nth-child(1) {
    font-size: 62px;
    font-weight: 500;
    line-height: 76px;
    letter-spacing: 2.5px;
}

.blogCard.-type-2 .blogCard__date>*:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

.blogCard.-type-3 .blogCard__date {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    color: white;
}

@media (max-width: 767px) {
    .blogCard.-type-3 .blogCard__date {
        padding: 20px 20px;
    }
}

.blogCard.-type-3 .blogCard__date>*:nth-child(1) {
    font-size: 62px;
    font-weight: 500;
    line-height: 76px;
    letter-spacing: 2.5px;
}

.blogCard.-type-3 .blogCard__date>*:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

.blogCard.-type-3 .blogCard__tag {
    font-size: 23px;
    font-weight: 600;
    line-height: 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-left: 10px;
}

.blogCard.-type-3 .blogCard__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-left: 10px;
}


/* .blogCard.-type-3:hover .blogCard__content {

  background-color: var(--color-dark-1);

  border-color: transparent;

} */

.blogCard.-type-3:hover .blogCard__tag {
    color: #000;
}

.blogCard.-type-3:hover .blogCard__title {
    color: #000;
}

.blogCard.-type-3:hover .blogCard__date>* {
    color: #000;
}

.blogCard.-type-3.-hover-accent:hover .blogCard__content {
    background-color: var(--color-accent-1);
    border-color: transparent;
}

.blogCard.-type-3.-hover-light:hover .blogCard__content {
    background-color: transparent;
}

.blogCard.-type-3.-hover-light:hover .blogCard__tag {
    color: var(--color-accent-1);
}

.blogCard.-type-3.-hover-light:hover .blogCard__title {
    color: var(--color-accent-1);
}

.blogCard.-type-3.-hover-light:hover .blogCard__date>* {
    color: white;
}

.testimonials.-type-1 .testimonials__image {
    flex-shrink: 0;
    width: 210px;
    height: 210px;
}

@media (max-width: 767px) {
    .testimonials.-type-1 .testimonials__image {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }
}

.testimonials.-type-1 .testimonials__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
}

.testimonials.-type-1 .testimonials__icon {
    margin-bottom: 35px;
}

.testimonials.-type-1 .testimonials__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .testimonials.-type-1 .testimonials__text {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.testimonials.-type-1 .testimonials__name {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
}

.testimonials.-type-1 .testimonials__position {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
}

.mapPlaces .mapPlaces__map {
    position: relative;
    /* right: -100px; */
}

@media (max-width: 767px) {
    .mapPlaces .mapPlaces__map {
        right: 0;
    }
}

.mapPlaces .mapPlacesCard {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.3;
    border-bottom: 2px solid #fff
}

.mapPlaces .mapPlacesCard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
}

.mapPlaces .mapPlacesCard__caption {
    font-size: 16px;
    line-height: 30px;
}

.mapPlaces .mapPlacesCard__image {
    /* width: 100px;

  height: 79px; */
}

@media (max-width: 767px) {
    .mapPlaces .mapPlacesCard__image {
        width: 120px;
        height: 120px;
    }
}

.mapPlaces .mapPlacesCard__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.mapPlaces .mapPlacesCard.isCardActive {
    opacity: 1;
    border-bottom: 1px solid #0429694f;
}

.mapPlaces .mapPlacesPlace {
    position: absolute;
}

.mapPlaces .mapPlacesPlace:nth-child(2) {
    top: 50%;
    left: 47%;
}

.mapPlaces .mapPlacesPlace:nth-child(3) {
    top: 30%;
    left: 47%;
}

.mapPlaces .mapPlacesPlace:nth-child(4) {
    top: 50%;
    left: 27%;
}

.mapPlaces .mapPlacesPlace:nth-child(5) {
    top: 20%;
    left: 17%;
}

.mapPlaces .mapPlacesPlace__marker {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-1);
    border-radius: 100%;
}

.mapPlaces .mapPlacesPlace__marker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-1);
    opacity: 0.4;
    border-radius: 100%;
}

.mapPlaces .mapPlacesPlace__content {
    position: absolute;
    bottom: calc(100% + 25px);
    left: 50%;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: white;
    text-transform: uppercase;
    padding: 8px 22px;
    background-color: var(--color-accent-1);
    border-radius: 200px;
    white-space: nowrap;
    transition: all 0.3s ease;
    transform: translateY(12px) translateX(-50%);
    opacity: 0;
}

.mapPlaces .mapPlacesPlace.isActive .mapPlacesPlace__content {
    transform: translateX(-50%);
    opacity: 1;
}

.-apartments .tabs__controls .is-tab-el-active {
    background-color: var(--color-accent-2);
    border: 1px solid #022768;
}

.tabs__content {
    position: relative;
}

.tabs__pane {
    position: absolute;
    top: 0;
    visibility: hidden;
    transition: none;
    opacity: 0;
}

.tabs__pane.is-tab-el-active {
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.tabs.-type-1 {
    position: relative;
    padding-top: 120px;
    padding-bottom: 150px;
    z-index: 0;
}

@media (max-width: 767px) {
    .tabs.-type-1 {
        padding-top: 100px;
    }
}

@media (max-width: 575px) {
    .tabs.-type-1 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.tabs.-type-1 .tabs__controls {
    display: flex;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .tabs.-type-1 .tabs__controls {
        margin-top: 10px;
    }
}

.tabs.-type-1 .tabs__button {
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .tabs.-type-1 .tabs__button {
        font-size: 16px;
    }
}

.tabs.-type-1 .tabs__button+* {
    margin-left: 80px;
}

@media (max-width: 991px) {
    .tabs.-type-1 .tabs__button+* {
        margin-left: 32px;
    }
}

.tabs.-type-1 .tabs__button::after {
    content: "";
    background-color: currentColor;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -5px;
    opacity: 0;
}

.tabs.-type-1 .tabs__button.is-tab-el-active::after {
    opacity: 1;
}

.tabs.-type-1 .tabs__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tabs.-type-1 .tabs__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.tabs.-type-1 .tabs__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tabs.-type-2 {
    position: relative;
    z-index: 0;
}

.tabs.-type-2 .slider {
    position: unset !important;
}

.tabs.-type-2 .swiper-wrapper {
    position: unset !important;
}

.tabs.-type-2 .tabs__content {
    position: unset;
    padding-top: 340px;
    padding-bottom: 140px;
}

@media (max-width: 991px) {
    .tabs.-type-2 .tabs__content {
        padding-top: 420px;
        padding-bottom: 160px;
    }
}

@media (max-width: 767px) {
    .tabs.-type-2 .tabs__content {
        padding-bottom: 120px;
    }
}

@media (max-width: 575px) {
    .tabs.-type-2 .tabs__content {
        padding-top: 380px;
        padding-bottom: 70px;
    }
}

.tabs.-type-2 .tabs__nav {
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .tabs.-type-2 .tabs__nav {
        margin-bottom: 0;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .tabs.-type-2 .tabs__nav {
        margin-top: 20px;
    }
}

.tabs.-type-2 .tabs__pagination {
    display: flex;
    flex-wrap: wrap;
    margin: -4px -15px;
    padding-top: 30px;
}

.tabs.-type-2 .tabs__pagination>* {
    width: auto;
    height: auto;
    color: white;
    background-color: transparent;
    padding: 4px 15px;
}

.tabs.-type-2 .tabs__test {
    position: absolute;
    left: 0;
    width: 100%;
    top: 120px;
    z-index: 10;
}

@media (max-width: 575px) {
    .tabs.-type-2 .tabs__test {
        top: 60px;
    }
}

.tabs.-type-2 .tabs__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tabs.-type-2 .tabs__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.tabs.-type-2 .tabs__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tabs.-type-3 .tabs__controls {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 10px;
}

.tabs.-type-3 .tabs__content {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .tabs.-type-3 .tabs__content {
        margin-top: 10px;
    }
}

.tabs.-type-3 .tabs__button {
    padding: 20px 30px;
    border: 1px solid var(--color-accent-2);
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.2s ease;
}

.tabs.-type-3 .tabs__button.is-tab-el-active {
    background-color: var(--color-accent-2);
}

.tabs.-type-4 .tabs__controls {
    border-bottom: 1px solid var(--color-accent-2);
}

.tabs.-type-4 .tabs__content {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .tabs.-type-4 .tabs__content {
        margin-top: 20px;
    }
}

.tabs.-type-4 .tabs__button {
    position: relative;
    z-index: 0;
    padding-bottom: 18px;
    transition: all 0.2s ease;
}

.tabs.-type-4 .tabs__button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-accent-1);
    transition: all 0.2s ease;
    opacity: 0;
}

.tabs.-type-4 .tabs__button.is-tab-el-active {
    color: var(--color-accent-1);
}

.tabs.-type-4 .tabs__button.is-tab-el-active::after {
    opacity: 1;
}

.shapeBg.-type-1 {
    position: absolute;
    top: 0;
}

.footer.-type-1 {
    padding-bottom: 28px;
}

@media (max-width: 767px) {
    .footer.-type-1 {
        padding-bottom: 56px;
    }
}

.footer.-type-1 .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2F3337;
    padding: 60px 0;
    margin: 0 60px;
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__top {
        padding: 30px 0;
        margin: 0 30px;
    }
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__top {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__links {
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
}

.footer.-type-1 .footer__links a {
    font-size: 14px;
}

.footer.-type-1 .footer__links>*+* {
    margin-left: 24px;
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__links>*+* {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__socials {
        margin-top: 30px;
    }
}

.footer.-type-1 .footer__socials a {
    font-size: 14px;
}

.footer.-type-1 .footer__socials>*+* {
    margin-left: 30px;
}

.footer.-type-1 .footer__main {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 0px;
}

.footer.-type-1 .footer__icon {
    margin-bottom: 20px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__icon {
        margin-bottom: 0;
    }
    .footer.-type-1 .footer__icon svg {
        width: 60px;
        height: 60px;
    }
}

.footer.-type-1 .footer__number {
    color: var(--color-accent-1);
    font-family: 'Poppins';
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 2px;
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__number {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .footer.-type-1 .footer__number {
        font-size: 28px;
    }
}

.footer.-type-1 .footer__mainContent {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__mainContent {
        margin-top: 0;
    }
}

.footer.-type-1 .footer__mainContent>h4 {
    color: #ffff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.footer.-type-1 .footer__mainContent>p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 14px;
}

.footer.-type-1 .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    border-top: 1px solid #96989c;
    padding-top: 20px;
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__bottom {
        flex-direction: column;
        margin-top: 30px;
    }
}

.footer.-type-1 .footer__bottom>* {
    font-size: 15px;
    line-height: 26px;
    color: #D2D1D4;
}

@media (max-width: 767px) {
    .footer.-type-1 .footer__bottom>*:first-child {
        margin-bottom: 30px;
    }
}

.footer.-type-1 .footer__bottom>*:last-child>*+* {
    margin-left: 20px;
}

.footer.-type-1.-container .footer__top {
    margin: 0;
}

@media (max-width: 767px) {
    .footer.-type-1.-container .footer__top {
        margin: 0;
    }
}

.footer.-type-1.-light .footer__top {
    border-bottom: 1px solid #F7F0EC;
}

.footer.-type-1.-accent-2 .footer__top {
    border-bottom: 1px solid rgba(25, 29, 35, 0.1);
}

.footer.-type-2 {
    position: relative;
    padding-top: 120px;
    z-index: 0;
}

@media (max-width: 991px) {
    .footer.-type-2 {
        padding-top: 80px;
    }
}

.footer.-type-2 .footer__logo img {
    width: 200px;
}

@media (max-width: 991px) {
    .footer.-type-2 .footer__logo img {
        width: 140px;
    }
}

.footer.-type-2 .footer__mainTitle {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1.5px;
    margin-bottom: 120px;
}

@media (max-width: 991px) {
    .footer.-type-2 .footer__mainTitle {
        font-size: 42px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .footer.-type-2 .footer__mainTitle {
        font-size: 32px;
    }
}

.footer.-type-2 .footer__list {
    margin-top: 20px;
}

.footer.-type-2 .footer__list>* {
    display: block;
    font-size: 15px;
}

.footer.-type-2 .footer__list>*+* {
    margin-top: 6px;
}

.footer.-type-2 .footer__bottom {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    .footer.-type-2 .footer__bottom {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.footer.-type-2 .footerForm {
    margin-top: 30px;
}

.footer.-type-2 .footerForm__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.footer.-type-2 .footerForm__input input {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid black;
}

.footer.-type-2 .footerForm__button {
    width: 100%;
    margin-top: 25px;
}

.footer.-type-2.-dark .footer__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 55.4vw;
    background-color: #15191F;
    z-index: -1;
}

@media (max-width: 1199px) {
    .footer.-type-2.-dark .footer__bg {
        width: 60vw;
    }
}

@media (max-width: 991px) {
    .footer.-type-2.-dark .footer__bg {
        display: none;
    }
}

.footer.-type-2.-dark .footerForm__input input {
    border-color: white;
}

.preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.preloader__wrap {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 90px;
    border-radius: 30px;
    background-color: transparent;
    animation-name: preloaderWraper;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
}

.preloader__icon {
    position: absolute;
    animation-name: preloader;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
}

.preloader__title {
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
    margin-top: 20px;
}

.preloader.-is-hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes preloaderWraper {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: none;
    }
}

@keyframes preloader {
    0% {
        transform: translateY(150%) scale(1);
    }
    50% {
        transform: translateY(0%) scale(1.2) rotate(20deg);
    }
    100% {
        transform: translateY(-150%) rotate(-20deg);
    }
}

body.is-cursor-active {
    cursor: none !important;
}

body.is-cursor-active * {
    cursor: none !important;
}

.cursor {
    position: fixed;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10000;
}

.cursor__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__follower {
    position: absolute;
    background-color: #888888;
    opacity: 0.25;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__arrows {
    position: absolute;
    display: flex;
    opacity: 0;
    transform: scale(0.7) rotate(40deg);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__arrows>* {
    position: relative;
    color: black;
    stroke-width: 1;
}

.cursor__arrows>*:first-child {
    left: -10px;
}

.cursor__arrows>*:last-child {
    right: -10px;
}

.cursor__label {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transform: scale(0);
    will-change: transform, opacity;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transform: scale(0);
    will-change: transform, opacity;
    transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1), opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor__icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 0.75;
}

.cursor {
    visibility: hidden;
}

.cursor.is-enabled {
    visibility: visible;
}

.cursor.is-hidden .cursor__wrapper {
    transform: scale(0) !important;
}

.cursor.is-mouse-down .cursor__wrapper {
    transform: scale(0.8);
}

.cursor.is-active .cursor__follower {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
    transform: scale(3.4);
    opacity: 0.25;
}

.cursor.is-active.has-label .cursor__follower {
    background-color: #01213A;
    opacity: 1;
}

.cursor.is-active.has-label .cursor__label {
    transform: scale(1);
}

.cursor.is-active.has-label-light .cursor__follower {
    box-shadow: 0px 5px 70px rgba(1, 33, 58, 0.03);
    background-color: #ffffff;
    opacity: 1;
}

.cursor.is-active.has-label-light .cursor__label {
    color: var(--bg-dark-1) !important;
    transform: scale(1);
}

.cursor.is-active.has-icon .cursor__follower {
    background-color: black;
    opacity: 0.8;
}

.cursor.is-active.has-icon .cursor__icon {
    transform: scale(1);
}

.menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background-color: white;
    color: black;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
}

.menu.-is-active {
    pointer-events: auto;
}

.menu__left {
    width: 50%;
    height: 100%;
}

@media (max-width: 575px) {
    .menu__left {
        width: 100%;
    }
}

.menu .menuNav {
    overflow-y: scroll;
    height: calc(100% - 85px);
    margin: 85px 60px;
    margin-bottom: 0;
    padding-bottom: 85px;
}

@media (max-width: 991px) {
    .menu .menuNav {
        height: calc(100% - 40px);
        margin: 40px 40px;
        margin-bottom: 0;
        padding-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .menu .menuNav {
        height: calc(100% - 30px);
        margin: 30px;
        margin-bottom: 0;
        padding-bottom: 30px;
    }
}

.menu .menuNav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.menu .menuNav::-webkit-scrollbar-thumb {
    background-color: #F7F0EC;
    border-radius: 100px;
}

.menu .menuNav__item>a {
    display: flex;
    align-items: center;
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .menu .menuNav__item>a {
        font-size: 20px;
    }
}

.menu .menuNav__item>a i {
    font-size: 20px;
    margin-left: 12px;
}

.menu .menuNav__item>a:hover {
    color: #022768;
}

.menu .menuNav__item+* {
    margin-top: 24px;
}

@media (max-width: 767px) {
    .menu .menuNav__item+* {
        margin-top: 16px;
    }
}

.menu .submenu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.menu .submenu__wrap {
    padding-top: 12px;
}

.menu .submenu__item>a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #252525;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .menu .submenu__item>a {
        font-size: 16px;
    }
}

.menu .submenu__item+* {
    margin-top: 4px;
}

.menu__right {
    width: 50%;
    height: 100%;
}

@media (max-width: 575px) {
    .menu__right {
        display: none;
    }
}

.menu .menuImage {
    width: 100%;
    height: 100%;
}

.menu .menuImage img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.menu__close {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid #C29F7B;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 575px) {
    .menu__close {
        display: none;
    }
}

.menu__close i {
    transition: all 0.1s ease;
}

.menu__close:hover i {
    color: var(--color-accent-1) !important;
}

.menu.-top-header {
    padding-top: 130px;
}

@media (max-width: 575px) {
    .menu.-top-header {
        padding-top: 108px;
    }
}

.menu.-top-header .menu__close {
    top: calc(50% + 65px);
}

.-sidebar .menu__left {
    padding-left: 80px;
}

@media (max-width: 767px) {
    .-sidebar .menu__left {
        padding-left: 0;
    }
}

.pageHeader.-type-1 {
    position: relative;
    color: white;
    padding-top: 100px;
    padding-bottom: 140px;
    z-index: 0;
}

.pageHeader.-type-1.-pb-sm {
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .pageHeader.-type-1.-pb-sm {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .pageHeader.-type-1.-pb-sm {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .pageHeader.-type-1 {
        padding-top: 220px;
        padding-bottom: 140px;
    }
}

@media (max-width: 767px) {
    .pageHeader.-type-1 {
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

.pageHeader.-type-1 .pageHeader__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: black;
}

.pageHeader.-type-1 .pageHeader__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pageHeader.-type-1 .pageHeader__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-2);
    opacity: 0.2;
}

.pageHeader.-type-1 .pageHeader__title {
    font-size: 82px;
    font-weight: 500;
    line-height: 100px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .pageHeader.-type-1 .pageHeader__title {
        font-size: 60px;
        line-height: 1.3;
    }
}

@media (max-width: 767px) {
    .pageHeader.-type-1 .pageHeader__title {
        font-size: 40px;
    }
}

.pageHeader.-type-1 .pageHeader-nav {
    display: flex;
    text-transform: uppercase;
    margin-top: 5px;
}

.pageHeader.-type-1 .pageHeader-nav>span {
    margin: 0 5px;
}

.pageHeader.-type-1 .pageHeader-nav__link a,
.pageHeader.-type-1 .pageHeader-nav__link span {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.marquee {
    position: relative;
}

.marquee>* {
    font-size: 150px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 2.5px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .marquee>* {
        font-size: 90px;
        line-height: 1.3;
    }
}

@media (max-width: 767px) {
    .marquee>* {
        font-size: 80px;
    }
}

.marquee>*:nth-child(1) {
    position: relative;
    left: 250px;
}

@media (max-width: 767px) {
    .marquee>*:nth-child(1) {
        left: 20%;
    }
}

.marquee>*:nth-child(2) {
    position: relative;
    right: 70%;
}

@media (max-width: 767px) {
    .marquee>*:nth-child(2) {
        right: 70%;
    }
}

.sliderNav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-dark-1);
    background-color: var(--color-accent-2);
    border-radius: 100%;
    font-size: 22px;
}

.sliderNav:hover {
    background-color: white;
    border-color: var(--color-accent-1);
}

.sliderNav.-transparent {
    border-color: var(--color-accent-1);
    background-color: transparent;
}

.sliderNav.-transparent:hover {
    background-color: var(--color-accent-1);
    color: white !important;
}

.py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.mt-30 {
    margin-top: 16px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.py-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.px-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

@media (max-width: 1199px) {
    .xl\:py-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .xl\:px-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .xl\:pt-0 {
        padding-top: 0px !important;
    }
    .xl\:pb-0 {
        padding-bottom: 0px !important;
    }
    .xl\:pl-0 {
        padding-left: 0px !important;
    }
    .xl\:pr-0 {
        padding-right: 0px !important;
    }
    .xl\:mt-0 {
        margin-top: 0px !important;
    }
    .xl\:mb-0 {
        margin-bottom: 0px !important;
    }
    .xl\:ml-0 {
        margin-left: 0px !important;
    }
    .xl\:mr-0 {
        margin-right: 0px !important;
    }
    .xl\:py-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .xl\:px-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .xl\:pt-5 {
        padding-top: 5px !important;
    }
    .xl\:pb-5 {
        padding-bottom: 5px !important;
    }
    .xl\:pl-5 {
        padding-left: 5px !important;
    }
    .xl\:pr-5 {
        padding-right: 5px !important;
    }
    .xl\:mt-5 {
        margin-top: 5px !important;
    }
    .xl\:mb-5 {
        margin-bottom: 5px !important;
    }
    .xl\:ml-5 {
        margin-left: 5px !important;
    }
    .xl\:mr-5 {
        margin-right: 5px !important;
    }
    .xl\:py-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .xl\:px-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .xl\:pt-10 {
        padding-top: 10px !important;
    }
    .xl\:pb-10 {
        padding-bottom: 10px !important;
    }
    .xl\:pl-10 {
        padding-left: 10px !important;
    }
    .xl\:pr-10 {
        padding-right: 10px !important;
    }
    .xl\:mt-10 {
        margin-top: 10px !important;
    }
    .xl\:mb-10 {
        margin-bottom: 10px !important;
    }
    .xl\:ml-10 {
        margin-left: 10px !important;
    }
    .xl\:mr-10 {
        margin-right: 10px !important;
    }
    .xl\:py-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .xl\:px-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .xl\:pt-15 {
        padding-top: 15px !important;
    }
    .xl\:pb-15 {
        padding-bottom: 15px !important;
    }
    .xl\:pl-15 {
        padding-left: 15px !important;
    }
    .xl\:pr-15 {
        padding-right: 15px !important;
    }
    .xl\:mt-15 {
        margin-top: 15px !important;
    }
    .xl\:mb-15 {
        margin-bottom: 15px !important;
    }
    .xl\:ml-15 {
        margin-left: 15px !important;
    }
    .xl\:mr-15 {
        margin-right: 15px !important;
    }
    .xl\:py-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .xl\:px-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .xl\:pt-20 {
        padding-top: 20px !important;
    }
    .xl\:pb-20 {
        padding-bottom: 20px !important;
    }
    .xl\:pl-20 {
        padding-left: 20px !important;
    }
    .xl\:pr-20 {
        padding-right: 20px !important;
    }
    .xl\:mt-20 {
        margin-top: 20px !important;
    }
    .xl\:mb-20 {
        margin-bottom: 20px !important;
    }
    .xl\:ml-20 {
        margin-left: 20px !important;
    }
    .xl\:mr-20 {
        margin-right: 20px !important;
    }
    .xl\:py-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    .xl\:px-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .xl\:pt-25 {
        padding-top: 25px !important;
    }
    .xl\:pb-25 {
        padding-bottom: 25px !important;
    }
    .xl\:pl-25 {
        padding-left: 25px !important;
    }
    .xl\:pr-25 {
        padding-right: 25px !important;
    }
    .xl\:mt-25 {
        margin-top: 25px !important;
    }
    .xl\:mb-25 {
        margin-bottom: 25px !important;
    }
    .xl\:ml-25 {
        margin-left: 25px !important;
    }
    .xl\:mr-25 {
        margin-right: 25px !important;
    }
    .xl\:py-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .xl\:px-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .xl\:pt-30 {
        padding-top: 30px !important;
    }
    .xl\:pb-30 {
        padding-bottom: 30px !important;
    }
    .xl\:pl-30 {
        padding-left: 30px !important;
    }
    .xl\:pr-30 {
        padding-right: 30px !important;
    }
    .xl\:mt-30 {
        margin-top: 30px !important;
    }
    .xl\:mb-30 {
        margin-bottom: 30px !important;
    }
    .xl\:ml-30 {
        margin-left: 30px !important;
    }
    .xl\:mr-30 {
        margin-right: 30px !important;
    }
    .xl\:py-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    .xl\:px-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
    .xl\:pt-35 {
        padding-top: 35px !important;
    }
    .xl\:pb-35 {
        padding-bottom: 35px !important;
    }
    .xl\:pl-35 {
        padding-left: 35px !important;
    }
    .xl\:pr-35 {
        padding-right: 35px !important;
    }
    .xl\:mt-35 {
        margin-top: 35px !important;
    }
    .xl\:mb-35 {
        margin-bottom: 35px !important;
    }
    .xl\:ml-35 {
        margin-left: 35px !important;
    }
    .xl\:mr-35 {
        margin-right: 35px !important;
    }
    .xl\:py-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .xl\:px-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .xl\:pt-40 {
        padding-top: 40px !important;
    }
    .xl\:pb-40 {
        padding-bottom: 40px !important;
    }
    .xl\:pl-40 {
        padding-left: 40px !important;
    }
    .xl\:pr-40 {
        padding-right: 40px !important;
    }
    .xl\:mt-40 {
        margin-top: 40px !important;
    }
    .xl\:mb-40 {
        margin-bottom: 40px !important;
    }
    .xl\:ml-40 {
        margin-left: 40px !important;
    }
    .xl\:mr-40 {
        margin-right: 40px !important;
    }
    .xl\:py-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .xl\:px-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    .xl\:pt-50 {
        padding-top: 50px !important;
    }
    .xl\:pb-50 {
        padding-bottom: 50px !important;
    }
    .xl\:pl-50 {
        padding-left: 50px !important;
    }
    .xl\:pr-50 {
        padding-right: 50px !important;
    }
    .xl\:mt-50 {
        margin-top: 50px !important;
    }
    .xl\:mb-50 {
        margin-bottom: 50px !important;
    }
    .xl\:ml-50 {
        margin-left: 50px !important;
    }
    .xl\:mr-50 {
        margin-right: 50px !important;
    }
    .xl\:py-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }
    .xl\:px-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
    .xl\:pt-55 {
        padding-top: 55px !important;
    }
    .xl\:pb-55 {
        padding-bottom: 55px !important;
    }
    .xl\:pl-55 {
        padding-left: 55px !important;
    }
    .xl\:pr-55 {
        padding-right: 55px !important;
    }
    .xl\:mt-55 {
        margin-top: 55px !important;
    }
    .xl\:mb-55 {
        margin-bottom: 55px !important;
    }
    .xl\:ml-55 {
        margin-left: 55px !important;
    }
    .xl\:mr-55 {
        margin-right: 55px !important;
    }
    .xl\:py-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .xl\:px-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
    .xl\:pt-60 {
        padding-top: 60px !important;
    }
    .xl\:pb-60 {
        padding-bottom: 60px !important;
    }
    .xl\:pl-60 {
        padding-left: 60px !important;
    }
    .xl\:pr-60 {
        padding-right: 60px !important;
    }
    .xl\:mt-60 {
        margin-top: 60px !important;
    }
    .xl\:mb-60 {
        margin-bottom: 60px !important;
    }
    .xl\:ml-60 {
        margin-left: 60px !important;
    }
    .xl\:mr-60 {
        margin-right: 60px !important;
    }
    .xl\:py-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
    .xl\:px-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
    .xl\:pt-100 {
        padding-top: 100px !important;
    }
    .xl\:pb-100 {
        padding-bottom: 100px !important;
    }
    .xl\:pl-100 {
        padding-left: 100px !important;
    }
    .xl\:pr-100 {
        padding-right: 100px !important;
    }
    .xl\:mt-100 {
        margin-top: 100px !important;
    }
    .xl\:mb-100 {
        margin-bottom: 100px !important;
    }
    .xl\:ml-100 {
        margin-left: 100px !important;
    }
    .xl\:mr-100 {
        margin-right: 100px !important;
    }
}

@media (max-width: 991px) {
    .lg\:py-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .lg\:px-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .lg\:pt-0 {
        padding-top: 0px !important;
    }
    .lg\:pb-0 {
        padding-bottom: 0px !important;
    }
    .lg\:pl-0 {
        padding-left: 0px !important;
    }
    .lg\:pr-0 {
        padding-right: 0px !important;
    }
    .lg\:mt-0 {
        margin-top: 0px !important;
    }
    .lg\:mb-0 {
        margin-bottom: 0px !important;
    }
    .lg\:ml-0 {
        margin-left: 0px !important;
    }
    .lg\:mr-0 {
        margin-right: 0px !important;
    }
    .lg\:py-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .lg\:px-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .lg\:pt-5 {
        padding-top: 5px !important;
    }
    .lg\:pb-5 {
        padding-bottom: 5px !important;
    }
    .lg\:pl-5 {
        padding-left: 5px !important;
    }
    .lg\:pr-5 {
        padding-right: 5px !important;
    }
    .lg\:mt-5 {
        margin-top: 5px !important;
    }
    .lg\:mb-5 {
        margin-bottom: 5px !important;
    }
    .lg\:ml-5 {
        margin-left: 5px !important;
    }
    .lg\:mr-5 {
        margin-right: 5px !important;
    }
    .lg\:py-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .lg\:px-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .lg\:pt-10 {
        padding-top: 10px !important;
    }
    .lg\:pb-10 {
        padding-bottom: 10px !important;
    }
    .lg\:pl-10 {
        padding-left: 10px !important;
    }
    .lg\:pr-10 {
        padding-right: 10px !important;
    }
    .lg\:mt-10 {
        margin-top: 10px !important;
    }
    .lg\:mb-10 {
        margin-bottom: 10px !important;
    }
    .lg\:ml-10 {
        margin-left: 10px !important;
    }
    .lg\:mr-10 {
        margin-right: 10px !important;
    }
    .lg\:py-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .lg\:px-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .lg\:pt-15 {
        padding-top: 15px !important;
    }
    .lg\:pb-15 {
        padding-bottom: 15px !important;
    }
    .lg\:pl-15 {
        padding-left: 15px !important;
    }
    .lg\:pr-15 {
        padding-right: 15px !important;
    }
    .lg\:mt-15 {
        margin-top: 15px !important;
    }
    .lg\:mb-15 {
        margin-bottom: 15px !important;
    }
    .lg\:ml-15 {
        margin-left: 15px !important;
    }
    .lg\:mr-15 {
        margin-right: 15px !important;
    }
    .lg\:py-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .lg\:px-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .lg\:pt-20 {
        padding-top: 20px !important;
    }
    .lg\:pb-20 {
        padding-bottom: 20px !important;
    }
    .lg\:pl-20 {
        padding-left: 20px !important;
    }
    .lg\:pr-20 {
        padding-right: 20px !important;
    }
    .lg\:mt-20 {
        margin-top: 20px !important;
    }
    .lg\:mb-20 {
        margin-bottom: 20px !important;
    }
    .lg\:ml-20 {
        margin-left: 20px !important;
    }
    .lg\:mr-20 {
        margin-right: 20px !important;
    }
    .lg\:py-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    .lg\:px-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .lg\:pt-25 {
        padding-top: 25px !important;
    }
    .lg\:pb-25 {
        padding-bottom: 25px !important;
    }
    .lg\:pl-25 {
        padding-left: 25px !important;
    }
    .lg\:pr-25 {
        padding-right: 25px !important;
    }
    .lg\:mt-25 {
        margin-top: 25px !important;
    }
    .lg\:mb-25 {
        margin-bottom: 25px !important;
    }
    .lg\:ml-25 {
        margin-left: 25px !important;
    }
    .lg\:mr-25 {
        margin-right: 25px !important;
    }
    .lg\:py-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .lg\:px-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .lg\:pt-30 {
        padding-top: 30px !important;
    }
    .lg\:pb-30 {
        padding-bottom: 30px !important;
    }
    .lg\:pl-30 {
        padding-left: 30px !important;
    }
    .lg\:pr-30 {
        padding-right: 30px !important;
    }
    .lg\:mt-30 {
        margin-top: 30px !important;
    }
    .lg\:mb-30 {
        margin-bottom: 30px !important;
    }
    .lg\:ml-30 {
        margin-left: 30px !important;
    }
    .lg\:mr-30 {
        margin-right: 30px !important;
    }
    .lg\:py-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    .lg\:px-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
    .lg\:pt-35 {
        padding-top: 35px !important;
    }
    .lg\:pb-35 {
        padding-bottom: 35px !important;
    }
    .lg\:pl-35 {
        padding-left: 35px !important;
    }
    .lg\:pr-35 {
        padding-right: 35px !important;
    }
    .lg\:mt-35 {
        margin-top: 35px !important;
    }
    .lg\:mb-35 {
        margin-bottom: 35px !important;
    }
    .lg\:ml-35 {
        margin-left: 35px !important;
    }
    .lg\:mr-35 {
        margin-right: 35px !important;
    }
    .lg\:py-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .lg\:px-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .lg\:pt-40 {
        padding-top: 40px !important;
    }
    .lg\:pb-40 {
        padding-bottom: 40px !important;
    }
    .lg\:pl-40 {
        padding-left: 40px !important;
    }
    .lg\:pr-40 {
        padding-right: 40px !important;
    }
    .lg\:mt-40 {
        margin-top: 40px !important;
    }
    .lg\:mb-40 {
        margin-bottom: 40px !important;
    }
    .lg\:ml-40 {
        margin-left: 40px !important;
    }
    .lg\:mr-40 {
        margin-right: 40px !important;
    }
    .lg\:py-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .lg\:px-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    .lg\:pt-50 {
        padding-top: 50px !important;
    }
    .lg\:pb-50 {
        padding-bottom: 50px !important;
    }
    .lg\:pl-50 {
        padding-left: 50px !important;
    }
    .lg\:pr-50 {
        padding-right: 50px !important;
    }
    .lg\:mt-50 {
        margin-top: 50px !important;
    }
    .lg\:mb-50 {
        margin-bottom: 50px !important;
    }
    .lg\:ml-50 {
        margin-left: 50px !important;
    }
    .lg\:mr-50 {
        margin-right: 50px !important;
    }
    .lg\:py-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }
    .lg\:px-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
    .lg\:pt-55 {
        padding-top: 55px !important;
    }
    .lg\:pb-55 {
        padding-bottom: 55px !important;
    }
    .lg\:pl-55 {
        padding-left: 55px !important;
    }
    .lg\:pr-55 {
        padding-right: 55px !important;
    }
    .lg\:mt-55 {
        margin-top: 55px !important;
    }
    .lg\:mb-55 {
        margin-bottom: 55px !important;
    }
    .lg\:ml-55 {
        margin-left: 55px !important;
    }
    .lg\:mr-55 {
        margin-right: 55px !important;
    }
    .lg\:py-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .lg\:px-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
    .lg\:pt-60 {
        padding-top: 60px !important;
    }
    .lg\:pb-60 {
        padding-bottom: 60px !important;
    }
    .lg\:pl-60 {
        padding-left: 60px !important;
    }
    .lg\:pr-60 {
        padding-right: 60px !important;
    }
    .lg\:mt-60 {
        margin-top: 60px !important;
    }
    .lg\:mb-60 {
        margin-bottom: 60px !important;
    }
    .lg\:ml-60 {
        margin-left: 60px !important;
    }
    .lg\:mr-60 {
        margin-right: 60px !important;
    }
    .lg\:py-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
    .lg\:px-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
    .lg\:pt-100 {
        padding-top: 100px !important;
    }
    .lg\:pb-100 {
        padding-bottom: 100px !important;
    }
    .lg\:pl-100 {
        padding-left: 100px !important;
    }
    .lg\:pr-100 {
        padding-right: 100px !important;
    }
    .lg\:mt-100 {
        margin-top: 100px !important;
    }
    .lg\:mb-100 {
        margin-bottom: 100px !important;
    }
    .lg\:ml-100 {
        margin-left: 100px !important;
    }
    .lg\:mr-100 {
        margin-right: 100px !important;
    }
}

@media (max-width: 767px) {
    .md\:py-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .md\:px-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .md\:pt-0 {
        padding-top: 0px !important;
    }
    .md\:pb-0 {
        padding-bottom: 0px !important;
    }
    .md\:pl-0 {
        padding-left: 0px !important;
    }
    .md\:pr-0 {
        padding-right: 0px !important;
    }
    .md\:mt-0 {
        margin-top: 0px !important;
    }
    .md\:mb-0 {
        margin-bottom: 0px !important;
    }
    .md\:ml-0 {
        margin-left: 0px !important;
    }
    .md\:mr-0 {
        margin-right: 0px !important;
    }
    .md\:py-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .md\:px-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .md\:pt-5 {
        padding-top: 5px !important;
    }
    .md\:pb-5 {
        padding-bottom: 5px !important;
    }
    .md\:pl-5 {
        padding-left: 5px !important;
    }
    .md\:pr-5 {
        padding-right: 5px !important;
    }
    .md\:mt-5 {
        margin-top: 5px !important;
    }
    .md\:mb-5 {
        margin-bottom: 5px !important;
    }
    .md\:ml-5 {
        margin-left: 5px !important;
    }
    .md\:mr-5 {
        margin-right: 5px !important;
    }
    .md\:py-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .md\:px-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .md\:pt-10 {
        padding-top: 10px !important;
    }
    .md\:pb-10 {
        padding-bottom: 10px !important;
    }
    .md\:pl-10 {
        padding-left: 10px !important;
    }
    .md\:pr-10 {
        padding-right: 10px !important;
    }
    .md\:mt-10 {
        margin-top: 10px !important;
    }
    .md\:mb-10 {
        margin-bottom: 10px !important;
    }
    .md\:ml-10 {
        margin-left: 10px !important;
    }
    .md\:mr-10 {
        margin-right: 10px !important;
    }
    .md\:py-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .md\:px-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .md\:pt-15 {
        padding-top: 15px !important;
    }
    .md\:pb-15 {
        padding-bottom: 15px !important;
    }
    .md\:pl-15 {
        padding-left: 15px !important;
    }
    .md\:pr-15 {
        padding-right: 15px !important;
    }
    .md\:mt-15 {
        margin-top: 15px !important;
    }
    .md\:mb-15 {
        margin-bottom: 15px !important;
    }
    .md\:ml-15 {
        margin-left: 15px !important;
    }
    .md\:mr-15 {
        margin-right: 15px !important;
    }
    .md\:py-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .md\:px-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .md\:pt-20 {
        padding-top: 20px !important;
    }
    .md\:pb-20 {
        padding-bottom: 20px !important;
    }
    .md\:pl-20 {
        padding-left: 20px !important;
    }
    .md\:pr-20 {
        padding-right: 20px !important;
    }
    .md\:mt-20 {
        margin-top: 20px !important;
    }
    .md\:mb-20 {
        margin-bottom: 20px !important;
    }
    .md\:ml-20 {
        margin-left: 20px !important;
    }
    .md\:mr-20 {
        margin-right: 20px !important;
    }
    .md\:py-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    .md\:px-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .md\:pt-25 {
        padding-top: 25px !important;
    }
    .md\:pb-25 {
        padding-bottom: 25px !important;
    }
    .md\:pl-25 {
        padding-left: 25px !important;
    }
    .md\:pr-25 {
        padding-right: 25px !important;
    }
    .md\:mt-25 {
        margin-top: 25px !important;
    }
    .md\:mb-25 {
        margin-bottom: 25px !important;
    }
    .md\:ml-25 {
        margin-left: 25px !important;
    }
    .md\:mr-25 {
        margin-right: 25px !important;
    }
    .md\:py-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .md\:px-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .md\:pt-30 {
        padding-top: 30px !important;
    }
    .md\:pb-30 {
        padding-bottom: 30px !important;
    }
    .md\:pl-30 {
        padding-left: 30px !important;
    }
    .md\:pr-30 {
        padding-right: 30px !important;
    }
    .md\:mt-30 {
        margin-top: 30px !important;
    }
    .md\:mb-30 {
        margin-bottom: 30px !important;
    }
    .md\:ml-30 {
        margin-left: 30px !important;
    }
    .md\:mr-30 {
        margin-right: 30px !important;
    }
    .md\:py-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    .md\:px-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
    .md\:pt-35 {
        padding-top: 35px !important;
    }
    .md\:pb-35 {
        padding-bottom: 35px !important;
    }
    .md\:pl-35 {
        padding-left: 35px !important;
    }
    .md\:pr-35 {
        padding-right: 35px !important;
    }
    .md\:mt-35 {
        margin-top: 35px !important;
    }
    .md\:mb-35 {
        margin-bottom: 35px !important;
    }
    .md\:ml-35 {
        margin-left: 35px !important;
    }
    .md\:mr-35 {
        margin-right: 35px !important;
    }
    .md\:py-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .md\:px-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .md\:pt-40 {
        padding-top: 40px !important;
    }
    .md\:pb-40 {
        padding-bottom: 40px !important;
    }
    .md\:pl-40 {
        padding-left: 40px !important;
    }
    .md\:pr-40 {
        padding-right: 40px !important;
    }
    .md\:mt-40 {
        margin-top: 40px !important;
    }
    .md\:mb-40 {
        margin-bottom: 40px !important;
    }
    .md\:ml-40 {
        margin-left: 40px !important;
    }
    .md\:mr-40 {
        margin-right: 40px !important;
    }
    .md\:py-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .md\:px-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    .md\:pt-50 {
        padding-top: 50px !important;
    }
    .md\:pb-50 {
        padding-bottom: 50px !important;
    }
    .md\:pl-50 {
        padding-left: 50px !important;
    }
    .md\:pr-50 {
        padding-right: 50px !important;
    }
    .md\:mt-50 {
        margin-top: 50px !important;
    }
    .md\:mb-50 {
        margin-bottom: 50px !important;
    }
    .md\:ml-50 {
        margin-left: 50px !important;
    }
    .md\:mr-50 {
        margin-right: 50px !important;
    }
    .md\:py-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }
    .md\:px-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
    .md\:pt-55 {
        padding-top: 55px !important;
    }
    .md\:pb-55 {
        padding-bottom: 55px !important;
    }
    .md\:pl-55 {
        padding-left: 55px !important;
    }
    .md\:pr-55 {
        padding-right: 55px !important;
    }
    .md\:mt-55 {
        margin-top: 55px !important;
    }
    .md\:mb-55 {
        margin-bottom: 55px !important;
    }
    .md\:ml-55 {
        margin-left: 55px !important;
    }
    .md\:mr-55 {
        margin-right: 55px !important;
    }
    .md\:py-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .md\:px-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
    .md\:pt-60 {
        padding-top: 60px !important;
    }
    .md\:pb-60 {
        padding-bottom: 60px !important;
    }
    .md\:pl-60 {
        padding-left: 60px !important;
    }
    .md\:pr-60 {
        padding-right: 60px !important;
    }
    .md\:mt-60 {
        margin-top: 60px !important;
    }
    .md\:mb-60 {
        margin-bottom: 60px !important;
    }
    .md\:ml-60 {
        margin-left: 60px !important;
    }
    .md\:mr-60 {
        margin-right: 60px !important;
    }
    .md\:py-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
    .md\:px-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
    .md\:pt-100 {
        padding-top: 100px !important;
    }
    .md\:pb-100 {
        padding-bottom: 100px !important;
    }
    .md\:pl-100 {
        padding-left: 100px !important;
    }
    .md\:pr-100 {
        padding-right: 100px !important;
    }
    .md\:mt-100 {
        margin-top: 100px !important;
    }
    .md\:mb-100 {
        margin-bottom: 100px !important;
    }
    .md\:ml-100 {
        margin-left: 100px !important;
    }
    .md\:mr-100 {
        margin-right: 100px !important;
    }
}

@media (max-width: 575px) {
    .sm\:py-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .sm\:px-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .sm\:pt-0 {
        padding-top: 0px !important;
    }
    .sm\:pb-0 {
        padding-bottom: 0px !important;
    }
    .sm\:pl-0 {
        padding-left: 0px !important;
    }
    .sm\:pr-0 {
        padding-right: 0px !important;
    }
    .sm\:mt-0 {
        margin-top: 0px !important;
    }
    .sm\:mb-0 {
        margin-bottom: 0px !important;
    }
    .sm\:ml-0 {
        margin-left: 0px !important;
    }
    .sm\:mr-0 {
        margin-right: 0px !important;
    }
    .sm\:py-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .sm\:px-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .sm\:pt-5 {
        padding-top: 5px !important;
    }
    .sm\:pb-5 {
        padding-bottom: 5px !important;
    }
    .sm\:pl-5 {
        padding-left: 5px !important;
    }
    .sm\:pr-5 {
        padding-right: 5px !important;
    }
    .sm\:mt-5 {
        margin-top: 5px !important;
    }
    .sm\:mb-5 {
        margin-bottom: 5px !important;
    }
    .sm\:ml-5 {
        margin-left: 5px !important;
    }
    .sm\:mr-5 {
        margin-right: 5px !important;
    }
    .sm\:py-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .sm\:px-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .sm\:pt-10 {
        padding-top: 10px !important;
    }
    .sm\:pb-10 {
        padding-bottom: 10px !important;
    }
    .sm\:pl-10 {
        padding-left: 10px !important;
    }
    .sm\:pr-10 {
        padding-right: 10px !important;
    }
    .sm\:mt-10 {
        margin-top: 10px !important;
    }
    .sm\:mb-10 {
        margin-bottom: 10px !important;
    }
    .sm\:ml-10 {
        margin-left: 10px !important;
    }
    .sm\:mr-10 {
        margin-right: 10px !important;
    }
    .sm\:py-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .sm\:px-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .sm\:pt-15 {
        padding-top: 15px !important;
    }
    .sm\:pb-15 {
        padding-bottom: 15px !important;
    }
    .sm\:pl-15 {
        padding-left: 15px !important;
    }
    .sm\:pr-15 {
        padding-right: 15px !important;
    }
    .sm\:mt-15 {
        margin-top: 15px !important;
    }
    .sm\:mb-15 {
        margin-bottom: 15px !important;
    }
    .sm\:ml-15 {
        margin-left: 15px !important;
    }
    .sm\:mr-15 {
        margin-right: 15px !important;
    }
    .sm\:py-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .sm\:px-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .sm\:pt-20 {
        padding-top: 20px !important;
    }
    .sm\:pb-20 {
        padding-bottom: 20px !important;
    }
    .sm\:pl-20 {
        padding-left: 20px !important;
    }
    .sm\:pr-20 {
        padding-right: 20px !important;
    }
    .sm\:mt-20 {
        margin-top: 20px !important;
    }
    .sm\:mb-20 {
        margin-bottom: 20px !important;
    }
    .sm\:ml-20 {
        margin-left: 20px !important;
    }
    .sm\:mr-20 {
        margin-right: 20px !important;
    }
    .sm\:py-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    .sm\:px-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .sm\:pt-25 {
        padding-top: 25px !important;
    }
    .sm\:pb-25 {
        padding-bottom: 25px !important;
    }
    .sm\:pl-25 {
        padding-left: 25px !important;
    }
    .sm\:pr-25 {
        padding-right: 25px !important;
    }
    .sm\:mt-25 {
        margin-top: 25px !important;
    }
    .sm\:mb-25 {
        margin-bottom: 25px !important;
    }
    .sm\:ml-25 {
        margin-left: 25px !important;
    }
    .sm\:mr-25 {
        margin-right: 25px !important;
    }
    .sm\:py-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .sm\:px-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .sm\:pt-30 {
        padding-top: 30px !important;
    }
    .sm\:pb-30 {
        padding-bottom: 30px !important;
    }
    .sm\:pl-30 {
        padding-left: 30px !important;
    }
    .sm\:pr-30 {
        padding-right: 30px !important;
    }
    .sm\:mt-30 {
        margin-top: 30px !important;
    }
    .sm\:mb-30 {
        margin-bottom: 30px !important;
    }
    .sm\:ml-30 {
        margin-left: 30px !important;
    }
    .sm\:mr-30 {
        margin-right: 30px !important;
    }
    .sm\:py-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    .sm\:px-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
    .sm\:pt-35 {
        padding-top: 35px !important;
    }
    .sm\:pb-35 {
        padding-bottom: 35px !important;
    }
    .sm\:pl-35 {
        padding-left: 35px !important;
    }
    .sm\:pr-35 {
        padding-right: 35px !important;
    }
    .sm\:mt-35 {
        margin-top: 35px !important;
    }
    .sm\:mb-35 {
        margin-bottom: 35px !important;
    }
    .sm\:ml-35 {
        margin-left: 35px !important;
    }
    .sm\:mr-35 {
        margin-right: 35px !important;
    }
    .sm\:py-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .sm\:px-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .sm\:pt-40 {
        padding-top: 40px !important;
    }
    .sm\:pb-40 {
        padding-bottom: 40px !important;
    }
    .sm\:pl-40 {
        padding-left: 40px !important;
    }
    .sm\:pr-40 {
        padding-right: 40px !important;
    }
    .sm\:mt-40 {
        margin-top: 40px !important;
    }
    .sm\:mb-40 {
        margin-bottom: 40px !important;
    }
    .sm\:ml-40 {
        margin-left: 40px !important;
    }
    .sm\:mr-40 {
        margin-right: 40px !important;
    }
    .sm\:py-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .sm\:px-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    .sm\:pt-50 {
        padding-top: 50px !important;
    }
    .sm\:pb-50 {
        padding-bottom: 50px !important;
    }
    .sm\:pl-50 {
        padding-left: 50px !important;
    }
    .sm\:pr-50 {
        padding-right: 50px !important;
    }
    .sm\:mt-50 {
        margin-top: 50px !important;
    }
    .sm\:mb-50 {
        margin-bottom: 50px !important;
    }
    .sm\:ml-50 {
        margin-left: 50px !important;
    }
    .sm\:mr-50 {
        margin-right: 50px !important;
    }
    .sm\:py-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }
    .sm\:px-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
    .sm\:pt-55 {
        padding-top: 55px !important;
    }
    .sm\:pb-55 {
        padding-bottom: 55px !important;
    }
    .sm\:pl-55 {
        padding-left: 55px !important;
    }
    .sm\:pr-55 {
        padding-right: 55px !important;
    }
    .sm\:mt-55 {
        margin-top: 55px !important;
    }
    .sm\:mb-55 {
        margin-bottom: 55px !important;
    }
    .sm\:ml-55 {
        margin-left: 55px !important;
    }
    .sm\:mr-55 {
        margin-right: 55px !important;
    }
    .sm\:py-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .sm\:px-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
    .sm\:pt-60 {
        padding-top: 60px !important;
    }
    .sm\:pb-60 {
        padding-bottom: 60px !important;
    }
    .sm\:pl-60 {
        padding-left: 60px !important;
    }
    .sm\:pr-60 {
        padding-right: 60px !important;
    }
    .sm\:mt-60 {
        margin-top: 60px !important;
    }
    .sm\:mb-60 {
        margin-bottom: 60px !important;
    }
    .sm\:ml-60 {
        margin-left: 60px !important;
    }
    .sm\:mr-60 {
        margin-right: 60px !important;
    }
    .sm\:py-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
    .sm\:px-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
    .sm\:pt-100 {
        padding-top: 100px !important;
    }
    .sm\:pb-100 {
        padding-bottom: 100px !important;
    }
    .sm\:pl-100 {
        padding-left: 100px !important;
    }
    .sm\:pr-100 {
        padding-right: 100px !important;
    }
    .sm\:mt-100 {
        margin-top: 100px !important;
    }
    .sm\:mb-100 {
        margin-bottom: 100px !important;
    }
    .sm\:ml-100 {
        margin-left: 100px !important;
    }
    .sm\:mr-100 {
        margin-right: 100px !important;
    }
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.x-gap-0 {
    margin-left: -0px;
    margin-right: -0px;
}

.x-gap-0>* {
    padding-left: 0px;
    padding-right: 0px;
}

.y-gap-0 {
    margin-top: -0px;
    margin-bottom: -0px;
}

.y-gap-0>* {
    padding-top: 0px;
    padding-bottom: 0px;
}

.x-gap-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.x-gap-5>* {
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.y-gap-5 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
}

.y-gap-5>* {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
}

.x-gap-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.x-gap-10>* {
    padding-left: 5px;
    padding-right: 5px;
}

.y-gap-10 {
    margin-top: -5px;
    margin-bottom: -5px;
}

.y-gap-10>* {
    padding-top: 5px;
    padding-bottom: 5px;
}

.x-gap-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.x-gap-15>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.y-gap-15 {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
}

.y-gap-15>* {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
}

.x-gap-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.x-gap-20>* {
    padding-left: 10px;
    padding-right: 10px;
}

.y-gap-20 {
    margin-top: -10px;
    margin-bottom: -10px;
}

.y-gap-20>* {
    padding-top: 10px;
    padding-bottom: 10px;
}

.x-gap-30 {
    margin-left: -15px;
    margin-right: -15px;
}

.x-gap-30>* {
    padding-left: 15px;
    padding-right: 15px;
}

.y-gap-30 {
    margin-top: -15px;
    margin-bottom: -15px;
}

.y-gap-30>* {
    padding-top: 15px;
    padding-bottom: 15px;
}

.x-gap-60 {
    margin-left: -30px;
    margin-right: -30px;
}

.x-gap-60>* {
    padding-left: 30px;
    padding-right: 30px;
}

.y-gap-60 {
    margin-top: -30px;
    margin-bottom: -30px;
}

.y-gap-60>* {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    .md\:x-gap-0 {
        margin-left: -0px;
        margin-right: -0px;
    }
    .md\:x-gap-0>* {
        padding-left: 0px;
        padding-right: 0px;
    }
    .md\:y-gap-0 {
        margin-top: -0px;
        margin-bottom: -0px;
    }
    .md\:y-gap-0>* {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .md\:x-gap-5 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }
    .md\:x-gap-5>* {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }
    .md\:y-gap-5 {
        margin-top: -2.5px;
        margin-bottom: -2.5px;
    }
    .md\:y-gap-5>* {
        padding-top: 2.5px;
        padding-bottom: 2.5px;
    }
    .md\:x-gap-10 {
        margin-left: -5px;
        margin-right: -5px;
    }
    .md\:x-gap-10>* {
        padding-left: 5px;
        padding-right: 5px;
    }
    .md\:y-gap-10 {
        margin-top: -5px;
        margin-bottom: -5px;
    }
    .md\:y-gap-10>* {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .md\:x-gap-15 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .md\:x-gap-15>* {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .md\:y-gap-15 {
        margin-top: -7.5px;
        margin-bottom: -7.5px;
    }
    .md\:y-gap-15>* {
        padding-top: 7.5px;
        padding-bottom: 7.5px;
    }
    .md\:x-gap-20 {
        margin-left: -10px;
        margin-right: -10px;
    }
    .md\:x-gap-20>* {
        padding-left: 10px;
        padding-right: 10px;
    }
    .md\:y-gap-20 {
        margin-top: -10px;
        margin-bottom: -10px;
    }
    .md\:y-gap-20>* {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .md\:x-gap-30 {
        margin-left: -15px;
        margin-right: -15px;
    }
    .md\:x-gap-30>* {
        padding-left: 15px;
        padding-right: 15px;
    }
    .md\:y-gap-30 {
        margin-top: -15px;
        margin-bottom: -15px;
    }
    .md\:y-gap-30>* {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .md\:x-gap-60 {
        margin-left: -30px;
        margin-right: -30px;
    }
    .md\:x-gap-60>* {
        padding-left: 30px;
        padding-right: 30px;
    }
    .md\:y-gap-60 {
        margin-top: -30px;
        margin-bottom: -30px;
    }
    .md\:y-gap-60>* {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .sm\:x-gap-0 {
        margin-left: -0px;
        margin-right: -0px;
    }
    .sm\:x-gap-0>* {
        padding-left: 0px;
        padding-right: 0px;
    }
    .sm\:y-gap-0 {
        margin-top: -0px;
        margin-bottom: -0px;
    }
    .sm\:y-gap-0>* {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .sm\:x-gap-5 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }
    .sm\:x-gap-5>* {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }
    .sm\:y-gap-5 {
        margin-top: -2.5px;
        margin-bottom: -2.5px;
    }
    .sm\:y-gap-5>* {
        padding-top: 2.5px;
        padding-bottom: 2.5px;
    }
    .sm\:x-gap-10 {
        margin-left: -5px;
        margin-right: -5px;
    }
    .sm\:x-gap-10>* {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sm\:y-gap-10 {
        margin-top: -5px;
        margin-bottom: -5px;
    }
    .sm\:y-gap-10>* {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .sm\:x-gap-15 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .sm\:x-gap-15>* {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .sm\:y-gap-15 {
        margin-top: -7.5px;
        margin-bottom: -7.5px;
    }
    .sm\:y-gap-15>* {
        padding-top: 7.5px;
        padding-bottom: 7.5px;
    }
    .sm\:x-gap-20 {
        margin-left: -10px;
        margin-right: -10px;
    }
    .sm\:x-gap-20>* {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sm\:y-gap-20 {
        margin-top: -10px;
        margin-bottom: -10px;
    }
    .sm\:y-gap-20>* {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .sm\:x-gap-30 {
        margin-left: -15px;
        margin-right: -15px;
    }
    .sm\:x-gap-30>* {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sm\:y-gap-30 {
        margin-top: -15px;
        margin-bottom: -15px;
    }
    .sm\:y-gap-30>* {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .sm\:x-gap-60 {
        margin-left: -30px;
        margin-right: -30px;
    }
    .sm\:x-gap-60>* {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sm\:y-gap-60 {
        margin-top: -30px;
        margin-bottom: -30px;
    }
    .sm\:y-gap-60>* {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.layout-pt-sm {
    padding-top: 30px;
}

.layout-pb-sm {
    padding-bottom: 30px;
}

.layout-pt-md {
    padding-top: 60px;
}

.layout-pb-md {
    padding-bottom: 60px;
}

.layout-pt-lg {
    padding-top: 30px;
}

.layout-pb-lg {
    padding-bottom: 83px;
}

.layout-pt-xl {
    padding-top: 140px;
}

.layout-pb-xl {
    padding-bottom: 140px;
}

@media (max-width: 767px) {
    .layout-pt-sm {
        padding-top: 30px;
    }
    .layout-pb-sm {
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .layout-pt-md {
        padding-top: 60px;
    }
    .layout-pb-md {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .layout-pt-lg {
        padding-top: 100px;
    }
    .layout-pb-lg {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .layout-pt-xl {
        padding-top: 120px;
    }
    .layout-pb-xl {
        padding-bottom: 120px;
    }
}

@media (max-width: 575px) {
    .layout-pt-sm {
        padding-top: 30px;
    }
    .layout-pb-sm {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .layout-pt-md {
        padding-top: 30px;
    }
    .layout-pb-md {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .layout-pt-lg {
        padding-top: 30px;
    }
    .layout-pb-lg {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .layout-pt-xl {
        padding-top: 50px;
    }
    .layout-pb-xl {
        padding-bottom: 50px;
    }
}

.w-1\/7 {
    width: 14.285714% !important;
}

.w-1\/5 {
    width: 20% !important;
}

.w-1\/4 {
    width: 25% !important;
}

.w-1\/3 {
    width: 33.333333% !important;
}

.w-1\/2 {
    width: 50% !important;
}

.w-1\/1 {
    width: 100% !important;
}

@media (max-width: 1199px) {
    .xl\:w-1\/5 {
        width: 20% !important;
    }
    .xl\:w-1\/4 {
        width: 25% !important;
    }
    .xl\:w-1\/3 {
        width: 33.333333% !important;
    }
    .xl\:w-1\/2 {
        width: 50% !important;
    }
    .xl\:w-1\/1 {
        width: 100% !important;
    }
}

@media (max-width: 991px) {
    .lg\:w-1\/5 {
        width: 20% !important;
    }
    .lg\:w-1\/4 {
        width: 25% !important;
    }
    .lg\:w-1\/3 {
        width: 33.333333% !important;
    }
    .lg\:w-1\/2 {
        width: 50% !important;
    }
    .lg\:w-1\/1 {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .md\:w-1\/5 {
        width: 20% !important;
    }
    .md\:w-1\/4 {
        width: 25% !important;
    }
    .md\:w-1\/3 {
        width: 33.333333% !important;
    }
    .md\:w-1\/2 {
        width: 50% !important;
    }
    .md\:w-1\/1 {
        width: 100% !important;
    }
}

@media (max-width: 575px) {
    .sm\:w-1\/5 {
        width: 20% !important;
    }
    .sm\:w-1\/4 {
        width: 25% !important;
    }
    .sm\:w-1\/3 {
        width: 33.333333% !important;
    }
    .sm\:w-1\/2 {
        width: 50% !important;
    }
    .sm\:w-1\/1 {
        width: 100% !important;
    }
}

.flex-column {
    flex-direction: column;
}

@media (max-width: 1199px) {
    .xl\:flex-column {
        flex-direction: column !important;
    }
}

@media (max-width: 991px) {
    .lg\:flex-column {
        flex-direction: column !important;
    }
}

@media (max-width: 767px) {
    .md\:flex-column {
        flex-direction: column !important;
    }
}

@media (max-width: 575px) {
    .sm\:flex-column {
        flex-direction: column !important;
    }
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.items-start {
    align-items: flex-start !important;
}

.items-end {
    align-items: flex-end !important;
}

.items-center {
    align-items: center !important;
}

@media (max-width: 1199px) {
    .xl\:justify-start {
        justify-content: flex-start !important;
    }
    .xl\:justify-end {
        justify-content: flex-end !important;
    }
    .xl\:justify-center {
        justify-content: center !important;
    }
    .xl\:justify-between {
        justify-content: space-between !important;
    }
    .xl\:items-start {
        align-items: flex-start !important;
    }
    .xl\:items-end {
        align-items: flex-end !important;
    }
    .xl\:items-center {
        align-items: center !important;
    }
}

@media (max-width: 991px) {
    .lg\:justify-start {
        justify-content: flex-start !important;
    }
    .lg\:justify-end {
        justify-content: flex-end !important;
    }
    .lg\:justify-center {
        justify-content: center !important;
    }
    .lg\:justify-between {
        justify-content: space-between !important;
    }
    .lg\:items-start {
        align-items: flex-start !important;
    }
    .lg\:items-end {
        align-items: flex-end !important;
    }
    .lg\:items-center {
        align-items: center !important;
    }
}

@media (max-width: 767px) {
    .md\:justify-start {
        justify-content: flex-start !important;
    }
    .md\:justify-end {
        justify-content: flex-end !important;
    }
    .md\:justify-center {
        justify-content: center !important;
    }
    .md\:justify-between {
        justify-content: space-between !important;
    }
    .md\:items-start {
        align-items: flex-start !important;
    }
    .md\:items-end {
        align-items: flex-end !important;
    }
    .md\:items-center {
        align-items: center !important;
    }
}

@media (max-width: 575px) {
    .sm\:justify-start {
        justify-content: flex-start !important;
    }
    .sm\:justify-end {
        justify-content: flex-end !important;
    }
    .sm\:justify-center {
        justify-content: center !important;
    }
    .sm\:justify-between {
        justify-content: space-between !important;
    }
    .sm\:items-start {
        align-items: flex-start !important;
    }
    .sm\:items-end {
        align-items: flex-end !important;
    }
    .sm\:items-center {
        align-items: center !important;
    }
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

@media (max-width: 1199px) {
    .xl\:order-1 {
        order: 1;
    }
    .xl\:order-2 {
        order: 2;
    }
    .xl\:order-3 {
        order: 3;
    }
}

@media (max-width: 991px) {
    .lg\:order-1 {
        order: 1;
    }
    .lg\:order-2 {
        order: 2;
    }
    .lg\:order-3 {
        order: 3;
    }
}

@media (max-width: 767px) {
    .md\:order-1 {
        order: 1;
    }
    .md\:order-2 {
        order: 2;
    }
    .md\:order-3 {
        order: 3;
    }
}

@media (max-width: 575px) {
    .sm\:order-1 {
        order: 1;
    }
    .sm\:order-2 {
        order: 2;
    }
    .sm\:order-3 {
        order: 3;
    }
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}

.bg-accent-1 {
    background-color: #022768;
}


/* .bg-accent-1 {

  background-color: #f2f2f2;

  border: solid 1px white;

} */

.bg-accent-2 {
    background-color: transparent!important;
}

.bg-dark-1 {
    background-color: var(--color-dark-1) !important;
}

.bg-dark-2 {
    background-color: #011840;
}

.bg-dark-3 {
    background-color: var(--color-dark-3) !important;
}

.bg-dark-4 {
    background-color: var(--color-dark-4) !important;
}

.bg-dark-5 {
    background-color: var(--color-dark-5) !important;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.text-white {
    color: var(--color-white);
}

.text-white {
    color: #022768;
}

.text-border {
    color: var(--color-border);
}

.text-accent-1 {
    color: #052a6a;
}

.text-accent-2 {
    color: var(--color-accent-2);
}

.text-dark-1 {
    color: var(--color-dark-1);
}

.text-dark-2 {
    color: var(--color-dark-2);
}

.text-dark-3 {
    color: var(--color-dark-3);
}

.text-dark-4 {
    color: var(--color-dark-4);
}

.text-dark-5 {
    color: var(--color-dark-5);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

@media (max-width: 1199px) {
    .xl\:d-none {
        display: none !important;
    }
    .xl\:d-inline-block {
        display: inline-block !important;
    }
    .xl\:d-block {
        display: block !important;
    }
    .xl\:d-flex {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .lg\:d-none {
        display: none !important;
    }
    .lg\:d-inline-block {
        display: inline-block !important;
    }
    .lg\:d-block {
        display: block !important;
    }
    .lg\:d-flex {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .md\:d-none {
        display: none !important;
    }
    .md\:d-inline-block {
        display: inline-block !important;
    }
    .md\:d-block {
        display: block !important;
    }
    .md\:d-flex {
        display: flex !important;
    }
}

@media (max-width: 575px) {
    .sm\:d-none {
        display: none !important;
    }
    .sm\:d-inline-block {
        display: inline-block !important;
    }
    .sm\:d-block {
        display: block !important;
    }
    .sm\:d-flex {
        display: flex !important;
    }
}

.html-overflow-hidden {
    overflow: hidden !important;
}

.html-overflow-hidden body {
    overflow-y: scroll;
}

.origin-top {
    transform-origin: top !important;
}

.origin-left {
    transform-origin: left !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-normal {
    overflow: initial !important;
}

.overflow-visible {
    overflow: visible !important;
}

.pointer-events-auto {
    pointer-events: auto !important;
}

.pointer-events-none {
    pointer-events: none !important;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.img-ratio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.line-through {
    text-decoration: line-through;
}

.underline {
    text-decoration: underline;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.normal {
    text-transform: none;
}

.rounded-0 {
    border-radius: 0;
}

.rounded-4 {
    border-radius: 4px;
}

.rounded-12 {
    border-radius: 12px;
}

.rounded-full {
    border-radius: 100%;
}

.border-dark-1 {
    border: 1px solid var(--color-dark-1);
}

.border-accent-1 {
    border: 1px solid var(--color-accent-1);
}

.border-top-dark-5 {
    border-top: 1px solid var(--color-dark-5);
}

.border-white {
    border: 1px solid var(--color-white);
}

.border-bottom-accent-2 {
    border-bottom: 1px solid var(--color-accent-2);
}

.size-18 {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.size-40 {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.size-50 {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.size-80 {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.size-100 {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.size-120 {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.shadow-1 {
    box-shadow: 0px 20px 40px 0px #05103612;
}

.shadow-2 {
    box-shadow: 0px 10px 35px 0px #0510361A;
}

.shadow-3 {
    box-shadow: 0px 10px 30px 0px #05103608;
}

.shadow-4 {
    box-shadow: 0px 10px 60px 0px #0510360D;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.h-full {
    height: 100% !important;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z--1 {
    z-index: -1 !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.z-4 {
    z-index: 4 !important;
}

.z-5 {
    z-index: 5 !important;
}

.sectionBg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.sectionBg.-left {
    right: unset;
}

@media (max-width: 991px) {
    .sectionBg.-left {
        position: relative;
        width: 100% !important;
        height: 100%;
    }
}

.sectionBg.-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sectionBg.-mx-60 {
    margin: 0 60px;
}

@media (max-width: 1600px) {
    .sectionBg.-mx-60 {
        margin: 0;
    }
}

@media (max-width: 1199px) {
    .sectionBg.-mx-60 {
        margin: 0;
    }
}

.sectionBg.-overlay-1::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.table.-type-1 {
    overflow-x: scroll;
    width: 100%;
}

.table.-type-1::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.table.-type-1::-webkit-scrollbar-thumb {
    background-color: #F7F0EC;
    border-radius: 100px;
}

.table.-type-1 table {
    width: 100%;
}

.table.-type-1 table thead {
    color: white;
    background-color: var(--color-accent-1);
}

.table.-type-1 table thead tr {
    border: none;
}

.table.-type-1 table tr {
    border-bottom: 1px solid #F7F0EC;
}

.table.-type-1 table td {
    font-weight: 500;
    padding: 25px 60px;
}

@media (max-width: 1199px) {
    .table.-type-1 table td {
        padding: 20px 40px;
    }
}

.table.-type-2 {
    overflow-x: scroll;
    width: 100%;
}

.table.-type-2::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.table.-type-2::-webkit-scrollbar-thumb {
    background-color: #F7F0EC;
    border-radius: 100px;
}

.table.-type-2 table {
    width: 100%;
}

.table.-type-2 table thead {
    color: white;
    background-color: var(--color-accent-1);
}

.table.-type-2 table thead tr {
    border: none;
}

.table.-type-2 table tr {
    border-bottom: 1px solid #F7F0EC;
}

.table.-type-2 table td {
    font-weight: 500;
    padding: 18px 25px;
}

.searchInput input {
    padding: 15px 20px;
    border: 1px solid #F7F0EC;
}

.searchInput input::-moz-placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
    color: black;
}

.searchInput input::placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
    color: black;
}

.imageSlider.-type-1 {
    overflow: hidden;
    position: relative;
    margin: 0 20px;
    height: 960px;
    color: white;
    z-index: 0;
}

@media (max-width: 1199px) {
    .imageSlider.-type-1 {
        height: 800px;
    }
}

@media (max-width: 991px) {
    .imageSlider.-type-1 {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .imageSlider.-type-1 {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .imageSlider.-type-1 {
        height: 480px;
    }
}

.imageSlider.-type-1 .imageSlider__slider {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
}

.imageSlider.-type-1 .imageSlider__image {
    position: relative;
    height: 100%;
}

.imageSlider.-type-1 .imageSlider__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(25, 29, 35, 0) 23.13%, rgba(25, 29, 35, 0.7) 100%);
}

.imageSlider.-type-1 .imageSlider__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.imageSlider.-type-1 .imageSlider__title {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.imageSlider.-type-1 .imageSlider__content {
    padding-top: 120px;
}

@media (max-width: 767px) {
    .imageSlider.-type-1 .imageSlider__content {
        padding-top: 60px;
    }
}

.imageSlider.-type-1 .imageSlider__nav {
    display: flex;
}

.imageSlider.-type-1.-center .imageSlider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 5;
}

.imageSlider.-type-1.-center .imageSlider__nav>* {
    display: flex;
    justify-content: space-between;
}

.testimonialsSection {
    position: relative;
    height: 960px;
    z-index: 0;
}

@media (max-width: 1199px) {
    .testimonialsSection {
        height: 720px;
    }
}

@media (max-width: 991px) {
    .testimonialsSection {
        height: 640px;
    }
}

@media (max-width: 767px) {
    .testimonialsSection {
        height: auto;
    }
}

.testimonialsSection .container {
    height: 100%;
}

.testimonialsSection .row {
    height: 100%;
}

.testimonialsSection__bg {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonialsSection__bg>*:nth-child(2) {
    width: 50%;
    height: 100%;
}

@media (max-width: 1199px) {
    .testimonialsSection__bg>*:nth-child(2) {
        width: 60%;
    }
}

@media (max-width: 991px) {
    .testimonialsSection__bg>*:nth-child(2) {
        width: 65%;
    }
}

@media (max-width: 767px) {
    .testimonialsSection__bg>*:nth-child(2) {
        width: 100%;
    }
}

.testimonialsSection__images {
    position: relative;
    display: flex;
    width: 50%;
    height: 100%;
    z-index: -1;
    transition: .5s;
}

@media (max-width: 1199px) {
    .testimonialsSection__images {
        width: 40%;
    }
}

@media (max-width: 991px) {
    .testimonialsSection__images {
        width: 35%;
    }
}

@media (max-width: 767px) {
    .testimonialsSection__images {
        display: none;
    }
}

.testimonialsSection__images img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonialsSection__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mapSection {
    position: relative;
}

.mapSection img {
    width: 100%;
    height: 100%;
    height: auto;
}

.mapSection__markers>*:nth-child(1) {
    top: 31.94%;
    left: 28.04%;
}

.mapSection__markers>*:nth-child(2) {
    top: 25.72%;
    left: 43.77%;
}

.mapSection__markers>*:nth-child(3) {
    top: 76.14%;
    left: 32.05%;
}

.mapSection__markers>*:nth-child(4) {
    top: 61.12%;
    left: 67.44%;
}

.mapSection .mapSectionMarker {
    position: absolute;
    color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 10;
    transform: translateX(-20px) translateY(-20px);
}

.mapSection .mapSectionMarker__dot {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    background-color: rgba(194, 159, 123, 0.15);
    z-index: 0;
}

.mapSection .mapSectionMarker__dot::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-1);
    border-radius: 100%;
    z-index: -1;
}

.mapSection .mapSectionMarker__dot::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 20px white;
    border-radius: 100%;
    z-index: -2;
    animation: Ani 2s infinite;
}

.mapSection .mapSectionMarker__dot:hover+.mapSectionMarker__hover {
    opacity: 1;
    transform: none;
}

.mapSection .mapSectionMarker__content {
    position: absolute;
    top: calc(100% + 20px);
}

@media (max-width: 767px) {
    .mapSection .mapSectionMarker__content {
        display: none;
    }
}

.mapSection .mapSectionMarker__title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.mapSection .mapSectionMarker__text {
    text-transform: uppercase;
    font-size: 16px;
    white-space: nowrap;
    margin-top: 4px;
}

.mapSection .mapSectionMarker__hover {
    position: absolute;
    bottom: calc(100% + 12px);
    background-color: var(--color-accent-1);
    border-radius: 100px;
    padding: 6px 20px;
    transition: .2s;
    transform: translateY(8px);
    opacity: 0;
}

.mapSection .mapSectionMarker__hover::after {
    content: "";
    position: absolute;
    top: 98%;
    left: 48%;
    background-color: var(--color-accent-1);
    transform-origin: center;
    transform: rotate(45deg) translateX(-50%);
    width: 8px;
    height: 8px;
}

.mapSection .mapSectionMarker__hover>* {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.mapSection.-half {
    height: 100%;
}

@media (max-width: 991px) {
    .mapSection.-half img {
        height: 400px;
    }
}

@keyframes Ani {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(0);
    }
    70% {
        box-shadow: 0 0 50px #fff;
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0);
        transform: scale(1.5);
    }
}

.videoSection {
    position: relative;
    height: 860px;
}

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

@media (max-width: 1199px) {
    .videoSection {
        height: 720px;
    }
}

@media (max-width: 991px) {
    .videoSection {
        height: 640px;
    }
}

@media (max-width: 767px) {
    .videoSection {
        height: 400px;
    }
}

.h-auto {
    height: auto !important;
}

.noPageSection {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.noPageSection__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.noPageSection__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    padding-top: 30px;
}

.noPageSection__num {
    font-size: 160px;
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .noPageSection__num {
        font-size: 90px;
    }
}

.noPageSection__title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1.5px;
}

@media (max-width: 767px) {
    .noPageSection__title {
        font-size: 28px;
    }
}

.noPageSection__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .noPageSection__text {
        font-size: 16px;
    }
}

.noPageSection__button {
    margin-top: 48px;
}

@media (max-width: 767px) {
    .noPageSection__button {
        margin-top: 40px;
    }
}

.noPageSection__button>* {
    max-width: 100%;
    min-width: 280px;
}

.accordion__icon {
    position: relative;
}

.accordion__icon .icon {
    transition: all 0.2s ease-out;
}

.accordion__icon .icon:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
}

.accordion__icon .icon:nth-child(2) {
    position: relative;
    transform: rotate(-90deg);
    opacity: 0;
}

.accordion__item.is-active .accordion__icon>*:nth-child(1) {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion__item.is-active .accordion__icon>*:nth-child(2) {
    transform: none;
    opacity: 1;
}

.accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.accordion__button {
    cursor: pointer;
}

.accordion.-simple .accordion__button {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-accent-2);
    transition: 0.4s;
}

.accordion.-simple .accordion__button button {
    color: var(--text-dark-1);
}

.accordion.-simple .accordion__icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border: 1px solid var(--color-accent-1);
    color: #082d6c;
    transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__icon>*:nth-child(1) {
    position: absolute;
    transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__icon>*:nth-child(2) {
    position: relative;
    transform: rotate(-90deg);
    opacity: 0;
    transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__item.is-active .accordion__icon>*:nth-child(1) {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion.-simple .accordion__item.is-active .accordion__icon>*:nth-child(2) {
    transform: none;
    opacity: 1;
}

.imageSliderNav {
    position: absolute;
    top: 90%;
    left: 90%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    z-index: 1;
}

.imageSliderNav>* {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 27px;
    background-color: var(--color-dark-1);
    border-radius: 90px;
}

.imageSliderNav>*:hover {
    background-color: var(--color-dark-3);
}

.testimonialsNav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonialsNav>button {
    display: flex;
    align-items: center;
    font-size: 22px;
}

.testimonialsNav>*+* {
    margin-left: 15px;
}

.testimonialsPag {
    font-size: 14px;
}

.testimonialsPag>* {
    color: var(--color-dark-4);
    opacity: 0.4;
}

.testimonialsPag .is-active {
    color: white !important;
    opacity: 1;
}

.testimonialsPag>*+* {
    margin-left: 15px;
}

.testimonialsPag.-dark .is-active {
    color: var(--color-dark-1) !important;
}

.-hover-link:hover {
    color: var(--color-accent-1);
}

.-hover-link-2:hover {
    color: var(--color-white);
}

.aboutImages.-type-1 {
    position: relative;
}

@media (max-width: 991px) {
    .aboutImages.-type-1 {
        display: grid;
        gap: 30px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .aboutImages.-type-1 {
        grid-template-columns: 1fr;
    }
}

.aboutImages.-type-1>*:nth-child(2) {
    position: absolute;
    bottom: -90px;
    right: -120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .aboutImages.-type-1>*:nth-child(2) {
        right: 50px;
    }
}

@media (max-width: 991px) {
    .aboutImages.-type-1>*:nth-child(2) {
        position: relative;
        bottom: unset;
        right: unset;
    }
}

.items-center-imp {
    align-items: center !important;
}

.test {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
}

@media (max-width: 1199px) {
    .test {
        position: relative;
        width: 100%;
    }
}

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

.icon-minus-1 {
    width: 10px;
    height: 1px;
    background-color: var(--color-accent-1);
}

@media (max-width: 1600px) {
    .absoluteNavSlider {
        margin: 0 80px;
    }
}

@media (max-width: 991px) {
    .absoluteNavSlider {
        margin: 0;
    }
}

.absoluteNav {
    position: absolute;
    top: 50%;
    left: -110px;
    right: -110px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 5;
}

@media (max-width: 1600px) {
    .absoluteNav {
        left: -30px;
        right: -30px;
    }
}

@media (max-width: 991px) {
    .absoluteNav {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }
}

.imageGrid.-type-1 {
    position: relative;
    height: 700px;
}

@media (max-width: 991px) {
    .imageGrid.-type-1 {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .imageGrid.-type-1 {
        height: auto;
    }
}

.imageGrid.-type-1 .imageGrid__images {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 570px);
    height: 100%;
}

@media (max-width: 991px) {
    .imageGrid.-type-1 .imageGrid__images {
        position: relative;
        grid-template-columns: repeat(2, 1fr);
        height: 100%;
    }
}

@media (max-width: 767px) {
    .imageGrid.-type-1 .imageGrid__images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.imageGrid.-type-1 .imageGrid__images img {
    width: 100%;
    height: 700px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991px) {
    .imageGrid.-type-1 .imageGrid__images img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .imageGrid.-type-1 .imageGrid__images img {
        height: auto;
        max-height: 400px;
    }
}

@media (max-width: 575px) {
    .imageGrid.-type-1 .imageGrid__images img {
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    .singleImage.-type-1 {
        height: 400px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 575px) {
    .singleImage.-type-1 {
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.blockquote {
    position: relative;
    background-color: var(--color-accent-2);
    padding: 35px 220px 25px 60px;
    z-index: 0;
}

@media (max-width: 767px) {
    .blockquote {
        padding: 20px 40px;
    }
}

@media (max-width: 575px) {
    .blockquote {
        padding: 20px 20px;
    }
}

.blockquote>*:nth-child(1) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent-1);
    width: 3px;
    z-index: 1;
}

.blockquote>*:nth-child(2) {
    font-size: 18px;
}

@media (max-width: 767px) {
    .blockquote>*:nth-child(2) {
        font-size: 16px;
    }
}

.blockquote>*:nth-child(3) {
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 10px;
    text-transform: uppercase;
}

.blogContent .list {
    font-size: 18px;
    padding-left: 1rem;
}

@media (max-width: 767px) {
    .blogContent .list {
        font-size: 16px;
    }
}

.blogContent .list li {
    list-style: disc;
}

.blogContent .list li+li {
    margin-top: 6px;
}

.blogDivider {
    width: 100%;
    height: 1px;
    background-color: var(--color-accent-2);
}

.blogSocial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.blogSocial:hover {
    color: var(--color-dark-1);
    border-color: var(--color-accent-1);
}

.blogTag {
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid var(--color-accent-1);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blogTag:hover {
    border-color: var(--color-dark-1);
    background-color: var(--color-accent-2);
}

.blogOtherPosts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    padding: 60px;
}

@media (max-width: 767px) {
    .blogOtherPosts {
        gap: 60px;
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .blogOtherPosts {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    .blogOtherPosts>* {
        text-align: center !important;
    }
}

.blogOtherPosts>* h5 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.blogOtherPosts>* div {
    font-size: 18px;
}

@media (max-width: 767px) {
    .blogOtherPosts>* div {
        font-size: 16px;
    }
}

.blogOtherPosts>*:nth-child(2) {
    text-align: right;
}

.blogForm {
    width: 690px;
    max-width: 100%;
}

.blogForm textarea,
.blogForm input {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

.blogForm textarea:focus,
.blogForm input:focus {
    border-color: var(--color-accent-1);
}

.alertMsg.-info {
    color: #4780AA;
    background-color: rgba(205, 233, 246, 0.5);
}

.alertMsg.-warning {
    color: #927238;
    background-color: rgba(247, 243, 215, 0.5);
}

.alertMsg.-error {
    color: #AB3331;
    background-color: rgba(236, 200, 197, 0.5);
}

.alertMsg.-success {
    color: #5B7052;
    background-color: rgba(222, 242, 215, 0.5);
}

.tooltip {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.tooltip__content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 11px;
    font-size: 14px;
    line-height: 1.2;
    background-color: var(--color-dark-1);
    color: white;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.tooltip__content::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: black;
    transform: rotate(45deg);
}

.tooltip.-top .tooltip__content {
    bottom: calc(100% + 6px);
    transform: translateY(8px);
}

.tooltip.-top .tooltip__content::after {
    bottom: -4px;
}

.tooltip.-bottom .tooltip__content {
    top: calc(100% + 6px);
    transform: translateY(-8px);
}

.tooltip.-bottom .tooltip__content::after {
    top: -4px;
}

.tooltip.-left .tooltip__content {
    right: calc(100% + 6px);
    transform: translateX(8px);
}

.tooltip.-left .tooltip__content::after {
    right: -4px;
}

.tooltip.-right .tooltip__content {
    left: calc(100% + 6px);
    transform: translateX(-8px);
}

.tooltip.-right .tooltip__content::after {
    left: -4px;
}

.tooltip:hover .tooltip__content {
    transform: none;
    opacity: 1;
}

.progressBar {
    position: relative;
}

.progressBar__bg {
    width: 100%;
    height: 10px;
    border-radius: 50px;
}

.progressBar__bar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    height: 100%;
    border-radius: 50px;
}

.progressBar__bar span {
    position: absolute;
    right: -15px;
    bottom: 100%;
}

.noUi-target {
    height: 4px !important;
    border: none;
    outline: 1px solid rgba(0, 0, 0, 0.08);
}

.noUi-connect {
    background-color: #5BBB7B !important;
    box-shadow: 0 !important;
}

.noUi-handle {
    border-radius: 100%;
    width: 20px !important;
    height: 20px !important;
    top: 50% !important;
    transform: translateY(-50%);
    border: 2px solid #5BBB7B;
    box-shadow: 0 !important;
}

.noUi-handle::before {
    display: none;
}

.noUi-handle::after {
    display: none;
}

.requestForm {
    position: relative;
    transition: 0.2s;
    pointer-events: none;
    opacity: 0;
    z-index: 5000;
}

.requestForm__overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(25, 29, 35, 0.5);
    z-index: 4999;
}

.requestForm__content {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 720px;
    max-width: 100%;
    background-color: white;
    z-index: 5000;
}

.requestForm__container {
    padding: 30px 60px 80px 60px;
}

@media (max-width: 575px) {
    .requestForm__container {
        padding: 20px 20px;
    }
}

.requestForm__close {
    position: absolute;
    top: 30px;
    right: 60px;
}

@media (max-width: 575px) {
    .requestForm__close {
        top: 20px;
        right: 20px;
    }
}

.requestForm__close button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    transition: 0.15s;
}

@media (max-width: 575px) {
    .requestForm__close button {
        width: 64px;
        height: 64px;
    }
}

.requestForm__close button:hover {
    background-color: var(--color-dark-1);
    border-color: var(--color-dark-2);
    color: white;
}

.requestForm__close i {
    font-size: 13px;
}

.requestForm__title {
    font-size: 62px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .requestForm__title {
        font-size: 44px;
    }
}

@media (max-width: 575px) {
    .requestForm__title {
        font-size: 36px;
    }
}

.requestForm__form {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .requestForm__form {
        margin-top: 20px;
    }
}

.requestForm.is-active {
    pointer-events: auto;
    opacity: 1;
}

.hover-btn-explore__item {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.9);
    transition: .3s;
    opacity: 0;
    z-index: 5;
}

.hover-btn-explore:hover .hover-btn-explore__item {
    opacity: 1;
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.-hover-iconCard-1 {
    transition: 0.2s;
}

.-hover-iconCard-1:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0);
    color: white;
}

.hover-icon-1__item {
    transition: .2s;
}

.hover-icon-1:hover .hover-icon-1__item {
    background-color: var(--color-accent-1) !important;
    color: white !important;
}

.toTopButton {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 35px;
    height: 35px;
    color: var(--color-accent-1);
    border-radius: 100%;
    border: 1px solid var(--color-accent-1);
    transition: .15s;
    z-index: 500;
}

@media (max-width: 767px) {
    .toTopButton {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

.toTopButton.is-hidden {
    pointer-events: none;
    opacity: 0;
}

.toTopButton>* {
    display: block;
    transform: rotate(180deg);
    font-size: 20px;
}

.toTopButton:hover {
    background-color: var(--color-accent-1);
    color: white;
}

.-image-slider-1 .swiper-slide {
    transform: scale(0.9);
    transition: 0.3s;
}

.-image-slider-1 .swiper-slide .exploreButton {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.9);
    transition: .4s;
    opacity: 0;
    z-index: 5;
    transform-origin: center;
}

.-image-slider-1 .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.-image-slider-1 .swiper-slide.swiper-slide-active .exploreButton {
    opacity: 1;
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.-hover-iconCard-3 {
    transition: 0.2s;
}

.-hover-iconCard-3 .-hoverIcon {
    transition: 0.2s;
}

.-hover-iconCard-3:hover {
    background-color: var(--color-accent-2);
}

.-hover-iconCard-3:hover .-hoverIcon {
    background-color: var(--color-accent-1);
    color: white;
}

.-hover-iconCard-2:hover {
    background-color: var(--color-accent-1) !important;
    color: white !important;
}

.-hover-iconCard-2:hover .-hover-icon {
    color: rgba(255, 255, 255, 0.5);
}

.-hover-iconCard-2:hover .-hover-button {
    color: white;
}

.-hover-iconCard-2:hover .-hover-button span {
    color: var(--color-accent-1) !important;
    border-color: var(--color-accent-1) !important;
    background-color: white;
}

.is-tab-el-active.-base-active {
    background-color: var(--color-accent-2);
}

.card-flex-end {
    display: flex;
}

.card-flex-end>* {
    align-self: flex-end;
}


/* NEW CSS */


/* Listings Styles */

.listing-style1 {
    background-color: #ffffff;
    border-radius: 12px;
    -webkit-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
    -moz-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
    -o-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
    box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.49);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.listing-style1 .list-thumb {
    overflow: hidden;
    position: relative;
}

.listing-style1 img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.listing-style1 .list-agent {
    position: absolute;
    right: 30px;
    top: -40px;
}

.listing-style1 .list-tag {
    background-color: #EB6753;
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Poppins';
    font-weight: 600;
    left: 20px;
    opacity: 1;
    padding: 2px 12px;
    position: absolute;
    top: 20px;
    transform: translateY(0px);
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.listing-style1 .tag-del {
    background-color: #ffffff;
    border-radius: 4px;
    color: var(--headings-color);
    font-size: 10px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    width: 40px;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.listing-style1 .list-price {
    background-color: #ffffff;
    border-radius: 6px;
    bottom: 20px;
    color: var(--headings-color);
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 15px;
    left: 20px;
    padding: 3px 12px;
    position: absolute;
}

.listing-style1 .list-price span {
    font-weight: normal;
}

.listing-style1 .list-meta a {
    font-family: 'Poppins';
    font-size: 13px;
    margin-right: 25px;
}

.listing-style1 .list-meta a:last-child {
    margin-right: 0;
}

@media (max-width: 320px) {
    .listing-style1 .list-meta a {
        margin-right: 15px;
    }
}

.listing-style1 .list-meta span {
    margin-right: 6px;
}

.listing-style1 .list-content {
    padding: 20px;
    position: relative;
}

.listing-style1 .list-title {
    margin-bottom: 2px;
}

.listing-style1 .list-title a {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    color: #022768;
}

.listing-style1 .list-title a:hover {
    color: var(--headings-color);
}

.listing-style1 .list-text {
    color: #000;
    margin-bottom: 10px;
}

.listing-style1 .list-text span {
    margin-right: 6px;
}

.listing-style1 .list-meta2 a {
    background-color: #022768;
    border-radius: 6px;
    height: 35px;
    line-height: 40px;
    text-align: center;
    width: 100px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-top: 10px;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
}

.bgtheme1 {
    background-color: #fff !important;
    border: solid 1px black;
}

.listing-style1 .list-meta2 a:hover {
    background-color: #F7F7F7;
    color: var(--headings-color);
}

.listing-style1 .for-what {
    font-size: 13px;
    color: var(--headings-color);
    font-family: 'Poppins';
    font-weight: 400;
}

.listing-style1 hr {
    background-color: #DDDDDD;
    opacity: 1;
}

.listing-style1:hover .list-title {
    text-decoration: underline;
}

.listing-style1:hover .list-tag {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
}

.listing-style1:hover .list-thumb img {
    transform: scale(1.1) rotate(-1deg);
}

.listing-style1.style2 {
    box-shadow: none;
    border: 1px solid #DDDDDD;
}

.listing-style1.style3 {
    -webkit-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
    -moz-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
    -o-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
    box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
}

.listing-style1.style4 {
    box-shadow: none;
}

.listing-style1.style4 .list-thumb {
    border-radius: 6px;
    overflow: hidden;
}

.listing-style1.style4 .list-content {
    padding-left: 0;
    padding-right: 0;
}

.listing-style1.listing-type {
    border-radius: 12px;
    display: flex;
}

@media (max-width: 767.98px) {
    .listing-style1.listing-type {
        display: block;
    }
}

.listing-style1.listing-type .list-content {
    padding: 30px;
}

.listing-style1.listing-type .list-text2 {
    color: var(--headings-color);
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: normal;
}

.listing-style1.listing-type img {
    height: 100%;
}

.listing-style1.style12 {
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .listing-style1.style12 .list-agent {
        right: 0px;
    }
    .listing-style1.style12 .list-agent img {
        width: 70px;
    }
}

.listing-style1.sidebar-style1 {
    box-shadow: none;
}

.listing-style1.sidebar-style1 .list-thumb {
    border-radius: 6px;
}

.listing-style1.sidebar-style1 .list-meta a {
    margin-right: 10px;
}

.listing-style1.mini-style {
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    -moz-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    -o-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    left: 40px;
    max-width: 305px;
    position: absolute;
    top: -223px;
    width: 100%;
}

@media (max-width: 991.98px) {
    .listing-style1.mini-style {
        position: relative;
        top: 0;
    }
}

@media (max-width: 425px) {
    .listing-style1.mini-style {
        left: 0;
    }
}

.listing-style1.mini-style .btn {
    padding: 0;
    color: var(--headings-color);
    font-family: 'Poppins';
    font-weight: 600;
}

.listing-style1.mini-style .btn i {
    margin-left: 10px;
    transform: rotate(-30deg);
}

.listing-style1.mini-style .list-content {
    padding: 30px;
}

.listing-style1.mini-style {
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    -moz-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    -o-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
    left: 40px;
    max-width: 305px;
    position: absolute;
    top: -223px;
    width: 100%;
}

@media (max-width: 991.98px) {
    .listing-style1.mini-style {
        position: relative;
        top: 0;
    }
    .listing-style1 .d-flex {
        display: block !important;
        margin-bottom: 6px;
    }
}

@media (max-width: 425px) {
    .listing-style1.mini-style {
        left: 0;
    }
}

.listing-style1.mini-style .btn {
    padding: 0;
    color: var(--headings-color);
    font-family: 'Poppins';
    font-weight: 600;
}

.listing-style1.mini-style .btn i {
    margin-left: 10px;
    transform: rotate(-30deg);
}

.listing-style1.mini-style .list-content {
    padding: 30px;
}

.listing-style1.at-home9-hero .list-price {
    background-color: #EB6753;
    bottom: 17px;
    color: #ffffff;
    display: inline-block;
    left: 0;
    max-width: 127px;
    position: relative;
}

.listing-style1.at-home9-hero .list-price span {
    font-weight: normal;
}

.listing-style1.at-home9-hero .list-content {
    padding: 35px 20px 20px;
}

.listing-style1.dashboard-style {
    box-shadow: none;
}

.listing-style1.dashboard-style .list-thumb {
    border-radius: 12px;
    height: 90px;
    max-width: 110px;
}

.listing-style1.dashboard-style img {
    border-radius: 12px;
}

.listing-style1.dashboard-style .list-text {
    margin-bottom: 0px;
}

.listing-style1.dashboard-style .list-price {
    bottom: 0;
    left: 0;
    position: relative;
    padding: 0;
}

.footer__icon img {
    width: 200px;
}

@media (max-width: 1280px) {
    .headerMenu__item+* {
        margin-left: 17px;
    }
    .headerMenu__item {
        font-size: 14px;
    }
    .headerMenuSubnav__item a {
        font-size: 14px;
    }
    .button.-md {
        padding: 12px 20px;
    }
    .hero.-type-7 .hero__title {
        font-size: 50px;
        line-height: 1.2;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
}

.serv {
    color: #022768;
}

.serv-sub {
    color: white;
}


/* 

.button.-md.-dark-1.bgtheme.text-white.serv-sub {

  background: transparent;

  border: solid 1px #052a6a;

  color: #052969;

} */


/* new style */

.team-boxed {
    color: #313437;
    background-color: #eef4f7;
}

.team-boxed p {
    color: #7d8285;
}

.team-boxed h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
}

@media (max-width:767px) {
    .team-boxed h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
}

.team-boxed .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.team-boxed .intro p {
    margin-bottom: 0;
}

.team-boxed .people {
    padding: 50px 0;
}

.team-boxed .item {
    text-align: center;
}

.team-boxed .item .box {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    margin-bottom: 30px;
}

.team-boxed .item .name {
    font-weight: bold;
    margin-top: 28px;
    margin-bottom: 8px;
    color: inherit;
}

.team-boxed .item .title {
    text-transform: uppercase;
    font-weight: bold;
    color: #d0d0d0;
    letter-spacing: 2px;
    font-size: 13px;
}

.team-boxed .item .description {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.team-boxed .item img {
    max-width: 160px;
}

.team-boxed .social {
    font-size: 18px;
    color: #a2a8ae;
}

.team-boxed .social a {
    color: inherit;
    margin: 0 10px;
    display: inline-block;
    opacity: 0.7;
}

.team-boxed .social a:hover {
    opacity: 1;
}


/* 

.contactForm {

  background-color: #fff;

  box-shadow: 10px 10px 10px 10px #f0f0f0;

  padding: 21px 10px 10px 16px;

} */

.content {
    margin: 0 auto;
    max-width: 1000px;
}

.content>h2 {
    clear: both;
    margin: 0;
    padding: 4em 1% 0;
    color: #484b54;
    font-weight: 800;
    font-size: 1.5em;
}

.content>h2:first-child {
    padding-top: 0em;
}

.grid {
    position: relative;
    margin: 0 auto;
    /* padding: 1em 0 4em; */
    max-width: 1000px;
    list-style: none;
    text-align: center;
    /* Common style */
    /* Anchor will cover the whole item by default */
    /* For some effects it will show as a button */
}

.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 455px;
    max-width: 480px;
    max-height: 360px;
    width: 48%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (max-width: 50em) {
    .grid .content {
        padding: 0 10px;
        text-align: center;
    }
    .grid .grid figure {
        display: inline-block;
        float: none;
        margin: 10px auto;
        width: 100%;
    }
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid figure figcaption>a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

figure.effect-sadie figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
    content: "";
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}

figure.effect-sadie h2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #484c61;
    transition: transform 0.35s, color 0.35s;
    transform: translate3d(0, -50%, 0);
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
}

figure.effect-sadie:hover h2 {
    color: #fff;
    transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
}

figure.effect-sadie:hover figcaption::before,
figure.effect-sadie:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-roxy {
    background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
}

figure.effect-roxy img {
    max-width: none;
    width: calc(100% + 60px);
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-50px, 0, 0);
}

figure.effect-roxy figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: "";
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-20px, 0, 0);
}

figure.effect-roxy figcaption {
    padding: 3em;
    text-align: left;
}

figure.effect-roxy h2 {
    padding: 30% 0 10px 0;
}

figure.effect-roxy p {
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-10px, 0, 0);
}

figure.effect-roxy:hover img {
    opacity: 0.7;
    transform: translate3d(0, 0, 0);
}

figure.effect-roxy:hover figcaption::before,
figure.effect-roxy:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-bubba {
    background: #9e5406;
}

figure.effect-bubba img {
    opacity: 0.7;
    transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
    opacity: 0.4;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: "";
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale(0, 1);
}

figure.effect-bubba figcaption::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: scale(1, 0);
}

figure.effect-bubba h2 {
    padding-top: 30%;
    transition: transform 0.35s;
    transform: translate3d(0, -20px, 0);
}

figure.effect-bubba p {
    padding: 20px 2.5em;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, 20px, 0);
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
    opacity: 1;
    transform: scale(1);
}

figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-romeo {
    perspective: 1000px;
}

figure.effect-romeo img {
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, 0, 300px);
}

figure.effect-romeo:hover img {
    opacity: 0.6;
    transform: translate3d(0, 0, 0);
}

figure.effect-romeo figcaption::before,
figure.effect-romeo figcaption::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: #fff;
    content: "";
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-50%, -50%, 0);
}

figure.effect-romeo:hover figcaption::before {
    opacity: 0.5;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

figure.effect-romeo:hover figcaption::after {
    opacity: 0.5;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

figure.effect-romeo h2,
figure.effect-romeo p {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transition: transform 0.35s;
}

figure.effect-romeo h2 {
    transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
}

figure.effect-romeo p {
    padding: 0.25em 2em;
    transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
}

figure.effect-romeo:hover h2 {
    transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
}

figure.effect-romeo:hover p {
    transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
}

figure.effect-layla {
    background: #18a367;
}

figure.effect-layla img {
    height: 390px;
}

figure.effect-layla figcaption {
    padding: 3em;
}

figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
    position: absolute;
    content: "";
    opacity: 0;
}

figure.effect-layla figcaption::before {
    top: 50px;
    right: 30px;
    bottom: 50px;
    left: 30px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale(0, 1);
    transform-origin: 0 0;
}

figure.effect-layla figcaption::after {
    top: 30px;
    right: 50px;
    bottom: 30px;
    left: 50px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: scale(1, 0);
    transform-origin: 100% 0;
}

figure.effect-layla h2 {
    padding-top: 26%;
    transition: transform 0.35s;
}

figure.effect-layla p {
    padding: 0.5em 2em;
    text-transform: none;
    opacity: 0;
    transform: translate3d(0, -10px, 0);
}

figure.effect-layla img,
figure.effect-layla h2 {
    transform: translate3d(0, -30px, 0);
}

figure.effect-layla img,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p {
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-layla:hover img {
    opacity: 0.7;
    transform: translate3d(0, 0, 0);
}

figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
    opacity: 1;
    transform: scale(1);
}

figure.effect-layla:hover h2,
figure.effect-layla:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h2,
figure.effect-layla:hover p,
figure.effect-layla:hover img {
    transition-delay: 0.15s;
}

figure.effect-honey {
    background: #4a3753;
}

figure.effect-honey img {
    opacity: 0.9;
    transition: opacity 0.35s;
}

figure.effect-honey:hover img {
    opacity: 0.5;
}

figure.effect-honey figcaption::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #fff;
    content: "";
    transform: translate3d(0, 10px, 0);
}

figure.effect-honey h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em 1.5em;
    width: 100%;
    text-align: left;
    transform: translate3d(0, -30px, 0);
}

figure.effect-honey h2 i {
    font-style: normal;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, -30px, 0);
}

figure.effect-honey figcaption::before,
figure.effect-honey h2 {
    transition: transform 0.35s;
}

figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h2,
figure.effect-honey:hover h2 i {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-oscar {
    background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}

figure.effect-oscar img {
    opacity: 0.9;
    transition: opacity 0.35s;
}

figure.effect-oscar figcaption {
    padding: 3em;
    background-color: rgba(58, 52, 42, 0.7);
    transition: background-color 0.35s;
}

figure.effect-oscar figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: "";
}

figure.effect-oscar h2 {
    margin: 20% 0 10px 0;
    transition: transform 0.35s;
    transform: translate3d(0, 100%, 0);
}

figure.effect-oscar figcaption::before,
figure.effect-oscar p {
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(0);
}

figure.effect-oscar:hover h2 {
    transform: translate3d(0, 0, 0);
}

figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
    opacity: 1;
    transform: scale(1);
}

figure.effect-oscar:hover figcaption {
    background-color: rgba(58, 52, 42, 0);
}

figure.effect-oscar:hover img {
    opacity: 0.4;
}

figure.effect-marley figcaption {
    text-align: right;
}

figure.effect-marley h2,
figure.effect-marley p {
    position: absolute;
    right: 30px;
    left: 30px;
    padding: 10px 0;
}

figure.effect-marley p {
    bottom: 30px;
    line-height: 1.5;
    transform: translate3d(0, 100%, 0);
}

figure.effect-marley h2 {
    top: 30px;
    transition: transform 0.35s;
    transform: translate3d(0, 20px, 0);
}

figure.effect-marley:hover h2 {
    transform: translate3d(0, 0, 0);
}

figure.effect-marley h2::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    content: "";
    transform: translate3d(0, 40px, 0);
}

figure.effect-marley h2::after,
figure.effect-marley p {
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-marley:hover h2::after,
figure.effect-marley:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-ruby {
    background-color: #17819c;
}

figure.effect-ruby img {
    opacity: 0.7;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(1.15);
}

figure.effect-ruby:hover img {
    opacity: 0.5;
    transform: scale(1);
}

figure.effect-ruby h2 {
    margin-top: 20%;
    transition: transform 0.35s;
    transform: translate3d(0, 20px, 0);
}

figure.effect-ruby p {
    margin: 1em 0 0;
    padding: 3em;
    border: 1px solid #fff;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, 20px, 0) scale(1.1);
}

figure.effect-ruby:hover h2 {
    transform: translate3d(0, 0, 0);
}

figure.effect-ruby:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

figure.effect-milo {
    background: #2e5d5a;
}

figure.effect-milo img {
    max-width: none;
    width: calc(100% + 60px);
    opacity: 1;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-30px, 0, 0) scale(1.12);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-milo:hover img {
    opacity: 0.5;
    transform: translate3d(0, 0, 0) scale(1);
}

figure.effect-milo h2 {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 1em 1.2em;
}

figure.effect-milo p {
    padding: 0 10px 0 0;
    width: 50%;
    border-right: 1px solid #fff;
    text-align: right;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-40px, 0, 0);
}

figure.effect-milo:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-dexter {
    background: linear-gradient(to bottom, #258dc8 0%, #683c13 100%);
}

figure.effect-dexter img {
    transition: opacity 0.35s;
}

figure.effect-dexter:hover img {
    opacity: 0.4;
}

figure.effect-dexter figcaption::after {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    height: calc(50% - 30px);
    border: 7px solid #fff;
    content: "";
    transition: transform 0.35s;
    transform: translate3d(0, -100%, 0);
}

figure.effect-dexter:hover figcaption::after {
    transform: translate3d(0, 0, 0);
}

figure.effect-dexter figcaption {
    padding: 3em;
    text-align: left;
}

figure.effect-dexter p {
    position: absolute;
    right: 60px;
    bottom: 60px;
    left: 60px;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, -100px, 0);
}

figure.effect-dexter:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-sarah {
    background: #42b078;
}

figure.effect-sarah img {
    max-width: none;
    width: calc(100% + 20px);
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-10px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-sarah:hover img {
    opacity: 0.4;
    transform: translate3d(0, 0, 0);
}

figure.effect-sarah figcaption {
    text-align: left;
}

figure.effect-sarah h2 {
    position: relative;
    overflow: hidden;
    padding: 0.5em 0;
}

figure.effect-sarah h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    content: "";
    transition: transform 0.35s;
    transform: translate3d(-100%, 0, 0);
}

figure.effect-sarah:hover h2::after {
    transform: translate3d(0, 0, 0);
}

figure.effect-sarah p {
    padding: 1em 0;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(100%, 0, 0);
}

figure.effect-sarah:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-chico img {
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(1.12);
}

figure.effect-chico:hover img {
    opacity: 0.5;
    transform: scale(1);
}

figure.effect-chico figcaption {
    padding: 3em;
}

figure.effect-chico figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: "";
    transform: scale(1.1);
}

figure.effect-chico figcaption::before,
figure.effect-chico p {
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-chico h2 {
    padding: 20% 0 20px 0;
}

figure.effect-chico p {
    margin: 0 auto;
    max-width: 200px;
    transform: scale(1.5);
}

figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover p {
    opacity: 1;
    transform: scale(1);
}

figure.effect-julia {
    background: #2f3238;
}

figure.effect-julia img {
    max-width: none;
    height: 400px;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-julia figcaption {
    text-align: left;
}

figure.effect-julia h2 {
    position: relative;
    padding: 0.5em 0;
}

figure.effect-julia p {
    display: inline-block;
    margin: 0 0 0.25em;
    padding: 0.4em 1em;
    background: rgba(255, 255, 255, 0.9);
    color: #2f3238;
    text-transform: none;
    font-weight: 500;
    font-size: 75%;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-360px, 0, 0);
}

figure.effect-julia p:first-child {
    transition-delay: 0.15s;
}

figure.effect-julia p:nth-of-type(2) {
    transition-delay: 0.1s;
}

figure.effect-julia p:nth-of-type(3) {
    transition-delay: 0.05s;
}

figure.effect-julia:hover p:first-child {
    transition-delay: 0s;
}

figure.effect-julia:hover p:nth-of-type(2) {
    transition-delay: 0.05s;
}

figure.effect-julia:hover p:nth-of-type(3) {
    transition-delay: 0.1s;
}

figure.effect-julia:hover img {
    opacity: 0.4;
    transform: scale3d(1.1, 1.1, 1);
}

figure.effect-julia:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-goliath {
    background: #df4e4e;
}

figure.effect-goliath img,
figure.effect-goliath h2 {
    transition: transform 0.35s;
}

figure.effect-goliath img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-goliath h2,
figure.effect-goliath p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
}

figure.effect-goliath p {
    text-transform: none;
    font-size: 90%;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, 50px, 0);
}

figure.effect-goliath:hover img {
    transform: translate3d(0, -80px, 0);
}

figure.effect-goliath:hover h2 {
    transform: translate3d(0, -100px, 0);
}

figure.effect-goliath:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-hera {
    background: #303fa9;
}

figure.effect-hera h2 {
    font-size: 158.75%;
}

figure.effect-hera h2,
figure.effect-hera p {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-50%, -50%, 0);
    transform-origin: 50%;
}

figure.effect-hera figcaption::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid #fff;
    content: "";
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
    transform-origin: 50%;
}

figure.effect-hera p {
    width: 100px;
    text-transform: none;
    font-size: 121%;
    line-height: 2;
}

figure.effect-hera p a {
    color: #fff;
}

figure.effect-hera p a:hover,
figure.effect-hera p a:focus {
    opacity: 0.6;
}

figure.effect-hera p a i {
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-hera p a:first-child i {
    transform: translate3d(-60px, -60px, 0);
}

figure.effect-hera p a:nth-child(2) i {
    transform: translate3d(60px, -60px, 0);
}

figure.effect-hera p a:nth-child(3) i {
    transform: translate3d(-60px, 60px, 0);
}

figure.effect-hera p a:nth-child(4) i {
    transform: translate3d(60px, 60px, 0);
}

figure.effect-hera:hover figcaption::before {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
}

figure.effect-hera:hover h2 {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
}

figure.effect-hera:hover p i:empty {
    transform: translate3d(0, 0, 0);
    /* just because it's stronger than nth-child */
    opacity: 1;
}

figure.effect-winston {
    background: #162633;
    text-align: left;
}

figure.effect-winston img {
    transition: opacity 0.45s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-winston figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/triangle.svg) no-repeat center center;
    background-size: 100% 100%;
    content: "";
    transition: opacity 0.45s, transform 0.45s;
    transform: rotate3d(0, 0, 1, 45deg);
    transform-origin: 0 100%;
}

figure.effect-winston h2 {
    transition: transform 0.35s;
    transform: translate3d(0, 20px, 0);
}

figure.effect-winston p {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 1.5em 7% 0;
}

figure.effect-winston a {
    margin: 0 10px;
    color: #5d504f;
    font-size: 170%;
}

figure.effect-winston a:hover,
figure.effect-winston a:focus {
    color: #cc6055;
}

figure.effect-winston p a i {
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, 50px, 0);
}

figure.effect-winston:hover img {
    opacity: 0.6;
}

figure.effect-winston:hover h2 {
    transform: translate3d(0, 0, 0);
}

figure.effect-winston:hover figcaption::before {
    opacity: 0.7;
    transform: rotate3d(0, 0, 1, 20deg);
}

figure.effect-winston:hover p i {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-winston:hover p a:nth-child(3) i {
    transition-delay: 0.05s;
}

figure.effect-winston:hover p a:nth-child(2) i {
    transition-delay: 0.1s;
}

figure.effect-winston:hover p a:first-child i {
    transition-delay: 0.15s;
}

figure.effect-selena {
    background: #fff;
}

figure.effect-selena img {
    opacity: 0.95;
    transition: transform 0.35s;
    transform-origin: 50% 50%;
}

figure.effect-selena:hover img {
    transform: scale3d(0.95, 0.95, 1);
}

figure.effect-selena h2 {
    transition: transform 0.35s;
    transform: translate3d(0, 20px, 0);
}

figure.effect-selena p {
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform-origin: 50% 0%;
}

figure.effect-selena:hover h2 {
    transform: translate3d(0, 0, 0);
}

figure.effect-selena:hover p {
    opacity: 1;
    transform: perspective(1000px) rotate3d(1, 0, 0, 0);
}

figure.effect-terry {
    background: #34495e;
}

figure.effect-terry figcaption {
    padding: 1em;
}

figure.effect-terry figcaption::before,
figure.effect-terry figcaption::after {
    position: absolute;
    width: 200%;
    height: 200%;
    border-style: solid;
    border-color: #101010;
    content: "";
    transition: transform 0.35s;
}

figure.effect-terry figcaption::before {
    right: 0;
    bottom: 0;
    border-width: 0 70px 60px 0;
    transform: translate3d(70px, 60px, 0);
}

figure.effect-terry figcaption::after {
    top: 0;
    left: 0;
    border-width: 15px 0 0 15px;
    transform: translate3d(-15px, -15px, 0);
}

figure.effect-terry img,
figure.effect-terry p a {
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-terry img {
    opacity: 0.85;
}

figure.effect-terry h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.4em 10px;
    width: 50%;
    transition: transform 0.35s;
    transform: translate3d(100%, 0, 0);
}

@media screen and (max-width: 920px) {
    figure.effect-terry h2 {
        padding: 0.75em 10px;
        font-size: 120%;
    }
}

figure.effect-terry p {
    float: right;
    clear: both;
    text-align: left;
    text-transform: none;
    font-size: 111%;
}

figure.effect-terry p a {
    display: block;
    margin-bottom: 1em;
    color: #fff;
    opacity: 0;
    transform: translate3d(90px, 0, 0);
}

figure.effect-terry p a:hover,
figure.effect-terry p a:focus {
    color: #f3cf3f;
}

figure.effect-terry:hover figcaption::before,
figure.effect-terry:hover figcaption::after {
    transform: translate3d(0, 0, 0);
}

figure.effect-terry:hover img {
    opacity: 0.6;
}

figure.effect-terry:hover h2,
figure.effect-terry:hover p a {
    transform: translate3d(0, 0, 0);
}

figure.effect-terry:hover p a {
    opacity: 1;
}

figure.effect-terry:hover p a:first-child {
    transition-delay: 0.025s;
}

figure.effect-terry:hover p a:nth-child(2) {
    transition-delay: 0.05s;
}

figure.effect-terry:hover p a:nth-child(3) {
    transition-delay: 0.075s;
}

figure.effect-terry:hover p a:nth-child(4) {
    transition-delay: 0.1s;
}

figure.effect-phoebe {
    background: #675983;
}

figure.effect-phoebe img {
    opacity: 0.85;
    transition: opacity 0.35s;
}

figure.effect-phoebe:hover img {
    opacity: 0.6;
}

figure.effect-phoebe figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/triangle2.svg) no-repeat center center;
    background-size: 100% 100%;
    content: "";
    transition: opacity 0.35s, transform 0.35s;
    transform: scale3d(5, 2.5, 1);
    transform-origin: 50% 50%;
}

figure.effect-phoebe:hover figcaption::before {
    opacity: 0.6;
    transform: scale3d(1, 1, 1);
}

figure.effect-phoebe h2 {
    margin-top: 1em;
    transition: transform 0.35s;
    transform: translate3d(0, 40px, 0);
}

figure.effect-phoebe:hover h2 {
    transform: translate3d(0, 0, 0);
}

figure.effect-phoebe p a {
    color: #fff;
    font-size: 140%;
    opacity: 0;
    position: relative;
    display: inline-block;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-phoebe p a:first-child {
    transform: translate3d(-60px, -60px, 0);
}

figure.effect-phoebe p a:nth-child(2) {
    transform: translate3d(0, 60px, 0);
}

figure.effect-phoebe p a:nth-child(3) {
    transform: translate3d(60px, -60px, 0);
}

figure.effect-phoebe:hover p a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-apollo {
    background: #3498db;
}

figure.effect-apollo img {
    opacity: 0.95;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale3d(1.05, 1.05, 1);
}

figure.effect-apollo figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: "";
    transition: transform 0.6s;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

figure.effect-apollo p {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 3em;
    padding: 0 1em;
    max-width: 150px;
    border-right: 4px solid #fff;
    text-align: right;
    opacity: 0;
    transition: opacity 0.35s;
}

figure.effect-apollo h2 {
    text-align: left;
}

figure.effect-apollo:hover img {
    opacity: 0.6;
    transform: scale3d(1, 1, 1);
}

figure.effect-apollo:hover figcaption::before {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

figure.effect-apollo:hover p {
    opacity: 1;
    transition-delay: 0.1s;
}

figure.effect-kira {
    background: #fff;
    text-align: left;
}

figure.effect-kira img {
    transition: opacity 0.35s;
}

figure.effect-kira figcaption {
    z-index: 1;
}

figure.effect-kira p {
    padding: 2.25em 0.5em;
    font-weight: 600;
    font-size: 100%;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, -10px, 0);
}

figure.effect-kira p a {
    margin: 0 0.5em;
    color: #101010;
}

figure.effect-kira p a:hover,
figure.effect-kira p a:focus {
    opacity: 0.6;
}

figure.effect-kira figcaption::before {
    position: absolute;
    top: 0;
    right: 2em;
    left: 2em;
    z-index: -1;
    height: 3.5em;
    background: #fff;
    content: "";
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(0, 4em, 0) scale3d(1, 0.023, 1);
    transform-origin: 50% 0;
}

figure.effect-kira:hover img {
    opacity: 0.5;
}

figure.effect-kira:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-kira:hover figcaption::before {
    opacity: 0.7;
    transform: translate3d(0, 5em, 0) scale3d(1, 1, 1);
}

figure.effect-steve {
    z-index: auto;
    overflow: visible;
    background: #000;
}

figure.effect-steve:before,
figure.effect-steve h2:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    transition: opacity 0.35s;
}

figure.effect-steve:before {
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
}

figure.effect-steve figcaption {
    z-index: 1;
}

figure.effect-steve img {
    opacity: 1;
    transition: transform 0.35s;
    transform: perspective(1000px) translate3d(0, 0, 0);
}

figure.effect-steve h2,
figure.effect-steve p {
    background: #fff;
    color: #2d434e;
}

figure.effect-steve h2 {
    position: relative;
    margin-top: 2em;
    padding: 0.25em;
}

figure.effect-steve h2:before {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

figure.effect-steve p {
    margin-top: 1em;
    padding: 0.5em;
    font-weight: 800;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale3d(0.9, 0.9, 1);
}

figure.effect-steve:hover:before {
    opacity: 1;
}

figure.effect-steve:hover img {
    transform: perspective(1000px) translate3d(0, 0, 21px);
}

figure.effect-steve:hover h2:before {
    opacity: 0;
}

figure.effect-steve:hover p {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

figure.effect-moses {
    background: linear-gradient(-45deg, #ec65b7 0%, #05e0d8 100%);
}

figure.effect-moses img {
    opacity: 0.85;
    transition: opacity 0.35s;
}

figure.effect-moses h2,
figure.effect-moses p {
    padding: 20px;
    width: 50%;
    height: 50%;
    border: 2px solid #fff;
}

figure.effect-moses h2 {
    padding: 20px;
    width: 50%;
    height: 50%;
    text-align: left;
    transition: transform 0.35s;
    transform: translate3d(10px, 10px, 0);
}

figure.effect-moses p {
    float: right;
    padding: 20px;
    text-align: right;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-50%, -50%, 0);
}

figure.effect-moses:hover h2 {
    transform: translate3d(0, 0, 0);
}

figure.effect-moses:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-moses:hover img {
    opacity: 0.6;
}

figure.effect-jazz {
    background: linear-gradient(-45deg, #f3cf3f 0%, #f33f58 100%);
}

figure.effect-jazz img {
    opacity: 0.9;
}

figure.effect-jazz figcaption::after,
figure.effect-jazz img,
figure.effect-jazz p {
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-jazz figcaption::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: "";
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    transform-origin: 50% 50%;
}

figure.effect-jazz h2,
figure.effect-jazz p {
    opacity: 1;
    transform: scale3d(0.8, 0.8, 1);
}

figure.effect-jazz h2 {
    padding-top: 26%;
    transition: transform 0.35s;
}

figure.effect-jazz p {
    padding: 0.5em 2em;
    text-transform: none;
    font-size: 0.85em;
    opacity: 0;
}

figure.effect-jazz:hover img {
    opacity: 0.7;
    transform: scale3d(1.05, 1.05, 1);
}

figure.effect-jazz:hover figcaption::after {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}

figure.effect-jazz:hover h2,
figure.effect-jazz:hover p {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

figure.effect-ming {
    background: #030c17;
}

figure.effect-ming img {
    opacity: 0.9;
    transition: opacity 0.35s;
}

figure.effect-ming figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    content: "";
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale3d(1.4, 1.4, 1);
}

figure.effect-ming h2 {
    margin: 20% 0 10px 0;
    transition: transform 0.35s;
}

figure.effect-ming p {
    padding: 1em;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(1.5);
}

figure.effect-ming:hover h2 {
    transform: scale(0.9);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover p {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

figure.effect-ming:hover figcaption {
    background-color: rgba(58, 52, 42, 0);
}

figure.effect-ming:hover img {
    opacity: 0.4;
}

figure.effect-lexi {
    background: linear-gradient(-45deg, #000 0%, #fff 100%);
}

figure.effect-lexi img {
    margin: -10px 0 0 -10px;
    max-width: none;
    width: calc(100% + 10px);
    opacity: 0.9;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(10px, 10px, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-lexi figcaption::before,
figure.effect-lexi p {
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-lexi figcaption::before {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 900px rgba(255, 255, 255, 0.2);
    content: "";
    opacity: 0;
    transform: scale3d(0.5, 0.5, 1);
    transform-origin: 50% 50%;
}

figure.effect-lexi:hover img {
    opacity: 0.6;
    transform: translate3d(0, 0, 0);
}

figure.effect-lexi h2 {
    text-align: left;
    transition: transform 0.35s;
    transform: translate3d(5px, 5px, 0);
}

figure.effect-lexi p {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 1.5em 1.5em 0;
    width: 140px;
    text-align: right;
    opacity: 0;
    transform: translate3d(20px, 20px, 0);
}

figure.effect-lexi:hover figcaption::before {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

figure.effect-lexi:hover h2,
figure.effect-lexi:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

figure.effect-duke {
    background: linear-gradient(-45deg, #34495e 0%, #cc6055 100%);
}

figure.effect-duke img,
figure.effect-duke p {
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-duke:hover img {
    opacity: 0.1;
    transform: scale3d(2, 2, 1);
}

figure.effect-duke h2 {
    transition: transform 0.35s;
    transform: scale3d(0.8, 0.8, 1);
    transform-origin: 50% 100%;
}

figure.effect-duke p {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px;
    padding: 30px;
    border: 2px solid #fff;
    text-transform: none;
    font-size: 90%;
    opacity: 0;
    transform: scale3d(0.8, 0.8, 1);
    transform-origin: 50% -100%;
}

figure.effect-duke:hover h2,
figure.effect-duke:hover p {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

figure.effect-custom-2 figcaption {
    top: auto;
    bottom: 0;
    padding: 1em;
    height: 4.75em;
    background: #fff;
    color: #3c4a50;
    transition: transform 0.35s;
    transform: translate3d(0, 100%, 0);
}

figure.effect-custom-2 h2 {
    float: left;
}

figure.effect-custom-2 p.icon-links a {
    float: right;
    color: #3c4a50;
    font-size: 1.4em;
}

figure.effect-custom-2:hover p.icon-links a:hover,
figure.effect-custom-2:hover p.icon-links a:focus {
    color: #252d31;
}

figure.effect-custom-2 p.description {
    position: absolute;
    bottom: 8em;
    padding: 2em;
    color: #fff;
    text-transform: none;
    font-size: 90%;
    opacity: 0;
    transition: opacity 0.35s;
    -webkit-backface-visibility: hidden;
    /* Fix for Chrome 37.0.2062.120 (Mac) */
}

figure.effect-custom-2 h2,
figure.effect-custom-2 p.icon-links a {
    transition: transform 0.35s;
    transform: translate3d(0, 200%, 0);
}

figure.effect-custom-2 p.icon-links a span::before {
    display: inline-block;
    padding: 8px 10px;
    font-family: "feathericons";
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

figure .icon-eye::before {
    content: "";
}

figure .icon-paper-clip::before {
    content: "";
}

figure .icon-heart::before {
    content: "";
}

figure.effect-custom-2 h2 {
    display: inline-block;
}

figure.effect-custom-2:hover p.description {
    opacity: 1;
}

figure.effect-custom-2:hover figcaption,
figure.effect-custom-2:hover h2,
figure.effect-custom-2:hover p.icon-links a {
    transform: translate3d(0, 0, 0);
}

figure.effect-custom-2:hover h2 {
    transition-delay: 0.05s;
}

figure.effect-custom-2:hover p.icon-links a:nth-child(3) {
    transition-delay: 0.1s;
}

figure.effect-custom-2:hover p.icon-links a:nth-child(2) {
    transition-delay: 0.15s;
}

figure.effect-custom-2:hover p.icon-links a:first-child {
    transition-delay: 0.2s;
}

.service {
    text-align: center;
    padding-top: 20px;
}

.pds {
    padding-top: 22px;
    padding-bottom: 22px;
}

.btn.btn-outline-secondary {
    border: solid 1px black;
    padding: 10px 25px 10px 25px;
    display: block;
    margin: auto;
}

.blogCard__content .pt-20 {
    box-shadow: 10px 10px 10px 10px #f0f0f0;
}


/* gallery */

.magnific-img img {
    width: 100%;
    height: auto;
}

.magnific-img {
    display: inline-block;
    width: 32.3%;
}

a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before {
    border-right: none !important;
}

.mfp-arrow-right:before {
    border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}


/* Magnific Popup CSS */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #ccc;
}

.mfp-preloader a:hover {
    color: #fff;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}


/* Main image in popup */

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}


/* The shadow behind the image */

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    /**

       * Remove all paddings around the image on small screen

       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.btn.btn-outline-primary {
    border: solid 1px #072b6b;
    padding: 10px 27px 10px 26px;
    /* margin: auto; */
    display: block;
}

.container .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    max-width: 100%;
    height: 300px;
    background: white;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container .card:hover {
    height: 400px;
}

.container .card .img-box {
    position: absolute;
    top: 20px;
    width: 300px;
    height: 220px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.container .card:hover .img-box {
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .card .content {
    position: absolute;
    top: 252px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

.container .card:hover .content {
    top: 130px;
    height: 250px;
}

.container .card .content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #011840;
}

.container .card .content p {
    color: #333;
}

.container .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    background: #011840;
    color: white;
    font-weight: 500;
}

.container .card .content a:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .container .card {
        width: 230px;
        border-radius: 15px;
    }
    .container .card .img-box {
        width: 185px;
        border-radius: 10px;
    }
    .container .card .content p {
        font-size: 0.8rem;
    }
    .container .card .content a {
        font-size: 0.9rem;
    }
}

.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.contact-info-icon {
    margin-bottom: 15px;
}

.contact-info-item {
    background: #041635eb;
    padding: 30px 0px;
    border-radius: 6px;
}

.contact-info-item:hover {
    background: #022768eb;
    padding: 30px 0px;
}

.contact-page-sec .contact-page-form h2 {
    color: #071c34;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}

.contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
    background: #071c34;
    width: 150px;
    border-color: #071c34;
}

.contact-info-icon i {
    font-size: 48px;
    color: #fda40b;
}

.contact-info-text p {
    margin-bottom: 0px;
}

.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: #999999;
    font-size: 16px;
    font-weight: ;
    display: inline-block;
    width: 100%;
}

.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}

.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
    background: #fda40b none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
    background: #071c34;
    transition: all 0.4s ease-in-out 0s;
    border-color: #071c34
}

.single-input-field h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-map {
    margin-top: 36px;
}

.contact-page-form form {
    padding: 20px 15px 0;
}

.text-white {
    color: var(--color-white);
}

.blogCard__title {
    color: black;
}

.blogCard__title:hover {
    color: #011840 !important;
}


/* .pageHeader__title.kochi.is-in-view {

  font-size: 60px;

  line-height: 60px;

} */

.pageHeader.-type-1 .pageHeader__title {
    font-size: 60px;
    font-weight: 500;
    line-height: 100px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.btn.btn-info {
    background-color: #011840;
    color: white;
    padding: 10px 10px 10px 10px;
}

.btn.book-now {
    background: #fa06f5;
    border-radius: 0;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    font-size: 1.2rem;
    top: 37%;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 170px;
    z-index: 200
}

.as {
    position: relative;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
    letter-spacing: 4px;
    overflow: hidden;
}

.as span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #022768, #fa06f5);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.as span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #022768, #fa06f5);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.as span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #022768, #fa06f5);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.as span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to top, #022768, #fa06f5);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    line-height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    z-index: 201;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.upstudy-about-section-03 {
    overflow: hidden;
}

.upstudy-about-section-03 .about-img-wrap {
    position: relative;
    z-index: 1;
}

.upstudy-about-section-03 .about-img-wrap .about-shape {
    position: absolute;
    right: 23%;
    top: -5%;
    z-index: -1;
    -webkit-animation: zoom-inout 3s infinite;
    animation: zoom-inout 3s infinite;
}

.upstudy-about-section-03 .about-img-wrap .about-img-big img {
    border-radius: 50px;
}

.upstudy-about-section-03 .about-img-wrap .about-img-sm {
    padding-left: 110px;
    margin-top: 30px;
}

.upstudy-about-section-03 .about-img-wrap .about-img-sm img {
    border-radius: 50px;
}

.upstudy-about-section-03 .about-img-wrap .about-img-bottom {
    position: absolute;
    right: 5px;
    bottom: 30px;
}

.upstudy-about-section-03 .about-img-wrap .about-img-bottom img {
    border-radius: 50px;
}

.upstudy-about-section-03 .about-img-wrap .about-text-shape {
    position: absolute;
    right: 50px;
    top: 50px;
}

.upstudy-about-section-03 .about-content {
    padding-left: 110px;
    padding-right: 35px;
    padding-top: 25px;
}

.upstudy-about-section-03 .about-content .section-title-3 .sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    background: #fa06f5;
    width: 110px;
    height: 2px;
    transform: translateX(0);
}

.upstudy-about-section-03 .about-content .text {
    font-size: 16px;
    line-height: 30px;
    color: #525252;
    margin-top: 30px;
}

.upstudy-about-section-03 .about-content .about-list {
    padding-top: 25px;
}

.upstudy-about-section-03 .about-content .about-list ul li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #1e1e1e;
}

.upstudy-about-section-03 .about-content .about-list ul li+li {
    margin-top: 10px;
}

.upstudy-about-section-03 .about-content .about-list ul li .about-icon {
    font-size: 14px;
    color: #022768;
    margin-right: 8px;
}

.upstudy-about-section-03 .about-content .btn {
    padding: 0 50px;
    border-radius: 35px;
    background: #022768;
    margin-top: 50px;
}

.upstudy-about-section-03 .about-content .btn:hover {
    background: #164699;
    color: #FFF
}

@media only screen and (max-width: 1199px) {
    .upstudy-about-section-03 .about-img-wrap .about-shape {
        right: 8%;
    }
    .upstudy-about-section-03 .about-img-wrap .about-img-sm {
        padding-left: 0px;
    }
    .upstudy-about-section-03 .about-img-wrap .about-text-shape {
        right: 0px;
    }
    .upstudy-about-section-03 .about-content {
        padding-left: 50px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 991px) {
    .upstudy-about-section-03 .about-img-wrap .about-shape {
        right: 37%;
        top: -4%;
    }
    .upstudy-about-section-03 .about-img-wrap .about-img-bottom {
        right: 160px;
    }
    .upstudy-about-section-03 .about-img-wrap .about-text-shape {
        right: 120px;
    }
    .upstudy-about-section-03 .about-content {
        padding-left: 0px;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .upstudy-about-section-03 .about-img-wrap .about-shape {
        right: 17%;
        top: -3%;
    }
    .upstudy-about-section-03 .about-img-wrap .about-img-bottom {
        right: 0px;
    }
    .upstudy-about-section-03 .about-img-wrap .about-text-shape {
        right: 0px;
    }
}

@media only screen and (max-width: 449px) {
    .upstudy-about-section-03 .about-img-wrap .about-img-sm {
        display: none;
    }
    .upstudy-about-section-03 .about-img-wrap .about-img-bottom {
        position: relative;
        text-align: center;
        bottom: 0;
        margin-top: 30px;
    }
    .upstudy-about-section-03 .about-img-wrap .about-text-shape {
        top: 135px;
    }
}

.sub-title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #9a9a9a;
    position: relative;
}

.btn1 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-color: #1cb098;
    border-color: transparent;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 700;
    height: 50px;
    line-height: 48px;
    padding: 0px 40px;
    border-width: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

.abt {
    margin-top: 60px
}

.abt .title {
    margin-top: 30px
}

.pet_gallery_wrap {
    padding-left: 100px;
    padding-right: 100px;
    background-color: #fff9f9dd;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.text-center {
    display: flex;
    flex-direction: column;
}

.pet_gallery_row {
    display: flex;
    align-items: center;
}

.pet_gallery_fig {
    margin-right: 10px;
    flex-shrink: 3;
}

.pet_gallery_fig figure {
    margin-bottom: 10px;
    border-radius: 8px;
}

.pet_gallery_fig figure img {
    cursor: pointer;
}

.flus_icon {
    position: absolute;
    top: 80%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    font-size: 18px;
    border: 1px solid #fff;
    opacity: 0;
    margin: -30px auto;
    text-align: center;
    line-height: 40px;
    background-color: #fff;
}

.flus_icon:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.pet_gallery_fig figure:hover .flus_icon {
    top: 50%;
    opacity: 1;
}

.pet_gallery_fig:last-child {
    margin-right: 0px;
}

.margin-top {
    margin-top: -40px;
}

.pet_gallery_fig:first-child {
    flex-shrink: 1;
}

.pet_gallery_fig:last-child {
    flex-shrink: 1;
}

#modal-box {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 250px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    opacity: 0.97;
}

#modal-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 120%;
}

.close {
    color: #fff;
    position: absolute;
    top: 170px;
    right: 75px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    /* z-index: 9999999; */
    height: 50px;
    width: 50px;
    border-radius: 100px;
    background-color: #333;
    text-align: center;
    opacity: 1;
    line-height: 50px;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/*................*/

.upstudy-video-section .video-wrap {
    position: relative;
    z-index: 5;
}

.upstudy-video-section .video-wrap .shape-1 {
    position: absolute;
    top: 15%;
    left: 5%;
    z-index: -1;
}

.upstudy-video-section .video-wrap .shape-2 {
    width: 225px;
    position: absolute;
    top: 17%;
    right: 7%;
    z-index: -1;
}

@media only screen and (max-width: 991px) {
    .upstudy-video-section .video-wrap {
        margin-bottom: -275px;
    }
}

@media only screen and (max-width: 767px) {
    .upstudy-video-section .video-wrap {
        margin-bottom: -200px;
    }
    .upstudy-video-section .video-wrap .shape-1 {
        width: 220px;
        left: 0%;
    }
    .upstudy-video-section .video-wrap .shape-2 {
        width: 180px;
        right: 0%;
    }
}

@media only screen and (max-width: 449px) {
    .upstudy-video-section .video-wrap {
        margin-bottom: -110px;
    }
    .upstudy-video-section .video-wrap .shape-1 {
        display: none;
    }
    .upstudy-video-section .video-wrap .shape-2 {
        display: none;
    }
}

.video-img {
    position: relative;
}

.video-img .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -65%);
}

.video-img .play-btn a {
    width: 100px;
    height: 100px;
    display: inline-block;
    line-height: 100px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background: #022768;
    border-radius: 50%;
    position: relative;
}

.video-img .play-btn a::before {
    content: "";
    border: 1px solid #ffffff;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.video-img .play-btn a:hover {
    background: #111a24;
}

@media only screen and (max-width: 767px) {
    .video-img .play-btn a {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    .video-img .play-btn a::before {
        width: 100px;
        height: 100px;
    }
}

.upstudy-video-section-02 .video-wrap .shape-1 {
    left: 0;
}

.upstudy-video-section-02 .video-wrap .shape-2 {
    right: 3%;
}

<!--...............-->.features-content-wrap {
    padding-top: 50px;
}

.features-item {
    margin-top: 30px;
}

.features-item .features-content {
    margin-top: 20px;
    padding: 0 30px;
}

@media only screen and (max-width: 1199px) {
    .features-item .features-content {
        padding: 0 0px;
    }
}

.features-item .features-content .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: #2f2a55;
}

.features-item .features-content p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #7a7a7a;
    margin-top: 15px;
}

.upstudy-features-section-02 {
    background: #022768;
    padding-top: 50px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    z-index: -1;
    margin: 5rem 0px;
}

.upstudy-features-section-02 .shape-1 {
    position: absolute;
    left: -1%;
    top: -65%;
    z-index: -1;
}

.upstudy-features-section-02 .shape-2 {
    position: absolute;
    right: -2%;
    bottom: -110%;
    z-index: -1;
}

.upstudy-features-section-02 .features-wrap {
    margin-top: -30px;
}

.features-item-02 {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.features-item-02 .features-content {
    margin-left: 20px;
}

.features-item-02 .features-content .title {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    color: #ffffff;
}

.features-item-02 .features-content p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #ffffff;
}

.upstudy-features-section-03 {
    position: relative;
    padding-top: 220px;
    padding-bottom: 60px;
}

.upstudy-features-section-03 .shape-1 {
    position: absolute;
    left: 0;
    top: 0;
}

.upstudy-features-section-03 .features-item-03 {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.upstudy-features-section-03 .features-item-03 .features-img img {
    border-radius: 50%;
}

.upstudy-features-section-03 .features-item-03 .features-content {
    margin-left: 30px;
    padding-right: 40px;
}

.upstudy-features-section-03 .features-item-03 .features-content .title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #12283b;
}

.upstudy-features-section-03 .features-item-03 .features-content p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #7a7a7a;
}

@media only screen and (max-width: 1199px) {
    .upstudy-features-section-03 {
        padding-top: 140px;
    }
}

@media only screen and (max-width: 991px) {
    .upstudy-features-section-03 {
        padding-top: 100px;
    }
    .upstudy-features-section-03 .features-item-03 .features-content {
        margin-left: 18px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .upstudy-features-section-03 {
        padding-top: 80px;
    }
}

.upstudy-features-section-04 .features-wrap {
    background: #fff9eb;
    padding-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 50px;
    position: relative;
}

.upstudy-features-section-04 .features-wrap .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(6%, -10%);
    z-index: -1;
}

.upstudy-features-section-04 .features-wrap .shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(4%, 9%);
    z-index: -1;
}

.upstudy-features-section-04 .features-content-wrap {
    padding-top: 40px;
}

.upstudy-features-section-04 .features-item .features-content .title {
    color: #1e1e1e;
}

.upstudy-features-section-04 .features-item .features-content p {
    color: #666666;
}

@media only screen and (max-width: 1199px) {
    .upstudy-features-section-04 .features-wrap .shape-1 img {
        width: 810px;
    }
    .upstudy-features-section-04 .features-wrap .shape-2 img {
        width: 810px;
    }
}

@media only screen and (max-width: 991px) {
    .upstudy-features-section-04 .features-wrap .shape-1 img {
        width: 650px;
    }
    .upstudy-features-section-04 .features-wrap .shape-2 img {
        width: 650px;
    }
}

@media only screen and (max-width: 767px) {
    .upstudy-features-section-04 .features-wrap .shape-1 img {
        width: 480px;
    }
    .upstudy-features-section-04 .features-wrap .shape-2 img {
        width: 480px;
    }
}

@media only screen and (max-width: 575px) {
    .upstudy-features-section-04 .features-wrap .shape-1 img {
        width: 370px;
    }
    .upstudy-features-section-04 .features-wrap .shape-2 img {
        width: 370px;
    }
}

@media only screen and (max-width: 449px) {
    .upstudy-features-section-04 .features-wrap {
        padding-left: 25px;
        padding-right: 25px;
    }
    .upstudy-features-section-04 .features-wrap .shape-1 img {
        width: 275px;
    }
    .upstudy-features-section-04 .features-wrap .shape-2 img {
        width: 275px;
    }
}

.services.style-13 .item {
    position: relative;
    margin-top: 30px;
}

.services.style-13 .item .circle {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color-orange3);
    top: 20px;
    right: 40px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -2;
}

.services.style-13 .item .pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -2;
}

.services.style-13 .item:hover .circle {
    top: -20px;
    opacity: 1;
}

.services.style-13 .item:hover .pattern {
    bottom: -30px;
    left: -20px;
    opacity: 1;
}

.services.style-13 .item .cont {
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.0588235294);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.0588235294);
    border: 1px solid #eaeaea;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.services.style-13 .item .cont:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.services.style-13 .item .cont:hover a {
    color: #333;
    font-weight: 500;
}

.services.style-13 .item .cont:hover a::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.services.style-13 .item .cont .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    line-height: 24px;
}

.services.style-13 .item .cont .title img {
    height: 60px;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
}

.services.style-13 .item .cont p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 22px;
}

.services.style-13 .item .cont a {
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    font-size: 16px;
    padding: 9px 15px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 10;
}

.services.style-13 .item .cont a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: var(--color-orange3);
    opacity: 0.2;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}

.blg {
    padding: 10px 10px 10px 10px;
}

.pet_gallery_fig figure img {
    cursor: pointer;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}


/* new */

.over {
    background-color: #ffefd7 !important;
    padding: 19px 0px 0px 20px;
}

.hosp {
    background-color: #e3f0ff !important;
    padding: 19px 0px 22px 20px;
}

.scl {
    background-color: #d2e7ff !important;
    padding: 19px 0px 0px 20px;
}

.rel {
    background-color: #fff6e9 !important;
    padding: 19px 0px 22px 20px;
}

.mall {
    background-color: #fffef9 !important;
    padding: 19px 0px 22px 20px;
    box-shadow: 10px 10px 10px 10px #f2f2f2;
}

.icon-right-arrow {
    color: #f906f3;
}

.det {
    padding-bottom: 10px !important;
    color: #021a46;
}

/* .det:hover {
    padding-bottom: 10px !important;
    color: #ffff;
} */

.site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.site-heading h2 span {
    color: #00a01d;
}

.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.site-heading h4::before {
    background: #00a01d none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: #00a01d none repeat scroll 0 0;
    border-color: #00a01d;
}

.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid #00a01d;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.we-offer-area.text-center .item {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    padding: 23px 0px 22px;
}

.we-offer-area.text-center .item:hover {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    padding: 23px 0px 22px;
    color: #fff !important;
}

.we-offer-area.text-center .item i {
    background: #052969 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
    border: 2px solid #052969;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 90px;
    left: -5px;
    position: absolute;
    top: -5px;
    width: 90px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
    border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
    font-family: 'Poppins';
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: #00a01d none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
    color: #ffffff;
}

.we-offer-area .item i {
    color: #00a01d;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
}

.we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.we-offer-area .item p {
    margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
    background: #022259 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: #fa06f5 !important;
}

.we-offer-area.text-left .item i {
    background: #00a01d none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
}

.we-offer-area.text-left .item i::after {
    border: 2px solid #00a01d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
}

.am {
    font-size: 18px;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: solid 1px #01184078;
    box-shadow: 10px 10px 10px 10px #fffafa;
    padding: 11px 0px 10px 13px;
}

.magnific-img img {
    width: 100%;
    height: auto;
}

.mfp-bottom-bar,
* {}

.magnific-img {
    display: inline-block;
    width: 32.3%;
}

a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before {
    border-right: none !important;
}

.mfp-arrow-right:before {
    border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}


/* Magnific Popup CSS */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}


/* Main image in popup */

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}


/* The shadow behind the image */

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.going {
    text-align: center;
    padding: 2px 0px 4px 0px;
    background-color: #021c4a;
    color: white;
}


/* FORM */

.contain {
    background-color: #eee;
    /* max-width: 1170px; */
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
}

div.form {
    background-color: #eee;
}

.contact-wrapper {
    margin: auto 0;
}

.submit-btn {
    float: left;
}

.reset-btn {
    float: right;
}

.form-headline:after {
    content: "";
    display: block;
    width: 10%;
    padding-top: 10px;
    border-bottom: 3px solid #ec1c24;
}

.highlight-text {
    color: #ec1c24;
}

.hightlight-contact-info {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.5;
}

.highlight-text-grey {
    font-weight: 500;
}

.email-info {
    margin-top: 20px;
}
 ::-webkit-input-placeholder {
    /* Chrome */
    font-family: 'Poppins';
}

.required-input {
    color: black;
}

@media (min-width: 600px) {
    .contain {
        padding: 0;
    }
}

.form-input:focus,
textarea:focus {
    outline: 1.5px solid #ec1c24;
}

.form-input,
textarea {
    width: 100%;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
}

.wrapper>* {
    padding: 1em;
}

@media (min-width: 700px) {
    .wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .wrapper>* {
        padding: 2em 2em;
    }
}

.contacts {
    color: #212d31;
}


/* button,
      .submit-btn,
      .form-input,
      textarea {
        padding: 1em;
      }
      
      button, .submit-btn {
        background: transparent;
        border: 1px solid #ec1c24;
        color: #ec1c24;
        border-radius: 15px;
        padding: 5px 20px;
        text-transform: uppercase;
      }
      button:hover, .submit-btn:hover,
      button:focus , .submit-btn:focus{
        background: #ec1c24;
        outline: 0;
        color: #eee;
      } */

.error {
    color: #ec1c24;
}

.btn.btn-danger {
    background-color: #011840;
    color: white;
    padding: 7px 20px 7px 20px;
    border-radius: 6px;
}

.fa.fa-brands.fa-unity {
    font-size: 50px;
}

.fa.fa-solid.fa-chart-area {
    font-size: 50px;
}

.fa.fa-solid.fa-indian-rupee-sign {
    font-size: 50px;
}

.fa.fa-solid.fa-square-parking {
    font-size: 50px;
}

.fa.fa-solid.fa-building-un {
    font-size: 50px;
}

.fa.fa-thin.fa-clipboard-list {
    font-size: 50px;
}

.fa.fa-handshake {
    font-size: 23px;
}

.fa.fa-solid.fa-magnifying-glass {
    font-size: 23px;
}

.fa.fa-shield {
    font-size: 23px;
}

.fa.fa-location {
    font-size: 23px;
}

.fa.fa-solid.fa-hand-holding-dollar {
    font-size: 23px;
}

.fa.fa-solid.fa-clock {
    font-size: 23px;
}

.fa.fa-solid.fa-lightbulb {
    font-size: 23px;
}

.fa.fa-duotone.fa-person-dress {
    font-size: 30px;
}

@media only screen and (max-width: 991px) {
    .ongo {
        display: inline-block !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
        text-transform: capitalize !important;
        border: 1px solid transparent;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .d-flex {
        display: inline-block !important;
    }
    .going {
        text-align: center;
        padding: 2px 0px 4px 0px;
        background-color: #021c4a;
        color: white;
        font-size: 10px;
    }
}

.going {
    text-align: center;
    padding: 2px 0px 4px 0px;
    background-color: #021c4a;
    color: white;
    font-size: 19px;
}

#submit-form {
    background-color: #eaeaeaa6;
    padding: 1px 10px 10px 10px;
    border-radius: 10px;
}


/* @media only screen and (max-width: 700px) and (min-width: 280px) 
  
  {
    .popup {
      box-sizing: border-box;
      z-index: 25;
      box-shadow: 0 2px 5px 5px rgba(0, 0, 0, 0.1);
      position: fixed;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #05224e;
      border-radius: 24px;
      width: 96% !important;
      height: 78vh;
      max-height: 420px;
      min-height: 380px;
    
      left: 50%;
    
   
      padding: 0 50px;
    }
  } */

@media only screen and (max-width: 700px) and (min-width: 280px) {
    .going {
        text-align: center;
        padding: 2px 0px 4px 0px;
        background-color: #021c4a;
        color: white;
        font-size: 8px !important;
    }
}

.video-sec-wrap {
    width: 100%;
    min-height: 100vh;
}

.video-sec {
    width: 85%;
    margin: 3em auto;
    border-bottom: 2px solid #353535;
    text-align: left;
}

.video-sec-middle {
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    justify-content: center;
    align-content: center;
    grid-template-rows: auto;
    grid-column-gap: 10px;
    padding: 20px 0;
}

.thumb-wrap {
    display: inline;
    cursor: pointer;
}

.thumb {
    display: block;
    margin: .4em;
    width: 100%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    opacity: 1;
    transition: all .2s ease-in-out;
}

.thumb:hover {
    opacity: .8;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .5);
}

.thumb-info {
    display: inline-block;
    height: 100%;
    width: 100%;
    padding: .4em;
}

.thumb-title {
    color: #f5f5f5;
    margin: 0;
    font-size: 1.2em;
}

.thumb-user {
    color: #7e7e7e;
    display: block;
    margin: 0;
    font-size: .9em;
}

.thumb-text {
    color: #7e7e7e;
    display: inline-block;
    margin: 0;
    font-size: .8em;
}

.video-sec-title {
    font-weight: bolder;
    font-size: 1.4em;
    color: #f5f5f5;
    margin: 5px 0 10px 10px;
}

.video-showmore {
    font-weight: bold;
    font-variant: all-petite-caps;
    display: block;
    color: #7e7e7e;
    padding: 10px;
    font-size: 1.2em;
}

@media only screen and (max-width: 1456px) {
    .video-sec-middle {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 1024px) {
    .video-sec-middle {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 756px) {
    .video-sec-middle {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 496px) {
    .video-sec-middle {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 768px) {
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        background-color: #05224e;
    }
}

.modal-content {
    position: relative;
    background-color: #05224e;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 13px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.btn-default {
    color: #333;
    background-color: #fff0;
    border-color: #ccc0;
}

.btn-default:hover {
    color: #333;
    background-color: #fff0;
    border-color: #ccc0;
}

.qual {
    font-size: 16px !important;
}

@media screen and (max-width:768px) {
    .size-80 {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }
    .qual {
        font-size: 9px !important;
    }
}

.job {
    text-align: center;
    padding-bottom: 15px;
}

.btn.btn-success {
    background-color: #011840;
    color: white;
    padding: 5px 15px 5px 15px;
    margin-top: 15px;
    border-radius: 6px;
}

.btnu a {
    background-color: #fff;
    border: none;
    color: #022768;
    padding: 10px 27px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
}


/* 
.btnu a {
    background-color: #022768;
    color: white;
} */

.btnu:hover a {
    background-color: #022768;
    color: white;
}


/* slider */

.size-80 {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
  }

  .capita {
    font-size: 14px;
    padding: 0px 5px 0px 4px;
  }

  .am {
    font-size: 14px;
  }
  td {
    font-size: 14px;
  }




  /* galley */
  .photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0;
    align-items: start;
  
    @media (max-width: 580px) {
      grid-template-columns: 1fr;
    }
  
    .img-box {
      border: 1px solid #ffffff;
      position: relative;
    }
  
    .img-box:hover .transparent-box {
      background-color: rgba(0, 0, 0, 0.6);
    }
  
    .img-box:hover .caption {
      transform: translateY(-5px);
    }
  
    img {
      max-width: 100%;
      display: block;
      height: auto;
    }
  
    .caption {
      color: white;
      transition: transform 0.3s ease, opacity 0.3s ease;
      font-size: 1.5rem;
    }
  
    .transparent-box {
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 0;
      left: 0;
      transition: background-color 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .main-photo {
      grid-row: 1;
      grid-column: 1;
    }
  
    .sub {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      grid-gap: 0em;
  
      &:nth-child(0) {
        grid-column: 1;
        grid-row: 1;
      }
  
      &:nth-child(1) {
        grid-column: 2;
        grid-row: 1;
      }
  
      &:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
      }
  
      &:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
      }
    }
  }
  

  .hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }


  .blogCard.-type-3 .blogCard__tag {
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-left: 10px;
    padding-bottom: 28px;
  }

  .hover-icon-1.bg-white.px-40.py-40.md\:px-30.is-in-view {
  min-height: 527px !important;
}

.contact-info-item {
  background: #041635eb;
  padding: 30px 0px;
  border-radius: 6px;
  min-height: 200px;
}


@media only screen and (max-width: 700px) and (min-width: 300px)  
{
   .hero.-type-7 .hero__title {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p.text-shadow-p {
    font-size: 12px;
    font-weight: normal;
}
.button.-md {
    padding: 10px 16px;
    font-size: 12px;
}

.btn.book-now {
    background: #fa06f5;
    border-radius: 0;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    font-size: 1.2rem;
    top: 20%;
    height: 35px;
    line-height: 36px;
    position: fixed;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 170px;
    z-index: 200;}


.hero.-type-7 .hero__nav>* {
    background-color: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 19px;
    left: 20px;
    font-size: 30px;
    line-height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    z-index: 201;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    transition: color 0.2s ease-in-out;
    text-decoration: none;
}

.features-item-02 .features-content .title {
    font-size: 12px;
    line-height: 28px;
    /* font-weight: normal; */
    color: #ffffff;
}
.video-img.text-center {
    margin-bottom: 50px;
}
span {
    font-size: 17px;
    font-weight: bold;
}

.listing-style1 .d-flex {
    display: block !important;
    margin-bottom: 6px;
    margin-top: 10px;
}
.size-80 {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.fa.fa-handshake {
    font-size: 17px;
}

.fa.fa-solid.fa-magnifying-glass {
    font-size: 17px;
}
.fa.fa-shield {
    font-size: 17px;
}

.fa.fa-location {
    font-size: 17px;
}
.fa.fa-solid.fa-hand-holding-dollar {
    font-size: 17px;
}
.fa.fa-solid.fa-clock {
    font-size: 17px;
}

.fa.fa-solid.fa-lightbulb {
    font-size: 17px;
}

.fa.fa-duotone.fa-person-dress {
    font-size: 17px;
}
h2.text-40.md\:text-38.uppercase.fw-500 {
    font-size: 20px !important;
}

.blogCard.-type-3 .blogCard__title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-left: 7px;
}
.blg {
    padding: 0px 10px 10px 10px;
}

.blogCard.-type-3 .blogCard__tag {
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-left: 10px;
    padding-bottom: 8px;
}

.footer.-type-1 .footer__number {
    font-size: 16px;
    line-height: 26px;
}


.footer.-type-1 .footer__mainContent>p {
    font-size: 13px;
    line-height: 25px;
    margin-top: 14px;
}

.footer.-type-1 .footer__bottom>* {
    font-size: 14px;
    line-height: 26px;
    color: #D2D1D4;
}
.iconCard.-type-1 .iconCard__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 11px;
}
.pageHeader.-type-1 .pageHeader__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.pageHeader.-type-1 .pageHeader-nav__link a, .pageHeader.-type-1 .pageHeader-nav__link span {
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
}
.md\:text-38 {
    font-size: 19px !important;
}

.md\:pt-60 {
    padding-top: 30px !important;
}
.mapPlaces .mapPlacesCard__caption {
    font-size: 13px;
    line-height: 27px;
}

.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 286px;
    max-width: 480px;
    max-height: 360px;
    width: 48%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
}


}



@media only screen and (max-width: 500px) and (min-width: 300px)  
{

    .size-80 {
        flex-shrink: 0;
        width: 21px;
        height: 22px;
    }


}



@media only screen and (max-width: 1000px) and (min-width: 768px)  

{
    .listing-style1 .d-flex {
        display: block !important;
        margin-bottom: 6px;
        margin-top: 10px;
    }
    .hero.-type-7 .hero__title {
        font-size: 33px;
        line-height: 1.2;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .justify-between {
        justify-content: left !important;
    }
}


@media only screen and (max-width: 600px) and (min-width: 300px)  

{
    .justify-between {
        justify-content: left !important;
    }
    

    .imageSliderNav>* {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        color: white;
        font-size: 15px;
        background-color: var(--color-dark-1);
        border-radius: 90px;
    }
    .md\:mt-40 {
        margin-top: 11px !important;
    }

    h2 {
        margin-top: 15px;
    }

    .btn.book-now {
        background: #fa06f5;
        border-radius: 0;
        color: #fff;
        font-weight: 500;
        display: inline-block;
        font-size: 12px;
        top: 65%;
        height: 35px;
        line-height: 36px;
        position: fixed;
        right: 0;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform-origin: bottom right;
        width: 120px;
        z-index: 200;
    }
}


@media only screen and (max-width: 1186px) and (min-width: 1024px)  

{
    .contact-info-item {
        background: #041635eb;
        padding: 30px 0px;
        border-radius: 6px;
        min-height: 230px;
    }

    .contact-info-text span {
        color: #999999;
        font-size: 14px;
        font-weight: ;
        display: inline-block;
        width: 100%;
    }
    .qual {
        font-size: 12px !important;
    }

    .justify-between {
        justify-content: left !important;
    }

    .hover-icon-1.bg-white.px-40.py-40.md\:px-30.is-in-view {
        min-height: 660px !important;
    }
}




@media only screen and (max-width: 1014px) and (min-width: 768px)  

{
   
    .contact-info-text span {
        color: #999999;
        font-size: 12px;
        font-weight: ;
        display: inline-block;
        width: 100%;
    }

    .we-offer-area.text-center .item {
        background: #ffffff none repeat scroll 0 0;
        border: medium none;
        padding: 23px 0px 22px;
        min-height: 435px !important;
    }
}
li.email-info span {
    margin-left: 20px;
    display: inline-grid;
}
span.contact {
    display: inline-flex;
    margin-left: 20px;
}

.we-offer-area.text-center .item:hover h3 {
    color: #fff;
}
.container.table-responsive.py-5 p {
    margin-bottom: 20px;
}

.mapPlaces .mapPlacesCard__caption {
    font-size: 15px;
    line-height: 30px;
  }