@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

/* Global Variables */
:root {
    --font: "Barlow", sans-serif;
    --blue: #002147;
    --gray: #EBE9E1;
    --yellow: #f5f55a;
    --black: #000000;
    --white: #ffffff;
    --red: #D61F29;
}

/* Reset CSS & Remove outline for non-keyboard :focus */
*:focus:not(:focus-visible),
.btn-close:focus:not(:focus-visible) {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a:focus,
a:hover,
a:active,
a:visited {
    text-decoration: none;
}

select::-ms-expand,
input::-ms-expand {
    display: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

input {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* keyboard focus for accessibility outline */
input:focus,
.form-control:focus,
select:focus {
    outline: none;
}

input[type="radio"]:focus+label,
input[type="checkbox"]:focus+label,
input[type="file"]:focus+label {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    outline-style: auto;
    border-radius: 1px;
}

input[type="radio"] {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

input[type="radio"]+label {
    margin-left: 10px;
}

input:focus:not(:focus-visible)+label {
    outline: none;
}

a {
    cursor: pointer !important;
}

a:focus {
    outline: 2px solid var(--blue);
    outline-style: auto;
    outline-offset: 0px;
    border-radius: 1px;
}

button:focus {
    outline: none;
}

input:focus:not(:focus-visible),
.form-control:focus:not(:focus-visible),
select:focus:not(:focus-visible),
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

button:focus-visible {
    outline: 2px solid var(--blue) !important;
    outline-style: auto !important;
    outline-offset: 3px;
    border-radius: 1px;
}

.tab_focus:focus {
    outline: 2px solid var(--blue);
    outline-style: auto;
    outline-offset: 0px;
    border-radius: 1px;
}

.tab_focus.primary_btn:focus {
    outline-offset: 3px;
}

button.tab_focus:focus {
    outline-offset: 3px;
}

.form-control.tab_focus:focus {
    outline: 2px solid var(--blue);
    outline-style: auto;
    outline-offset: 3px;
    border-radius: 1px;
}

/* Body style */
body,
html {
    min-height: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    font-family: var(--font);
    font-weight: 400;
    color: var(--blue);
    font-size: 20px;
    background-color: var(--gray);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font);
    margin: 0 0 15px;
    font-weight: 600;
}

.regular {
    font-weight: 400 !important;
}

.medium {
    font-weight: 500 !important;
}

.semibold {
    font-weight: 600 !important;
}

.bold {
    font-weight: 700 !important;
}

.extra_bold {
    font-weight: 800 !important;
}

.help-block,
.help_block,
.text_red {
    color: var(--red) !important;
}

.text_white {
    color: var(--white) !important;
}

.text_blue {
    color: var(--blue);
}

.text_yellow {
    color: var(--yellow);
}

.h1 {
    font-size: clamp(40px, 5vw, 90px);
}

.h2 {
    font-size: clamp(25px, 3vw, 48px);
}

.h3 {
    font-size: clamp(22px, 3vw, 32px);
}

/* Few common styles */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
}

strong {
    font-weight: 700;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0 0 15px;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.hidden-sm {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.gap-15 {
    gap: 15px
}

.gap-20 {
    gap: 20px
}

.gap-30 {
    gap: 30px
}

.mh_100vh {
    min-height: 100vh
}

/* Header css */
.header {
    background-color: #EBE9E0;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9;
}

.content_area {
    max-width: 1920px;
    width: 100%;
    margin: 0px auto;
    padding: 0 85px;
}

.vayublue_navigation .nav-link {
    color: var(--blue);
    position: relative;
    padding: 0;
}

.vayublue_navigation .nav-link.active:before {
    height: 5px;
    width: 100%;
    background-color: var(--yellow);
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: -1;
}

.has_underline {
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255, 0)), to(rgb(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(#F8FA5B), to(#F8FA5B));
    background-image: linear-gradient(rgb(255, 255, 255, 0), rgb(255, 255, 255, 0)), linear-gradient(#F8FA5B, #F8FA5B);
    background-size: 100% 15px, 0 15px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: background-size 0.3s linear;
    transition: background-size 0.3s linear;
    display: inline;
    padding-bottom: 2px;

}

.underline_card:hover .has_underline {
    background-size: 0 15px, 100% 15px;
}

.coming_soon_section {
    background-color: #f2f2f2;
    min-height: 65vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Footer css */
.footer {
    padding: 50px 0;
}

.footer_top {
    margin-bottom: 20px;
}

.footer_top .h3 {
    margin: 0 0 25px;
    font-size: clamp(24px, 3vw, 42px)
}

.contact_info li a {
    display: grid;
    grid-template-columns: 20px auto;
    gap: 15px;
    color: var(--blue);
    margin: 0 0 20px;
    max-width: 500px;
    width: 100%;
}

.contact_info li:first-child a,
.contact_info li:nth-child(2) a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact_info li:last-child a {
    margin-bottom: 0;
}

.contact_info li:last-child a img {
    margin-top: 7px;
}

.security_logos {
    padding-top: 40px;
    margin-top: 25px;
}

.footer_bottom {
    border-top: 1px solid var(--blue);
    padding-top: 20px;
}

.contact_info {
    font-size: 26px;
}

.footer_links a {
    color: var(--blue);
    font-size: 21px;
    ;
}

.footer_logo p {
    font-size: 21px;
}

.security_logos li:first-child img {
    max-width: 250px;
    width: 100%;
}

.security_logos li:nth-child(2) img {
    width: 105px;
}

.security_logos li:nth-child(3) img {
    width: 95px;
}

/* .security_logos li:last-child img {
    width: 121px;
} */

/* Large screen */
@media only screen and (min-width: 1440px) and (max-width: 1680px) {
    .contact_info {
        font-size: 20px;
    }

    .footer_top .h3 {
        font-size: clamp(22px, 3vw, 32px);
    }

    .footer_logo p,
    .footer_links a {
        font-size: 18px;
    }
}

/* Medium large screen */
@media only screen and (min-width: 1201px) and (max-width: 1439px) {
    .footer_top .h3 {
        font-size: clamp(22px, 3vw, 30px);
    }

    .content_area {
        padding: 0 50px;
    }

    .contact_info {
        font-size: 20px;
    }

    .footer_logo p,
    .footer_links a {
        font-size: 18px;
    }
}

/* Medium screen */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .content_area {
        padding: 0 15px;
    }

    .contact_info {
        font-size: 20px;
    }

    .footer_logo p,
    .footer_links a {
        font-size: 18px;
    }
}

/* Tablet screen */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_area {
        padding: 0 15px;
    }

    .contact_info,
    .footer_logo p,
    .footer_links a {
        font-size: 16px;
    }
}

/* Mobile screen */
@media only screen and (max-width: 767px) {

    .vayublue,
    .vayublue_logo {
        width: 70%;
        height: 30px;
    }

    .hidden-xs,
    .rwd_line {
        display: none;
    }

    .hidden-sm {
        display: inline-block !important;
    }

    .content_area {
        padding: 0 15px;
    }

    .vayublue_navigation input[type="checkbox"] {
        position: absolute;
        opacity: 0;
    }

    .vayublue_navigation .mbl_humburger {
        cursor: pointer;
    }

    .vayublue_navigation .mbl_humburger img {
        height: 20px;
        width: auto;
    }

    .vayublue_navigation .mbl_humburger img.close_icon {
        display: none;
    }

    .vayublue_navigation input[type="checkbox"]:checked~.mbl_humburger img.close_icon {
        display: inline-block;
    }

    .vayublue_navigation input[type="checkbox"]:checked~.mbl_humburger img.hamburger_icon {
        display: none;
    }

    .vayublue_navigation ul.nav {
        position: absolute;
        left: 0;
        top: 49px;
        width: 100%;
        background-color: var(--gray);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .vayublue_navigation input[type="checkbox"]:checked~.nav {
        display: block !important;
    }

    .vayublue_navigation .nav-link {
        color: var(--blue);
        position: relative;
        padding: 12px 15px;
        border-top: 1px solid rgba(0, 0, 0, .25);
        display: block;
    }

    .footer_bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 30px;
    }

    .footer_top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer_logo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .follow_us.text-end {
        text-align: left;
    }

    .social_links ul.d-flex {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .security_logos ul.d-flex {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact_info,
    .footer_logo p,
    .footer_links a {
        font-size: 16px;
    }

    .underline_card:hover .has_underline {
        background-size: 0 10px, 100% 10px;
    }
}

.follow_us {
    display: flex;
    align-items: end;
}