body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    background: rgb(12,68,71);
    background: linear-gradient(90deg, rgba(12,68,71,1) 0%, rgba(4,17,18,1) 100%);
    padding: 110px 80px;
    min-height: 700px;
}


.left-section {
    background-image: url('img/home-img.webp');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
}

.left-section .content {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(12,68,71,0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.left-section .sd{
    font-size: 120px;
}

.left-section h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 25px;
    text-align: center;
    line-height: 0.8;
}

.left-section p {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 20%;
    margin-bottom: 25px;
    text-align: justify;
}

.right-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info,
.image-section {
    flex: 1; 
    display: flex;
    justify-content: center;
}

.right-section .contact-info {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 7%;
}

.contact-info a{
    position: relative;
    color: #fff;
    z-index: 1;
}

.right-section .info-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0; 
    width: 100%;
    row-gap: 16px;
}

.right-section .contact-info::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.2;
    background: url(/img/coffee.webp) no-repeat;
    background-size: cover;
    background-position: center 60%;
}

.right-section .contact-info img {
    position: relative;
    z-index: 1;
    height: 40px;
}

.address,
.phone,
.email{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.right-section h5 {
    position: relative;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-top: 38px;
    margin-bottom: 6px;
    z-index: 1;
}

.right-section p {
    position: relative;
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
    z-index: 1;
}

.image-section {
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

/* RESPONSIVE */
@media (min-width: 1200px) {
    body {
        padding: 110px 100px;
    }


}

@media (min-width: 992px) and (max-width: 1199.98px) {
    body {
        padding: 110px 80px;
    }

    .right-section .contact-info
    {
        padding: 0 3%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        padding: 90px 40px;
    }

    .left-section .sd {
        font-size: 100px;
    }

    .left-section h1 {
        font-size: 50px;
    }

    .left-section p {
        padding: 0 15%;
    }

    .image-section{
        padding-bottom: 90px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        padding: 60px 20px;
    }

    .left-section .sd {
        font-size: 80px;
    }

    .left-section h1 {
        font-size: 40px;
    }

    .left-section p {
        padding: 0 10%;
    }

    .image-section{
        padding-bottom: 60px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    body {
        padding: 20px 20px;
    }

    .left-section .sd {
        font-size: 80px;
    }

    .left-section h1 {
        font-size: 40px;
    }

    .left-section p {
        padding: 0 5%;
    }

    .right-section .info-wrapper {
        padding: 30px 0;
    }

    .address,
    .phone,
    .email {
        width: 100%;
    }

    .image-section{
        padding-bottom: 10px;
    }
}