@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Roboto';
    list-style: none;
}

body {
    overflow-x: hidden;
    background: #222;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 30px;
    color: #fff;
    z-index: 1000;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li a{
    padding: 8px 15px;
    margin-right: 30px;
}

.nav-links li a:hover {
    color: #222;
    background-color: #FF5F1F;
    border-radius: 30px;
}

.active {
    background-color: #FF5F1F;
    color: #222;
    padding: 8px 15px;
    border-radius: 30px;
}

.menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    cursor: pointer;
    display: none;
}

.logo {
    height: 80px;
    width: 80px;
}


/* Mobile Device */
@media only screen and (max-width:850px) {
    
    .menu-btn {
        display: block;
        margin-top: 10px;
        width: 50px;
        height: 50px;
    }

    .navbar {
        padding: 0;
    }

    .logo {
        position: absolute;
        top: 30px;
        left: 30px;
        color: #fff;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        background: #2e2e2e;
        margin-top: -1000px;
        transition: all 0.4s ease;
    }

    .mobile-menu {
        margin-top: 0px;
        border-bottom-right-radius: 30%;
    }

    .nav-links li {
        margin: 30px auto;
    }
}

.btn {
    font-size: 18px;
    color: #FF5F1F;
    text-decoration: none;
    border: 2px solid #FF5F1F;
    padding: 12px 17px;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 20px;
}
    
.btn:hover {
    background-color: #FF5F1F;
    color: #fff;
}

.btn_container {
    padding-top: 20px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.center_btn {
    text-align: center;
    padding: 40px;
}

.title {
    font-size: 45px;
    color: #fff;
    text-align: center;
    margin-top: 80px;
    padding-bottom: 20px;
}

.title b {
    color: #FF5F1F;
}

/* Header Wave */
section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #222;
    background-position: bottom;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.header-content {
    margin-bottom: 350px;
    color: #fff;
    text-align: center;
    max-width: 750px;
    padding: 10PX;
}

.header-content h1 {
    margin-bottom: 13px;
}

.header-content p {
    margin-bottom: 13px;
    font-size: 22px;
    margin-bottom: 40px;
}


/* inof section */

.info-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding-top: 20px;
}

.underline {
    display: inline;
    border-bottom: 2px solid #FF5F1F;
    font-size: 35px;
}

.paragraph {
    padding-top: 18px;
    font-size: 23px;
    max-width: 800px;
}

.box-container {
    padding: 35px;
}

@media (max-width: 880px) {
    .info-container {
        display: flex;
        text-align: left;
    }
}

/* Footer */
.footerContainer {
    width: 100%;
    padding: 70px 30px 20px;
}

.socialIcons {
    display: flex;
    justify-content: center;
}

.socialIcons a {
    text-decoration: none;
    padding: 10px;
    background-color: #FF5F1F;
    margin: 10px;
    border-radius: 50%;

}

.socialIcons a i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.9;
}

.socialIcons a:hover {
    background-color: #1f1f1f;
    transition: 0.5s;
}

.socialIcons a:hover i {
    color: white;
    transition: 0.5s;
}

.footerNav {
    margin: 30px 0;
}

.footerNav ul {
    display: flex;
    justify-content: center;
}

.footerNav ul li a {
    color: #f4f4f4;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}

.footerNav ul li a:hover {
    opacity: 1;
}

.footerBottom {
    background-color: #FF5F1F;
    padding: 20px;
    text-align: center;
}

.footerBottom p {
    color: white;
}

/* Mobile Device */
@media (max-width:700px) {
    .footerNav ul {
        flex-direction: column;
    }

    .footerNav ul li {
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container img {
    width: 100%;
}

/* Cta */
.cta {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
    padding: 96px 48px;
}

.cta-container {
    border-radius: 24px;
    background-color: #2e2e2e;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 36px 48px;
}

.left {
    max-height: 458px;
    flex: 1;
    display: flex;
    justify-content: center;
}

.left img {
    max-height: 458px;
}

.right {
    flex: 1;
    color: #fff;
    padding-bottom: 20px;
}

.label {
    color: #01335f;
    font-size: 16px;
    font-weight: 500;
}

.head-right {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 12px 0 20px;
}

.body_right {
    color: #fff;
    font-size: 18px;
}

.ctn-2 {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    margin-top: 15px;
    font-size: 18px;
    color: #FF5F1F;
    text-decoration: none;
    border: 2px solid #FF5F1F;
    padding: 12px 17px;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 20px;
}

.ctn-2:hover,
.ctn-2:focus {
    background-color: #FF5F1F;
    color: #fff;
}

@media screen and (max-width: 870px){
    .cta-container {
        flex-direction: column-reverse;
        gap: 24px;
        padding: 48px 20px 0;
    }

    .cta {
        padding: 64px 24px;
    }

    .right {
        max-width: 580px;
    }
}
