@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

/*==================
theme color
==================*/
:root {
    --primary-color: #175cd3;
    --secondary-color: #002148;
    --basic-text-color: #222222;
    --nav-text-color: #595757;
    --footer-bg-color: #00204817;
    --section-bg-1: rgba(0, 33, 72, 0.063);
    --section-bg-2: rgba(238, 239, 195, 0.3);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

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

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.small-text-10 {
    font-size: 0.625rem !important;
}

.small-text-12 {
    font-size: 0.75rem !important;
}

.small-text-14 {
    font-size: 0.875rem !important;
}

.secondary-text {
    color: var(--primary-color);
}

/*============
main-navbar
============*/
.navbar {
    padding: 0 !important;
}

.sticky-navbar {
    position: fixed;
    background: #fff;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-logo {
    width: 60px;
    height: 60px;
}

.logo-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px !important;
}

.nav-text,
.main-nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--nav-text-color) !important;
    transition: all ease-in 0.3s;
}

.main-nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-active-link {
    color: var(--primary-color) !important;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    height: 3px;
    width: 0;
    left: 0;
    border-radius: 20px;
    bottom: -2px;
    transition: all ease-in 0.3s;
    display: none;
}

.nav-item:hover::after {
    width: 100%;
}

.sign-up-btn a {
    display: block;
    background: var(--secondary-color);
    color: #fff !important;
    padding: 5px 10px !important;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all ease-in 0.3s;
}

.sign-up-btn a:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.login-btn a {
    display: block;
    background: transparent;
    color: var(--secondary-color) !important;
    padding: 5px 10px !important;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all ease-in 0.3s;
}

.login-btn a:hover {
    background: var(--secondary-color);
    color: #fff !important;
    border-color: transparent;
}

.nav-login-btn a {
    display: block;
    background: transparent;
    color: var(--secondary-color) !important;
    padding: 5px 10px !important;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all ease-in 0.3s;
}

.nav-login-btn a:hover {
    background: var(--secondary-color);
    color: #fff !important;
    border-color: transparent;
}

.nav-reg-btn a {
    display: block;
    border: 2px solid transparent;
    background: var(--secondary-color);
    color: #fff !important;
    padding: 5px 10px !important;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all ease-in 0.3s;
}

.nav-reg-btn a:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.active-nav-btn a,
.active-nav-btn a:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.language-change {
    color: var(--primary-color) !important;
}

.language-change select {
    font-size: 12px;
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
    border-color: transparent !important;
    color: var(--primary-color) !important;
}

.language-change i {
    font-size: 14px;
}

/* home hero section */
.hero-banner {
    position: relative;
}

.hero-banner img {
    width: 100%;
    height: 65vh;
}

.hero-banner-text {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 60%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--secondary-color);
}

.hero-banner-text h1 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.hero-banner-text h2 {
    font-weight: 500;
    font-size: 0.875em;
    line-height: 1.5rem;
}

.primary-btn {
    border: 0;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
}

