* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1C1C1C;
    background-color: #FCFCFC;
}

@media only screen and (max-width : 768px) {
    body {
        padding-bottom: 64px;
    }
}

body:not(.home) {
    padding-top: 128px;
}

@media only screen and (max-width : 768px) {
    body:not(.home) {
        padding-top: 96px;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

figure {
    margin-bottom: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

h1 {
    font-size: 48px;
}

@media only screen and (max-width : 1600px) {
    h1 {
        font-size: 40px;
    } 
}

@media only screen and (max-width : 768px) {
    h1 {
        font-size: 32px;
    } 
}

@media only screen and (max-width : 576px) {
    h1 {
        font-size: 28px;
    } 
}

@media only screen and (max-width : 480px) {
    h1 {
        font-size: 24px;
    } 
}

h2 {
    font-size: 40px;
}

@media only screen and (max-width : 1600px) {
    h2 {
        font-size: 32px;
    } 
}

@media only screen and (max-width : 768px) {
    h2 {
        font-size: 28px;
    } 
}

h3 {
    font-size: 32px;
}

@media only screen and (max-width : 1600px) {
    h3 {
        font-size: 28px;
    } 
}

@media only screen and (max-width : 768px) {
    h3 {
        font-size: 24px;
    } 
}

h4 {
    font-size: 28px;
}

@media only screen and (max-width : 1600px) {
    h4 {
        font-size: 24px;
    } 
}

@media only screen and (max-width : 768px) {
    h4 {
        font-size: 20px;
    } 
}

h5 {
    font-size: 20px;
}

@media only screen and (max-width : 1600px) {
    h5 {
        font-size: 18px;
    } 
}

@media only screen and (max-width : 768px) {
    h5 {
        font-size: 16px;
    } 
}

h6 {
    font-size: 16px;
}

@media only screen and (max-width : 1600px) {
    h6 {
        font-size: 14px;
    } 
}

@media only screen and (max-width : 768px) {
    h6 {
        font-size: 12px;
    } 
}

.container,
.hero .hero__caption {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

@media only screen and (max-width : 1200px) {
    .container,
    .hero .hero__caption {
        max-width: 1200px;
    } 
}

@media only screen and (max-width : 768px) {
    .container,
    .hero .hero__caption {
        padding: 0 16px;
    } 
}

.section__pt {
    padding-top: 96px;
}

@media only screen and (max-width : 768px) {
    .section__pt {
        padding-top: 64px;
    }
}

.section__pb {
    padding-bottom: 96px;
}

@media only screen and (max-width : 768px) {
    .section__pb {
        padding-bottom: 64px;
    }
}

.section__row:not(:last-child) {
    margin-bottom: 64px;
}

@media only screen and (max-width : 768px) {
    .section__row:not(:last-child) {
        margin-bottom: 48px;
    }
}

.section__desc > *:not(:last-child) {
    margin-bottom: 32px;
}

@media only screen and (max-width : 768px) {
    .section__desc > *:not(:last-child) {
        margin-bottom: 24px;
    }
}

.section__desc ul,
.section__desc ol {
    padding-left: 16px;
}

.section__desc a {
    text-decoration: underline;
    transition: all .5s;
}

.section__desc a:hover {
    color: #CCBA78;
}

.section__header > *:not(:last-child) {
    margin-bottom: 16px;
}

.section__btn {
    display: inline-flex;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 16px;
    line-height: 1;
    transition: all .5s;
    cursor: pointer;
}

.section__btn--primary {
    border: 3px solid #CCBA78;
    background-color: #CCBA78;
    color: #1C1C1C;
}

.section__btn--primary:hover {
    background-color: transparent;
    color: #fcfcfc;
}

.header.fixed .section__btn--primary:hover,
body:not(.home) .header .section__btn--primary:hover {
    color: #1c1c1c;
}

.section__btn--primary.section__btn--light {
    border: 3px solid #1c1c1c;
    background-color: #1c1c1c;
    color: #CCBA78;
}

.section__btn--primary.section__btn--light:hover {
    color: #1c1c1c;
    background-color: transparent;
}

.header.fixed .section__btn--primary.section__btn--light:hover {
    color: #1c1c1c;
}

.section__btn--secondary {
    border: 3px solid #CCBA78;
}

.section__btn--secondary.section__btn--light {
    color: #FCFCFC;
}

.section__btn--secondary.section__btn--light:hover {
    color: #1c1c1c;
    background-color: #CCBA78;
}

.section__btn--secondary.section__btn--dark {
    color: #1C1C1C;
}

.section__btn--secondary.section__btn--dark:hover {
    background-color: #CCBA78;
}

.header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    transition: all .5s;
}

.header.fixed,
body:not(.home) .header {
    background-color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.header .header__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.header .header__column:last-child {
    display: none;
}

@media only screen and (max-width : 1200px) {
    .header .header__column:nth-child(2) {
        display: none;
    }
    
    .header .header__column:last-child {
        display: block;
    }
}

.header .header__logo {
    position: relative;
    display: block;
}

.header .header__logo > img {
    width: auto;
    height: 96px;
}

@media only screen and (max-width : 1200px) {
    .header .header__logo > img {
        height: 64px;
    }
}

.header.fixed .header__logo > img.header__logo--white,
body:not(.home) .header .header__logo > img.header__logo--white {
    opacity: 0;
}

.header .header__logo > img.header__logo--black {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    opacity: 0;
}

.header.fixed .header__logo > img.header__logo--black,
body:not(.home) .header .header__logo > img.header__logo--black {
    opacity: 1;
}

.header .header__nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header .header__nav li:not(.section__btn--primary) a {
    font-weight: 700;
    color: #FCFCFC;
    transition: all .5s;
}

.header.fixed .header__nav li:not(.section__btn--primary) a,
body:not(.home) .header .header__nav li:not(.section__btn--primary) a {
    color: #1C1C1C;
}

.header .header__nav li:not(.section__btn--primary) a:hover {
    color: #CCBA78;
}

.header .header__hamburger .line {
	width: 32px;
	height: 2px;
	background-color: #fff;
	display: block;
	margin: 10px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header.fixed .header__hamburger .line,
body:not(.home) .header .header__hamburger .line {
	background-color: #1c1c1c;
}

.header .header__hamburger .line:first-child,
.header .header__hamburger .line:last-child {
	width: 20px;
}

.header .header__hamburger .line:first-child {
	margin-top: 0;
}

.header .header__hamburger .line:last-child {
	margin-bottom: 0;
}

.header .header__hamburger:hover {
	cursor: pointer;
}

.header .header__hamburger.is-active .line:nth-child(1) {
	-webkit-transform: translateY(12px) rotate(45deg);
	-ms-transform: translateY(12px) rotate(45deg);
	-o-transform: translateY(12px) rotate(45deg);
	transform: translateY(12px) rotate(45deg);
	width: 32px;
}

.header .header__hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}

.header .header__hamburger.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-12px) rotate(-45deg);
	-ms-transform: translateY(-12px) rotate(-45deg);
	-o-transform: translateY(-12px) rotate(-45deg);
	transform: translateY(-12px) rotate(-45deg);
	width: 32px;
}

.menu-mobile {
	display: none;
	position: fixed;
	top: 96px;
	left: 0;
	width: 100%;
	background-color: #CCBA78;
	padding: 16px 0;
	text-align: right;
	max-height: calc(100vh - 96px);
	overflow-y: scroll;
	z-index: 400;
}

@media only screen and (max-width : 768px) {
    .menu-mobile {
        max-height: calc(100vh - 160px);
    }
}

.menu-mobile .menu-mobile__nav ul {
	list-style-type: none;
}

.menu-mobile .menu-mobile__nav li {
    position: relative;
}

.menu-mobile .menu-mobile__nav a {
	color: #1c1c1c;
	display: block;
	padding: 16px 0;
    font-weight: 700;
}

.menu-mobile .menu-mobile__nav li:after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, .1);
}

