:root {
    --main_color: #e8c19e;
    --bg_color: #232020;
    --text_color: rgba(255, 255, 255, 0.9);
    --font: "Montserrat", sans-serif;
    --second_font: "Inter", sans-serif;
}

/*Standart Settings*/
#layout-iframe {
    z-index: 1000!important
}
.btn-close-iframe {
    z-index: 1001!important;
}
body {
    font: 400 18px/1.5 var(--font);
    color: var(--text_color);
    background: var(--bg_color);
    margin: 0;
}
.container{
    width: 100%;
    padding: 0 80px;
    margin: 0 auto;
    max-width: 1440px;
}
.btn_basic{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 354px;
    font: 600 24px/1.5 var(--font);
    color: var(--bg_color);
    border: 1px solid var(--main_color);
    background: var(--main_color);
    padding: 15px;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.btn_basic:hover {
    color: var(--main_color);
    background: var(--bg_color);
}
h1 {
    font: 400 40px/1.5 var(--font);
    color: var(--main_color);
    margin: 0;
}
h2 {
    font: 400 34px/1.5 var(--font);
    color: var(--main_color);
    margin: 0;
}
h3 {
    font: 400 32px/1.5 var(--font);
    color: var(--main_color);
    margin: 0;
}
h4 {
    font: 400 28px/1.5 var(--font);
    color: var(--main_color);
    margin: 0;
}
h5 {
    font: 400 24px/1.5 var(--font);
    color: var(--main_color);
    margin: 0;
}
h6 {
    font: 400 20px/1.5 var(--font);
    color: var(--main_color);
    margin: 0;
}
input::-moz-placeholder,
textarea::-moz-placeholder{
    color: #7D7D7D;
    opacity: 1!important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    color: #7D7D7D;
}
a,
a:hover,
a:focus{
    text-decoration: none;
}
ul,
ol{
    list-style-position: inside;
}
footer ul,
footer ol{
    padding: 0;
    margin: 0;
}
footer ul{
    list-style: none;
}
*,
:after,
:before{
    box-sizing: border-box;
}
a,
button,
input[type="submit"],
a img{
    transition: all 0.3s linear;
}
input:not([type="checkbox"]),
select{
    -moz-appearance: none;
    -webkit-appearance: none;
}
iframe,
img{
    max-width: 100%;
}
img{
    vertical-align: middle;
}
a img{
    border: none;
}
input,
textarea,
select{
    border-radius: 0;
    border: none;
    box-shadow: none;
}

@media(max-width:767px){
    .container{
        padding: 0 16px;
    }
    .btn_basic{
        max-width: 294px;
        font-weight: 700;
        font-size: 18px;
        padding: 11px;
    }
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }
}
/*End Standart Settings*/


/*header*/
header {
    position: absolute;
    top: 30px;
    width: 100%;
    z-index: 999;
}
header .items_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .items_wrap .item{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 56px;
    max-width: 404px;
    background: rgba(35, 32, 32, 0.76);
}
header .item a{
    color: var(--text_color);
    transition: .3s ease-in-out;
}
header .item a:hover{
    color: var(--main_color);
}
header .item span{
    font-weight: 500;
}
header button{
    display: flex;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}
