:root {
    --color-main: #f9ab45;
    --color-black: #000000;
    --color-text: #8a8787;
    --color-white: #ffffff;
    --color-light: #f4f4f4;
    --header-height: 110px;
    --header-height-scrolled: 100px;
    --font-family-headings: "Poppins", sans-serif;
    --font-family-main: "Roboto", sans-serif;
    --global-indent: 12px;
}
@media (max-width: 991px) {
    :root {
        --header-height: 90px;
        --header-height-scrolled: 90px;
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--font-family-main), sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}
body .site-main {
    flex-grow: 1;
}

.site-main {
    padding-top: var(--header-height);
}

.form-input {
    height: 50px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-family-main), sans-serif;
    padding-left: 15px;
    font-weight: 300;
    transition: border 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-main);
}

textarea.form-input {
    height: initial;
    padding-top: 10px;
}

.title-h1 {
    font-size: 48px;
}
@media (max-width: 992px) {
    .title-h1 {
        font-size: 32px;
    }
}

.title-h2 {
    font-size: 38px;
}
@media (max-width: 992px) {
    .title-h2 {
        font-size: 28px;
    }
}

.title-h3 {
    font-size: 33px;
}
@media (max-width: 992px) {
    .title-h3 {
        font-size: 24px;
    }
}

.title-h4 {
    font-size: 26px;
}
@media (max-width: 992px) {
    .title-h4 {
        font-size: 22px;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
    font-family: var(--font-family-headings);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #3e4969;
}

a, a:hover, a:focus, a:active {
    outline: 0;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.site-footer {
    background-color: white;
    border-top: 5px solid rgba(0, 0, 0, 0.1);
    padding-top: calc(var(--global-indent) * 4);
    padding-bottom: calc(var(--global-indent) * 4);
}
@media (max-width: 767px) {
    .site-footer {
        padding-top: calc(var(--global-indent) * 3);
        padding-bottom: calc(var(--global-indent) * 3);
    }
}
.site-footer__row {
    display: flex;
    gap: calc(var(--global-indent) * 3);
}
@media (max-width: 991px) {
    .site-footer__row {
        display: grid;
    }
}
.site-footer__row > div:nth-child(2) {
    flex-grow: 1;
}
.site-footer__menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--global-indent);
}
@media (min-width: 476px) {
    .site-footer__menu {
        grid-template-columns: repeat(2, 1fr);
    }
}
.site-footer__menu a {
    font-family: "Poppins", serif;
    color: var(--back-dark-grey);
    font-weight: 500;
    transition: 0.3s ease-in-out;
    line-height: 1.4;
    display: block;
}
.site-footer__menu a:hover {
    color: var(--theme-yellow);
}

@media (min-width: 992px) {
    .site-footer-contacts {
        flex: 0 0 350px;
        max-width: 350px;
    }
}
.site-footer-contacts__ul {
    display: flex;
    flex-direction: column;
    gap: calc(var(--global-indent) * 1);
    margin-bottom: calc(var(--global-indent) * 3);
}

.site-footer-link {
    color: var(--black-color);
}
.site-footer-link:hover {
    color: var(--theme-yellow);
}

.site-footer-left {
    color: var(--back-dark-grey);
    font-size: 14px;
}
@media (min-height: 992px) {
    .site-footer-left {
        flex: 0 0 280px;
        max-width: 280px;
    }
}

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: height 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    font-size: 16px;
}
.site-header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.08);
}
.site-header__content {
    display: flex;
    gap: calc(var(--global-indent) * 2);
    align-items: center;
}
@media (max-width: 991px) {
    .site-header__content {
        display: none;
    }
}
.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*.site-header__logo {*/
/*    width: 200px;*/
/*}*/

.site-header__logo img {
    max-width: 235px;
    padding: 15px;
}
.site-header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .site-header__menu {
        display: none;
    }
}

@media (min-width: 1200px) {
    .site-header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}
