/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #01B7DF;
    --secondary: #333333;


}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Mulish", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 7px;
    line-height: normal;
    font-family: "Manrope", sans-serif;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}



/* NAV HEADER CSS */

header {

    box-shadow: 0 4px 25px 4px rgb(201 201 201 / 25%);
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 36px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.form-inline .dropdown .dropdown-toggle {
    all: unset;
    cursor: pointer;
}

.form-inline .dropdown .dropdown-menu {
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.form-inline .dropdown .dropdown-menu li a {
    display: block;
    padding: 5px 10px;
    font-size: 1rem;
    color: var(--black);
}

.form-inline {
    gap: 27px;
    margin-left: 2rem;
}

.searchs {
    color: #000;
    font-size: 1.125rem;
}

/* !NAV HEADER CSS */




/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */

/* main-section */
.mainwraps h4 {
    margin: 0;
    font-size: 1rem;
    color: #1F2937;
    background: #F4F4F7;
    border-radius: 100px;
    padding: 10px 36px 10px 10px;
    width: fit-content;
}

.mainwraps h4 span {
    background: #013668;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    border-radius: 100px;
    padding: 7px 20px;
    font-family: "Lora", serif;
    margin-right: 9px;
}

.mainwraps h2 {
    font-size: 70px;
    font-weight: bold;
    color: #1F2937;
}

.mainwraps h3 {
    font-size: 62px;
    font-style: italic;
    font-family: 'Lora';
    position: relative;
}

.mainwraps h3::before {
    position: absolute;
    content: "";
    background: #DAF8FF;
    width: 100%;
    height: 17px;
    bottom: 0;
    z-index: -1;
}

.mainwraps p {
    font-size: 20px;
    font-weight: 400;
    color: #64696F;
    line-height: 1.7;
    width: 81%;
    border-bottom: 1px solid #E8E8F0;
    padding-bottom: 10px;
}

.mainwraps ul li {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1F2937;
}

.mainwraps ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mainwraps ul li i {
    margin-right: 10px;
    color: #000;
    background: #DAF8FF;
    border-radius: 20px;
    padding: 5px;
}

/* main-section */


.mainHead {
    font-size: 46px;
    color: #1F2937;
    font-weight: bold;
    font-family: 'Mulish';
}

.mainHead span {
    font-style: italic;
    font-family: "Lora", serif;
    font-weight: 400;
    position: relative;
    margin-left: 10px;
}

.mainHead span:before {
    position: absolute;
    content: "";
    background: #DAF8FF;
    width: 100%;
    height: 14px;
    bottom: 0;
    z-index: -1;
}


/* what-makes */
.whastmakestop {
    text-align: center;
    margin-bottom: 3rem;
}

.whastmakestop p {
    font-size: 20px;
    font-weight: 400;
    color: #64696F;
    margin: 0;
}

.makescntnt h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1F2937;
    font-family: 'Manrope';
}

.makescntnt h4 {
    font-size: 14px;
    font-weight: 400;
    color: #64696F;
    font-family: 'Mulish';
    margin: 0;
}

.makeswrap {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 30px;
    padding: 25px 31px 25px 25px;
    border-radius: 10px;
    transition: 0.5s ease;
}

.makeswrap figure {
    position: relative;
}

.makeswrap figure::before {
    position: absolute;
    content: "";
    background: #DAF8FF;
    width: 30px;
    height: 55px;
    border-radius: 5px;
    z-index: -1;
    left: -14px;
    top: -9px;
}

section.whats-makes {
    padding: 3rem 0;
}

.makeswrap:hover {
    box-shadow: 0 10px 35px rgb(22 51 69 / 10%);
}


/* what-makes */


/* select-pricing */
.select-pricing {
    background: #F9F9F9;
}


section.select-pricing .mainHead span {
    z-index: 1111;
}

.select-top {
    text-align: center;
    margin-bottom: 3rem;
}

.select-top p {
    font-size: 1rem;
    color: #64696F;
    line-height: 1.8;
    font-family: 'Mulish';
    width: 76%;
    margin: auto;
}

.select-top .mainHead {
    margin-bottom: 1rem;
}

.selectbox {
    border: 1px solid #E8E8F0;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 41px;
}

h2 {}

.leftselect h2 {
    font-size: 46px;
    font-style: italic;
    font-family: 'Lora';
    font-weight: 400;
}

.leftselect h2 span {
    font-size: 1.125rem;
    font-weight: 400;
    color: #01B7DF;
    font-family: 'Mulish';
    font-style: normal;
}

.leftselect p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1F2937;
    line-height: 1.5;
    font-family: 'Manrope';
    width: 67%;
}

.rightsleclist ul li {
    font-size: 1rem;
    font-weight: 400;
    color: #1F2937;
}

