.landing-heading-wrap h1{
    font-size: 48px;
    margin-bottom: 8px;
}

.landing-heading-wrap p {
    font-size: 24px;
    color: #A6A6A6;
}

.landing-text-images {
    width: 1200px;
    margin-top: 56px;
    padding: 64px;
    background-color: black;
    border-radius: 46px;
}

.land-contact-icon {
    height: 24px;
    width: 24px;
}

.landing-phone-to {
    font-size: 16px;
    font-weight: 500;
    color: #97041D;
}

.land-contact-group span:first-child {
    color: #A9A9A9;
    margin-bottom: 4px;
}

.land-contact-group span:nth-child(2) {
    margin-bottom: 12px;
    font-size: 20px;
}

.land-contacts-wrap {
    display: flex;
    width: fit-content;
    padding-bottom: 40px;
    border-bottom: 2px solid #97041D;
}

.land-contact-group:first-child {
    margin-right: 80px;
}

.land-images {
    margin-top: 48px;
    width: 100%;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    row-gap: 64px;
    justify-content: space-between;
}

.land-images img {
    width: 100%;
    border-radius: 14px;
}

.landing-home-wrap {
    width: 1200px;
}

.landing-image-slider-wrap {
    width: 680px;
    height: 680px;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    user-select: none;
}

.landing-image-slider {
    width: 100%;
    height: 100%;
    display: flex;
}

.landing-image-slider img {
    flex: 0 0 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-arrows-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 5;
    top: 0;
}

.arrow-wrap {
    height: 56px;
    width: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.arrow-wrap:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.arrow-wrap:last-child {
    border-radius: 32px 0 0 32px;
}

.arrow-wrap:first-child {
    border-radius: 0 32px 32px 0;
}

.arrow-wrap:first-child svg {
    margin-right: 8px;
}

.arrow-wrap:last-child svg {
    margin-left: 8px;
}

@media only screen and (max-width: 1240px) {
    .landing-text-images {
        width: 95%;
    }
    
    .landing-home-wrap {
        width: 95%;
    }
    
    .landing-image-slider-wrap {
        width: 600px;
        height: 600px;
        border-radius: 64px;
    }
}

@media only screen and (max-width: 1120px) {
    .landing-image-slider-wrap {
        width: 560px;
        height: 560px;
        border-radius: 64px;
    }
}

@media only screen and (max-width: 1080px) {
    .land-type-option {
        width: 320px;
        padding: 24px;
    }

    .land-type-icon {
        margin-right: 24px;
    }
}

@media only screen and (max-width: 1080px) {
    .land-type-option {
        width: 300px;
        padding: 24px;
    }

    .landing-image-slider-wrap {
        width: 540px;
        height: 540px;
        border-radius: 56px;
    }
}

@media only screen and (max-width: 998px) {
    .land-type-select {
        padding: 28px;
    }
    
    .land-type-option {
        width: 280px;
        padding: 24px;
    }
    .land-type-icon {
        margin-left: 12px;
        margin-right: 24px;
    }

    .landing-image-slider-wrap {
        width: 540px;
        height: 540px;
        border-radius: 56px;
    }
}

@media only screen and (max-width: 970px) {
    .landing-home-wrap {
        flex-direction: column;
        align-items: center;
    }
    
    .landing-image-slider-wrap {
        margin-top: 40px;
        width: 100%;
        height: 70vw;
    }
    
    .land-type-select {
        padding: 32px;
    }
    
    .land-type-option {
        width: 360px;
        padding: 24px;
    }
    
    .land-type-icon {
        margin-left: 24px;
        margin-right: 52px;
    }
    
    .landing-text-images {
        padding: 48px;
    }
    
    .land-contacts-wrap {
        padding-bottom: 32px;
    }
    
    .land-images {
        grid-template-columns: 46% 46%;
        row-gap: 40px;
    }
}

@media only screen and (max-width: 680px) {
    .land-contact-group:first-child {
        margin-right: 40px;
    }
    
    .landing-text-images {
        padding: 36px;
    }

    .landing-heading-wrap h1 {
        font-size: 40px;
    }

    .landing-heading-wrap p {
        font-size: 20px;
    }

    .landing-text-images {
        border-radius: 40px;
    }

    .land-contact-group:first-child {
        min-width: 172px;
    }
}

@media only screen and (max-width: 620px) {
    .land-images {
        grid-template-columns: 48% 48%;
        row-gap: 24px;
    }
}

@media only screen and (max-width: 520px) {
    .land-images {
        display: flex;
        flex-direction: column;
        row-gap: 32px;
    }

    .land-images img {
        width: 100%;
    }


    .land-contacts-wrap {
        flex-direction: column;
    }

    .land-contact-group:first-child {
        margin-bottom: 16px;
    }
}


@media only screen and (max-width: 480px) {
    .land-type-select {
        width: 100%;
    }
    .land-type-option {
        width: 100%;
    }
}

@media only screen and (max-width: 430px) {
    .land-type-icon {
        margin-right: 32px;
    }
}