.site-header-logo__image {
    max-width: 100%;
}

.site-header-contacts-item {
    color: var(--color-black);
}
@media (max-width: 1260px) {
    .site-header-contacts-item {
        display: none;
    }
}
.site-header-contacts-item:hover {
    color: var(--color-main);
}
.site-header-contacts-item__text--decorate {
    border-bottom: 1.5px solid;
}

.site-header-burger {
    position: relative;
    transition: all 0.3s ease-in-out;
    width: 50px;
    display: none;
}
@media (max-width: 767px) {
    .site-header-burger {
        display: block;
    }
}
.site-header-burger__line {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-black);
    display: block;
    margin: 9px 0px 11px auto;
    transition: all 0.3s ease-in-out;
}
.site-header-burger__line:nth-child(2) {
    width: 50%;
}
.site-header-burger__line:nth-child(3) {
    width: 70%;
}

@media (max-width: 767px) {
    .site-header-menu {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: white;
        padding: calc(var(--global-indent) * 2);
    }
}
.site-header-menu__list {
    align-items: center;
    height: 100%;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    display: flex;
}
@media (max-width: 767px) {
    .site-header-menu__list {
        display: block;
    }
}
.site-header-menu__list li {
    display: flex;
    height: 100%;
}
.site-header-menu__list li:not(:last-child) {
    margin-right: calc(var(--global-indent) * 2);
}
@media (max-width: 767px) {
    .site-header-menu__list li:not(:last-child) {
        margin-bottom: var(--global-indent);
    }
}
.site-header-menu__list a {
    color: var(--color-black);
    font-family: var(--font-family-headings);
}
.site-header-menu__list a:hover {
    color: var(--color-main);
}

.site-header-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    align-items: center;
}
@media (max-width: 767px) {
    .site-header-bottom {
        margin-top: 0;
    }
}

.section {
    padding-top: calc(var(--global-indent) * 8);
    padding-bottom: calc(var(--global-indent) * 8);
}
@media (max-width: 991px) {
    .section {
        padding-top: calc(var(--global-indent) * 4);
        padding-bottom: calc(var(--global-indent) * 4);
    }
}
@media (max-width: 767px) {
    .section {
        padding-top: calc(var(--global-indent) * 3);
        padding-bottom: calc(var(--global-indent) * 3);
    }
}
.section--sm {
    padding-top: calc(var(--global-indent) * 4);
    padding-bottom: calc(var(--global-indent) * 4);
}
@media (max-width: 767px) {
    .section--sm {
        padding-top: calc(var(--global-indent) * 3);
        padding-bottom: calc(var(--global-indent) * 3);
    }
}
.section--bottom-solid {
    padding-bottom: 0;
}
.section__header {
    margin-bottom: calc(var(--global-indent) * 3);
}
.section__footer {
    margin-top: calc(var(--global-indent) * 4);
    text-align: center;
}
@media (max-width: 991px) {
    .section__footer {
        margin-top: calc(var(--global-indent) * 2);
    }
}
.section__text {
    color: var(--color-text);
}

.section-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
    .section-header {
        display: flex;
        flex-direction: column;
        gap: calc(var(--global-indent) * 2);
    }
}
.section-header__wrapper {
    display: grid;
    gap: calc(var(--global-indent) * 2);
}
.section-header__actions {
    display: flex;
    gap: calc(var(--global-indent) * 2);
}
.section-header__text {
    color: var(--color-text);
    margin-bottom: 0;
}

.index-page {
    overflow: hidden;
}

.index-page-about__award {
    max-width: 100%;
}

