html:root {
    --vtc-text-heading-text-1: #215e57;
    --vtc-text-heading-text-2: #000000;
    --vtc-text-heading-text-3: #001431;
    --vtc-text-common-color-1: #5957e5;
    --vtc-text-pera-text-2: #CCCCD5;
    --vtc-text-pera-text-3: #5A5F6A;
    --vtc-text-text-white-text-1: #ffffff;
    --vtc-bg-main-bg-1: #cea14b;
    --vtc-bg-main-bg-2: #215e57;
    --vtc-bg-main-bg-3: #cea14b;
    --vtc-bg-main-bg-4: #215e57;
    --vtc-bg-main-bg-5: #000000;
    --vtc-bg-main-bg-6: #52B5E9;
    --vtc-bg-common-bg1: #FFF2E6;
    --vtc-bg-common-bg2: #F5F3F4;
    --vtc-bg-common-bg3: #000000;
    --vtc-bg-common-bg4: #FFFAEC;
    --vtc-bg-common-bg5: #FFF4EF;
    --vtc-bg-common-bg6: #E9EBEA;
    --vtc-bg-common-bg7: #ECF3F6;
    --vtc-bg-common-bg8: #E5E7EA;
    --vtc-bg-common-bg9: #F2F4F7;
    --vtc-bg-common-bg10: #5957E5;
    --vtc-bg-bg-white: #ffffff;
    --vtc-border-border-1: #f0f0f0;
    --vtc-border-border-2: #dfdcdc;
    --vtc-text-pera-text-1: #121212;
    --f-fw-regular: 400;
    --f-fw-medium: 500;
    --f-fw-semibold: 600;
    --f-fw-bold: 700;
    --f-fw-ex-bold: 800;
    --f-ff-font-1: 'Figtree', sans-serif;
    --f-fs-font-fs16: 16px;
    --f-fs-font-fs18: 18px;
    --f-fs-font-fs20: 20px;
    --f-fs-font-fs22: 22px;
    --f-fs-font-fs24: 24px;
    --f-fs-font-fs26: 26px;
    --f-fs-font-fs28: 28px;
    --f-fs-font-fs30: 30px;
    --f-fs-font-fs32: 32px;
    --f-fs-font-fs34: 34px;
    --f-fs-font-fs36: 36px;
    --f-fs-font-fs40: 40px;
    --f-fs-font-fs42: 42px;
    --f-fs-font-fs44: 44px;
    --f-fs-font-fs48: 48px;
    --f-fs-font-fs50: 50px;
    --f-fs-font-fs52: 52px;
    --f-fs-font-fs54: 54px;
    --f-fs-font-fs56: 56px;
    --f-fs-font-fs58: 58px;
    --f-fs-font-fs60: 60px;
    --f-fs-font-fs62: 62px;
    --f-fs-font-fs64: 64px;
    --f-fs-font-fs66: 66px;
    --f-fs-font-fs68: 68px;
    --f-fs-font-fs70: 70px;
    --f-fs-font-fs72: 72px;
    --f-fs-font-fs74: 74px;
    --f-fs-font-fs76: 76px;
    --f-fs-font-fs78: 78px;
    --f-fs-font-fs80: 80px;
    --f-fs-font-fs82: 82px;
    --f-fs-font-fs84: 84px;
    --f-fs-font-fs86: 86px;
    --f-fs-font-fs88: 88px;
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1312px;
    }
}
.pl-80 {
    padding-left: 80px;
}
.mb-50 {
    margin-bottom: 50px;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}


@media (min-width: 992px) {
        .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
        .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}


.align-items-center {
    align-items: center !important;
}



header *,
.mobile-header *,
.mobile-sidebar * {
    box-sizing: border-box;
    font-family: DM Sans;
}

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
    font-family: 'Font Awesome 6 Free';
}

.header-area {
    padding: 12px 0;
    position: absolute;
    background: #215e57;
    width: 100%;
    z-index: 99;
}

.header-area .container {
    width: 100% !important;
    max-width: 1440px;
}

.header-area .header-elements {
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    max-width: 130px;
    height: auto;
    display: flex;
    align-items: center;
}

.header-area .container .site-logo {
    max-width: 250px !important;
}

.site-logo a {
    display: inline-block;
    position: relative;
    z-index: 9;
}

header img,
.mobile-header img,
.mobile-sidebar img {
    max-width: 100%;
    height: auto;
}



.header-area.header-area3 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
}

.header-area .container .header-elements .main-menu-ex {
    width: calc(100% - (250px + 116px));
}

header ul,
.mobile-header ul,
.mobile-sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

