html,
body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #1f1f25;
    min-height: 100vh;
}

.mb19 {
    margin-bottom: 19px;
}

.mb33 {
    margin-bottom: 33px;
}

.h33 {
    height: 33px;
}

.h66 {
    height: 66px;
}

.h99 {
    height: 99px;
}

.h19 {
    height: 19px;
}

:root {
    --blue: #14152c;
    --red: #cb2648;
    --green: #247073;
    --gray: #2b3842;
}

body {
    background: white;
}

.content {
    max-width: 98%;
    margin: auto;
    padding: 0 30px;
}

.navbar {
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 9;
    padding: 19px 0;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background: #fff;
    padding: 13px 0;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.navbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.navbar .logo a span {
    color: #f9004d;
}

.navbar .menu-list {
    display: inline-flex;
}

.menu-list li {
    list-style: none;
}

.menu-list li a {
    color: #1f1f25;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner {
    background: #111;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about {
    padding: 30px 0;
}

.about .title {
    font-size: 38px;
    color: #fff;
    font-weight: 700;
}

.about p {
    padding-top: 20px;
    color: #fff;
    text-align: justify;
}

.icon {
    color: #1f1f25;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.menu-list .cancel-btn {
    position: absolute;
    right: 30px;
    top: 20px;
}

@media (max-width: 1230px) {
    .content {
        padding: 0 60px;
    }
}

@media (max-width: 1100px) {
    .content {
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .content {
        padding: 0 30px;
    }
}

@media (max-width: 868px) {
    body.disabled {
        overflow: hidden;
    }

    .icon {
        display: block;
    }

    .icon.hide {
        display: none;
    }

    .navbar .menu-list {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        left: -100%;
        top: 0px;
        display: block;
        padding: 40px 0;
        text-align: center;
        background: #fff;
        transition: all 0.3s ease;
    }

    .navbar.show .menu-list {
        left: 0%;
    }

    .navbar .menu-list li {
        margin-top: 45px;
    }

    .navbar .menu-list li a {
        font-weight: bold;
        font-size: 23px;
        margin-left: -100%;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .navbar.show .menu-list li a {
        margin-left: 0px;
    }
}

@media (max-width: 380px) {
    .navbar .logo a {
        font-size: 27px;
    }
}


.text-bold {
    font-weight: 700;
}

.logo img {
    max-width: 100% !important;
    width: 121px !important;
    max-width: 121px !important;
    height: auto !important;
}

.logo a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.logo a span {
    color: #f9004d;
}

.social {
    background-color: #1f1f25;
    color: white;
    width: 49px;
    height: 49px;
    position: relative;
    cursor: pointer;
    padding-top: 9px;
    color: white;
    margin-right: 13px;
    border: 3px solid rgb(163, 163, 163) !important;
    transform: translateY(0px);
    transition: all 0.5s ease-out;
}

.social i {
    color: white;
    font-size: 23px;
    top: 3px;
    position: relative;
}

.social:hover {
    background-image: linear-gradient(90deg, #009ec9, #25cffe);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.social:hover {
    border: 3px solid #25cffe !important;
}

.social:hover a {
    background-image: linear-gradient(90deg, #009ec9, #25cffe);
    color: #fff;
    box-shadow: 0 10px 15px 0 rgb(0 0 0 / 10%);
}