.index-page-testimonials__list .swiper-slide {
    width: 420px;
}
@media (max-width: 576px) {
    .index-page-testimonials__list .swiper-slide {
        width: 300px;
    }
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.breadcrumb {
    margin-bottom: calc(var(--global-indent) * 2);
    font-size: 16px;
}
.breadcrumb__item {
    color: var(--color-text);
}
.breadcrumb__item:not(:last-child) {
    color: var(--color-main);
}
.breadcrumb__item:not(:last-child):hover {
    color: var(--color-main);
}
.breadcrumb__item:not(:last-child):after {
    content: "/";
    margin: 0 5px;
}

.jumbotron {
    position: relative;
    z-index: 50;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.jumbotron::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--color-black);
    z-index: 50;
    opacity: 0.4;
}
.jumbotron__title {
    max-width: 1100px;
    margin-bottom: calc(var(--global-indent) * 2);
    color: white;
}
.jumbotron__row {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 100;
}
@media (max-width: 991px) {
    .jumbotron__row {
        min-height: initial;
        padding-top: calc(var(--global-indent) * 4);
        padding-bottom: calc(var(--global-indent) * 4);
    }
}
@media (max-width: 767px) {
    .jumbotron__row {
        padding-top: calc(var(--global-indent) * 3);
        padding-bottom: calc(var(--global-indent) * 3);
    }
}
.jumbotron--page .jumbotron__row {
    min-height: 50vh;
}
.jumbotron__button {
    margin-top: calc(var(--global-indent) * 4);
}
@media (max-width: 767px) {
    .jumbotron__button {
        margin-top: calc(var(--global-indent) * 2);
    }
}
.jumbotron__button .button__text {
    color: var(--color-white);
}
.jumbotron__text {
    max-width: 800px;
    font-size: 18px;
}
.jumbotron__text p:last-child {
    margin-bottom: 0;
}

.parallax {
    height: 50vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial {
    background-color: #f4f4f4;
    border-radius: 25px;
    padding: 20px;
}
.testimonial__image {
    margin-right: 15px;
    border-radius: 50%;
    border: 4px solid var(--theme-yellow);
}
.testimonial__title {
    font-family: "Poppins", serif;
    font-weight: 600;
}
.testimonial__head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ti-stars {
    display: flex;
    margin-top: 5px;
}

.ti-star {
    width: 18px;
    height: 18px;
    background-image: url(https://cdn.trustindex.io/assets/platform/Google/star/f.svg);
    margin-right: 3px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.pagination > ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--global-indent);
    margin-top: calc(var(--global-indent) * 4);
    padding-top: calc(var(--global-indent) * 3);
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    list-style: none;
    padding-left: 0;
    width: 100%;
}

.pagination > ul > li > a {
    position: relative;
    text-transform: uppercase;
    line-height: 1;
    display: inline-flex;
    padding: 0 25px;
    align-items: center;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
    height: 45px;
    overflow: hidden;
    border-width: 2px;
    border-style: solid;
    font-family: "Poppins", serif;
    letter-spacing: 2px;
    background-color: transparent;
    border-color: var(--color-main);
    color: var(--color-black);
    max-width: 45px;
    width: 45px;
    padding: 0;
    display: flex;
    justify-content: center;
}

.pagination > ul > li > a.active,
.pagination > ul > li > a:hover {
    background-color: var(--color-main);
    border-color: var(--color-main);
}
.pagination > ul > li > a:not(.active):hover {
    color: var(--color-black);
}

.pagination > ul > li svg {
    width: 10px;
}

.button {
    position: relative;
    text-transform: uppercase;
    line-height: 1;
    display: inline-flex;
    padding: 0 25px;
    align-items: center;
    font-size: 18px;
    text-align: center;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
    height: 50px;
    overflow: hidden;
    border-width: 2px;
    border-style: solid;
    font-family: "Poppins", serif;
    letter-spacing: 2px;
}
.button:before {
    content: "";
    bottom: 0;
    width: 100%;
    height: 100px;
    position: absolute;
    opacity: 0.2;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    left: -50%;
    transition: 0.3s ease-in-out;
}
.button:hover::before {
    left: 0;
    border-radius: 0;
    opacity: 1;
}
.button--theme-main {
    background-color: transparent;
    border-color: var(--color-main);
    color: var(--color-black);
}
.button--theme-main::before {
    background-color: var(--color-main);
}
.button--theme-main:hover {
    color: var(--black-color);
}
.button--theme-white {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}
.button--theme-white::before {
    background-color: var(--color-white);
}
.button--theme-white:hover {
    color: var(--color-black);
}
@media (min-width: 768px) {
    .button--size-lg {
        height: 60px;
        font-size: 18px;
    }
}
.button--block {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.button__text {
    position: relative;
    z-index: 50;
}

.link-arrow {
    color: var(--black-color);
    font-weight: 500;
    display: inline-flex;
    font-family: "Poppins", serif;
    align-items: center;
    white-space: nowrap;
}
.link-arrow svg {
    flex: 0 0 24px;
    max-width: 24px;
}
.link-arrow:hover {
    color: var(--theme-yellow);
    fill: var(--theme-yellow);
}
.link-arrow__text {
    margin-right: 10px;
}
.link-arrow--theme-main {
    color: var(--color-main);
    fill: var(--color-main);
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--global-indent) * 2);
}
@media (max-width: 991px) {
    .services {
        gap: var(--global-indent);
        grid-template-columns: repeat(2, 1fr);
    }
    .parallax {
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        backdrop-filter: blur(10px);
    }
}
@media (max-width: 576px) {
    .services {
        grid-template-columns: repeat(1, 1fr);
    }
    .site-header__logo {
        display: block;
    }
    .site-header__logo img {
        max-width: 120px;
        display: block;
        padding: 0px;
    }
    
    
}

