:root {
    --primaryColor: #253956;
    --secondaryColor: #4a90e2;
    --hColor: #253956;
    --tColor: #253956;
    --yellowColor: #e5bf3a;
    --btnBg1: #253956;
    --btnHover1: #172439;
    --btnBg2: #4a90e2;
    --btnHover2: #3f7dc4;
    --gray: #a0a0a0;
    --bGray: #cdd7e7;
    --inputBgFocus: #efefef;
}

* {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 58px;
}

h2 {
    font-size: 33px;
    font-weight: 600;
    line-height: 41px;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
}

p,
address,
.a_bold {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--tColor);
}

a {
    text-decoration: none;
}

.txt_un {
    text-decoration: underline !important;
}

.txt_lt {
    text-decoration: line-through !important;
}

.a_bold {
    font-weight: 700;
}

label {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    color: var(--tColor);
    display: block;
}

input,
select {
    border: 1px solid var(--primaryColor);
    border-radius: 6px;
    outline: none;
    padding: 0 16px;
    height: 42px;
}

input {
    font-size: 16px;
    color: var(--primaryColor);
    font-weight: 500;
}

select {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

select option {
    font-size: 16px;
    font-weight: 400;
    color: var(--tColor);
    text-transform: capitalize;
    transition: all linear 0.3s;
}

::placeholder {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.in_wbr {
    border-radius: 0 !important;
    border: 1px solid var(--primaryColor);
    box-shadow: 0 5px 0px 0 #c9dadf;
}

ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn1,
.btn2 {
    padding: 0px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border-radius: 6px;
    height: 44px;
    display: inline-block;
    line-height: 44px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.btn1 {
    background-color: var(--btnBg1);
    border: 1px solid var(--btnBg1);
}

.btn1:hover {
    background-color: var(--btnHover1);
    border: 1px solid var(--btnHover1);
    text-decoration: 1px underline var(--btnHover2);
}

.btn2 {
    background-color: var(--btnBg2);
    border: 1px solid var(--btnBg2);
}

.btn2:hover {
    text-decoration: 1px underline rgb(41, 41, 240);
    background-color: var(--btnHover2);
}
.delete_icon{
    color: var(--secondaryColor);
}
.delete_icon:hover{
    cursor: pointer;
    color: var(--btnHover2);
}
@media only screen and (max-width: 700px) {
    h1 {
        font-size: 38px;
        line-height: 44px;
    }
    h2 {
        font-size: 28px;
        line-height: 34px;
    }
    h3 {
        font-size: 22px;
        line-height: 28px;
    }
}

/*
-------------------------
Home page styling
-------------------------
*/
/* Header styling */
.main_header,
.header_bottom {
    background-color: var(--primaryColor);
}

.logo_wrapper {
    position: relative;
    border-right: 2px solid white;
    padding-right: 15px; /* spacing so border looks good */
}

.logo_wrapper img {
    max-width: 100%;
    height: auto;
}

/* before & after bars */
.logo_wrapper::before,
.logo_wrapper::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 40%;
    left: -10px;
}

.logo_wrapper::before {
    background-color: #d73842;
    top: 0;
}

.logo_wrapper::after {
    background-color: white;
    bottom: 0;
}

.header_top {
    border-bottom: 2px solid white;
}

.empty {
    width: 100px;
}

.menu_items {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    border-left: 1px solid var(--secondaryColor);
    padding: 15px 15px;
    transition: all 0.3s;
}
.logout_sec {
    width: 100px;
    height: 0px;
    position: absolute;
    top: 65px;
    right: 1%;
    border-radius: 5px;
    display: grid;
    place-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
    .logout_sec {
        top: 45px;
    }
}
@media only screen and (max-width: 580px) {
    .logout_sec {
        top: 65px;
        right: 5%;
    }
}
@media only screen and (max-width: 375px) {
    .logout_sec {
        top: 55px;
        right: 5%;
    }
}
.menu_login_btn:hover{
    cursor: pointer;
}
.menu_items:last-child {
    border-right: 1px solid var(--secondaryColor);
}

.menu_items:hover {
    background-color: #efefef;
    color: var(--tColor) !important;
    cursor: pointer;
}

.mobile_menu_icon:hover {
    cursor: pointer;
}
/* mobile menu styling */
.mobile_menu_wrapper {
    width: 0px;
    height: 100vh;
    background-color: var(--primaryColor);
    position: fixed;
    z-index: 9999;
    box-shadow: 5px 0 10px var(--primaryColor);
    overflow: hidden;
    transition: all 0.3s;
}
.mobile_menu {
    margin: 20px 0 0 0;
}
.mobile_menu_items {
    padding: 10px 0 10px 30px;
    line-height: 20px;
    border-bottom: 1px solid white;
}
.mobile_menu_items:hover {
    cursor: pointer;
    background-color: var(--secondaryColor);
}
.close_menu {
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    box-shadow: none;
    transition: all 0.3s;
}
.close_menu svg {
    border-radius: 50%;
}
.close_menu svg:hover {
    cursor: pointer;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.137);
}
.menu_item_anchor {
    color: #ffffff;
}
.menu_items:hover a {
    color: var(--tColor) !important;
}
/* Hero section styling */
.home_hero_sec {
    background-image: url("../img/banners/home_banner.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
}

.home_hero_sec::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0d1315;
    opacity: 0.2;
    z-index: -1;
}

.hero_p {
    font-weight: 600;
}

/* main section styling */
.ser_sec,
.view_ser_sec {
    padding: 100px 0;
}

.ser_sec_first {
    border-right: 10px solid #cdd7e7;
}

.ser_sec_first div,
.view_ser_sec_first div {
    margin: 0 0 0 150px;
}

.txt_reg {
    font-weight: 600;
}

.view_ser_sec_first,
.view_com_sec_first {
    border-right: 10px solid var(--primaryColor);
}

.ser_sec_second,
.view_ser_sec_second {
    padding: 0 0 0 4%;
}

.com_sec_first {
    border-right: 10px solid var(--secondaryColor);
}

.globe_sec {
    margin: 100px 0;
}

.globe_sec_inner {
    background-color: var(--yellowColor);
    height: 300px;
    position: relative;
    overflow: hidden;
}

.globe_img_wrapper {
    position: absolute;
    top: -100px;
    left: -50px;
}

.globe_img_wrapper svg {
    width: 400px;
    height: 400px;
}

.btn_globle {
    border: 1px solid white;
}

.btn_globle:hover {
    border: 1px solid white;
}

@media only screen and (max-width: 1000px) {
    .globe_img_wrapper img {
        width: 300px;
        height: 300px;
    }
    .globe_sec_inner {
        height: auto;
    }
}
@media only screen and (max-width: 767px) {
    .globe_content {
        z-index: 1;
    }
    .globe_img_wrapper svg {
        opacity: 0.3;
    }
}

@media only screen and (max-width: 800px) {
    .ser_sec_first div,
    .view_ser_sec_first div {
        margin: 0;
    }
}

/* Footer styling */
.foooter_top {
    background-color: var(--bGray);
}

.footer_top_h {
    color: var(--secondaryColor);
}

.foooter_top_img svg {
    width: 100px;
    height: 100px;
}

.footer_top_p {
    font-weight: 600;
    padding: 0 0 20px 0;
}

.footer_bar {
    background-color: var(--primaryColor);
}

#scroll_top {
    color: var(--secondaryColor);
    padding: 12px 0 0 0;
    position: relative;
}