header li,
.mobile-header li,
.mobile-sidebar li {
    webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.main-menu-ex li {
    display: inline-block;
}

.main-menu-ex li {
    position: relative;
    z-index: 9;
}

header .sticky {
    border: none;
}

.header-area3.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    background-color: #44524D;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.header-area3.sticky {
    background-color: #215e57;
}


.header-area.header-area3 .header-elements .main-menu-ex ul li a {
    color: var(--vtc-text-text-white-text-1);
    font-size: 16px;
    display: block;
    font-weight: 400;
    padding: 8px 15px;
    transition: all 0.3s;
    font-weight: 500;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li a:hover {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

a.theme-btn6 {
    webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.theme-btn6 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none !important;
    font-weight: var(--f-fw-bold);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    color: var(--vtc-text-text-white-text-1);
    text-transform: capitalize;
    padding: 18px 22px 18px 22px;
    background-color: var(--vtc-bg-main-bg-3);
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
    width: max-content;
}

a.register-button {
    font-size: 16px;
    color: #cea14b;
    font-weight: 500;
    padding: 8px;
    float: left;
    width: 100%;
    text-align: center;
}




.header2-buttons .button a.theme-btn6 {
    padding: 10px 25px;
    font-size: 17px;
    font-weight: 600;
}

.theme-btn6 span {
    position: relative;
    margin-left: 4px;
    font-size: 16px;
    transition: all 0.4s linear;
    transform: rotate(-45deg);
    display: inline-block;
}

.theme-btn6::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--vtc-text-heading-text-1);
    transition: all 0.4s linear;
    z-index: -1;
    opacity: 0;
    border-radius: 0px;
}

.theme-btn6::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -1px;
    height: 100%;
    width: 0%;
    background-color: var(--vtc-text-heading-text-1);
    transition: all 0.4s linear;
    z-index: -1;
    opacity: 0;
    border-radius: 0px;
}


.theme-btn6:hover {
    transform-origin: bottom center;
    transition-delay: 200ms;
    transition: all 0.4s linear;
    opacity: 1;
}

.theme-btn6:hover {
    color: var(--vtc-text-text-white-text-1);
}

.theme-btn6:hover::before {
    width: 51%;
    opacity: 1;
}

.theme-btn6:hover::after {
    width: 51%;
    opacity: 1;
}

@media screen and (max-width: 769px) {
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 17px 0;
        z-index: 999;
        background: #fff;
    }

    .mobile-header.mobile-header-main {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 17px 0;
        z-index: 999;
        background: #fff;
    }

    .mobile-header-elements {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-logo a {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        text-decoration: none;
    }

    .mobile-nav-icon {
        font-size: 23px;
        border: 1px solid;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: #000;
    }
}

@media screen and (max-width: 992px) {
    .mobile-header.mobile-header-main {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 17px 0;
        z-index: 999;
        background: #215e57;
    }

    .mobile-header-elements {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-nav-icon {
        font-size: 23px;
        border: 1px solid;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: white;
    }
}




@media screen and (max-width: 769px) {
    .mobile-sidebar {
        position: fixed;
        height: 100%;
        width: 100%;
        background: #fff;
        z-index: 9999;
        padding: 40px 30px;
        left: -100%;
        top: 0;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
    }

    .mobile-sidebar.mobile-menu-active {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all .3s;
        padding-top: 55px;
        max-height: 100%;
        overflow-y: scroll;
    }
}

@media screen and (max-width: 992px) {
    .mobile-sidebar {
        position: fixed;
        height: 100%;
        width: 100%;
        background: #fff;
        z-index: 9999;
        padding: 40px 30px;
        left: -100%;
        top: 0;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
    }

    .mobile-sidebar.mobile-menu-active {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all .3s;
        padding-top: 55px;
        max-height: 100%;
        overflow-y: scroll;
    }
}

.mobile-logo img {
    width: 113px;
}

@media screen and (max-width: 992px) {
    .mobile-logo img {
        width: 250px;
    }
}

.mobile-sidebar .logo-m {
    margin-top: -32px;
    margin-bottom: 30px;
    max-width: 110px;
    max-width: 200px;
}

@media screen and (max-width: 769px) {
    .menu-close {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 25px;
        color: #000;
        cursor: pointer;
    }
}

@media screen and (max-width: 992px) {
    .menu-close {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 25px;
        color: #000;
        cursor: pointer;
    }
}

.mobile-menu-content ul {
    position: static;
    display: block;
    box-shadow: none;
}

.mobile-menu-content * ul,
.mobile-menu-content * li {
    transition: none !important;
}

@media screen and (max-width: 769px) {
    .mobile-nav li {
        position: relative;
        z-index: 2;
    }
}

.mobile-menu-content * ul,
.mobile-menu-content * li {
    transition: none !important;
}

.mobile-menu-content ul li {
    list-style: none;
    position: relative;
    width: 100%;
    padding: 0;
}

.theme-btn1 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none !important;
    font-weight: var(--f-fw-bold);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    text-transform: capitalize;
    padding: 18px 22px 18px 22px;
    background-color: var(--vtc-bg-main-bg-1);
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
    color: var(--vtc-text-text-white-text-1);
}