.services-item {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    color: white;
}
.services-item:hover {
    color: white;
}
.services-item:hover .services-item__link {
    opacity: 1;
    margin: 0;
}
.services-item:hover .services-item__title {
    color: var(--color-main);
}
.services-item::before {
    background: linear-gradient(180deg, rgba(0, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    content: "";
    z-index: 50;
}
.services-item__wrapper {
    padding: calc(var(--global-indent) * 2);
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    transition: padding-bottom 0.4s ease-in-out;
}
.services-item__title {
    font-family: "Poppins", serif;
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}
.services-item__text {
    font-size: 14px;
    display: block;
    line-height: 1.6;
    color: white;
}
.services-item__link {
    margin-bottom: -40px;
    display: block;
    opacity: 0;
    transition: margin-bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding-top: 10px;
}
.services-item__link, .services-item__link:hover {
    color: var(--color-main);
    fill: var(--color-main);
}
.services-item__image {
    object-fit: cover;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    position: absolute;
}

.contacts-map {
    height: 550px;
    width: 100%;
    margin-bottom: -10px;
}

.contacts-block-list__col {
    display: flex;
    gap: 4px;
    flex-direction: column;
    font-size: 16px;
}
.contacts-block-list__col span {
    color: var(--color-text);
}
.contacts-block-list__col a {
    color: var(--color-black);
}
.contacts-block-list__col a:hover {
    color: var(--color-main);
}
.contacts-block-list__col:not(:last-child) {
    margin-bottom: calc(var(--global-indent) * 2);
}

.contacts-bock-social {
    display: flex;
    gap: var(--global-indent);
}

.cart-item {
    display: flex;
    position: relative;
    z-index: 50;
    align-items: center;
}
.cart-item:before {
    content: "";
    background: var(--color-light);
    border: 3px solid var(--color-main);
    left: calc(var(--global-indent) * 3);
    right: calc(var(--global-indent) * 3);
    bottom: calc(var(--global-indent) * 3);
    top: calc(var(--global-indent) * 3);
    position: absolute;
    z-index: 50;
}
@media (max-width: 991px) {
    .cart-item:before {
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
    }
}
@media (max-width: 991px) {
    .cart-item {
        display: grid;
        gap: 0;
        margin-bottom: calc(var(--global-indent) * 2);
    }
}
.cart-item__title {
    max-width: 320px;
}
.cart-item__wrapper {
    padding-left: calc(var(--global-indent) * 8);
    padding-right: calc(var(--global-indent) * 8);
    position: relative;
    z-index: 100;
}
@media (max-width: 991px) {
    .cart-item__wrapper {
        padding: calc(var(--global-indent) * 2);
    }
}
@media (max-width: 991px) {
    .cart-item:nth-child(even) .cart-item__wrapper {
        order: 2;
    }
}
.cart-item__picture {
    position: relative;
    z-index: 100;
    padding-top: 50%;
    overflow: hidden;
}
@media (max-width: 991px) {
    .cart-item__picture {
        margin-left: -12px;
        margin-right: -12px;
    }
}
@media (min-width: 992px) {
    .cart-item__picture {
        max-width: 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 991px) {
    .cart-item__picture {
        padding-top: 100%;
    }
}
.cart-item__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.cart-item__text {
    color: var(--color-text);
    margin-top: calc(var(--global-indent) * 1);
    margin-bottom: calc(var(--global-indent) * 3);
}
.cart-item__text p:last-child {
    margin-bottom: 0;
}
.cart-item__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--global-indent) * 3);
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .cart-item__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--global-indent);
    }
}