header .mobile_btn{
    margin-left: auto;
}
header .mobile_bg{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

/*pop up*/
.pop_up{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--bg_color);
    padding: 125px 16px;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.pop_up.show{
    left: 0;
    visibility: visible;
}
.pop_up .close{
    position: absolute;
    top: 38px;
    right: 16px;
    cursor: pointer;
}
.pop_up .pop_up_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.pop_up .item_title{
    font-weight: 500;
    color: var(--main_color);
    margin-bottom: 10px;
    text-align: center;
}
.pop_up p,
.pop_up a{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.pop_up .item_title{
    font-weight: 500;
    color: var(--main_color);
}
.pop_up .bg_line{
    position: absolute;
    top: 489px;
    left: 0;
    width: 100%;
    height: auto;
}

@media(min-width:1200px){
    header .mobile_bg{
        display: none;
    }
    header .mobile_btn{
        display: none;
    }
    header .mobile_pop_up{
        display: none;
    }
}
@media(max-width:1199px){
    header {
        top: 0;
        background: rgba(35, 32, 32, 0.6);
        padding: 45px 14px 60px;
    }
    header .items_wrap{
        display: none;
    }
}


/*hero_section*/
.hero_banner{
    position: relative;
}
.hero_banner .hero_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero_banner .hero_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
.hero_banner .hero_content{
    position: relative;
    padding: 210px 0 50px;
    text-align: center;
}
.hero_banner .hero_content::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 194px;
    background: rgba(35, 32, 32, 0.76);
}
.hero_banner .hero_content picture {
    display: block;
}
.hero_banner .hero_bottom{
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 149px;
}
.hero_banner .hero_bottom p {
    font-size: 24px;
    margin: 0;
}

@media(max-width:767px){
    .hero_banner .hero_content {
        padding: 264px 0 16px;
    }
    .hero_banner .hero_content::before {
        height: 136px;
        background: rgba(35, 32, 32, 0.6);
    }
    .hero_banner .hero_bottom p {
        font-size: 20px;
    }
}


/*main_info*/
.main_info{
    margin: 150px 0 100px;
}
.main_info .wrapper{
    display: grid;
    grid-template-columns: 1.38fr 1fr;
    grid-gap: 36px;
}
.main_info .image_block{
    position: relative;
    padding-top: 90%;
    border: 2px solid var(--main_color);
    margin: 0 -7px 0 40px;
}
.main_info .image_block::before{
    content: '';
    position: absolute;
    top: -52px;
    left: -52px;
    width: calc(100% + 2px);
    height: 90%;
    border: 1px solid var(--main_color);
}
.main_info .image_block img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_info .text_block p{
    margin: 40px 0 0;
}
.main_info .text_block ul{
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}
.main_info .text_block li{
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--main_color);
    margin-bottom: 11px;
}
.main_info .text_block li:last-child{
    margin-bottom: 0;
}

@media(max-width:991px){
    .main_info{
        margin: 75px 0;
    }
    .main_info .wrapper {
        grid-template-columns: 100%;
        grid-gap: 0;
    }
    .main_info .image_block::before {
        top: -42px;
        left: -42px;
        width: calc(100% - 2px);
        height: 95.7%;
    }
    .main_info .text_block {
        display: contents;
    }
    .main_info .text_block h1 {
        order: -1;
        margin-bottom: 60px;
    }
    .main_info .text_block p {
        font-size: 16px;
        padding: 0 16px;
    }
    .main_info .text_block ul {
        margin-top: 40px;
        padding: 0 16px;
    }
}
@media(max-width:767px){
    .main_info{
        margin: 40px 0;
    }
    .main_info .text_block li svg {
        width: 24px;
        height: 24px;
    }
}


/*visualization*/
.visualization{
    position: relative;
}
.visualization img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visualization .visualization_numbers svg{
    position: absolute;
}
.visualization .visualization_numbers svg:first-child{
    top: 10.4vw;
    left: 14.9vw;
}
.visualization .visualization_numbers svg:nth-child(2){
    top: 37.6vw;
    right: 14.4vw;
}
.visualization .visualization_numbers svg:last-child{
    top: 59.7vw;
    left: 20vw;
}
.visualization .items_desktop .item_block {
    position: absolute;
}
.visualization .items_desktop .item_block:first-child{
    top: 9.9vw;
    left: 18.7vw;
}
.visualization .items_desktop .item_block:nth-child(2){
    top: 35.9vw;
    right: 22.3vw;
}
.visualization .items_desktop .item_block:last-child{
    top: 35.6vw;
    left: 16.2vw;
}
.visualization .items_desktop svg{
    display: block;
    transform: rotate(149deg);
}
.visualization .items_desktop .item_block:nth-child(2) svg{
    transform: rotate(-32deg);
}
.visualization .items_desktop .item_block:nth-child(3) svg{
    transform: rotate(43deg);
}
.visualization .items_desktop span{
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    white-space: nowrap;
    font-weight: 500;
    /*font-size: 24px;*/
    color: var(--main_color);
    background: rgba(35, 32, 32, 0.76);
    transform: translateX(-50%);
    padding: 10px 24px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.visualization.in_view .items_desktop span{
    opacity: 1;
}
.visualization .items_desktop .item_block:first-child span{
    top: -65px;
}
.visualization .items_desktop .item_block:nth-child(2) span{
    transition-delay: 2s;
}
.visualization .items_desktop .item_block:last-child span{
    transition-delay: 1s;
}

.visualization .items_mobile{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}
.visualization .items_mobile .item_block{
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--text_color);
    background: transparent;
    padding: 10px 24px;
}
.visualization .items_mobile span{
    font-weight: 500;
}
.visualization .items_mobile .number{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 29px;
    height: 29px;
    font-size: 16px;
    color: var(--text_color);
    border: 2px solid var(--main_color);
    border-radius: 50%;
}

