/* HERO */

.hero.section {
    /* min-height: 100vh; */
    /* min-height: 1000px; */
    position: relative;
    background: #F1E3D8;
    padding-top: 175px;
    background-image: url(../pics/circle_big.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 15%;
    padding-bottom: 0;
}
.hero.section h1 {
    font-size: 55px;
    margin-left: 0;
    padding-bottom: 10px;
    line-height: 65px;
}
.hero.section .cover_desc {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    margin-left: 0;
}
.hero.section .circle_small {
    position: absolute;
    z-index: 2;
    left: 10%;
    bottom: 5%;
    height: calc(100% - 65vh);  
}

/* HEADER SLICK */

.slick.slick-slider {
    padding-top: 60px;
    padding-bottom: 100px;
    z-index: 5;
}

.slick-prev.slick-arrow, .slick-next.slick-arrow {
    background: transparent;
    border: 0;
    color: transparent;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
}
.slick-prev.slick-arrow {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translate(0, -50%);
    z-index: 10;
}
.slick-next.slick-arrow {
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translate(0, -50%);
    z-index: 10;
}

.slick-prev.slick-arrow::after {
    content: '';
    background-image: url(../pics/arrow_left.svg);
    width: 60px;
    height: 23px;
    background-position: center left;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    z-index: 10;
}
.slick-next.slick-arrow::after {
    content: '';
    background-image: url(../pics/arrow_right.svg);
    width: 60px;
    height: 23px;
    background-position: center left;
    position: absolute;
    background-repeat: no-repeat;
    right: 0;
    z-index: 10;
}

.slick-slide {
    position: relative;
}
.slide-texts {
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translate(0, -50%);
    z-index: 10;
}
.slide-title {
    cursor: grab;
    font-size: 50px;
    color: white;
    line-height: 47px;
    letter-spacing: -0.02em;
    margin-top: 25px;
    padding-bottom: 25px;
}
.slide-content {
    cursor: grab;
    width: 400px;
    font-size: 18px;
    color: white;
    line-height: 21px;
    letter-spacing: -0.02em;
    font-weight: normal;
}
.slide-image {
    border-radius: 11px;
    cursor: grab;
}

@media (min-width: 100px) and (max-width: 1200px) {
    .slick-track .slick-slide {
        /* height: 300px; */
        border-radius: 11px;
        overflow: hidden;
    }
    .slick-track .slick-slide img {
        /* height: 300px; */
        width: 100%;
        object-fit: cover;
        border-radius: 11px;
        overflow: hidden;
    }
    /* .hero.section {
        min-height: 750px;
    } */
    .hero.section .circle_small {
        bottom: 3%;
    }
    .hero.section .cover_desc {
        padding-right: 150px;
    }
    .slide-texts {
        left: 100px;
    }
    .hero.section {
        padding-top: 100px;
    }

    .hero.section h1 {
        font-size: 34px;
        line-height: 40px;
        margin-left: 0;
    }
    .hero.section .cover_desc {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .circle_small {
        width: 100px;
    }
    .hero.section h1 {
        font-size: 34px;
        line-height: 40px;
    }
    .slide-texts {
        left: 25px;
    }
    .slide-title {
        font-size: 25px;
        line-height: 28px;
    }
    .slide-content {
        width: 250px;
        font-size: 16px;
    }
    .slick-track .slick-slide {
        height: 300px;
        border-radius: 11px;
    }
    .slick-track .slick-slide img {
        /* height: 300px; */
        width: 100%;
        object-fit: cover;
        border-radius: 11px;
    }
    .slick-prev.slick-arrow {
        top: 25%;
        left: 25px;
    }
    .slick-next.slick-arrow {
        top: 25%;
        right: 10px;
    }
    .hero.section {
        padding-top: 100px;
        /* min-height: 675px; */
        background-size: 25%;
        background-image: none;
    }
    .hero.section .circle_small {
        bottom: 3%;
        height: 75px;
    }
}

/* Ken Burns */
@media (min-width: 1201px) {
    .slick-slide .slick-slide, .slick-slide  {
        overflow: hidden !important;
    }
    .slick-track, .slick-track .slick-slide .slick-slide, .slick-list.draggable {
        height: 501px;
        border-radius: 11px;
    }
    .slick-current.slick-active .slick-slide {
        width: 100%;
        height: 501px;
        margin: 0 auto;
        overflow: hidden !important;
        position: relative;
        border-radius: 11px;
    }
    .slick-current.slick-active .slick-slide img {
        width: 100%;
        animation: move 25s ease forwards;
        -ms-animation: move 25s ease forwards;
        -webkit-animation: move 25s ease forwards;
        -moz-animation: move 25s ease forwards;
        position: absolute;
    }
    @-webkit-keyframes move {
        0% {
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        -webkit-transform: scale(1.0);
        -o-transform: scale(1.0);
        -moz-transform: scale(1.0);
        }
        100% {
        transform: scale(1.2);
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -o-transform: scale(1.2);
        -moz-transform: scale(1.2);
        }
    }
}

/* HEADER */

.nav.section {
    background: transparent;
}
.nav.section.c-nav--scrolled {
    background: white;
}

/* TEENUSED */

.teenused_table{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; 
}
.teenused_table > .teenus_row:nth-last-child(n+4) {
    grid-column: span 1;
}
.teenused_table > .teenus_row:nth-last-child(3):nth-child(2),
.teenused_table > .teenus_row:nth-last-child(2):nth-child(1) {
    grid-column: span 2;
}

.teenused_table > .teenus_row:nth-last-child(2):nth-child(1) {
    grid-column: span 3;
}
.teenus_title { 
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: #27306e;
    padding-top: 15px;
    padding-bottom: 15px;
}
.teenus_desc {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #27306e;
    width: 400px;
    padding-bottom: 50px;
}
.teenus_icon {
    height: 65px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .teenus_desc {
        width: auto;
    }
    .teenus_row {
        padding-right: 25px;
    }
    .teenus_title {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .teenused_table .teenus_row {
        padding-right: 10px;
    }
    .teenused_table {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .teenus_desc {
        width: auto;
    }
}

/* PARTNERS */

.partners_table {
    display: flex;
    flex-wrap: wrap;
}
.partners_table .partners_row {
    width: 25%;
    height: 150px;
    position: relative;
    padding: 15px;
}
.partners_table .partners_row img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50%;
    max-height: 68px;
}


.get-in-touch-wrap{
    text-align: center;
}

.button{
    padding: 13px 11px;
    width: 195px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
    background-color: #a9824a;
    border: 2px solid #a9824a;
    color: #fff;
    font-weight: 700;
    outline: none;
    font-size: 18px;
    display: inline-block;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.button.small{
    width: 175px;
    padding: 8px 8px;
    font-size: 14px;
}


.button:hover{
    background-color: #fff;
    color: #a9824a;
}

/*
.partners_row:nth-child(-n+3) {
    border-right: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
}
.partners_row:nth-child(n+5) {
    border-right: 1px solid #E3E3E3;
}
.partners_row:nth-child(4) {
    border-bottom: 1px solid #E3E3E3;
}
.partners_row:nth-child(8) {
    border-right: 0;
}
*/

@media (min-width: 768px) and (max-width: 1200px) {
    .partners_row img {
        width: 75%;
        object-fit: contain;
    }
}
@media (max-width: 767px) {
    .partners_table .partners_row {
        width: 50%;
    }
    .partners_table .partners_row img {
        max-width: 60%;
        max-height: 48px;
    }
    /*
    .partners_row:nth-child(even) {
        border-right: 0;
        border-bottom: 1px solid #E3E3E3;

    }
    .partners_row:nth-child(odd) {
        border-right: 1px solid #E3E3E3;
        border-bottom: 1px solid #E3E3E3;
    }
    .partners_row:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    */
    .partners_row img {
        width: 75%;
        object-fit: contain;
    }
    .partners_table .partners_row {
        height: 100px;
    }
}

/* PORTFOLIO */

.portoflio_table {
    padding-bottom: 150px;
}
.portfolio.section {
    background: #F1E3D8;
    margin-top: 25px;
}
.port_left {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    padding-right: 56px;
}
.port_row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #DFCCB6;
    padding-bottom: 15px;
}
.port_left .port_row * {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: #27306e;
}
.portfolio_left {
    width: 70%;
    height: 350px;
    overflow-y: scroll;
    display: flex;
    flex-wrap: wrap;
    padding-right: 50px;
    z-index: 1;
}
.portfolio_row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 25px;
}
.portfolio_row {
    border-top: 1px solid #DFCCB6;
}
.portfolio_row:first-child {
    border-top: 0;
}
.portfolio_row:last-child {
    border-bottom: 1px solid #DFCCB6;
}
.port_year {
    width: 10%;
}
.portfolio_year {
    width: 10%;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: -0.01em;    
    color: #27306e;
    position: relative;
}
.portfolio_year > div {
    position: absolute;
    top: 50%;
    left: 0;
    width: 75%;
    transform: translate(0, -50%);
}
.port_client {
    width: 30%;
}
.portfolio_title_stars {
    width: 30%;
    position: relative;
}
.portfolio_title_stars > div {
    position: absolute;
    top: 50%;
    left: 0;
    width: 75%;
    transform: translate(0, -50%);
}
.portfolio_stars {
    color: #27306e;
    letter-spacing: 3px;
    font-size: 15px;
    margin-top: 5px;
}
.portfolio_desc {
    width: 35%;
    position: relative;
}
.portfolio_desc p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.portfolio_desc > p {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.portfolio_link {
    width: 25%;
    text-align: right;
    position: relative;
}
.portfolio_link > span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}
.portfolio_link span{
    background: #AE8351;
    padding: 8px 18px;
    border-radius: 41px;
    color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    font-size: 16px;
    letter-spacing: -0.01em;
    border: 2px solid #a9824a;
    transition: 0.1s ease-in;
    cursor: pointer;
}

.portfolio_link span:hover {
    transition: 0.1s ease-in;
    background: transparent;
    color: #a9824a;
}
.portfolio_title {
    font-weight: bold;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #27306e;
}

.portfolio_left::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
}
.portfolio_left::-webkit-scrollbar-thumb {
    border-radius: 11px;
    background-color: #27306e;
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.all_portfolio {
    display: flex;
}
.all_portfolio .portfolio_row {
    height: 115px;
    min-height: 115px;
}

.portfolio_right {
    width: 30%;
    position: relative;
    margin-top: -125px;
    padding-left: 40px;
}
.portfolio_right::after {
    content: '';
    height: 73%;
    width: 1px;
    background: #CEA684;
    position: absolute;
    left: -3px;
    bottom: 0;
}
.portfolio_image {
    position: absolute;
    height: 105%;
}
.portfolio_image img {
    object-fit: cover;
    height: 105%;
    width: auto;
    border-radius: 11px;
}
.portfolio_image {
    opacity: 0;
    transition: 0.1s ease-in;
}
.active-img {
    z-index: 10;
    opacity: 1;
    transition: 0.25s ease-in;
}
.img-1 {
    opacity: 1;
}

@media (min-width: 767px) {
    .active_row {
        height: auto !important;
    }
    .active_row p {
        -webkit-line-clamp: unset;
    }
    .active_row .portfolio_desc > p {
        position: relative;
        transform: translate(0, 0);
        top: unset;
    }
}
@media (min-width: 768px) and (max-width: 1200px) {
    .portfolio_right {
        display: none;
    }
    .portfolio_left, .port_left {
        width: 100%;
    }
    .portoflio_table {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .portfolio_right {
        display: none;
    }
    .portfolio_left, .port_left {
        width: 100%;
        padding-right: 25px;
    }
    .portoflio_table {
        padding-bottom: 80px;
    }
    .portfolio_link, .port_desc, .portfolio_desc {
        display: none;
    }
    .portfolio_year, .port_year {
        width: 25%;
    }
    .portfolio_title_stars, .port_client {
        width: 75%;
    }
    .portfolio_title_stars > div {
        width: 100%;
    }
}

/* CONTACTS */

.c-card__location {
    padding-left: 35px;
    position: relative;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #27306e;
    padding-bottom: 10px;
}
.c-card__location::after {
    content: '';
    background-image: url(../pics/location.svg);
    position: absolute;
    width: 20px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: -2px;
}

/* REFERENCES */

@media (min-width: 768px) and (max-width: 1200px) {
    .c-reference-swiper-wrapper > * {
        width: 30% !important;
    }
    .c-hotels-references .c-card__title {
        padding-right: 0;
    }
    .c-icon--prev-ref, .c-icon--next-ref {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;           
    }
}
@media (max-width: 767px) {
    .c-icon--next, .c-icon--prev {
        display: block;
    }
    .c-icon--prev-ref, .c-icon--next-ref {
        top: -15px;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;           
    }
    .c-reference-swiper-wrapper .c-card {
        width: 100% !important;
        padding: 0 !important;
    }
    .c-reference-swiper-wrapper {
        margin: 0 !important;
        width: 100% !important;
    }
}

/* SETTINGS */

.c-oval {
    display: none;
}

.teenused h2, .partners h2, .portfolio h2, .hotels h2, .contacts h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #27306e;
    padding-top: 80px;
    padding-bottom: 65px;
}
.partners h2, .hotels h2 {
    padding-bottom: 0;
}
.contacts h2 {
    padding-top: 0;
}


@media (min-width: 768px) and (max-width: 1200px) {
    .hotels h2 {
        padding-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .partners h2 {
        padding-bottom: 25px;
    }
    .c-hotels-references__title {
        margin-bottom: 50px;
    }
}