.hero-banner-text .primary-btn {
    transition: all ease-in 0.3s;
    box-shadow: 0 2px 5px #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* home notice */
.notice-main-container {
    position: relative;
    border: 1px solid var(--primary-color);
    height: 45px;
    display: flex;
    align-items: center;
}

.home-notice-text {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    font-weight: 600;
}

.notice-view-btn {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all ease-in 0.3s;
}

.notice-view-btn:hover {
    text-decoration: none;
}

/* home service section */
.section-margin-top {
    margin-top: 4rem;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.home-service-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
}

.custom-card-shadow {
    box-shadow: 0 0 10px rgba(22, 22, 22, 0.2);
}

.home-service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.home-service-icon img {
    width: 100%;
}

.home-service-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.home-service-view-btn button {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    transition: all ease-in 0.3s;
}

.home-service-view-btn button i {
    font-size: 1rem;
}

.home-service-view-btn button:hover {
    color: var(--secondary-color);
    gap: 0.875rem;
}

/* home news & event */
.news-event-bg {
    background: var(--section-bg-1);
    padding: 3rem 0;
}

.news-events li a {
    width: 98%;
    font-size: 0.875rem;
    color: var(--basic-text-color);
    border-bottom: 1px dotted #666;
}

.news-event-icon {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.view-btn {
    border: 1px solid transparent;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.875rem;
    padding: 5px 20px;
    border-radius: 0.5rem;
    transition: all ease-in 0.3s;
}

.view-btn:hover {
    border-color: var(--secondary-color);
    background: #fff;
    color: var(--secondary-color);
}

/* all-news-event */
.service-banner {
    position: relative;
}

.service-banner img {
    width: 100%;
}

.service-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 24px;
}

.custom-margin-top {
    margin-top: 60px;
}

.notice-shows {
    font-size: 14px;
    font-weight: 600;
}

.select-field-show {
    font-size: 14px !important;
    padding: 5px;
    width: 100%;
    margin-top: 5px;
}

.select-field-show:focus {
    outline: none !important;
    box-shadow: transparent !important;
}

.notice-shows {
    font-size: 14px;
    font-weight: 600;
}

.all-notice-search {
    border: 1px solid #4c4c4da9 !important;
    padding: 5px;
    width: 100%;
    margin-top: 5px;
}

.table-notices td,
.table-notices th {
    border: 1px solid #4c4c4da9;
    font-size: 12px;
}

.notice-pdf-icon i {
    font-size: 20px;
    color: #c32025;
}

.show-page {
    font-size: 14px;
}

.pagination .page-item .page-link {
    font-size: 12px !important;
    color: var(--primary-color);
    font-weight: 600;
}

.page-select-link {
    color: var(--secondary-color) !important;
    font-size: 14px;
}

/* single-news-event */
.single-news-container {
    margin-top: 120px;
}

.notices {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
}

.notices-title {
    font-size: 22px;
    line-height: 40px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.notices-content {
    padding: 0.5rem;
    background: #eeeeee;
}

.pdf-text {
    font-size: 12px;
}

.share-icon {
    font-size: 14px;
    color: #ffffff;
}

.share-icon .fa-square-facebook,
.share-icon .fa-linkedin,
.share-icon .fa-twitter {
    font-size: 16px;
}

.share-icon .fa-square-facebook {
    color: #3b5998;
}

.share-icon .fa-linkedin {
    color: #0a66c2;
}

.share-icon .fa-twitter {
    color: #00acee;
}

/* Home how-service-work */
.home-how-service-work-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
}

.how-work-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-color: #1e267217;
    padding: 1rem;
}

.how-work-img img {
    width: 100%;
}

.step {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    text-align: center;
}

/* home faq */
.faq-content {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    flex-direction: column-reverse;
}

.faq-left {
    width: 100%;
}

.faq-right {
    width: 60%;
    margin: 0 auto;
}

.faq-right img {
    width: 100%;
}

.faq-btn {
    font-size: 0.875rem !important;
    font-weight: 600;
    color: var(--secondary-color) !important;
    background-color: transparent !important;
}