@media(min-width:1200px){
    .visualization .items_desktop span {
        font-size: 24px;
    }
}
@media(min-width:768px){
    .visualization .visualization_numbers{
        display: none;
    }
    .visualization .items_mobile{
        display: none;
    }
    .visualization .bg_line{
        display: none;
    }
}
@media(max-width:1199px){
    .visualization .items_desktop svg{
        width: 60px;
        height: 60px;
    }
}
@media(max-width:767px){
    .visualization{
        position: relative;
    }
    .visualization .image_wrap {
        position: relative;
        padding-top: 89.6%;
    }
    .visualization .image_wrap img {
        position: absolute;
        top: 0;
        left: 0;
    }
    .visualization .items_desktop{
        display: none;
    }
    .visualization .bg_line{
        position: absolute;
        bottom: -40px;
        left: 0;
        width: 100%;
        height: auto;
        z-index: -1;
    }
}


/*benefits_and_comfort*/
.benefits_and_comfort{
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.benefits_and_comfort .bg_attach{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.benefits_and_comfort .bg_attach.mobile{
    bottom: auto;
    /*top: 555px;*/
    top: 148vw;
}
.benefits_and_comfort .container{
    max-width: 1360px;
    position: relative;
}
.benefits_and_comfort h2{
    font-size: 40px;
}
.benefits_and_comfort .wrapper{
    display: grid;
    grid-template-columns: 1fr 1.17fr;
    grid-gap: 40px;
    align-items: center;
    margin-top: 40px;
}
.benefits_and_comfort .text_block ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.benefits_and_comfort .text_block ul li{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}
.benefits_and_comfort .text_block ul li:last-child{
    margin-bottom: 0;
}
.benefits_and_comfort .text_block ul li svg{
    flex-shrink: 0;
}
.benefits_and_comfort .images_block{
    display: grid;
    grid-template-columns: 1fr 1.68fr;
    grid-gap: 38px;
}
.benefits_and_comfort .images_block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width:768px){
    .benefits_and_comfort .bg_attach.mobile{
        display: none;
    }
    .benefits_and_comfort .text_block ul li span span {
        display: none;
    }
}
@media(max-width:991px){
    .benefits_and_comfort .wrapper {
        grid-template-columns: 100%;
        grid-gap: 75px;
        margin-top: 30px;
    }
    .benefits_and_comfort h2 {
        text-align: center;
    }
    .benefits_and_comfort .text_block{
        order: 1;
    }
    .benefits_and_comfort .images_block{
        /*margin: 0 -80px;*/
    }
}
@media(max-width: 767px){
    .benefits_and_comfort {
        padding: 75px 0 30px;
    }
    .benefits_and_comfort .bg_attach.desktop{
        display: none;
    }
    .benefits_and_comfort h2 {
        font-size: 26px;
    }
    .benefits_and_comfort .text_block ul svg {
        width: 24px;
        height: 24px;
    }
    .benefits_and_comfort .text_block ul li:not(:last-child) br {
        display: none;
    }
    .benefits_and_comfort .images_block{
        grid-gap: 20px;
        margin: 0 -16px;
    }
}


/*benefits*/
.benefits .wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*max-width: 1440px;*/
    margin: 0 auto;
}
.benefits .image_block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.benefits .text_block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 65px;
    padding: 30px 0;
    max-width: 520px;
}
.benefits .reverse .text_block{
    justify-self: end;
    max-width: 575px;
}
.benefits .text_block h2{
    text-align: center;
}
.benefits .text_block ul{
    font-weight: 500;
    font-size: 16px;
    list-style-position: outside;
    margin: 32px 0 0;
    padding: 0 0 0 26px;
}
.benefits .text_block ul li:not(:last-child){
    margin-bottom: 18px;
}
.benefits .text_block li span{
    font-weight: 400;
}