.review-item {
    outline: 1px solid red;
}

.blog-page__title {
    margin-bottom: 48px;
}
@media (max-width: 767px) {
    .blog-page__title {
        margin-bottom: 28px;
    }
}

.blog-single__content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.blog-single__content > *:first-child {
    margin-top: 0;
}
.blog-single__content > *:last-child {
    margin-bottom: 0;
}
.blog-single__content h1, .blog-single__content h2, .blog-single__content h3, .blog-single__content h4, .blog-single__content h5, .blog-single__content h6 {
    margin: 35px 0 20px;
}
.blog-single__picture {
    max-width: 100%;
}

.post {
    display: flex;
}
@media (max-width: 991px) {
    .post {
        display: block;
    }
}
.post:not(:last-child) {
    margin-bottom: 36px;
}
.post__actions {
    display: flex;
    margin-bottom: var(--global-indent);
}
.post__picture {
    flex: 0 0 350px;
    max-width: 350px;
    display: block;
}
@media (max-width: 991px) {
    .post__picture {
        margin-bottom: calc(var(--global-indent) * 2);
        max-width: 100%;
        flex: 0 0 100%;
    }
}
.post__link {
    margin-top: auto;
}
.post__wrapper {
    padding-left: calc(var(--global-indent) * 2);
    display: flex;
    flex-direction: column;
}
@media (max-width: 991px) {
    .post__wrapper {
        padding-left: 0;
    }
}
.post__image {
    height: 300px;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 767px) {
    .post__image {
        height: 250px;
    }
}
.post__title {
    font-size: 22px;
    font-weight: 600;
    font-family: "Poppins", serif;
    line-height: 1.3;
    display: block;
    margin-bottom: var(--global-indent);
    color: var(--sub-title-color);
}
.post__title:hover {
    color: var(--color-main);
}
.post__text {
    opacity: 0.8;
    line-height: 1.7;
    display: block;
    margin-bottom: var(--global-indent);
}

.post-action {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.post-action__text {
    font-weight: 500;
}
.post-action__icon {
    fill: white;
    margin-right: var(--global-indent);
}
.post-action__icon svg {
    fill: var(--color-main);
    width: 18px;
    height: 18px;
}

.single-service-slider img {
    max-width: 100%;
}


body .swiper-button-next,
body .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: white;
    border-color: var(--color-main);
    
}

body .swiper-button-next:after, 
body .swiper-button-prev:after {
    font-size: 20px!important;
    color: var(--color-black)!important;
}

.jumbotron__row {
    padding-left: 60px;
    padding-right: 60px;
}