.mobile-sidebar .mobile-button a {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.mobile-sidebar .contact-infos,
.mobile-sidebar .single-footer-items {
    display: none !important;
}

.mobile-sidebar .single-footer-items h3 {
    color: var(--vtc-text-heading-text-1);
    line-height: var(--f-fs-font-fs24);
    font-size: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-bold);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .mobile-sidebar .single-footer-items h3 {
        margin-bottom: 16px;
        margin-top: 30px;
    }
}

.mobile-sidebar .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0px;
}

.mobile-sidebar .single-footer-items .contact-box .icon {
    margin-right: 16px;
}

.mobile-sidebar .single-footer-items .contact-box .pera a {
    display: inline-block;
    color: var(--ztc-text-text-2);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-medium);
    transition: all 0.4s;
}

@media screen and (max-width: 769px) {
    .mobile-nav li a {
        font-size: 18px;
        line-height: 24px;
        color: #000;
        padding: 10px 0;
        display: block;
    }
}

.mobile-menu-content ul li>a {
    display: block;
    font-size: 16px;
    color: var(--vtc-bg-main-bg-4);
    position: relative;
    padding: 10px 0;
    padding-right: 20px;
}

.mobile-menu-content ul li>a {
    font-weight: 500;
}

.mobile-menu-content ul li:not(:last-child) a {
    border-bottom: 1px solid rgba(2, 11, 24, 0.1);
}

.cta {
    background-color: var(--vtc-text-heading-text-1);
    padding-top: 60px;
}

.cta .cta-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.301);
    padding-bottom: 60px;
}

footer h2 {
    font-family: Tenor Sans;
}

.heading1-w h2 {
    font-size: var(--f-fs-font-fs44);
    line-height: var(--f-fs-font-fs54);
    color: var(--vtc-text-text-white-text-1);
    font-weight: var(--f-fw-bold);
}

.space16 {
    height: 16px;
}

.heading1-w p {
    color: var(--vtc-text-pera-text-2);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-medium);
}

.cta .subscribe-area {
    text-align: end;
    position: relative;
}

.footer1 {
    background-color: var(--vtc-text-heading-text-1);
}

.footer-top-spacing {
    padding-top: 80px;
}
.footer-logo-area {
    padding-right: 60px;
}

footer h3 {
    font-family: Tenor Sans;
}
.footer1 .single-footer-items h3 {
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-bold);
    color: var(--vtc-text-text-white-text-1);
    padding-bottom: 24px;
}
.vl-footer-widget ul {
    overflow: hidden;
}
.vl-footer-widget-content ul li {
    color: #a2a2a2;
    webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.footer1 .single-footer-items ul{
    padding-left: 0px;
}
.footer1 .single-footer-items ul li a {
    color: var(--vtc-text-pera-text-2);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-medium);
    display: inline-block;
    padding: 6px 0px;
    transition: all 0.4s;
    position: relative;
    outline: none;
    text-decoration: none;
}
.footer1 .single-footer-items ul li::marker {
    content: none;
}
.footer1 .single-footer-items ul li a:hover {
    padding-left: 12px;
    transition: all 0.4s;
    color: var(--vtc-bg-main-bg-1);
}
.vl-footer-widget ul {
    overflow: hidden;
}
.footer1 ul.footer-info li{
    color: var(--vtc-text-pera-text-2);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-medium);
    display: inline-block;
    padding: 6px 0px !important;
    transition: all 0.4s;
    position: relative;
    display: block;
    padding-left: 36px !important;
    margin-bottom: 10px;
}
.footer1 .coppyright p {
    color: var(--vtc-text-pera-text-2);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-medium);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.267);
}
.footer1 .single-footer-items ul,
.footer1 .single-footer-items ul li {
    padding-left: 0px;
}

.footer1 ul.footer-info li i{
    position: absolute;
    left: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    font-size: 24px;
}
.footer-legal{
    display: flex;
    justify-content: center;
}

footer img {
    max-width: 100%;
    height: auto;
}
.footer1 .single-footer-items ul li a::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 20px;
    width: 0px;
    background-color: var(--vtc-bg-main-bg-1);
    opacity: 0;
    transition: all 0.4s;
}
.footer1 .single-footer-items ul li a:hover::after {
    width: 3px;
    opacity: 1;
}