@media(max-width: 991px){
    .benefits .wrapper {
        grid-template-columns: 100%;
    }
    .benefits .text_block {
        margin: 0;
        padding: 40px 16px;
        max-width: 100%;
    }
    .benefits .reverse .text_block {
        order: 1;
        justify-self: start;
        max-width: 100%;
    }
}
@media(max-width: 767px){
    .benefits .image_block {
        position: relative;
        padding-top: 79%;
    }
    .benefits .image_block img {
        position: absolute;
        top: 0;
        left: 0;
    }
    .benefits .text_block ul li {
        font-size: 14px;
    }
}



















.content-apartments {
    display: flex;
    align-items: center;gap: 60px;
    margin-top: 50px;
}
.content-apartments .left-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    flex-shrink: 0;
    font-size: 18px;
}
.content-apartments .left-block span {
    color: var(--main_color);
    font-size: 20px;
}
.content-apartments .photos-apartments {
    position: relative;
    width: 100%;
}
.content-apartments .photos-apartments .open-modal-image {
    position: absolute;
    width: 66px;
    height: 66px;
    right: 28px;
    bottom: 22px;
    z-index: 2;
    background: #524F4F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    cursor: pointer;
    transition: .3s;
}
.content-apartments .wrap-images {
    position: relative;
    padding-top: 50%;
}
.content-apartments .wrap-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
}
.content-apartments .wrap-images img.active {
    opacity: 1;
}
.content-apartments .photos-apartments .open-modal-image:hover {
    opacity: .78;
}
@media(max-width: 767px) {
    .content-apartments {
        gap: 30px;
        flex-direction: column-reverse;
    }

    .content-apartments .left-block {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        max-width: 500px;
        justify-content: space-around;
    }
    .content-apartments .left-block {
        font-size: 16px;
    }
    .content-apartments .left-block span {
        font-size: 18px;
    }
    .content-apartments .wrap-images {
        padding-top: 125%;
    }
}


#modal-custom {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #222020;
    z-index: 999999;
    display: none;
}
#modal-custom .container {
    display: flex;
    align-items: center;
    height: 100%;
}
#modal-custom .wrap {
    position: relative;
}

#modal-custom .close-modal {
    position: absolute;
    width: 66px;
    height: 66px;
    right: 22px;
    top: 22px;
    z-index: 2;
    background: #524F4F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    cursor: pointer;
    transition: .3s;
}
#modal-custom .close-modal:hover {
    opacity: .78;
}
@media(max-width: 767px) {
    #modal-custom .container {
        display: block;
        padding: 0;
    }
    #modal-custom .wrap {
        position: static;
    }
    #modal-custom .image{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vh;
        height: 100vw;
        transform: translate(-50%, -50%) rotate(90deg);
        display: flex;
        align-items: center;
    }
    #modal-custom .wrap {
        position: relative;
        height: 100%;
    }
    #modal-custom .close-modal {
        width: 40px;
        height: 40px;
    }
}