.rightsleclist ul li i {
    margin-right: 10px;
    color: #000;
    background: #DAF8FF;
    border-radius: 20px;
    padding: 5px;
}

.leftselect {
    width: fit-content;
    position: relative;
}

.rightsleclist ul li {
    margin-bottom: 10px;
}

.selectbox.blueselect {
    background: #084884;
}

.selectbox.blueselect .leftselect h2 {
    color: #fff;
}

.selectbox.blueselect .leftselect h2 span {
    color: #fff;
}

.selectbox.blueselect .leftselect p {
    color: #fff;
}

.selectbox.blueselect .rightsleclist ul li {
    color: #fff;
}

.leftselect::before {
    content: "";
    position: absolute;
    border-right: 1px solid #E8E8F0;
    width: 5px;
    height: 233px;
    right: 20%;
}

.selectbox.blueselect .leftselect::before {
    border-color: rgb(255 255 255 / 10%);
}

/* select-pricing */

/* market-direction */
.market-direction {
    background: #EDF6FF;
    position: relative;
}

.market-direct ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-direct p {
    font-size: 1rem;
    color: #F4F4F7;
    width: 86%;
}

.market-direct .mainHead {
    color: #fff;
}

.market-direction::before {
    position: absolute;
    content: "";
    background: #084A87;
    width: 71%;
    height: 420px;
    border-radius: 10px;
    margin: auto;
    left: -95px;
    right: 0;
    top: 22%;
}

.market-direct .mainHead span {
    z-index: 1;
}

figure.marketimg11 img {
    margin-top: -65px;
}

figure.marketimg11 {
    position: relative;
    z-index: 1;
    text-align: center;
}

figure.marketimg11::before {
    position: absolute;
    content: "";
    background: linear-gradient(179deg, #1A61A6, rgb(255 255 255 / 0%));
    width: 100%;
    height: 370px;
    bottom: 0;
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
}

/* market-direction */


/* testimonial-sec */

.reviewSlider {
    padding: 1rem 0 4rem 0;
}

.reviewSlider .swiper-pagination-bullet {
    width: 25px;
    height: 7px;
    background: rgb(229 221 221);
    opacity: 1;
    border-radius: 10px;
}

.reviewSlider .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 40px;
    height: 10px;
}

.reviewSlider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.revewImg {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.revewImg h6 {
    font-size: 19px;
    font-weight: bold;
    font-family: 'Manrope';
    color: #1F2937;
}

.revewImg h6 span {
    font-size: 15px;
    font-weight: 400;
    color: #01B7DF;
    font-family: 'Mulish';
    display: block;
}

.reviewBox p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #64696F;
    line-height: 1.5;
    margin: 0;
}

.reviewBox {
    padding: 21px 31px;
    border: 1px solid #E8E8F0;
    border-radius: 10px;
}

figure.testifigure {
    text-align: end;
    position: relative;
}

.storiesimg11 {
    position: absolute;
    right: 24%;
    top: 10%;
}

.storiesimg22 {
    position: absolute;
    right: 2%;
    top: 13%;
}

.storiesimg33 {
    position: absolute;
    right: 2%;
    top: 40%;
}

/* testimonial-sec */


/* recentsec */
.recenteBox figure img {
    width: 100%;
}

section.RecentSec .mainHead {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

section.RecentSec::before {
    position: absolute;
    content: "";
    background: linear-gradient(273deg, rgb(16 87 124 / 97%), #013668);
    width: 76%;
    height: 95%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 10px;
    top: 8%;
    z-index: -1;
}

.recentcntnt h3 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    font-family: 'Manrope';
}

.recentcntnt h5 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    font-family: 'Mulish';
}

.recentcntnt {
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 0 0 10px 10px;
    padding: 23px 45px 40px 21px;
}

.RecentSec .swiper-button-prev:after,
.RecentSec .swiper-button-next:after {
    font-family: 'Font Awesome 5 Pro';
    font-size: 28px;
}

.RecentSec .swiper-button-prev:after {
    content: '\f104';
}

.RecentSec .swiper-button-next:after {
    content: '\f105';
}

.RecentSec .swiper-button-next,
.RecentSec .swiper-button-prev {
    background: #01366836;
    width: 72px;
    height: 39px;
    color: #ffffff4a;
    border-radius: 15px;
    transition: 0.5s ease-in-out;
    border: 1px solid #01b6df2b;
    bottom: 2rem;
    top: inherit;
    left: 0;
    right: 0;
    margin: auto;
}

.RecentSec .swiper-button-next:hover,
.RecentSec .swiper-button-prev:hover {
    background: #013668;
    color: var(--white);
    border-color: #01B7DF;
}

.RecentSec .swiper-button-next {
    right: -7rem;
}

.RecentSec .swiper-button-prev {
    left: -4rem;
}

/* recentsec */