.menu-mobile .menu-mobile__nav .menu>li:last-child::after {
	display: none;
}

.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0%;
    left: 0;
    z-index: 100;
    background: linear-gradient(to bottom, transparent 0%, black 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(to top, transparent 0%, black 100%);
}

.hero > img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    display: none;
}

@media only screen and (max-width : 1200px) {
    .hero > img {
        display: block;
    }
}

.hero > video {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media only screen and (max-width : 1200px) {
    .hero > video {
        display: none;
    }
}

.hero .hero__caption {
    position: absolute;
    bottom: 96px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 200;
    color: #FCFCFC;
}

.hero .hero__row:not(:last-child) {
    margin-bottom: 32px;
}

@media only screen and (max-width : 1200px) {
    .hero .section__title {
        margin-bottom: 0;
    }
}

@media only screen and (max-width : 768px) {
    .hero .hero__caption {
        bottom: 64px;
    }
}

.hero .section__desc {
    font-size: 20px;
}

@media only screen and (max-width : 1600px) {
    .hero .section__desc {
        font-size: 18px;
    }
}

@media only screen and (max-width : 1200px) {
    .hero .section__desc {
        display: none;
    }
}

.hero .hero__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.about-us .section__header {
    text-align: center;
}

.about-us .about-us__columns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -32px;
}