.faq-btn:focus {
    outline: none !important;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* home recent-update slider */
.swippers-container {
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 1.125rem;
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

.slider-img {
    height: 210px;
}

.slider-img img {
    height: 100%;
    width: 350px;
}

.next-btn,
.prev-btn {
    background-color: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-btn {
    top: 45%;
}

.prev-btn {
    top: 45%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.slider-icon {
    font-size: 1.5rem;
    color: #fff;
}

.home-post-item:hover {
    transition: all ease-in 0.3s;
    color: var(--primary-color);
}

/* all services */
.service-img-area img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    /* box-shadow: 0 0 10px rgba(22, 22, 22, 0.2); */
}

.our-service-sub-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 14px;
}

.service-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.75rem;
}

.service-licence-container {
    margin-left: 12px;
}

.service-licence-container li {
    list-style: decimal;
    font-size: 12px;
}

/* single-blog page */
.single-blog-container {
    width: 80%;
    margin: 0 auto 4rem auto;
    padding: 2rem;
}

.single-blog-title {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.single-blog-text {
    margin-top: 2rem;
    color: var(--basic-text-color);
    font-size: 14px;
}

/* about DoF */
.about-banner-text {
    position: absolute;
    top: 50%;
    left: 5%;
    color: #ffffff;
    width: 50%;
}

.about-banner-text h1 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-section-bg-1 {
    width: 100%;
    background: var(--section-bg-1);
    padding: 50px 0;
}

.service-section-bg-2 {
    width: 100%;
    background: var(--section-bg-2);
    padding: 50px 0;
}

.about-img-area img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

/*==============
contact us
==============*/
.contact-container {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}

.contact-overly {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-us-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 10px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
}

.contact-us-details {
    margin-left: 18px;
    font-size: 14px;
}

.search-btn button {
    width: 100%;
    background: var(--secondary-color);
    border: 1px solid transparent;
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    transition: all ease-in 0.3s;
}

.search-btn button:hover {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/*================
footer
================*/
.footer-bg {
    background-color: var(--footer-bg-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-nav-link li {
    /* text-align: center; */
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.footer-nav-link li a {
    transition: all ease-in 0.3s;
}

.footer-nav-link li a:hover {
    text-decoration: underline;
}

.social-icon i {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: all ease-in 0.3s;
}

.social-icon i:hover {
    color: var(--primary-color);
}

.footer-grid-two {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.footer-img {
    max-width: 100px;
}

.footer-img img {
    max-width: 100%;
}

.copy-right {
    font-size: 0.75rem;
    vertical-align: middle;
    text-align: center;
}

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

/*==================
register page
=================*/
.main-container {
    display: flex;
    flex-direction: column;
}

.custom-container {
    /* height: 65vh; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-container > div {
    width: 100%;
}

.side-container {
    /* margin-top: 70px; */
    color: #ffffff;
    width: 100%;
}

.side-bg {
    background: var(--secondary-color);
    position: relative;
    height: 100%;
    width: 100%;
}

.side-bg img {
    width: 100%;
    height: 100%;
}

.side-content {
    width: 70%;
    margin: 0 auto;
    position: sticky;
    top: 30%;
    padding: 40px;
}

.side-logo {
    width: 100px;
    margin-bottom: 20px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.side-logo img {
    width: 100%;
}

.side-area-text h5 {
    font-size: 20px;
    margin-bottom: 16px;
}

.side-area-text p {
    font-size: 12px;
}

/* registration form */
.register-container {
    width: 100%;
    margin: 80px auto;
    padding: 0 50px;
}

.login-field label {
    color: var(--nav-text-color);
    font-weight: 500;
    font-size: 12px;
}

.input-style {
    background: white;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.OTP-btn {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    border-radius: 8px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all ease-in 0.3s;
}

.OTP-btn:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

.form-button-area .register-btn {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all ease-in 0.3s;
}

.form-button-area {
    width: 100%;
    margin: 60px auto 0;
}

.form-button-area .register-btn:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.form-button-area .login-btn {
    width: 100%;
    background: transparent;
    color: var(--secondary-color);
    padding: 5px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all ease-in 0.3s;
}

.form-button-area .login-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: transparent;
}

.horizontal-line {
    border-top: 1px solid #c2c2c2;
    overflow: visible;
    color: #c2c2c2;
    opacity: 1;
    text-align: center;
    margin: 34px 0 10px;
}

.horizontal-line::after {
    content: "OR";
    display: inline-block;
    position: relative;
    top: -13px;
    font-size: 12px;
    padding: 0 0.5em;
    background: #fff;
}

/* otp-verify */
.sign-up-OTP-request-line {
    border-top: 1px solid #c2c2c2;
    overflow: visible;
    color: var(--secondary-color);
    opacity: 1;
    text-align: center;
    margin: 40px 0;
}

.sign-up-OTP-req-text {
    position: absolute;
    top: -8px;
    left: 40%;
    transform: translate(-30%, 0);
    font-weight: 500;
    font-size: 12px;
    padding: 0 0.8em;
    background: #fff;
    text-align: center;
}

.sign-up-OTP-input-field input {
    border-radius: 6px !important;
}

.email-address-confirmed {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: var(--primary-color);
    border: 5px solid var(--primary-color);
}

/*================
Login page
================*/
.email-icon,
.pass-icon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.email-icon svg,
.pass-icon svg {
    width: 20px;
}

.forgot-pass {
    text-decoration: underline;
    color: var(--secondary-color);
    transition: all ease-in 0.3s;
}

.forgot-pass:hover {
    text-decoration: none;
}

/* custom select */
.custom-form-select {
    width: 100%;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background: transparent;
    position: relative;
    z-index: 10;
}

.custom-form-select:focus {
    border: 1px solid rgb(134, 183, 254);
    outline: 4px solid rgb(194, 219, 254);
}

.select-form-arrow {
    color: var(--secondary-color);
    /* color: #fff; */
    /* background: var(--secondary-color); */
    display: flex;
    align-items: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 0 1px;
    position: absolute;
    top: 10px;
    right: 20px;
}

.nav-bg-curve {
    background: #ffffff;
}

.hero-banner-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.custom-height-privacy-policy {
    height: 70vh;
    justify-content: center;
    align-items: center;
}

/* new login */
.bg-img {
    /* background-image: linear-gradient(to bottom, #08080800, #002148), url("/resources/assets/reg-login/login-bg3.png");
    ; */
    background-image: url("/resources/assets/reg-login/login-bg3.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    padding: 8rem 5rem;
    position: relative;
}

.shape-1 {
    position: absolute;
    top: -45px;
    left: -45px;
}

.shape-2 {
    position: absolute;
    bottom: -80px;
    right: 0px;
    z-index: -1;
}

.main-contanier-login-reg {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
    width: 85%;
    margin: 12rem auto 6rem auto;
    /* padding-top: 12rem;
    padding-bottom: 6rem; */
}

.left-login-reg {
    width: 50%;
}
.right-login-reg {
    width: 50%;
}

.form-container {
    width: 80%;
}

.small-logo-text {
    font-size: 13px;
}

.navbar-toggler {
    border: 0px !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* small device */
@media only screen and (max-width: 576px) {
    .main-contanier-login-reg {
        margin: 8rem auto 5rem auto;
        padding-top: 0rem !important;
        padding-bottom: 0 !important;
    }

    .small-logo-text {
        font-size: 6px;
    }

    .shape-2 {
        display: none;
    }

    .bg-img {
        height: 100%;
    }

    .main-contanier-login-reg {
        display: flex;
        flex-direction: column-reverse;
        gap: 5rem;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .form-container {
        width: 100%;
    }

    .left-login-reg,
    .right-login-reg {
        width: 100%;
    }

    .text-content-center {
        text-align: center;
    }

    .grid-cards {
        grid-template-columns: 1fr;
    }

    .contact-us-content {
        width: 95%;
    }

    .custom-height-privacy-policy {
        height: 100%;
    }

    .hero-banner-text {
        width: 80%;
    }

    .logo-title {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 14px !important;
    }

    .side-content {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-contanier-login-reg {
        margin: 8rem auto 5rem auto;
        padding-top: 0rem !important;
        padding-bottom: 0 !important;
    }
    .small-logo-text {
        font-size: 6px;
    }

    .shape-2 {
        display: none;
    }

    .bg-img {
        height: 100%;
    }

    .main-contanier-login-reg {
        display: flex;
        flex-direction: column-reverse;
        gap: 5rem;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .form-container {
        width: 100%;
    }

    .left-login-reg,
    .right-login-reg {
        width: 100%;
    }

    .text-content-center {
        text-align: center;
    }

    .grid-cards {
        grid-template-columns: 1fr;
    }

    .hero-banner-text {
        top: 20%;
    }

    .hero-banner-logo img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .hero-banner-text h1 {
        font-size: 1.2rem;
    }

    .contact-us-content {
        width: 60%;
    }

    .custom-height-privacy-policy {
        height: 100%;
    }

    .logo-title {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 14px !important;
    }

    .side-content {
        margin-top: 50px;
    }
}

/* medium device */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .small-logo-text {
        font-size: 8px;
    }

    .shape-2 {
        display: none;
    }

    .bg-img {
        height: 100%;
    }

    .main-contanier-login-reg {
        display: flex;
        flex-direction: column-reverse;
        gap: 5rem;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .form-container {
        width: 100%;
    }

    .left-login-reg,
    .right-login-reg {
        width: 100%;
    }

    .text-content-center {
        text-align: center;
    }

    .grid-cards {
        grid-template-columns: 1fr;
    }

    .home-service-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-service-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .hero-banner img {
        height: 80vh;
    }

    .hero-banner-text {
        /* top: 10%; */
        top: 20%;
    }

    .hero-banner-text h1 {
        font-size: 1.5rem;
    }

    .hero-banner-text h2 {
        font-size: 0.875em;
    }

    .home-how-service-work-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-container {
        flex-direction: row;
    }

    .side-container {
        width: 30%;
    }

    .register-container {
        width: 65%;
        margin: 100px auto;
        padding: 0 80px;
    }

    .register-container-1 {
        width: 100%;
        margin: 100px auto;
        padding: 0 80px;
    }

    .side-content {
        width: 100%;
        padding: 0 20px 60px;
    }

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

    .all-notice-search {
        width: 220px;
        margin-top: 0;
    }

    .our-service-sub-title {
        font-size: 16px;
    }

    .about-banner-text h1 {
        font-size: 1.5rem;
    }

    .service-container {
        max-width: 720px;
    }

    .hero-banner-logo img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .contact-us-content {
        width: 60%;
    }

    .custom-height-privacy-policy {
        height: 100%;
    }

    .logo-title {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 14px !important;
    }
}

/* large device */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .small-logo-text {
        font-size: 10px;
    }

    .shape-2 {
        display: none;
    }

    .bg-img {
        height: 100%;
    }

    .main-contanier-login-reg {
        display: flex;
        flex-direction: column-reverse;
        gap: 5rem;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .form-container {
        margin: auto;
    }

    .left-login-reg,
    .right-login-reg {
        width: 100%;
    }

    .text-content-center {
        text-align: center;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .hero-banner img {
        height: auto;
    }

    .hero-banner-text {
        /* top: 10%; */
        top: 20%;
    }

    .hero-banner-text h1 {
        font-size: 1.5rem;
    }

    .hero-banner-text h2 {
        font-size: 0.875em;
    }

    .home-service-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-service-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .home-how-service-work-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-content {
        flex-direction: row;
    }

    .faq-left {
        width: 60%;
    }

    .faq-right {
        width: 40%;
    }

    .footer-grid-two {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-container {
        flex-direction: row;
    }

    .side-content {
        width: 80%;
        position: absolute;
        top: 45%;
        left: 55%;
        transform: translate(-50%, -50%);
        padding: 0 80px;
    }

    .side-container {
        width: 45%;
        margin-left: -60px;
    }

    .register-container {
        width: 52%;
        margin: 100px auto;
        padding: 0 100px;
    }

    .register-container-1 {
        background: #f8f9fa;
        width: 400px;
        margin: 100px auto;
        padding: 15px;
    }

    .form-button-area {
        width: 75%;
    }

    .side-bg {
        background: transparent;
    }

    .service-banner-title {
        font-size: 40px;
    }

    .all-notice-search {
        width: 220px;
        margin-top: 0;
    }

    .our-service-sub-title {
        font-size: 16px;
    }

    .about-banner-text {
        left: 10%;
        width: 40%;
    }

    .about-banner-text h1 {
        font-size: 2rem;
    }

    .service-container {
        max-width: 800px;
    }

    .nav-bg-curve {
        background: linear-gradient(-45deg, #30419b 65%, white 35%);
    }

    .nav-login-btn a {
        background: transparent;
        color: #ffffff !important;
        border: 2px solid #ffffff;
        transition: all ease-in 0.3s;
    }

    .nav-login-btn a:hover {
        background: var(--secondary-color);
        color: #fff !important;
        border-color: transparent;
        transition: all ease-in 0.3s;
    }

    .nav-reg-btn a {
        border: 2px solid transparent;
        background: var(--secondary-color);
        color: #fff !important;
        transition: all ease-in 0.3s;
    }

    .nav-reg-btn a:hover {
        background: transparent;
        color: #ffffff !important;
        border-color: #ffffff;
        transition: all ease-in 0.3s;
    }

    .main-nav-link {
        color: #b0afaf !important;
    }

    .main-nav-link:hover {
        color: #ffffff !important;
    }

    .nav-active-link {
        color: #ffffff !important;
    }

    .nav-item::after {
        display: block;
        background-color: #ffffff;
    }

    .language-change {
        color: #ffffff !important;
    }

    .language-change select {
        color: #ffffff !important;
    }

    .hero-banner-logo img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .logo-title {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 14px !important;
    }

    .language-change {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1313px) {
    .logo-title {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 16px !important;
    }

    .nav-bg-curve {
        background: linear-gradient(-45deg, #30419b 65%, white 35%);
    }

    .nav-login-btn a {
        background: transparent;
        color: #ffffff !important;
        border: 2px solid #ffffff;
        transition: all ease-in 0.3s;
    }

    .nav-login-btn a:hover {
        background: var(--secondary-color);
        color: #fff !important;
        border-color: transparent;
        transition: all ease-in 0.3s;
    }

    .nav-reg-btn a {
        border: 2px solid transparent;
        background: var(--secondary-color);
        color: #fff !important;
        transition: all ease-in 0.3s;
    }

    .nav-reg-btn a:hover {
        background: transparent;
        color: #ffffff !important;
        border-color: #ffffff;
        transition: all ease-in 0.3s;
    }

    .main-nav-link {
        color: #b0afaf !important;
    }

    .main-nav-link:hover {
        color: #ffffff !important;
    }

    .nav-active-link {
        color: #ffffff !important;
    }

    .nav-item::after {
        display: block;
        background-color: #ffffff;
    }

    .language-change {
        color: #ffffff !important;
    }

    .language-change select {
        color: #ffffff !important;
    }

    .hero-banner-logo img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .main-container {
        flex-direction: row;
    }

    .side-content {
        width: 80%;
        position: absolute;
        top: 45%;
        left: 55%;
        transform: translate(-50%, -50%);
        padding: 0 80px;
    }

    .side-container {
        width: 45%;
        margin-left: -60px;
    }

    .register-container {
        width: 52%;
        margin: 100px auto;
        padding: 0 100px;
    }

    .register-container-1 {
        background: #f8f9fa;
        width: 400px;
        margin: 100px auto;
        padding: 15px;
    }

    .form-button-area {
        width: 75%;
    }

    .side-bg {
        background: transparent;
    }

    .footer-grid-two {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* extra large device */
@media only screen and (min-width: 1314px) {
    .nav-container {
        padding: 0 3.125rem;
    }

    .hero-banner img {
        height: auto;
    }

    .hero-banner-text {
        left: 50%;
        width: 50%;
        /* top: 10%; */
        top: 20%;
    }

    .hero-banner-text h1 {
        font-size: 2rem;
    }

    .hero-banner-text h2 {
        font-size: 0.875em;
    }

    .home-service-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-service-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .home-how-service-work-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-content {
        flex-direction: row;
    }

    .faq-left {
        width: 60%;
    }

    .faq-right {
        width: 40%;
    }

    .footer-grid-two {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-container {
        flex-direction: row;
    }

    .side-content {
        width: 60%;
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 40px;
    }

    .side-container {
        width: 40%;
        margin-left: -70px;
    }

    .register-container {
        width: 57%;
        margin: 100px auto;
        padding: 0 100px;
    }

    .register-container-1 {
        width: 400px;
        margin: 100px auto;
        padding: 0 100px;
    }

    .form-button-area {
        width: 75%;
    }

    .side-bg {
        background: transparent;
    }

    .service-banner-title {
        font-size: 40px;
    }

    .all-notice-search {
        width: 220px;
        margin-top: 0;
    }

    .our-service-sub-title {
        font-size: 16px;
    }

    .about-banner-text {
        left: 10%;
        width: 40%;
    }

    .about-banner-text h1 {
        font-size: 2rem;
    }

    .service-container {
        max-width: 820px;
    }

    .nav-bg-curve {
        background: linear-gradient(-45deg, #30419b 65%, white 35%);
    }

    .nav-login-btn a {
        background: transparent;
        color: #ffffff !important;
        border: 2px solid #ffffff;
        transition: all ease-in 0.3s;
    }

    .nav-login-btn a:hover {
        background: var(--secondary-color);
        color: #fff !important;
        border-color: transparent;
        transition: all ease-in 0.3s;
    }

    .nav-reg-btn a {
        border: 2px solid transparent;
        background: var(--secondary-color);
        color: #fff !important;
        transition: all ease-in 0.3s;
    }

    .nav-reg-btn a:hover {
        background: transparent;
        color: #ffffff !important;
        border-color: #ffffff;
        transition: all ease-in 0.3s;
    }

    .main-nav-link {
        color: #b0afaf !important;
    }

    .main-nav-link:hover {
        color: #ffffff !important;
    }

    .nav-active-link {
        color: #ffffff !important;
    }

    .nav-item::after {
        display: block;
        background-color: #ffffff;
    }

    .language-change {
        color: #ffffff !important;
    }

    .language-change select {
        color: #ffffff !important;
    }

    .hero-banner-logo img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .logo-title {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 20px !important;
    }

    .footer-grid-two {
        grid-template-columns: repeat(3, 1fr);
    }
}

label {
    font-size: 14px !important;
}