#scroll_top::before {
    position: absolute;
    content: "";
    background-color: var(--secondaryColor);
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
}

.com_logo img {
    width: 80px;
}

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

.com_pp {
    font-size: 14px;
    font-weight: 500;
}
@media only screen and (max-width: 500px) {
    .com_h {
        font-size: 20px;
        overflow-wrap: break-word;
    }
}

/*
---------------------
Login page styling
---------------------
*/
.breadcrumbs_sec {
    background-color: #eeeeee;
}
.breadcrumbs_sec h1 {
    font-weight: 500;
    font-size: 28px;
}

/* Login section styling */
.login_sec,
.qec_sec,
.ma_sec {
    background-color: #f3f9ff;
    padding: 50px 20px;
}
.nav-item {
    border: 1px solid var(--primaryColor);
    outline: none;
    width: 33.33%;
}
.nav-item:hover {
    background-color: #eeeeee;
}
.nav-item:hover .nav-link {
    color: var(--primaryColor);
}
.nav-link {
    width: 100%;
    padding: 15px;
    color: var(--primaryColor);
    font-size: 14px;
    font-weight: 600 !important;
    line-height: 20px;
}
.active {
    background-color: var(--primaryColor) !important;
    color: white !important;
    border-radius: 0 !important;
    width: 100%;
}
.active:hover,
.nav-link:hover {
    cursor: pointer;
}

.login_p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.login_logo svg,
.qec_sec_img svg,
.ma_sec_img svg {
    width: 80px;
    height: 80px;
    margin: 0 0 20px 0;
}
.login_p strong a {
    color: var(--tColor);
}
.input_field {
    width: 500px;
    height: 50px;
}
.label_b {
    font-size: 13px;
    font-weight: 500;
    color: var(--primaryColor);
}
.submit_btn_login {
    background-color: #017932;
    border: 1px solid #017932;
    outline: none;
    width: 500px;
    padding: 10px 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: white;
}
.submit_btn_login span img {
    width: 25px;
    height: 20px;
}
.submit_btn_login span {
    background-color: white;
    padding: 5px;
    border-radius: 50%;
}
.forget {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: underline;
}
.forget a {
    color: var(--tColor);
}
.regis p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.regis p a {
    color: var(--primaryColor);
}
@media only screen and (max-width: 770px) {
    .input_field {
        width: 300px;
    }
    .submit_btn_login {
        width: 300px;
    }
}

@media only screen and (max-width: 500px) {
    .input_field {
        width: 200px;
    }
    .submit_btn_login {
        width: 200px;
    }
}

/* Contact page styling */
.contact_page_wrapper {
    background-color: #ecf5fe;
}

