:root {
    --first-font: 'Gotham';
    --first-font-book: 'Gotham Book';
    --first-font-cond: 'Gotham Cond';
    --second-font: 'Poppins';
}

body {
    font-family: var(--first-font-book);
    font-size: 13px;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    padding: 50px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .logo {
        img {
            height: 45px;
        }
    }

    nav {

        a {
            font-family: var(--first-font);
            font-weight: 500;
            color: #003657;
            font-size: 15px;
            margin-right: 40px;
        }
    }

    .call-to-action {
        background: url(../img/call-btn.png) no-repeat;
        background-size: contain;
        font-size: 15px;
        padding: 10px 20px;
        color: #fff;
        display: flex;
        align-items: center;
        background-position: center;
        margin-right: 40px;

        img {
            height: 20px;
            margin-right: 10px;
        }
    }

    .head-right {
        display: flex;
        align-items: center;
    }

    .lang {
        font-family: var(--first-font);
        font-weight: 500;
        color: #003657;
        font-size: 15px;
        text-transform: uppercase;
    }

}

.main-slider {
    margin-bottom: 50px;
}

.home-product {
    padding-bottom: 50px;

    .p-slider-wrap {
        position: relative;
    }

    .title {
        font-family: var(--first-font);
        font-weight: bold;
        font-size: 33px;
        color: #003657;

        span {
            color: #004f83;
        }
    }

    .m-title {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .filter-btn {
        text-align: center;
        margin-bottom: 15px;

        a {
            display: inline-block;
            min-width: 120px;
            padding: 5px;
            background: #d2dce6;
            border-radius: 20px;
            text-align: center;
            margin: 0 5px 15px 5px;
            color: #003657;
            transition: all .3s ease;

            &.active,
            &:hover {
                color: #fff;
                background: #003657;
            }
        }
    }

    .slick-list {
        padding: 30px 0;
    }

    .p-slide {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 2px 2px 4px 1px #00000021;
        transition: all .3s ease;
        margin: 0 15px;

        .p-name {
            font-family: var(--first-font-cond);
            color: #003657;
            margin: 15px 15px 15px 15px;
            font-size: 30px;
        }

        .p-desc {
            padding: 0 15px;
            font-size: 14px;
            min-height: 110px;
        }

        a {
            padding: 15px;
            display: block;
            font-size: 14px;
            font-family: var(--first-font);
            color: #003658;
        }

        &:hover {
            transform: translate(0, -10px);
        }
    }

    .p-prev,
    .p-next {
        position: absolute;
        bottom: -20px;
        right: 15px;
        cursor: pointer;
        opacity: .5;

        &:hover {
            opacity: 1;
        }

        img {
            height: 15px;
        }
    }

    .p-prev {
        right: 40px;
        transform: rotateY(180deg);
    }
}

.home-blog {
    margin-bottom: 50px;

    .title {
        font-family: var(--first-font);
        font-weight: bold;
        font-size: 33px;
        color: #003657;
    }

    .slick-list {
        padding: 30px 0;
    }

    .blog-slider-wrap {
        position: relative;
        margin-bottom: 50px;

        .b-slide {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 2px 2px 4px 1px #00000021;
            transition: all .3s ease;
            margin: 0 15px;
            min-height: 510px;

            .b-name {
                font-family: var(--first-font-cond);
                color: #003657;
                margin: 15px 15px 15px 15px;
                font-size: 30px;
                text-transform: uppercase;
                line-height: normal;
            }

            .b-date {
                padding: 0 15px;
                font-size: 14px;
                margin-bottom: 10px;
                color: #005086;
            }

            .b-desc {
                padding: 0 15px;
                font-size: 14px;
            }

            a {
                padding: 15px;
                display: block;
                font-size: 14px;
                font-family: var(--first-font);
                color: #003658;
            }

            &:hover {
                transform: translate(0, -10px);
            }
        }

        .b-prev,
        .b-next {
            position: absolute;
            bottom: -20px;
            right: 15px;
            cursor: pointer;
            opacity: .5;

            &:hover {
                opacity: 1;
            }

            img {
                height: 15px;
            }
        }

        .b-prev {
            right: 40px;
            transform: rotateY(180deg);
        }
    }
}

.footer-top {
    padding: 50px 0;
    background: #005086;

    .title {
        font-family: var(--first-font);
        font-weight: bold;
        font-size: 33px;
        color: #fff;
    }

    .m-title {
        font-family: var(--first-font-book);
        font-size: 16px;
        color: #fff;
    }

    input {
        background: #003657;
        border-radius: 20px;
        width: 450px;
        padding: 10px 20px;
        color: #fff;
        border: none;
        height: 50px;

        &:focus {
            outline: 0;
            box-shadow: none;
        }

        &::placeholder {
            color: #fff;
        }
    }

    button {
        background: #003657;
        border-radius: 20px;
        padding: 10px 20px;
        color: #fff;
        border: none;
        margin-left: 10px;
        height: 50px;

        &:focus {
            outline: 0;
            box-shadow: none;
        }
    }
}

footer {
    background: #003657;
    padding: 50px 0;

    .foot-logo {
        img {
            height: 60px;
        }
    }

    .foot-desc {
        font-family: var(--first-font-book);
        color: #fff;
        margin-top: 15px;
        font-size: 16px;
        width: 50%;
    }

    .foot-contact {
        font-family: var(--first-font-book);
        color: #fff;
        margin-top: 70px;
        font-size: 16px;

        a {
            display: block;
        }

        .social {
            display: flex;
            align-items: center;
            margin-top: 15px;

            a {
                display: inline-block;
                margin-right: 10px;

                img {
                    height: 30px;
                }
            }
        }
    }

    .foot-menu {
        display: flex;
        align-items: flex-start;
        gap: 60px;

        .link-group {
            display: inline-block;

            .title {
                font-family: var(--first-font);
                font-weight: bold;
                font-size: 16px;
                color: #fff;
                margin-bottom: 40px;
            }

            a {
                font-family: var(--first-font-book);
                font-size: 14px;
                color: #fff;
                display: block;
                margin-bottom: 5px;
            }
        }
    }

}

.slick-dots {
    bottom: -30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 40px;
}

.slick-dots li {
    list-style: none;
    margin: 0;
    width: auto;
    height: auto;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #98a7b9;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
}

.slick-dots li button:before {
    display: none !important;
}

.slick-dots li.slick-active button {
    background: #526a82;
}

.products {
    padding-bottom: 50px;

    .title {
        font-family: var(--first-font);
        font-weight: bold;
        font-size: 33px;
        color: #003657;

        span {
            color: #004f83;
        }
    }

    .m-title {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .filter-btn {
        text-align: center;
        margin-bottom: 15px;

        a {
            display: inline-block;
            min-width: 120px;
            padding: 5px;
            background: #d2dce6;
            border-radius: 20px;
            text-align: center;
            margin: 0 5px 15px 5px;
            color: #003657;
            transition: all .3s ease;

            &.active,
            &:hover {
                color: #fff;
                background: #003657;
            }
        }
    }

    .p-wrap {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 2px 2px 4px 1px #00000021;
        transition: all .3s ease;
        margin: 15px 0;

        .p-name {
            font-family: var(--first-font-cond);
            color: #003657;
            margin: 15px 15px 15px 15px;
            font-size: 30px;
        }

        .p-desc {
            padding: 0 15px;
            font-size: 14px;
            min-height: 110px;
        }

        a {
            padding: 15px;
            display: block;
            font-size: 14px;
            font-family: var(--first-font);
            color: #003658;
        }

        &:hover {
            transform: translate(0, -10px);
        }
    }
}

.aboutus {
    padding-bottom: 30px;

    .title {
        font-family: var(--first-font);
        font-weight: bold;
        font-size: 33px;
        color: #003657;
    }

    .m-title {
        font-size: 33px;
        font-family: var(--first-font-cond);
        color: #003657;
        margin-bottom: 30px;
    }

    strong {
        color: #004e83;
        font-weight: bold;
    }

    h3 {
        font-size: 33px;
        font-family: var(--first-font-cond);
        color: #003657;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .desc {
        font-size: 16px;
    }
}

.contact {


    .title {
        font-family: var(--first-font);
        font-weight: bold;
        font-size: 33px;
        color: #003657;
        margin-bottom: 50px;
    }

    .cont-wrap {
        padding: 0 30px;
        border-right: 1px solid #b2b2b2;

        .m-title {
            font-size: 33px;
            font-family: var(--first-font-cond);
            color: #003657;
        }

        a {
            font-size: 16px;
        }

        img {
            height: 50px;
            margin-bottom: 15px;
        }
    }
}

.about-boxes {
    padding: 50px 0 100px 0;

    .m-title {
        font-size: 33px;
        font-family: var(--first-font-cond);
        color: #003657;
        margin-bottom: 60px;
        width: 100%;
        text-align: center;
    }

    .box {
        padding: 0 15px;
        border-right: 1px solid #b2b2b2;
        height: 100%;

        img {
            height: 170px;
        }

        .title {
            font-size: 33px;
            font-family: var(--first-font-cond);
            color: #003657;
            margin-bottom: 15px;
            margin-top: 30px;
        }

        .desc {
            font-size: 16px;
        }
    }
}

.product-detail {
    .titlebar {
        margin-top: 100px;
        background: #143554;
        padding: 15px 30px;
        margin-bottom: 100px;

        .left {
            width: 50%;
            display: flex;
            position: relative;

            .title {
                font-family: var(--first-font-cond);
                font-size: 33px;
                color: #fff;
            }

            .slogan {
                border: 3px solid #fff;
                padding: 30px;
                font-family: var(--first-font-cond);
                font-size: 30px;
                margin-bottom: -50px;
                font-weight: bold;
                position: absolute;
                top: 50%;
                right: 0;
                width: 64%;
                color: #fff;
                text-transform: uppercase;
                transform: translate(0, -50%);
                background: #89a78c;
                line-height: 35px;
            }
        }

    }

    .desc {
        font-size: 16px;

        b {
            display: block;
            font-family: var(--first-font);
        }

        strong {
            color: #133554;
            font-family: var(--first-font);
        }
    }

    .m-title {
        font-family: var(--first-font-cond);
        color: #143554;
        border-bottom: 3px solid #143554;
        width: fit-content;
        font-size: 33px;
        margin-bottom: 30px;
        margin-top: 50px;
    }

    .detail-big {
        margin-top: -260px;
    }

    .second-content {
        background: #f1f1f1;
        padding: 0 0 50px 0;
        margin-top: 50px;
    }

    ul {
        font-size: 16px;
        list-style: disc;
        padding: 0;
        padding-left: 15px;
        margin: 0;
    }
}

.blog-detail {
    padding-bottom: 50px;

    .title {
        font-family: var(--first-font);
        font-weight: bold;
        font-size: 33px;
        color: #003657;
    }

    .blog-title {
        position: relative;
        margin-top: 50px;
        margin-bottom: 15px;

        .m-title {
            font-size: 36px;
            font-family: var(--first-font-cond);
            color: #fff;
            position: absolute;
            left: 30px;
            right: 30px;
            bottom: 30px;
            text-transform: uppercase;
        }
    }

    .left {
        font-family: var(--first-font);
        padding: 15px;
        width: 8%;
        float: left;
        box-sizing: border-box;

        span {
            margin-bottom: 10px;
            text-align: center;
            display: block;
            font-family: var(--first-font);
            color: #003657;
        }

        a {
            display: block;
            margin-bottom: 10px;
            text-align: center;

            img {
                height: 30px;
            }
        }
    }

    .right {
        width: 92%;
        float: left;
        padding: 15px;
        box-sizing: border-box;

    }

    .desc {
        font-size: 16px;

        b {
            display: block;
            font-family: var(--first-font);
            color: #003657;
        }
    }

    .news-slider {
        margin-top: 50px;

        .n-slide {
            margin: 0 20px;
        }

        .news-wrap {
            display: block;
            position: relative;
            margin-bottom: 30px;

            .title {
                position: absolute;
                bottom: 20px;
                left: 15px;
                right: 15px;
                font-family: var(--first-font-cond);
                color: #fff;
                font-size: 27px;
                text-transform: uppercase;
                line-height: 30px;
            }
        }

        .slick-dots {
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 0);
        }
    }
}

#toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #1f2937;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

#toast.show {
    opacity: 1;
    transform: translateY(0);
}

