@import url(../global/global.css);


.page-title {
    color: #FDB913;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

    .page-title::before {
        content: " ";
        width: 300px;
        display: inline-block;
        position: absolute;
        bottom: -17px;
        height: 4px;
        background-color: #FDB913;
        right: 0;
    }

.ltr .page-title::before {
    left: 0;
    right: unset;
    background: linear-gradient(to left,#08B30300,#08B30385,#08B303);
}

.top-row p {
    color: #828284;
    font-weight: 200;
    line-height: 40px;
    text-align: justify;
    font-size: var(--font-size-2);
}

.about-us__img img {
    border-radius: 50px;
}

.feuture__title {
    color: var(--color-green-primary);
    font-weight: 500;
    font-size: 24px;
}

.feature-menu li {
    line-height: 40px;
    color: #828284;
    font-weight: 200;
}

    .feature-menu li::before {
        content: ".";
        font-size: 50px;
    }

.unit {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unit-section__title {
    color: var(--color-green-primary);
    font-size: 34px;
    font-weight: 500;
}

.unit__title {
    font-weight: 400;
    color: #000;
    font-size: 22px;
}

.unit__desc {
    line-height: 30px;
    text-align: justify;
    font-size: var(--font-size-1);
    font-weight: 300;
}

.contact-section {
    background-color: #4D4D4D;
    padding: 50px 0;
}

    .contact-section::after, .contact-section::before {
        content: " ";
        background-size: 100% 100%;
        display: block;
        position: absolute;
        top: 0;
        height: 100%;
    }

    .contact-section::before {
        width: 150px;
        background-image: url(../images/left-contact.png);
        left: 0;
    }

    .contact-section::after {
        width: 120px;
        background-image: url(../images/right-contact.png);
        right: 0;
    }

.contact-title {
    color: #fff;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    font-size: 35px;
    line-height: 60px;
}

.contact-link {
    background: linear-gradient(0deg, #14D60B 0%, #0E6A0D 100%);
    box-shadow: 0px 5px 30px 5px rgba(20, 210, 11, 0.6);
    border-radius: 15px;
    width: 250px;
    padding: 14px;
    color: #fff;
    display: table;
    margin: auto;
}

.my-video {
    display: block;
    margin: auto;
    border-radius: 10px;
}

@media only screen and (max-width:992px) {
    .contact-title {
        font-size: 25px;
        line-height: 40px;
    }

    .my-video {
        width: 100%;
    }
}

@media only screen and (max-width:768px) {
    .contact-title {
        font-size: 20px;
    }

    .contact-section::before {
        width: 120px;
    }

    .contact-section::after {
        width: 90px;
    }
}

@media only screen and (max-width:576px) {
    .contact-title {
        font-size: 18px;
    }

    .contact-section::before {
        width: 80px;
    }

    .contact-section::after {
        width: 58px;
    }

    .contact-section {
        padding: 20px 0;
    }

    .contact-link {
        width: 130px;
        font-size: var(--font-size-small)
    }
}

.wave__wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
    width: 230px;
    height: 230px;
    cursor: pointer;
    /* background-color: #4d4d4d; */
    /* opacity: 0.3; */
}

    .wave__wrapper .wave {
        position: absolute;
        border: 1px solid rgb(255, 255, 255);
        border-radius: 50%;
        animation: grow 2s infinite;
    }

.wave-1 {
    width: 60%;
    height: 60%;
}

.wave-2 {
    width: 75%;
    height: 75%;
}

.wave-3 {
    width: 80%;
    height: 80%;
}

.wave-4 {
    width: 95%;
    height: 95%;
}

.video-modal {
    background-color: #fff;
    position: fixed;
    width: 700px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 120;
    border-radius: 20px;
    text-align: center;
    padding: 15px;
    display: none;
}

.video-modal-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: white;
    border: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.video-modal video {
    border-radius: 10px;
}

@keyframes grow {
    0% {
        opacity: 1;
    }

    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

.video__wrapper {
    height: 350px;
    background-image: url(/assets/video/products/poster-video.png);
    background-size: cover;
    border-radius: 20px;
}

.video__title {
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    display: table;
    font-size: 28px;
    margin: auto;
    transform: translateY(250px);
    color: #666666;
    font-weight: 500;
}
