@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Oddval';
    src: url('../fonts/Oddval-SemiBold.woff2') format('woff2'),
        url('../fonts/Oddval-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oddval';
    src: url('../fonts/Oddval-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Oddval-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}


body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    transition: all 0.4s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
}

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

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

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oddval';
}

p {
    margin: 0;
    font-weight: 300;
}

.media-object {
    --border-width: 1px;
    --radius: 24px;

    position: relative;
    border-radius: var(--radius);
    border: var(--border-width) solid transparent;
}

.media-object::before {
    content: " ";
    position: absolute;
    inset: calc(var(--border-width) * -1);
    border: inherit;
    border-radius: inherit;
    background-image: conic-gradient(from var(--angle), rgb(255 255 255 / 46%) 80%, rgba(0, 44, 155, 0.311) 88%, #fff 92%, rgb(35 189 58 / 51%) 100%);
    background-origin: border-box;
    -webkit-mask:
        linear-gradient(black, black) content-box,
        linear-gradient(black, black);
    mask: linear-gradient(black, black),
        linear-gradient(black, black);
    -webkit-mask-clip: content-box, border-box;
    mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 3s linear infinite;
}

@supports not (background: paint(something)) {
    .media-object::before {
        background-image: conic-gradient(rgba(255, 255, 255, 0.402) 80%, rgba(255, 255, 255, 0.761) 88%, #fff 92%, rgba(255, 255, 255, 0.708) 100%);
    }
}

.media-object:hover::before {
    animation-play-state: paused;
}

@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes spin {
    to {
        --angle: 1turn;
    }
}

header .coin_street_phone {
    border: 1px solid #3CC9FF;
    background: #3CC9FF33;
    border-radius: 50px;
    padding: 5px 20px 5px 6px;
    color: #00B1EE;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-size: 18px;
}

header .coin_street_phone:after {
    transform: translateY(-50%);
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0236B5 0, #00B1EE 100%);
    position: absolute;
    left: 6px;
    top: 50%;
    z-index: -1;
    transition: 0.3s ease;
}

header .coin_street_phone:hover:after {
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 10px;
}

header .coin_street_phone:hover {
    color: #fff;
}

header .coin_street_phone span {
    background: linear-gradient(90deg, #0236B5 0, #00B1EE 100%);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .coin_street_phone:hover span {
    background: linear-gradient(90deg, #4d7aec 0, #31b2de 100%);
}

.coin-street-hero {
    background: url(../images/banner-bg.png);
    background-size: cover;
    background-position: center;
    padding: 50px;
    border-radius: 50px;
}

.coin-street-hero-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.coin-street-hero h1 {
    color: #fff;
    font-size: 48px;
}

.coin-street-hero-Bubble {
    max-width: 650px;
    padding-top: 90px;
    margin-top: 40px;
}

.coin-street-hero .bubble {
    background: url(../images/buble-bg.png);
    text-align: center;
    padding: 15px 20px;
    border-radius: 15px;
    width: 200px;
    text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 14px;
}

.coin-street-hero .bubble-top {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.coin-street-hero .bubble-left {
    position: absolute;
    left: 0;
    bottom: 280px;
}

.coin-street-hero .bubble-right {
    position: absolute;
    right: 0;
    bottom: 280px;
}

.coin-street-hero .arrow {
    position: absolute;
    width: 70px;
    animation-name: shake-move;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

.coin-street-hero .arrow-left {
    top: 45px;
    left: 24%;
}

.coin-street-hero .arrow-right {
    top: 45px;
    right: 24%;
}

.womanThinkingCoinStreet {
    max-width: 500px;
    margin: auto;
    margin-bottom: -125px;
}

@keyframes shake-move {
    0% {
        transform: translate3d(0px, 0px, 0px);
        animation-timing-function: ease;
    }

    25% {
        transform: translate3d(15px, 8px, 0px);
        animation-timing-function: ease;
    }

    50% {
        transform: translate3d(15px, 15px, 0px);
        animation-timing-function: ease;
    }

    75% {
        transform: translate3d(15px, -8px, 0px);
        animation-timing-function: ease;
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

.coin-street-hero-form {
    background: url(../images/heroFormbg.png);
    width: 100%;
    padding: 35px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
}

.coin-street-hero-form h2 {
    color: #fff;
    font-size: 28px;
}

.coin-street-hero-form p {
    color: #fff;
}

.form-label {
    font-size: 12px;
    color: #fff;
    position: absolute;
    left: 14px;
    top: -8px;
    z-index: 1;
    border-radius: 0;
    padding: 0px 2px 0 4px;
}

.bg-transparent1 {
    background: #1957c3;
}

.bg-transparent2 {
    background: #154dbf;
}

.bg-transparent3 {
    background: #0e45ba;
}

.bg-transparent4 {
    background: #0a40b9;
}

.form-group {
    position: relative;
}

.form-control {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 12px;
    height: 60px;
    border-radius: 14px;
    font-weight: 300;
    padding: 20px;
}

.form-control:focus {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
    border: 1px solid #78c0f6;
}
.selectdrop1:after {
    content: '';
    position: absolute;
    top: 22px;
    right: 12px;
    pointer-events: none;
    background-image: url(../images/chevron-down.svg);
        width: 14px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);

}
 select.form-control {
 }
select.form-control option {
            background-color: #0237b6;
            color: white;
            border-radius: 16px;
            overflow: hidden;

        }
input::placeholder {
    color: white !important;
}

input::-webkit-input-placeholder {
    color: white;
}

input::-moz-placeholder {
    color: white;
}

input:-ms-input-placeholder {
    color: white;
}

input:-moz-placeholder {
    color: white;
}

.btn0submit {
    background: #3CDA5F;
    border: none;
    width: 100%;
    border-radius: 14px;
    padding: 16px 25px;
    color: #fff;
    box-shadow: 5px 7px 20px 0px rgba(0, 0, 0, 0.3);
}

.btn0submit:hover {
    background: #02c8f3;
}

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

.section-title h2 {
    font-size: 48px;
    color: #000;
}

.section-title p {
    color: #7D88A4;
}

.steps_col_row {
    background: linear-gradient(131deg, #0236B5 0%, #00B1EE 100%);
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
    height: 100%;
}

.steps_col_row:hover {
    background: linear-gradient(131deg, #00B1EE 0%, #0236B5 100%);
}

.steps-icon {
    padding-bottom: 20px;
}

.steps_col_row h2 {
    font-size: 28px;
    color: #fff;
}

.steps_col_row p {
    color: #DFE8FF;
    margin-top: 20px;
}

.coin-street-invest-bg {
    background: linear-gradient(145deg, #C1FFCE 40%, #3CDA5F 100%);
}

.invest-coin-street {
    background: url(../images/heroFormbg.png);
    width: 100%;
    padding: 35px 20px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    height: 100%;
    text-align: center;
}

.invest-coin-street:hover {
    background: linear-gradient(145deg, #C1FFCE 40%, #3CDA5F 100%);
}

.invest-icon {
    background: #fff;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 25px;
}

h2 {
    font-size: 28px;
}

.invest-content h2 {
    max-width: 260px;
    margin: auto auto 20px auto;
}

.invest-coin-street.media-object::before {
    background-image: conic-gradient(from var(--angle), rgb(255 255 255 / 64%) 80%, rgb(55 190 0 / 31%) 90%, #0087da42 95%, rgb(255 255 255) 100%);
}

.diff_col_row {
    text-align: center;
    max-width: 300px;
    margin: auto;
}

.diff_col_row .steps-icon {
    background: linear-gradient(131deg, #0236B5 0%, #00B1EE 100%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 25px;
    padding: 20px;
}

.diff_col_row p {
    color: #7D88A4;
}

.data_col_row {
    background: #EBF6FF;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.data_col_row:hover {
    background: linear-gradient(131deg, #0236b52b 0%, #00b1ee1a 100%);
}

.company-logo {
    width: 90px;
}

.steps-content {
    width: 100%;
}

.steps-content ul li {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.steps-content ul li .text-green {
    color: #3CDA5F;
}

.steps-content ul li .font-500 {
    font-weight: 500;
}

.btn0submit:hover {
    color: #fff;
}

.PortfolioReviewBG {
    background: linear-gradient(145deg, #B9EDFF 40%, #00B1EE 100%);
    position: relative;
}

.laptop_women {
    margin-bottom: -101px;
    max-width: 550px;
    margin-left: auto;
}

.PortfolioReviewBG .section-title h2 {
    color: #0236B5;
    font-size: 52px;
}

.PortfolioReviewBG .section-title h4 {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 0;
}

.PortfolioReviewBG .section-title p {
    color: #000;
}

.PortfolioReviewBG .btn0submit {
    color: #fff;
    box-shadow: 5px 7px 20px 0px rgb(0 0 0 / 10%);
    padding: 16px 25px;
}

.accordion-item {
    background: #EBF6FF;
    border: none;
    margin: 15px 0;
    border-radius: 20px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: #EBF6FF !important;
    border: none;
    box-shadow: none !important;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.accordion-header {
    margin-bottom: 0;
    font-family: "Poppins", serif;
}

.accordion-body {
    padding-top: 0;
}

.footer {
    background-color: #00040C;
    color: white;
    padding: 50px 0 20px;
}

.footer p {
    font-size: 14px;
    line-height: 24px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    color: #00B1EE;
}

.border-primary-t {
    border-top: 1px solid #0236B5;
}

@media (min-width: 768px) {

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

@media (min-width: 992px) {

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


@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: 1320px;
    }
}

.section-padding.PortfolioReviewBG {
    padding: 60px 0;
}