.dekstop-show {
    display: block !important;
}

.mobile-show {
    display: none !important;
}

.mobile-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: #133554;
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Gotham Cond';
    color: #fff;
    padding: 30px;
    text-align: left;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    display: none;

    &.active {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .dekstop-show {
        display: none !important;
    }

    .mobile-show {
        display: block !important;
    }

    .head-right {
        nav {
            display: none;
        }

        .call-to-action {
            border-radius: 10px;
            background-size: cover;
            margin-right: 15px;

            span {
                display: none;
            }
        }

        .lang {
            display: none;
        }
    }

    .home-product {
        .title {
            font-size: 30px;
            padding: 0 30px;
            line-height: normal;
            margin-bottom: 10px;
        }
    }

    .footer-top {
        text-align: center;

        .title {
            font-size: 30px;
        }

        form {
            display: flex;
            align-items: center;
            margin-top: 30px;

            input {
                width: 70%;
            }

            button {
                width: 30%;
            }
        }
    }

    footer {
        .foot-contact {
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .foot-menu {
            gap: 30px;
            flex-direction: column;

            .link-group {
                .title {
                    font-family: var(--first-font);
                    font-weight: bold;
                    font-size: 16px;
                    color: #fff;
                    margin-bottom: 20px;
                }
            }
        }
    }

    .blog-detail {
        .desc {
            display: flex;
            flex-direction: column-reverse;

            .left {
                width: 100%;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .right {
                width: 100%;
                text-align: justify;
            }
        }

        .blog-title {
            position: relative;

            .m-title {
                line-height: normal;
                z-index: 2;
            }

            &::after {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                background: #133554;
                background: linear-gradient(0deg, rgba(19, 53, 84, 1) 0%, rgba(0, 0, 0, 0) 100%);
                border-radius: 30px;
            }
        }
    }

    .m-reverse {
        flex-direction: column-reverse;
    }

    .m-t-center {
        text-align: center;
    }

    .about-boxes {
        .box {
            text-align: center;
            margin-bottom: 30px;
            border-right: 0;
        }
    }

    .contact {
        .cont-wrap {
            padding: 30px;
            border-right: 0;
            border-bottom: 1px solid #b2b2b2;
        }
    }

    header {
        padding: 50px 30px;
    }

    .mobile-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;

        span {
            width: 40px;
            display: block;
            background: #133554;
            height: 4px;
            border-radius: 5px;
            transition: all .3s ease;
        }

        &.active {
            display: flex;

            span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 6px);
            }

            span:nth-child(2) {
                opacity: 0;
            }

            span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
        }
    }

    .product-detail {
        .titlebar {
            padding: 15px;

            .left {
                width: 100%;
                display: flex;
                position: relative;

                .slogan {
                    font-size: 20px;
                    line-height: 24px;
                }

                .title {
                    font-size: 30px;
                }
            }
        }

        .detail-big {
            margin-top: 0;
            margin-bottom: 30px;
        }
    }

    .detail-img-m {
        height: 360px;
        object-fit: cover;
        border-radius: 30px;
    }

}