@media only screen and (max-width : 1200px) {
    .about-us .about-us__columns {
        margin: 0;
    }
}

.about-us .about-us__column {
    width: 50%;
    padding: 32px;
}

.about-us__reverse .about-us__column:first-child {
    order: 2;
}

.about-us__reverse .about-us__column:last-child {
    order: 1;
}

@media only screen and (max-width : 1200px) {
    .about-us .about-us__column {
        width: 100%;
        padding: 0;
    }

    .about-us .about-us__column:last-child {
        display: none;
    }

    .about-us .section__row:last-child .about-us__column:last-child {
        display: block;
        margin-top: 48px;
    }

    .about-us__reverse .about-us__column:first-child {
        order: 1;
    }

    .about-us__reverse .about-us__column:last-child {
        order: 2;
    }
}

.about-us .about-us__img > img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
}

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

.offer .offer__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.offer .offer__column {
    width: 33.3333%;
    padding: 16px;
}

.offer .offer__table {
    padding: 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.offer .offer__table table {
    border-collapse: collapse;
}

@media only screen and (max-width : 1200px) {
    .offer .offer__table table tr {
        display: flex;
        flex-wrap: wrap;
        padding: 32px 0;
    }

    .offer .offer__table table tr:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0, .1);
    }
}

.offer .offer__table table td {
    border: 1px solid rgba(0,0,0, .1);
    padding: 32px;
    vertical-align: top;
    width: 33.3333%;
}

@media only screen and (max-width : 1200px) {
    .offer .offer__table table td {
        width: 100%;
        border: 0;
        padding: 0;
    }

    .offer .offer__table table td:last-child {
        margin-top: 32px;
    }
}

.offer .offer__table table td:first-child {
    vertical-align: middle;
}

.offer .offer__desc > *:not(:last-child) {
    margin-bottom: 32px;
}

.offer .offer__desc ul {
    padding-left: 20px;
}

.offer .offer__desc li:not(:last-child) {
    margin-bottom: 8px;
}

.offer .offer__icon {
    width: 256px;
    height: 256px;
    background-color: #CCBA78;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer .offer__icon > img {
    min-width: 128px;
    height: 128px;
    margin: 0 auto;
}

@media only screen and (max-width : 1200px) {
    .offer .offer__icon {
        margin-bottom: 32px;
    }

    .offer .offer__icon > img {
        margin-left: 0;
    }
}