/* supportsec */
.phonesides {
    display: flex;
    align-items: center;
    gap: 33px;
}

.phonewrap a {
    font-size: 1.125rem;
    color: #1F2937;
    font-weight: bold;
    font-family: 'Manrope';
}

.phonewrap a span {
    display: block;
    font-size: 1rem;
    color: #64696F;
    font-family: 'Mulish';
    font-weight: 400;
}

.phonewrap figure {
    position: relative;
    margin-bottom: 2rem;
}

.phonewrap {
    border: 1px solid #EDEDED;
    padding: 20px 29px 25px 11px;
    border-radius: 9px;
}

.phonewrap figure::before {
    position: absolute;
    content: "";
    background: #DAF8FF;
    width: 30px;
    height: 55px;
    border-radius: 5px;
    z-index: -1;
    left: -5px;
    top: -9px;
}

.supportwrap .mainHead {
    font-size: 45px;
}

.supportwrap .mainHead span::before {
    top: -10px;
    width: 61%;
}

/* supportsec */

/* footer */
footer {
    background: #0D4F78;
    padding-top: 124px;
}

footer h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

ul.quicklist li a {
    font-size: 1rem;
    color: #fff;
}

ul.quicklist li {
    margin-bottom: 9px;
}

.calFoter p {
    font-size: 1rem;
    color: #fff;
}

.calFoter p span {
    font-weight: bold;
    font-size: 1.125rem;
}

ul.social-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

ul.social-link li a i {
    color: #fff;
    font-size: 1.125rem;
}

.copyRight p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.copyRight p strong {
    font-weight: bold;
}

.copyRight {
    border-top: 1px solid #ffffff61;
    margin-top: 5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

ul.privacylist {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

ul.privacylist li a {
    color: #fff;
}

/* footer */

.themeBtn:hover {
    background: #000;
    color: #fff;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.makescntnt {
    flex: 1;
}


/* Inner-Pages Css Start */
section.inner-banner h2 {
    color: #1F2937;
    font-size: 70px;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: -1.86px;
    margin: 0;
}


/* Inner-Pages Css End */

.learn-wrap h3 {
    font-size: 50px;
    color: #013668;
    font-weight: bold;
}

.learn-wrap p {
    color: #1F2937;
    line-height: 1.3;
    width: 84%;
}

section.learn-section {
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.market-direct h5 {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

figure.marketimg11.tradingimgs img {
    margin-top: 0;
    margin-bottom: -8rem;
}

section.market-direction.ai-signals::before {
    top: 0;
    bottom: 0;
    margin: auto;
}

section.market-direction.ai-signals {
    background: unset;
    padding: 2rem;
}

figure.marketimg11.tradingimgs::before {
    bottom: inherit;
    border-radius: 10px;
    height: 300px;
}

.market-direction.ai-signals .market-direct p {
    width: 100%;
}

.market-direct .btn-group {
    gap: 1rem;
}

.themeBtn.bdrbtn1 {
    background: transparent;
    border: 1px solid var(--primary);
}


/* Contact-Page Css Start  */

form.helpForm.pricingform .form-group input {
    background: transparent;
    height: 70px;
    border: 1px solid #FFFFFF;
    color: #fff;
}

form.helpForm.pricingform .form-group input::placeholder {
    color: #fff;
}

form.helpForm.pricingform h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: bold;
}

form.helpForm.pricingform.aos-init.aos-animate .form-group {
    margin-bottom: 2.875rem;
}

.helpForm.form-check {
    padding: 0 0 4rem 0;
}

.helpForm .form-group textarea {
    height: 260px !important;
    /* background: #fff !important; */
    border-radius: 0;
    border: #636d79;
    color: #000;
}

form.helpForm.pricingform .form-group textarea::placeholder {
    color: #fff;
}

.contact-page form.helpForm.pricingform.aos-init.aos-animate {
    padding: 0;
}

.contact-page form.helpForm.pricingform .form-group input {
    border-radius: 8px;
    height: 55px;
    color: #fff;
}

.contact-page form.helpForm.pricingform.aos-init.aos-animate .form-group {
    margin-bottom: 1.25rem;
}

.contact-page .helpForm .form-group textarea {
    height: 140px !important;
    border-radius: 8px;
    border: 1px solid #fff;
    background: transparent;
}

.contact-pagetop a {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    background: var(--primary);
    padding: 1.5rem 45rem 1.5rem 1rem;
    position: absolute;
    top: -10.5rem;
    left: -8rem;
}

.model_ul li{
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

.helpBox button.themeBtn {
    border: unset;
    text-transform: capitalize;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #fff;
}

.contactwraps {
    background: #0A4974;
    padding: 51px 100px;
    border-radius: 10px;
}

.contact-pagetop p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-pagetop h4 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

section.pricingpage.contact-page {
    padding: 3rem 0;
}