.image-section {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.image-section .container {
    position: relative;
}
.image-section .line {
    transition: 2s;
    width: 350px;
    background: #222020;
    padding: 10px 24px;
    font-size: 18px;
    color: #fff;
    position: absolute;
    right: -40%;
    top: 80px;
}
.image-section .line.two {
    top: 146px;
}
.image-section .line.three {
    top: 213px;
}

.image-section.in_view .line {
    right: 80px;
}
.image-section.in_view .line.two {
    transition-delay: 1500ms;
    transition-property: right;
}
.image-section.in_view .line.three {
    transition-delay: 3000ms;
    transition-property: right;
}

.image-section svg {
    position: absolute;
    top: -6px;
    z-index: -1;
    max-width: 100%;
}

@media(min-width: 1450px) {
    .image-section svg {
        left: -20px;
        top: 0;
        width: calc(100% + 20px) !important;
        height: auto !important;
    }
}
@media(max-width: 1199px) {
    .image-section svg {
        display: none;
    }
    .image-section .container {
        padding: 0;
    }
    .image-section img {
        margin-bottom: 30px;
    }
    .image-section .line {
        right: -100%;
        position: relative;
        top: auto !important;
        margin-bottom: 10px;
        border: 1px solid var(--main_color);
    }
    .image-section.in_view .line {
        right: calc(-100% + 305px);
        font-size: 16px;
    }
}


/*apartments*/
.apartments {
    padding: 100px 0;
}
.apartments h2 {
    text-align: center;
    margin: 0 0 50px;
}

.apartments .tab-top {
    display: flex;
    justify-content: space-between;
    gap: 9px;
    position: relative;
}
.apartments .tab-top .button {
    padding: 14px 0;
    font-size: 20px;
    line-height: 150%;
    flex-grow: 1;
    cursor: pointer;
    transition: .3s;
    border: 1px solid transparent;
    text-align: center;
    width: calc(100% / 9);
}
.apartments .tab-top .border-active {
    border: 1px solid var(--main_color);
    font-size: 20px;
    line-height: 150%;
    flex-grow: 1;
    cursor: pointer;
    transition: .3s;
    text-align: center;
    width: calc((100% / 9) - 9px);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
}
.apartments .tab-top .button.active {
    background: transparent;
}
.apartments .tab-top .button:hover {
    background: var(--main_color);
}


@media(max-width: 1199px) {
    .apartments .tab-top .border-active {
        display: none;
    }
    .apartments .tab-top .button.active {
        background: transparent;
        border: 1px solid var(--main_color);
    }
    .apartments .tab-top {
        flex-wrap: wrap;
        gap: 14px;
    }
    .apartments h2 {
        margin-bottom: 25px;
    }
    .apartments {
        padding-top: 40px;
        padding-bottom: 0;
    }
    .apartments .tab-top .button {
        width: calc((100% / 3) - 14px);
        font-size: 16px;
        padding: 12px 2px;
    }
    .apartments .tab-top {
        gap: 7px;
    }
    .content-apartments {
        margin-top: 15px;
    }
}


/* Galery */
.gallery-section {
    padding: 60px 0;
}
.gallery-section .swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
}
.gallery-section .grid-box {
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.gallery-section .swiper-slide .grid-box picture {
    height: calc(50% - 10px);
    width: 100%;
}
.gallery-section h2 {
    text-align: center;
    padding-bottom: 40px;
}
.gallery-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-section .grid-wrapper {
    display: flex;
    gap: 20px;
    height: 570px;
}
.gallery-section .swiper-slide img {
    display: block;
    height: 100%;
    border:1px solid var(--main_color);
    object-fit: cover;
}
.gallery-section .first {
    width: 40%;
}
.gallery-section .second {
    width: 24%;
}

.gallery-section .swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background: #A7A6A6;
    opacity: 1;
    margin: 0 5px !important;
}
.gallery-section .swiper .swiper-pagination-bullet-active {
    background: var(--main_color);
}

@media (max-width: 767px) {
    .gallery-section {
        padding-bottom: 0;
    }
    .gallery-section h2 {
        padding-bottom: 30px;
    }
    .gallery-section .grid-wrapper {
        height: auto;
        flex-direction: column;
        width: 100%;
    }
    .gallery-section picture {
        width: 100% !important;
    }
    .gallery-section img {
        width: 100% !important;
        opacity: 0;
        transition: 2s;
    }
    .gallery-section img.in_view {
        opacity: 1;
    }
    .gallery-section .swiper-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .gallery-section .last {
        display: none !important;
    }
    .gallery-section .swiper-pagination {
        display: none;
    }

}

/*footer*/
footer {
    padding: 58px 0 97px 0;
    border-top: 1px solid var(--main_color);
}
footer img {
    width: 110px;
}
footer .grid-box {
    margin: auto;
    display: grid;
    grid-gap: 130px;
    grid-template-columns: auto 1fr 1fr 1fr;
}
footer h3 {
    color: var(--main_color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}
footer .footer_logo {
    display: flex;
    align-items: center;
}
footer .info {
    color: rgba(255,255,255,.6);
    font-size: 16px;
    line-height: 150%;
}
footer a {
    color: rgba(255,255,255,.6);
    font-size: 16px;
    line-height: 150%;
}
footer .year {
    display: none;
}
footer .grid-box p {
    color: rgba(255,255,255,.6);
    font-size: 16px;
    line-height: 150%;
}
footer .grid-box p a {
    color: var(--main_color);
}

footer a:hover {
    color: var(--main_color);
}
@media(max-width: 1200px) {
    footer .grid-box {
        gap: 30px;
    }
}
@media(max-width: 991px) {
    footer {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    footer .year {
        display: flex;
        justify-content: center;
        color: #A7A6A6;
        font-size: 14px;
        margin: 0;
    }
    footer .grid-box {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    footer .grid-box .item:first-child {
        order: 11;
        margin: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}