.pricing {
    text-align: center;
}

.pricing .pricing__columns {
    display: flex;
    flex-wrap: wrap;
}

.pricing .pricing__column {
    width: 20%;
}

.pricing .pricing__column:first-child {
    text-align: left;
}

.pricing .pricing__hint {
    display: none;
}

@media only screen and (max-width : 1200px) {
    .pricing .pricing__hint {
        display: block;
        margin-bottom: 64px;
    }
}

@media only screen and (max-width : 768px) {
    .pricing .pricing__hint {
        margin-bottom: 48px;
    }
}

.pricing .pricing__table {
    background-color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 32px;
}

@media only screen and (max-width : 1200px) {
    .pricing .pricing__inner {
        overflow: hidden;
        overflow-x: scroll;
    }

    .pricing .pricing__table {
        min-width: 1376px;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
    }
}

.pricing .pricing__logo > img {
    width: auto;
    height: 128px;
    margin: 0 auto;
}

.pricing .pricing__head,
.pricing .pricing__foot {
    padding: 16px;
}

.pricing .pricing__head {
    min-height: 192px;
}

.pricing .pricing__body {
    padding: 0 32px;
}

.pricing .pricing__caption {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0, .1);
}

.pricing .pricing__body--bb .pricing__caption {
    border-bottom: 0;
}

.pricing .pricing__head--transparent {
    background-color: transparent;
}

.pricing .pricing__head > *:not(:last-child) {
    margin-bottom: 16px;
}

.pricing .pricing__icon > img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.pricing .pricing__head,
.pricing .pricing__foot {
    padding: 32px 16px;
}

.pricing .pricing__head--gold,
.pricing .pricing__body--gold,
.pricing .pricing__foot--gold {
    background-color: #CCBA78;
}

