/*====================================================*
HOME ABOUT SECTION
*====================================================*/

.home-about {

    width: 100%;

    background: #ffffff;

    padding: 70px 0 90px;

    box-sizing: border-box;

}


/*====================================================*
CONTAINER
====================================================*/

.home-about-container {

    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.82fr) minmax(600px, 1.18fr);

    gap: 70px;

    align-items: center;

}


/*====================================================*
LEFT CONTENT
====================================================*/

.home-about-content {

    width: 100%;

    min-width: 0;

}


/*====================================================*
TITLE
====================================================*/

.home-about-title {

    margin: 0 0 12px;

    color: #080808;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 48px;

    font-weight: 600;

    line-height: 1.1;

    letter-spacing: -1.5px;

}


/*====================================================*
DESCRIPTION
====================================================*/

.home-about-description {

    width: 100%;

    max-width: 470px;

    margin: 0;

    color: #747878;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.9;

}


/*====================================================*
INFO AREA
====================================================*/

.home-about-info {

    width: 100%;

    max-width: 470px;

    margin-top: 35px;

    display: flex;

    align-items: stretch;

}


/*====================================================*
FEATURES
====================================================*/

.home-about-features {

    width: 180px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 17px;

}


/*====================================================*
FEATURE
====================================================*/

.home-about-feature {

    color: #111111;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.35;

}


/*====================================================*
DIVIDER
====================================================*/

.home-about-divider {

    width: 1px;

    margin: 0 35px 0 0;

    background: #cbdccc;

}


/*====================================================*
CONTACT
====================================================*/

.home-about-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

}


/*====================================================*
CONTACT IMAGE
====================================================*/

.home-about-contact-image {

    width: 58px;

    height: 58px;

    margin-bottom: 10px;

    border-radius: 50%;

    overflow: hidden;

    background: #dfe9dd;

}


.home-about-contact-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/*====================================================*
CONTACT LABEL
====================================================*/

.home-about-contact-label {

    color: #111111;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.4;

}


/*====================================================*
PHONE
====================================================*/

.home-about-phone {

    margin-top: 5px;

    color: #080808;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

}


/*====================================================*
ABOUT BUTTON
====================================================*/

.home-about-button {

    width: 145px;

    height: 54px;

    margin-top: 42px;

    padding: 0 20px;

    box-sizing: border-box;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 30px;

    background: #080808;

    color: #ffffff;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.home-about-button:hover {

    background: #182b34;

    transform: translateY(-3px);

}


.home-about-button-arrow {

    font-size: 21px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform 0.3s ease;

}


.home-about-button:hover .home-about-button-arrow {

    transform:
        translateX(4px);

}


/*====================================================*
RIGHT VISUAL
====================================================*/

.home-about-visual {

    position: relative;

    width: 100%;

    height: 650px;

    min-width: 0;

}


/*====================================================*
MAIN IMAGE
====================================================*/

.home-about-main-image {

    position: absolute;

    top: 0;

    left: 0;

    width: 72%;

    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    z-index: 3;

}


.home-about-main-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/*====================================================*
MIDDLE IMAGE
====================================================*/

.home-about-middle-image {

    position: absolute;

    top: 48px;

    right: 7%;

    width: 25%;

    height: 85%;

    overflow: hidden;

    border-radius: 18px;

    border: 4px solid #ffffff;

    box-shadow:
        0 0 12px rgba(0, 0, 0, 0.15);

    z-index: 2;

    opacity: 0.8;

}


.home-about-middle-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: blur(1px);

}


/*====================================================*
BACK IMAGE
====================================================*/

.home-about-back-image {

    position: absolute;

    top: 88px;

    right: 0;

    width: 22%;

    height: 78%;

    overflow: hidden;

    border-radius: 17px;

    border: 4px solid #ffffff;

    box-shadow:
        0 0 12px rgba(0, 0, 0, 0.14);

    z-index: 1;

    opacity: 0.65;

}


.home-about-back-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: blur(2px);

}


/*====================================================*
IMAGE ARROW
====================================================*/

.home-about-image-arrow {

    position: absolute;

    top: 50%;

    right: 20%;

    width: 58px;

    height: 58px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #182b34;

    font-family: Arial, sans-serif;

    font-size: 28px;

    font-weight: 300;

    cursor: pointer;

    transform:
        translateY(-50%);

    z-index: 5;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.home-about-image-arrow:hover {

    background: #182b34;

    color: #ffffff;

    transform:
        translateY(-50%) scale(1.08);

}


/*====================================================*
TABLET
====================================================*/

@media (max-width: 1200px) {

    .home-about-container {

        width: 92%;

        grid-template-columns:
            minmax(350px, 0.8fr) minmax(500px, 1.2fr);

        gap: 45px;

    }


    .home-about-title {

        font-size: 44px;

    }


    .home-about-description {

        font-size: 15px;

    }


    .home-about-visual {

        height: 570px;

    }

}


/*====================================================*
TABLET / SMALL DESKTOP
====================================================*/

@media (max-width: 992px) {

    .home-about {

        padding:
            60px 0 75px;

    }


    .home-about-container {

        width: 90%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 50px;

    }


    .home-about-content {

        max-width: 650px;

    }


    .home-about-description {

        max-width: 600px;

    }


    .home-about-info {

        max-width: 600px;

    }


    .home-about-visual {

        height: 600px;

    }


    .home-about-main-image {

        width: 72%;

    }

}

/*====================================================*
MOBILE
====================================================*/

@media (max-width: 768px) {

    .home-about {

        padding:
            50px 0 60px;

    }


    .home-about-container {

        width: 90%;

        gap: 40px;

    }


    .home-about-title {

        font-size: 36px;

        letter-spacing: -1px;

    }


    .home-about-description {

        font-size: 13px;

        line-height: 1.8;

    }


    .home-about-info {

        margin-top: 28px;

    }


    .home-about-features {

        width: 150px;

        gap: 14px;

    }


    .home-about-feature {

        font-size: 12px;

    }


    .home-about-divider {

        margin-right: 25px;

    }


    .home-about-contact-image {

        width: 52px;

        height: 52px;

    }


    .home-about-contact-label {

        font-size: 13px;

    }


    .home-about-phone {

        font-size: 17px;

    }


    .home-about-button {

        width: 140px;

        height: 50px;

        margin-top: 32px;

        font-size: 12px;

    }


    /*================================================
    MOBILE IMAGE
    ONLY MAIN IMAGE IS VISIBLE
    =================================================*/

    .home-about-visual {

        height: 440px;

    }


    .home-about-main-image {

        width: 100%;

        height: 100%;

        top: 0;

        left: 0;

        border-radius: 17px;

    }


    /*================================================
    HIDE OTHER IMAGES
    =================================================*/

    .home-about-middle-image,
    .home-about-back-image {

        display: none;

    }


    /*================================================
    HIDE ARROW
    =================================================*/

    .home-about-image-arrow {

        display: none;

    }

}