@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}

:root {
    /* Background Color */
    --primary-color: #2D90FF;
    --secondary-color: #FFBF74;
    --bg-black: #000000;
    --bg-white: #ffffff;
    --dark-blue: #071137;
    --cetacean-blue-bg: #0A0F2A;
    --cetacean-blue-light: #0E1849;
    --section-bg-color: #0F2AA5;
    --blue-background: #1935B6;
    --dark-cetacean-blue: #070A1D;


    /* Text Color */
    --cetacean-blue-text: #070E30;
    --body-text: #222;
    --text-white: #ffffff;
    --text-black: #000000;
    --light-white: #A9A9A9;


    /* primary font */
    --primary-font: "Rubik", sans-serif;
}

html,
body {
    font-family: "Rubik", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: var(--cetacean-blue-bg);
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    color: var(--text-white);
    font-family: var(--primary-font);
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 85px;
}

h2 {
    color: var(--text-white);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

h3 {
    color: var(--text-white);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

h5 {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.9px;
}

h6 {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

p {
    color: var(--light-white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

embed,
iframe,
img,
object {
    max-width: 100%;
}

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

a,
a:active,
a:focus,
a:hover,
button {
    text-decoration: none;
    outline: 0;
}

a:hover,
button:hover {
    -webkit-transition: all 0.34s ease-in-out;
    -o-transition: all 0.34s ease-in-out;
    -moz-transition: all 0.34s ease-in-out;
    transition: all 0.34s ease-in-out;
}


.main-btn,
.main-btn-white {
    padding: 12px 40px;
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    border-radius: 8px;
    outline: none;
    border: none;
}

.main-btn {
    background: var(--primary-color);
    color: var(--text-white);
}

.main-btn:hover {
    background: var(--bg-white);
    color: var(--cetacean-blue-text);
}

.main-btn-white {
    background: var(--bg-white);
    color: var(--cetacean-blue-text)
}

.main-btn-white:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.section-spacing {
    padding: 100px 0;
}

.section-title p {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 22px 0 53px 0;
}

/* =========Header area start ==========*/
header {
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: transparent;
}

.header-scrolled {
    background-color: var(--cetacean-blue-light);
    position: fixed;
    width: 100%;
    top: 0rem;
    left: 0;
    right: 0;
    transition: all 0.3s;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    z-index: 999;
}

.navbar .navbar-brand img {
    margin-left: 38px;
}

.navbar .navbar-nav {
    padding-left: 20px;
}

.navbar .navbar-nav .nav-item {
    padding-left: 38px;
    white-space: nowrap;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--text-white);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nav-link.active-nav,
.nav-link:hover {
    color: var(--secondary-color) !important;
}


.navbar-toggler {
    color: var(--text-white);
    font-size: 1.6rem;
    border: none;
    font-size: 20px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    border: none;
    box-shadow: none;
}

/* version dropdown */
.nav-item {
    position: relative;
}

.drop-down {
    background: var(--primary-color);
    position: absolute;
    padding: 10px 25px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.35s ease;
}

.drop-down .drop-down-item {
    padding: 5px 0;
    text-align: left;
}

.drop-down .drop-down-item a {
    color: var(--text-white);
    transition: all 0.35s ease;
}

.drop-down .drop-down-item:hover a {
    color: var(--secondary-color);
}

@media (min-width: 992px) {
    .nav-item:hover .drop-down {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}


@media (max-width: 991px) {
    .drop-down {
        background: var(--primary-color);
        position: static;
        max-height: 0; 
        overflow: hidden;
        padding: 0 25px;
        border-radius: 5px;
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        transition: all 0.35s ease;
    }

    .drop-down-active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .drop-down .drop-down-item {
        text-align: center;
        margin: 0 auto;
    }
}

/* =========Header area end ==========*/


/* =========hero area start ==========*/

.hero-area {
    /* background-color: white; */
    background: url('../../img/v2_dark/img/hero-main-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 80px 0;
}

.hero-area .left-content {
    margin: 20px 0 0 38px;
    padding: 40px 0 59px 40px;
}

.hero-area .left-content .left-text-content h1 {
    padding: 14px 0;
}

.hero-area .left-content .left-buttons button:nth-child(2) {
    margin-left: 30px;
}

.hero-area .left-content .left-text-content p {
    color: var(--text-white);
    padding-bottom: 50px;
}



/* hero right area */
.hero-area .right-image img {
    margin-left: 100px;
}


/* =========hero area end ==========*/




/* =========About area start ==========*/
.about-area .about-text h3 {
    font-family: var(--primary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    padding: 25px 0;
}

.about-area .about-text h2 {
    color: var(--text-white);
    text-align: left;
    padding-bottom: 25px;
}

.about-area .about-text p {
    color: var(--light-white);
}

.about-area .about-text .main-btn {
    margin-top: 25px;
}

.about-area .about-text .main-btn:hover {
    background: var(--secondary-color);
}

/* =========About area end ==========*/



/* =========Service area start ==========*/
.service-area {
    border-top: 1px solid rgba(217, 217, 217, 0.18);
}

.service-area .service-title p {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 25px 0 34px 0;
}

.service-area .service-card .card {
    background: var(--dark-cetacean-blue);
    border: none;
    filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.11));
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}


.service-area .service-card .card .card-body {
    padding: 40px 30px;
}

.service-area .service-card .card .card-body h3 {
    padding: 20px 0 23px 0;
}

.service-area .service-card .card .card-body p {
    color: var(--light-white);
}


.service-area .service-card .card:hover,
.service-area .service-card.active .card {
    background: var(--dark-blue);
}

.service-area .service-card .card:hover p,
.service-area .service-card.active .card .card-body p {
    color: var(--light-white);
}

.service-area .service-card.active h3,
.service-area .service-card .card:hover h3 {
    color: var(--text-white);
}



/* =========Service area end ==========*/


/* =========Token sale area start ==========*/
.token-sale-area {
    background: url(../../img/v2_dark/img/token-sale-bg.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0 150px 0;
}


/* =============token left content======== */
.token-sale-area .token-title-area h2,
.token-sale-area .token-title-area p {
    color: var(--text-white);
    text-align: center;
}

.token-sale-area .token-title-area p {
    width: 60%;
    margin: 0 auto;
    padding: 22px 0 50px 0;
}

.token-sale-area .content-wrapper {
    background: var(--cetacean-blue-bg);
    padding: 50px;
    border-radius: 32px;
}

/* counter */
.token-sale-area .content-wrapper .counter-wrapper {
    background: var(--dark-cetacean-blue);
    padding: 24px 55px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.token-sale-area .counter-wrapper .count .count-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.token-sale-area .counter-wrapper .count .count-item span {
    font-family: var(--primary-font);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 15px;
    padding-bottom: 7px;
}

.token-sale-area .counter-wrapper .count .count-item span:nth-child(2) {
    line-height: 36px;
}

.token-sale-area .counter-wrapper .count .count-item {
    margin: 0 auto;
}


.token-sale-area .counter-wrapper .count .count-item span,
.token-sale-area .counter-wrapper .count-title p {
    color: var(--text-white);
    text-transform: uppercase;
}

.token-sale-area .counter-wrapper .count-title p {
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
}

/* progress bar */
.token-sale-area .sales-progress-wrapper {
    padding: 25px 0;
}

.token-sale-area .sales-progress-wrapper .sale-status-text p {
    color: var(--text-white);
}

.token-sale-area .sales-progress-wrapper .progress-wrapper .row .col:nth-child(3) {
    display: inline-block;
    text-align: right;
}

.token-sale-area .sales-progress-wrapper .progress-wrapper .row .col span {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.token-sale-area .progress-wrapper .progress {
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-radius: 8px;
    margin: 20px 0;
}

.token-sale-area .progress-wrapper .progress .progress-bar {
    height: 18px;
    background: var(--primary-color);
    border-radius: 8px;
    padding: 5px;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: end;
    animation: width 4s ease;
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 45%;
    }
}

.token-sale-area .progress-wrapper .progress .progress-bar span {
    text-align: center;
    font-family: var(--primary-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    animation: opacity 4s linear;
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.token-sale-area .content-wrapper .pay-logo {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 55px 0 50px 0;
}



/* ======right content======== */

.token-sale-area .schedule-container {
    padding-left: 65px;
}

.schedule-container .schedule-item {
    padding-bottom: 30px;
}

.schedule-container .schedule-item h6 {
    padding-bottom: 20px;
}

.schedule-container .schedule-item p {
    color: var(--text-white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* =========Token sale area end ==========*/


/* =========Token sale and distribution area start ==========*/

.distribution-content {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.distribution-content h2 {
    color: var(--text-white);
    padding-bottom: 75px;
}

.distribution-content:nth-child(2) h2 {
    padding-bottom: 60px;
}


.distribution-content img {
    max-width: 400px;
}

/* =========Token sale and distribution area end ==========*/


/* =========Roadmap area start ==========*/
.roadmap-area {
    background: url('../../img/v2_dark/img/roadmap-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    padding-bottom: 0;
}

.roadmap-area .roadmap-title {
    text-align: center;
}

.roadmap-area .roadmap-title p {
    width: 60%;
    margin: 0 auto;
    padding: 22px 0 0 0;
}


.roadmap-container {
    position: relative;
}

.roadmap-container ul {
    display: flex;
    justify-content: space-around;
    position: relative;
    padding-top: 50px;
}

.roadmap-container .owl-carousel .owl-stage-outer {
    padding: 192px 20px;
}

.roadmap-container .owl-carousel .owl-stage::after {
    content: "";
    height: 4px;
    width: 100%;
    background: #101740;
    position: absolute;
    left: 0;
    top: 7px;
    z-index: 0;
    visibility: initial;
}

.roadmap-container .owl-carousel .owl-stage::before {
    content: "";
    height: 4px;
    width: 9%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 7px;
    z-index: 1;
    animation: rdwidth 4s linear;
}


@keyframes rdwidth {
    0% {
        width: 0%;
    }

    100% {
        width: 9%;
    }
}

.roadmap-container ul li {
    position: relative;
    width: 100%;
    padding: 30px 40px;
    background: var(--cetacean-blue-bg);
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    margin: 10px;
    transition: all 0.34s ease-in-out;
    cursor: pointer;
    z-index: 999;
    white-space: nowrap;
}

.roadmap-container ul li:hover .rd-date,
.roadmap-container ul li.active .rd-date {
    color: rgba(255, 255, 255, 0.6);
}

.roadmap-container ul li:hover .rd-title,
.roadmap-container ul li.active .rd-title {
    color: var(--text-white);
}



.roadmap-container ul .owl-item:nth-child(odd) {
    left: 0;
    right: 0;
    top: 50px;
    z-index: 99;
}

.roadmap-container ul .owl-item:nth-child(even) {
    left: 0;
    right: 0;
    bottom: 173px;
    z-index: 99;
}


.roadmap-container ul li .rd-date {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 10px;
}

.roadmap-container ul li .rd-title {
    font-family: var(--primary-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: var(--text-white);
    /* white-space: nowrap; */
}

.roadmap-container ul li .circle {
    display: inline-block;
    height: 20px;
    width: 20px;
    background: var(--primary-color);
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.20);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    cursor: pointer;
}

.roadmap-container ul .owl-item:nth-child(even) .circle {
    bottom: -55%;
}

.roadmap-container ul .owl-item:nth-child(odd) .circle {
    top: -52%;
}

.roadmap-container ul li:hover,
.roadmap-container ul li:hover .circle,
.roadmap-container ul li:hover .circle {
    background: var(--primary-color);
}

.roadmap-container ul li.active,
.roadmap-container ul li.active .circle {
    background: var(--primary-color);
}

.roadmap-container ul li .circle:hover {
    background: var(--primary-color);
}

.roadmap-container ul li .circle.active {
    background: var(--primary-color);
}


.roadmap-container .owl-theme .owl-nav {
    top: 39%;
    position: absolute;
    left: 0px;
    right: 0;
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.roadmap-container .owl-theme .owl-nav .owl-next.disabled,
.roadmap-container .owl-theme .owl-nav .owl-prev.disabled {
    background: var(--blue-background) !important;
    opacity: 1;
}

.roadmap-container .owl-theme .owl-nav .owl-next {
    position: relative;
    left: 2px;
}

.roadmap-container .owl-theme .owl-nav .owl-prev {
    position: relative;
    left: 20px;
}

.roadmap-container .owl-theme .owl-nav button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    padding: 5px 10px;
    border: none;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 13px;
    z-index: 99;
    margin: 0 -48px;
    transition: all 0.34s ease-in-out;
}

.roadmap-container .owl-theme .owl-nav button:hover {
    background: var(--primary-color);
}

.roadmap-container .owl-theme .owl-nav button.active {
    background: var(--primary-color);
}

/* =========Roadmap area end ==========*/


/* =========Our Team area start ==========*/
.our-team-area {
    background: var(--cetacean-blue-bg);
}

.our-team-area.section-spacing {
    padding: 80px 0;
}

.ourteam-title p{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 22px 0 53px 0;
}

.person .card {
    background: transparent;
}

.person .card-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 45%;
}

.person .card-img .social-icons {
    position: absolute;
    bottom: -15%;
    transition: all 0.4s ease;
}

.person .card:hover .social-icons,
.person .card.active .social-icons {
    bottom: 15%;
}

.person .card-img .social-icons a {
    background: var(--bg-white);
    color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.20);
}


.person .card-img .social-icons a:hover,
.person .card-img .social-icons a.active {
    background: var(--bg-black);
    color: var(--text-white);
}

.person .card-body h3 {
    text-align: center;
    font-family: Rubik;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin-top: 30px;
}

.person .card-body p {
    margin-top: 9px;
    color: #2D90FF;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.8px
}

/* =========Our Team area end ==========*/

/* =========App Download Section start ==========*/
.app-download-area {
    background-color: var(--cetacean-blue-bg);
    background: url('../../img/v2_dark/img/app-download-area.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.app-download-area .right-text-container h2 {
    text-align: left;
    color: var(--text-white);
    padding-bottom: 22px;
}

.app-download-area .right-text-container p {
    color: #F3F3F3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.app-download-area .right-text-container p {
    padding-bottom: 32px;
    width: 95%;
}

.app-down-btns .app-down-btn {
    background: var(--bg-white);
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
    width: 167px;
    margin: 0 20px 0 0;
    height: 50px;
    padding: 20px 15px;
    border-radius: 8px;
    color: #0A142F;
    position: relative;
    white-space: nowrap;
}

.app-down-btns .app-down-btn:nth-child(1) {
    background: var(--primary-color);
    color: var(--text-white);
}

.app-down-btns .app-down-btn span:nth-child(2) {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
}

.app-down-btns .app-down-btn span:nth-child(3) {
    font-size: 10px;
    position: absolute;
    padding: 0;
    top: 8px;
    left: 60px;
    right: 50%;
    font-weight: 400;
}

.app-down-btns .app-down-btn svg {
    margin: 0 0 3px -5px;

}

.app-down-btns .app-down-btn:nth-child(2) span:nth-child(3) {
    left: 54px;
}

/* =========App Download Section end ==========*/

/* =========Our Clients Section end ==========*/

.our-clients p {
    width: 60%;
}

.our-clients .row .col:nth-child(-n+3) {
    border-right: 1px solid rgba(217, 217, 217, 0.25);
    border-bottom: 1px solid rgba(217, 217, 217, 0.25);
}

.our-clients .row .col:nth-child(4) {
    border-bottom: 1px solid rgba(217, 217, 217, 0.25);
}

.our-clients .row .col:nth-child(+n+5) {
    border-right: 1px solid rgba(217, 217, 217, 0.25);
}

.our-clients .row .col:nth-child(8) {
    border-right: none;
}

.our-clients .row .col {
    padding: 0;
}

.our-clients .img-fluid {
    height: 100%;
    object-fit: contain;
    padding: 0 20px;

}

/* =========Our Clients Section end ==========*/


/* =========FAQ Section start ==========*/
.faq-area {
    background: var(--dark-cetacean-blue);
    background-image: url('../../img/v2_dark/img/faq-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.faq-area .faq-container .list-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 40px;
    white-space: nowrap;
}

.faq-area .faq-container .list-group .list-group-item-action {
    color: var(--text-white);
    border: none;
    background: none;
    text-align: center;
    position: relative;
    margin: 0 20px;
}

.faq-area .faq-container .list-group .list-group-item-action.active::after {
    content: '';
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: faqwidth 0.4s ease;
}

@keyframes faqwidth {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.faq-area .faq-container .list-group .list-group-item-action.active {
    color: var(--primary-color);
}


.faq-area .faq-container .tab-content {
    display: flex;
    justify-content: center;
}

.faq-area .faq-container .tab-content>.active {
    width: 100%;
}

.faq-area .faq-container .accordion .accordion-item {
    background: #08133D;
    margin: 30px 0;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}


.faq-area .faq-container .accordion .accordion-button {
    background: #08133D;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: var(--text-white);
    font-weight: 500;
}


.faq-area .accordion .accordion-header,
.faq-area .accordion .accordion-body {
    background: #08133D;
    color: var(--text-white);
    border-radius: 5px;
}


.faq-area .faq-container .accordion .accordion-button:focus,
.faq-area .faq-container .accordion .accordion-button:active {
    border: none !important;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("../../img/v2_dark/img/faq-plus.svg");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../../img/v2_dark/img/faq-minus.svg");
}

/* =========FAQ Section end ==========*/

/* =========Docs Download area start ==========*/
.docs-text-content h2 {
    text-align: left;
    padding-bottom: 40px;
}


.main-btn-outlined {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0 20px;
}

.main-btn-outlined span svg path {
    fill: var(--text-white);
}

.main-btn-outlined:hover {
    background: var(--primary-color);
    color: var(--text-white);
}


.main-btn-outlined:hover span svg path {
    fill: var(--text-white);
}

.main-btn-outlined::after {
    display: none;
}



.docs-download-area .dropdown-menu.show {
    padding: 12px 45px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

.docs-download-area .dropdown-menu.show li:hover a{
    background: transparent;
    color: var(--secondary-color);
}

.docs-download-area .dropdown-menu.show li a {
    color: var(--text-white);
    background: transparent;
}

.docs-download-area .main-btn:hover {
    background: var(--secondary-color);
}

.docs-download-area h6 {
    color: var(--text-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    white-space: nowrap;
}

.docs-download-area img {
    padding: 0 50px;
}

/* =========Docs Download area end ==========*/



/* =========Blog area start ==========*/
.blog-area {
    background: var(--dark-cetacean-blue);
}

.blog-area .section-title p {
    width: 60%;
}

.blog-area .card {
    height: 100%;
    cursor: pointer;
}

.blog-area .card {
    background: var(--cetacean-blue-bg);
    border-radius: 10px;
    padding: 10px 0;
    transition: background 0.3s ease-in-out;
}

.blog-area .card:hover {
    background: var(--cetacean-blue-light);
}

.blog-area .card:hover{
    border: 1px solid wheat;
}

.blog-area .blog-top-content .date {
    color: #407BFF;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.blog-area .blog-content {
    padding: 0 5px;
}

.blog-area .blog-content .blog-middle-content img {
    padding: 20px 0;
    width: 100%;
    transition:all 0.3s ease;
}

.blog-area .blog-content h4 {
    font-size: 20px;
    padding: 19px 0 15px 0;
    color: var(--text-white);
}

.blog-area .blog-content .blog-bottom-content a {
    color: #407BFF;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.blog-area .blog-content .blog-bottom-content a img {
    margin-left: 10px;
}




/* =========Blog area end ==========*/


/* =========contact Section start ==========*/
.contact-area {
    background: url('../../img/v2_dark/img/contact-bg.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 0;
}

.contact-area .section-title h2,
.contact-area .section-title p {
    color: var(--text-white);
}

.contact-area .contact-form-area {
    border-radius: 5px;
    align-items: center;
}

/* contact info */
.contact-info-box {
    background: #0C163D;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 54px 45px;

}


.contact-info-box .contact-info {
    display: flex;
    background: var(--cetacean-blue-bg);
    padding: 40px 60px;
    white-space: nowrap;
    border-radius: 8px;
    width: 100%;
    margin: 20px 0;

}

.contact-info-box svg path {
    fill: var(--text-white);
}

.contact-info-box .contact-info span {
    background: var(--primary-color);
    padding: 13px 17px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: -20px;
}

.contact-info-box .contact-info ul li {
    color: var(--text-white);
    margin: 6px 0 6px 20px;
    /* padding: 6px 0; */
}

.contact-info-box .contact-info ul li:first-child {
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}


.contact-info-box .contact-info ul li:last-child {
    font-size: 18px;
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

/* contact form */
.form-box {
    background: #0E1A49;;
    /* box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08); */
    padding: 30px 80px;
    margin-left: -22px;
    border-radius: 5px;
}

.form-box .contact-sub-title {
    color: var(--text-white);
    font-family: Rubik;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
}


.form-box .form-control {
    background: transparent;
    color: var(--text-white);
    caret-color: var(--text-white);
    border: 1px solid rgba(217, 217, 217, 0.25);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    border-radius: 6px;
    box-shadow: none;
    outline: none;
    transition: all 0.3s;
}

.form-box .form-control:focus,
.form-box .form-control:active {
    border: 1px solid var(--primary-color);
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: var(--text-white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}


.form-box textarea {
    resize: none;
    padding-left: 15px;
    padding-top: 10px;
}

.form-box input {
    padding: 12px 30px;

}

.form-box .main-btn {
    margin-bottom: 20px;
}

.form-box .main-btn:hover {
    background: var(--secondary-color);
}

form span.formStatus {
    display: none;
    color: #2D90FF;
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 500;
    margin-left: 5px;
    text-align: center;
}

.contact-area iframe {
    border-radius: 20px;
    margin-top: 50px;
}

/* ========contact area end======= */

/* ======footer area ======*/
.footer-area {
    padding-top: 100px;
}

.footer p {
    color: var(--text-white);
    margin: 30px 0;
}



.footer .footer-social-icon a {
    background: #101D5C;
    padding: 5px;
    height: 45px;
    width: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    border-radius: 5px;
    color: var(--text-white);
    transition: all 0.34s ease-in-out;
}

.footer .footer-social-icon a:hover,
.footer .footer-social-icon a.active {
    background: var(--primary-color);
}

.copyright-area {
    background: var(--cetacean-blue-light);
    margin-top: 100px;
    padding: 30px 0;
}

.copyright-area p {
    color: var(--text-white);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.copyright-area p span {
    color: var(--secondary-color);
}

/* =========footer Section end ==========*/