.pricing .pricing__head--gold {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.pricing .pricing__body--gold {
    border-left: 4px solid #CCBA78;
    border-right: 4px solid #CCBA78;
}

.pricing .pricing__foot--gold {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.pricing .pricing__body--bt {
    border-top: 4px solid #CCBA78;
}

.pricing .pricing__body--bb {
    border-bottom: 4px solid #CCBA78;
}

.pricing .pricing__body--tl {
    border-top-left-radius: 16px;
}

.pricing .pricing__body--bl {
    border-bottom-left-radius: 16px;
}

.pricing .pricing__body--tr {
    border-top-right-radius: 16px;
}

.pricing .pricing__body--br {
    border-bottom-right-radius: 16px;
}

.pricing .pricing__column:last-child .pricing__body {
    border-right: 4px solid #CCBA78;
}

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

.why-us .why-us__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.why-us .why-us__column {
    width: 50%;
    padding: 16px;
}

@media only screen and (max-width : 768px) {
    .why-us .why-us__column {
        width: 100%;
    }
}

.why-us .why-us__icon {
    padding: 64px 32px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

@media only screen and (max-width : 768px) {
    .why-us .why-us__icon {
        padding: 48px 32px;
    }
}

.why-us .why-us__icon > img {
    width: auto;
    height: 128px;
    margin: 0 auto 32px auto;
}

.why-us .why-us__caption > *:not(:last-child) {
    margin-bottom: 32px;
}

.opinions {
    text-align: center;
}

.opinions .opinions__hint {
    display: none;
    margin-bottom: 16px;
}

@media only screen and (max-width : 768px) {
   .opinions .opinions__hint {
        display: block;
    } 
}

.opinions .slick-list {
    overflow: visible;
    overflow-y: visible;
}

.opinions .opinions__columns {
    margin: 0 -16px;
}

.opinions .opinions__column {
    padding: 0 16px;
}

.opinions .opinions__img {
    padding: 32px;
    padding-bottom: 48px;
    position: relative;
}

.opinions .opinions__img::before {
    content: '';
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.opinions .opinions__img > * {
    position: relative;
    z-index: 100;
}

.opinions .opinions__img > img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 32px;
    object-fit: cover;
    object-position: center;
}

.opinions .opinions__caption > *:not(:last-child) {
    margin-bottom: 32px;
}

.opinions .opinions__caption > img {
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
}

.opinions .my-rating-6 {
    display: inline-flex;
    justify-content: center;
    gap: 2px;
    background-color: transparent;
}

.opinions .jq-star {
    width: 32px!important;
    height: 32px!important;
    display: block!important;
    cursor: pointer!important;
}

.opinions .jq-star-svg {
    width: 100%;
    height: 100%;
}

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

.benefits .benefits__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.benefits .benefits__column {
    width: 33.3333%;
    padding: 16px;
}

@media only screen and (max-width : 768px) {
    .benefits .benefits__column {
        width: 100%;
    }
}

.benefits .benefits__icon {
    padding: 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.benefits .benefits__icon > img {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
}

.benefits .benefits__caption > *:not(:last-child) {
    margin-bottom: 32px;
}

.blog .blog__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.blog .blog__column {
    width: 33.3333%;
    padding: 16px;
}

@media only screen and (max-width : 768px) {
    .blog .blog__column {
        width: 100%;
    }
}

.blog .blog__img {
    position: relative;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.blog .blog__title a {
    transition: all .5s;
}

.blog .blog__title a:hover {
    color: #CCBA78;
}

.blog .blog__img > a {
    display: block;
    position: relative;
}

.blog .blog__img > a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0%;
    left: 0;
    z-index: 100;
    background: linear-gradient(to bottom, transparent 0%, black 100%);
}

.blog .blog__img > a > img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.blog .blog__img > a:hover > img {
    -webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.blog .blog__caption {
    padding: 32px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 200;
    color: #fff;
}

.blog .blog__caption > *:not(:last-child) {
    margin-bottom: 32px;
}

.blog .blog__date {
    margin-bottom: 16px;
}

.single-blog .single-blog__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.single-blog .single-blog__tags > a {
    padding: 8px 16px;
    display: inline-flex;
    font-weight: 700;
    border-radius: 8px;
    line-height: 1;
    border: 3px solid #CCBA78;
    color: #1C1C1C;
    transition: all .5s;
}

.single-blog .single-blog__tags > a:hover {
    background-color: #CCBA78;
}

.call-to-action {
    text-align: center;
    background-image: url('../img/502552416_122203134962056907_5323402555432617659_n.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    color: #FCFCFC;
    padding-bottom: 160px;
}

@media only screen and (max-width : 768px) {
    .call-to-action {
        background-attachment: inherit;
    }
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0%;
    left: 0;
    z-index: 100;
    background: linear-gradient(to bottom, transparent 0%, black 100%);
}

.call-to-action::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(to top, transparent 0%, black 100%);
}

.call-to-action > * {
    position: relative;
    z-index: 200;
}

.call-to-action .section__desc {
    width: 66.6667%;
    margin: 0 auto;
}

@media only screen and (max-width : 768px) {
    .call-to-action .section__desc {
        width: 100%;
    }
}

.contact-us a {
    transition: all .5s;
}

.contact-us a:hover {
    color: #CCBA78;
}

.contact-us__up > * {
    position: relative;
    margin-top: -176px;
    z-index: 100;
}

.contact-us .contact-us__boxes {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.contact-us .contact-us__box {
    width: 33.3333%;
    padding: 16px;
}

@media only screen and (max-width : 768px) {
    .contact-us .contact-us__box {
        width: 100%;
    }
}

.contact-us .contact-us__icon {
    padding: 64px 32px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    text-align: center;
}

@media only screen and (max-width : 768px) {
    .contact-us .contact-us__icon {
        padding: 48px 32px;
    }
}

.contact-us .contact-us__icon > *:not(:last-child) {
    margin-bottom: 32px;
}

.contact-us .contact-us__icon > a {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #CCBA78;
    border: 3px solid #CCBA78;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    transition: all .5s;
}

.contact-us .contact-us__icon > a:hover {
    background-color: transparent;
}

.contact-us .contact-us__icon > a > img {
    width: 64px;
    height: 64px;
}

.contact-us .contact-us__caption > *:not(:last-child) {
    margin-bottom: 16px;
}

.contact-us .contact-us__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.contact-us .contact-us__column {
    width: 50%;
    padding: 16px;
}

@media only screen and (max-width : 1200px) {
    .contact-us .contact-us__column {
        width: 100%;
    }

    .contact-us .contact-us__column:first-child {
        order: 2;
    }

    .contact-us .contact-us__column:last-child {
        order: 1;
    }
}

.contact-us .contact-us__row:not(:last-child) {
    margin-bottom: 32px;
}

.contact-us .contact-us__img {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media only screen and (max-width : 768px) {
    .contact-us .contact-us__img {
        flex-wrap: wrap;
    }
}

.contact-us .contact-us__img > img {
    width: 200px;
    height: 200px;
    flex: 0 0 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.contact-us .contact-us__socials,
.single-blog .single-blog__socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-us .contact-us__socials > a,
.single-blog .single-blog__socials > a {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1c1c1c;
    border-radius: 50%;
    transition: all .5s;
}

.contact-us .contact-us__socials > a:hover,
.single-blog .single-blog__socials > a:hover {
    background-color: #CCBA78;
}

.contact-us .contact-us__socials > a > img,
.single-blog .single-blog__socials > a > img {
    width: 24px;
    height: 24px;
    filter: brightness(0%) invert(100%);
}

.contact-us .contact-us__form p:not(:last-child) {
    margin-bottom: 16px;
}

.contact-us .contact-us__form input[type="text"],
.contact-us .contact-us__form input[type="email"],
.contact-us .contact-us__form input[type="tel"],
.contact-us .contact-us__form textarea {
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    width: 100%;
    display: block;
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1C1C1C;
}

.contact-us .contact-us__form input[type="text"]::placeholder,
.contact-us .contact-us__form input[type="email"]::placeholder,
.contact-us .contact-us__form input[type="tel"]::placeholder,
.contact-us .contact-us__form textarea::placeholder {
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1C1C1C;
}

.contact-us .contact-us__form input[type="submit"] {
    font-size: 16px;
    margin-top: 16px;
    display: inline-flex;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 16px;
    line-height: 1;
    border: 3px solid #CCBA78;
    background-color: #CCBA78;
    color: #1C1C1C;
    transition: all .5s;
}

.contact-us .contact-us__form input[type="submit"]:hover {
    background-color: transparent;
    cursor: pointer;
}

.contact-us .contact-us__form .wpcf7-response-output {
    margin: 32px 0 0 0;
    padding: 16px;
    border: 2px solid #00a0d2;
    font-size: 14px;
}

.contact-us .contact-us__form .wpcf7-not-valid-tip {
    font-size: 12px;
}

.contact-us .contact-us__form .wpcf7-list-item {
    display: block;
    margin: 16px 0 0 0;
}

.contact-us .contact-us__form .wpcf7-list-item a {
    margin: 16px 0 0 0;
}

.contact-us .contact-us__form a {
    text-decoration: underline;
    transition: all .5s;
}

.contact-us .contact-us__form a:hover {
    color: #CCBA78;
}

.hot-menu {
    background-color: #1c1c1c;
    color: #fcfcfc;
    font-size: 14px;
}

.hot-menu a {
    transition: all .5s;
}

.hot-menu a:hover {
    color: #CCBA78;
}

.hot-menu .hot-menu__columns {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

@media only screen and (max-width : 1200px) {
    .hot-menu .hot-menu__columns {
        flex-wrap: wrap;
    }

    .hot-menu .hot-menu__columns > * {
        width: 100%;
    }
}

.hot-menu .hot-menu__logo > img {
    width: auto;
    height: 128px;
}

.hot-menu .hot-menu__row:not(:last-child) {
    margin-bottom: 32px;
}

.hot-menu .hot-menu__details > ul {
    list-style-type: none;
}

.hot-menu .hot-menu__details > ul > li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hot-menu .hot-menu__details > ul > li:not(:last-child) {
    margin-bottom: 16px;
}

.hot-menu .hot-menu__details > ul > li > img {
    width: 24px;
    height: 24px;
    filter: brightness(0%) invert(100%);
}

.hot-menu .hot-menu__nav ul {
    list-style-type: none;
}

.hot-menu .hot-menu__nav li:not(:last-child) {
    margin-bottom: 16px;
}

.hot-menu .hot-menu__socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hot-menu .hot-menu__socials > a {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fcfcfc;
    border-radius: 50%;
    transition: all .5s;
}

.hot-menu .hot-menu__socials > a:hover {
    background-color: #CCBA78;
}

.hot-menu .hot-menu__socials > a > img {
    width: 24px;
    height: 24px;
}

.footer {
    padding: 16px 0;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.footer a {
    transition: all .5s;
}

.footer a:hover {
    color: #CCBA78;
}

.footer .footer__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

@media only screen and (max-width : 768px) {
    .footer .footer__columns {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer .footer__columns > * {
        width: 100%;
    }
}

.footer .footer__nav > ul {
    list-style-type: none;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    position: relative;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 64px;
}

@media only screen and (max-width : 768px) {
    .slick-dots {
        margin-top: 32px;
    }
}

.slick-dots li {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0;
    border-radius: 50%;
    border: 4px solid #CCBA78;
    background-color: transparent;
}

.slick-dots li.slick-active {
    background-color: #CCBA78;
}

.slick-dots li button {
    display: none;
}

.floating-button {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 300;
    background-color: #CCBA78;
    display: none;
    justify-content: space-around;
    align-items: center;
}

@media only screen and (max-width : 768px) {
    .floating-button {
        display: flex;
    }
}

.floating-button > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
}

.floating-button > a > img {
    width: 32px;
    height: 32px;
}

.grecaptcha-badge {
    display: none;
}

.breadcrumbs {
    padding: 16px 0;
    background-color: #CCBA78;
    font-size: 14px;
}

.breadcrumbs .current-item {
    font-weight: 700;
}

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

.accordion {
    width: 66.6667%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width : 768px) {
    .accordion {
        width: 100%;
    }
}

.accordion .accordion__desc {
    margin-top: 16px;
}

.accordion .accordion__desc > *:not(:last-child) {
    margin-bottom: 16px;
}

[data-accordion] {
    line-height: 1.5;
    background-color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 16px;
}

[data-accordion]:not(:last-child) {
    margin-bottom: 16px;
}

[data-control],
[data-content] > * {
    border-bottom: 0;
    padding: 0;
}

[data-content] [data-accordion] {
    border: 0;
    padding: 0;
}

[data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
}

[data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    height: 20px;
    width: 20px;
    background: url('../img/down.png') center center no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all .5s;
}

[data-accordion].open > [data-control]:after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

.map {
    width: 100%;
    aspect-ratio: 21/9;
}

.map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

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

.slider-for {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.slider-for .slider-for__item {
    width: 20%;
    padding: 8px;
}

@media only screen and (max-width : 1200px) {
    .slider-for .slider-for__item {
        width: 25%;
    }
}

@media only screen and (max-width : 768px) {
    .slider-for .slider-for__item {
        width: 33.3333%;
    }
}

@media only screen and (max-width : 576px) {
    .slider-for .slider-for__item {
        width: 50%;
    }
}

.slider-for__img > a > img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center;
}