.primary-btn {
    outline: none;
    border: none;
    color: #000000;
    font-size: 14px;
    background: #fdfeff;
    padding: 12px 24px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.primary-btn:active {
    transform: scale(0.97);
    -webkit-transform: scale(0.97);
    -moz-transform: scale(0.97);
    -ms-transform: scale(0.97);
    -o-transform: scale(0.97);
}

/* mobile nav container  */
.mobile-nav-container {
    position: fixed;
    top: -200%;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background-color: #0093e6;
    z-index: 999999;
}

.mobile-nav-container .mobile-nav-box {
    height: 100%;
    background: url("/assets/images/cloud1.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.mobile-nav-container .mobile-nav-box .title {
    padding: 14px 10px;
    background-color: #008bd9;
}

.mobile-nav-container .mobile-nav-box .title .logo {
    text-decoration: none;
}

.mobile-nav-container .mobile-nav-box .title .logo img {
    height: 26px;
}

.mobile-nav-container .mobile-nav-box .title .logo h1 {
    font-size: 40px;
    color: #f1f1f1;
    margin-bottom: -6px;
    background: -webkit-linear-gradient(360deg, #fff, #c0a386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-container .mobile-nav-box .title .icon i {
    font-size: 22px;
    color: #f1f1f1;
}

.mobile-nav-container .mobile-nav-box .link-box .link {
    display: block;
    padding: 30px 10px;
    text-align: center;
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-nav-container .mobile-nav-box .link-box .link:hover {
    background-color: #008bd9;
}

.mobile-nav-container .mobile-nav-box .link-box a.link-btn {
}

/* nav container  */
.nav-container .nav-box .box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container .nav-box .left-box .logo-box img {
}

.nav-container .nav-box .right-box .link-box a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.nav-container .nav-box .ham-box {
    display: none;
}

.nav-container .nav-box .ham-box span {
    display: block;
    height: 3px;
    width: 30px;
    background-color: #ffffff;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

/* footer box  */
.footer-container {
    background-color: #001d3d;
}

.footer-container.transparent {
    background-color: transparent;
}

.footer-container .footer-box .contact-footer {
    border-bottom: 1px solid #ffffff33;
}

.footer-container.transparent .footer-box .link-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-container .footer-box .info-box h1 {
    color: #ffffff;
    font-size: 14px;
}

.footer-container .footer-box .info-box p {
    color: #ffffff;
    font-size: 14px;
}

.footer-container .footer-box .info-box a {
    color: #ffffff;
    font-size: 14px;
}

.footer-container .footer-box .copyright-box p {
    font-size: 14px;
    color: #ffffff;
}

.footer-container .footer-box .copyright-box a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.footer-container .footer-box .social-box a {
    color: #ffffff;
    text-decoration: none;
}

/* responsive  */
@media (max-width: 767px) {
    .nav-container .nav-box .box {
        flex-direction: row-reverse;
        padding: 20px 0;
    }
    .nav-container .nav-box .right-box .link-box {
        display: none;
    }
    .nav-container .nav-box .ham-box {
        display: flex;
    }
    .nav-container .nav-box .left-box .logo-box img {
        height: 30px;
    }
    .footer-container .footer-box .link-footer {
        flex-direction: column;
        row-gap: 20px;
    }
}

@media (max-width: 500px) {
    .footer-container .footer-box .contact-footer {
        flex-direction: column;
    }
    .footer-container .footer-box .info-box {
        margin-bottom: 40px;
    }
    .footer-container .footer-box .info-box h1 {
        text-align: center;
    }
    .footer-container .footer-box .info-box p {
        text-align: center;
    }
    .footer-container .footer-box .copyright-box {
        flex-direction: column;
        row-gap: 10px;
    }
    .footer-container .footer-box .copyright-box p {
        padding: 0;
    }
    .footer-container .footer-box .copyright-box a {
        text-align: center;
        padding: 0;
    }
}
