.about {
}

.about-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

    .about-banner img {
        position: absolute;
        z-index: 1;
    }

    .about-banner .grid.wide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 7;
        max-width: 800px;
    }

    .about-banner::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: #000;
        opacity: .6;
        z-index: 2;
    }

.about-banner-container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transform: translateY(82px);
}

    .about-banner-container h3 {
        color: #fff;
        font-weight: bold;
        font-size: 25px;
    }

        .about-banner-container h3 span {
            font-size: 14px;
            text-decoration: underline;
            color: #fff;
            font-weight: 100;
        }


.about-banner-options {
    height: 58px;
    width: fit-content;
    display: flex;
}


    .about-banner-options .item {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        background-color: #9FACBD;
        text-transform: uppercase;
        border: 2px solid #9FACBD;
        transition: 0.8s cubic-bezier(.3,2,.3,1);
        margin: 0 5px;
        border-radius: 5px;
    }

        .about-banner-options .item:last-child {
            background-color: var(--default-color-2);
            border-color: var(--default-color-2);
        }

        .about-banner-options .item:hover {
            transform: translateY(10px);
            background-color: #ffffff36;
        }


        .about-banner-options .item h3 {
            margin: 0;
            font-size: 15px;
            transition: all linear .3s;
            font-weight: 100;
        }


            .about-banner-options .item h3 i {
                margin-left: 5px;
            }



.about-item {
    position: relative;
    display: flex;
    height: 450px;
    align-items: center;
    background-color: whitesmoke;
    overflow: hidden;
}

.about-us .decor {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-us-left {
    width: 50%;
    max-height: 100%;
    padding: 35px 3vw;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 0 106px 1px #00574f inset; */
}

.about-bottom .about-us-left {
    align-items: unset;
    padding-top: 20px;
    padding-bottom: 20px;
}

.about-center .about-us-left {
    box-shadow: 0 0 106px 1px var(--default-color-1)a8 inset;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.about-center .about-center-item {
    width: 50%;
    position: relative;
    height: 100%;
}

    .about-center .about-center-item:first-child {
        padding: 20px 1.3vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

.about-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    color: var(--default-color-1);
    line-height: 150%;
}

.about-bottom .about-title {
    color: var(--default-color-2);
}

.about-slogan {
    font-size: 16px;
    color: #333333b0;
    margin: 2px 0;
    line-height: 154%;
    margin-top: 17px;
}

.about-bottom-form {
    margin: 15px 0;
    display: flex;
    position: relative;
    align-items: center;
    margin-top: 35px;
}

    .about-bottom-form span {
        pointer-events: none;
        position: absolute;
        height: 100%;
        transition: all linear .2s;
        border: 1px solid #ff000042;
        box-shadow: 0 0 10px 0 #ff00005e;
        width: 250px;
        color: transparent !important;
    }

    .about-bottom-form input {
        background-color: #E1E8EC;
        outline: none;
        border: none;
        color: #333;
        border-radius: 2px;
        padding: 16px 16px;
        font-size: 16px;
        box-shadow: 0 0 10px 0 #0000002b;
        width: 250px;
    }

    .about-bottom-form a {
        background-color: var(--default-color-2);
        color: #fff;
        font-weight: bold;
        padding: 10px 25px;
        margin: 0 16px;
        border: 1px solid var(--default-color-2);
        border-radius: 5px;
        box-shadow: 0 0 10px 0 var(--default-color-2);
        transition: all linear .2s;
    }

        .about-bottom-form a:hover {
            color: var(--default-color-2);
            background-color: transparent;
        }

.about-center .about-center-item:hover img {
    transform: scale(1.04);
    transition: 0.8s cubic-bezier(.3,2.5,.3,1);
}

.about-center .about-center-item img {
    transition: all ease .2s;
}

.about-center-item:last-child {
    overflow: hidden;
}

    .about-center-item:last-child::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: .2;
        top: 0;
        z-index: 2;
        left: 0;
    }

.about-us-right {
    height: 100%;
    width: 50%;
    position: relative;
}

    .about-us-right::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        /* background-color: #000; */
        z-index: 5;
        opacity: 0.3;
        /* box-shadow: 0 0 53px 0px var(--default-color-3) inset; */
        transition: all linear .3s;
    }


.about-us-left h1 {
    font-family: 'robotoM';
    font-weight: bold;
    color: var(--default-color-2);
    font-size: 30px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 15px;
}


    .about-us-left h1::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--default-color-2);
        bottom: -2px;
    }

.about-us-left section ul {
    font-size: 15px;
    line-height: 150%;
}

.about-us-left section {
    color: #333;
    margin-top: 9px;
    overflow: overlay;
    padding-right: 25px;
}

    /* width */
    .about-us-left section::-webkit-scrollbar {
        width: 6px;
    }

    /* Track */
    .about-us-left section::-webkit-scrollbar-track {
        background: #f1f1f13b;
    }

    /* Handle */
    .about-us-left section::-webkit-scrollbar-thumb {
        background: var(--default-color-2);
        border-radius: 2px
    }

        /* Handle on hover */
        .about-us-left section::-webkit-scrollbar-thumb:hover {
            background: #00a65266;
        }


    .about-us-left section p {
        font-size: 16px !important;
        line-height: 30px;
    }


.about-center {
    flex-direction: row-reverse;
}

    .about-center .decor {
        left: unset;
        right: 0;
    }


.about-us-right.map:hover::before {
    opacity: 0;
    pointer-events: none;
}



@media(max-width:1023px) {
    .about-item {
        flex-direction: column;
    }

    .about-us-left section {
        padding: 0;
    }

        .about-us-left section h2 {
            font-size: 18px;
        }

        .about-us-left section p {
            text-align: justify;
        }

    .about-center .about-center-item:nth-child(2) {
        display: none;
    }

    .about-center .about-center-item {
        padding: 0;
        width: 100%;
    }

    .about-us-left,
    .about-us-right {
        width: 100%;
    }

    .about-us-right {
        height: 400px;
    }

    .about-title {
        text-align: justify;
        font-size: 16px;
    }

    .about-slogan {
        text-align: justify;
    }

    .about-us-left {
        padding-top: 35px;
        padding-bottom: 35px;
    }

        .about-us-left h1 {
            font-size: 20px;
        }

    .about-item {
        height: auto;
    }
}

@media(min-width:740px) and (max-width:1023px) {
}

@media(max-width:739px) {

    .about-banner {
        height: 300px;
    }

    .about-banner-container {
        transform: translateY(0);
        padding: 0 10px;
        top: unset;
        bottom: 0;
    }

        .about-banner-container h3 {
            flex-direction: column;
            display: flex;
            line-height: 114%;
            font-size: 20px;
        }

    .about-banner-options .item h3 {
        display: block;
    }

    .about-center .about-us-left {
        flex-direction: column !important;
    }

    .about-center .about-center-item {
        width: 100%;
    }

    .about-bottom-form input {
        width: 200px;
    }

    .about-bottom-form span {
        width: 200px;
    }

    .about-banner-container h3 span {
        margin-top: 10px;
        font-size: 15px;
    }

    .about-banner-options {
        height: 42px;
    }
}
