@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* fontawsome icon */
@import url("https://use.fontawesome.com/releases/v5.0.7/css/all.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    box-sizing: border-box;
    font-family: "Inter", serif;
    transition: all 0.4s ease-in-out;
    color: #fff;
    background: #000;
    background-color: #000;
}

* {
    margin: 0;
    padding: 0;
}

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

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

a {
    text-decoration: none;
}

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

h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1.4px;
}

.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 #fff;
    background: transparent;
    border-radius: 50px;
    padding: 5px 20px 5px 6px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-size: 18px;
}

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

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

.hero {
    background: url(../images/top-banner-background.png);
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    background-color: #000;
    overflow: hidden;
}

.hero h1 {
    color: #fff;
    font-size: 72px;
    letter-spacing: -2px;
}

.hero h1 strong {
    color: #86c443;
}

.hero p {
    color: #fff;
    font-size: 24px;
    line-height: 38px;
}

.hero p strong {
    font-weight: bold;
    color: #86c443;
}

.btn {
    background: #86c443;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    border-radius: 50px;
    padding: 15px 40px;
    display: inline-block;
}

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

.clients-area {
    padding: 40px 0 130px;
    text-align: center;
}

.clients {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.clients li {
    flex: 0 0 auto;
    width: 20%;
    padding: 30px;
}

.clients li img {
    height: 80px;
    object-fit: contain;
    transition: all 0.4s ease-in-out;
}

.clients li:hover img {
    transform: scale(1.2);
}

@media (min-width: 991px) {
    .border-brLogo {
        border-right: 1px solid #414141;
        border-bottom: 1px solid #414141;
        padding: 40px;
        text-align: center;
    }

    .border-brLogo:nth-child(5),
    .border-brLogo:nth-child(10),
    .border-brLogo:nth-child(15),
    .border-brLogo:nth-child(20),
    .border-brLogo:nth-child(25),
    .border-brLogo:nth-child(30) {
        border-right: none;
    }

    .border-brLogo:nth-child(6),
    .border-brLogo:nth-child(7),
    .border-brLogo:nth-child(8),
    .border-brLogo:nth-child(8),
    .border-brLogo:nth-child(9),
    .border-brLogo:nth-child(10) {
        border-bottom: none;
    }
}

.strategies {
    padding-top: 0;
    padding-bottom: 110px;
}

.workCol {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.workCol h3,
.workCol p {
    color: #000;
}

.workCol h3 {
    margin-top: 10px;
    color: #000;
}

.client-logo {
    background: linear-gradient(90deg, #d7e3ed 0%, #ffffff 0%, #ffffff 64%);
    padding: 15px;
    border-radius: 100%;
    height: 120px;
    width: 120px;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border: 2px solid #eeeeee;
}

.section-bg {
    background: url(../images/sec-bg.jpg);
    background-size: cover;
    background-position: center;
    padding-bottom: 110px;
}

.growing-box {
    background: #fff;
    height: 100%;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.growing-box p {
    font-size: 18px;
    color: #000;
    margin-top: 15px;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #5faf0f;
}

.step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #ffffff38;
}

.step-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.step-text {
    font-weight: 600;
    font-size: 24px;
}

.dashed-line {
    border-top: 1px dashed white;
    width: 100%;
    margin-top: 1rem;
}

.white-box-acor {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px;
}

.white-box-acor h2,
.white-box-acor p {
    color: #000;
}

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

}

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

.accordion-button {
    color: #000 !important;
    font-size: 18px;
    margin-bottom: 10px;
}

.accordion-header {
    margin-bottom: 0;

}

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

.section-work-end {
    background: url(../images/form_bg.png);
    background-position: bottom;
    background-size: cover;
    padding: 100px 0;
}

.white-box-acor .btn:hover {
    background: #000;
    color: #fff;
}

.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: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 0;
    display: block;
}

.footer .social-icons a:hover {
    color: #86c443;
}

.btn_green {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 12px 10px 35px;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.btn_green .btn_arrow {
    background: #000;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.btn_green .btn_arrow img {
    transform: rotate(325deg);
    transition: all 0.4s ease-in-out;
}

.btn_green:hover .btn_arrow img {
    transform: rotate(360deg);
}

.border-primary-t {
    border-top: 1px solid #3a3e47;
}
.text-large {
    font-size: 24px;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) {

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

.font-large {
    font-size: 62px;
    font-weight: 500;
}

.countryCodeInput {
    color: #000;
}

.btn-close {
    position: absolute;
    top: -5px;
    right: 0;
    z-index: 9;
    background-color: #fff;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.inputStyle {
    border-color: #e2e8f0;
    border-width: 0;
    border-radius: 12px;
    background-color: #eff6ff;
    font-weight: 300;
    color: #111827;
    font-size: 13px;
    height: 50px;
}

.form-control.inputStyle.py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 12px;
    color: #111827;
}

.intl-tel-input,
.iti {
    width: 100%;
}

.iti__flag-box,
.iti__country-name {
    margin-right: 6px;
    color: #000;
}

.form-label {
    margin-bottom: .5rem;
    color: #000;
    font-size: 14px;
    margin-top: 10px;
}

.modal-content {
    border-radius: 20px;
}

.tracking-tight {
    font-size: 36px;
}

.tracking-tight strong {
    color: #86c443;
}
h2.green_title {
    font-weight: bolder;
    color: #86c443;
}

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



@media (max-width:1199px) {
    .hero h1 {
        font-size: 64px;
    }
    .hero p{
        font-size: 20px;
    }
}
@media (max-width:991px) {
    .mobileMarginT {
        margin-top: 50px;
    }
}

@media (max-width:767px) {
    .hero h1 {
        font-size: 48px;
    }

    .font-large {
        font-size: 40px;
        font-weight: 500;
    }

    h2 {
        font-size: 36px;
    }

    .white-box-acor {
        padding: 20px 15px;
    }

    .clients li {
        flex: 0 0 auto;
        width: 33.3%;
        padding: 30px;
    }

    .section-bg {
        text-align: center;
    }

    .step-card {
        text-align: left;
    }

    .clients-area {
        padding-top: 0 !important;
        padding-bottom: 40px;
    }

    .strategies {
        padding: 60px 0;
    }

    .clients li {
        border: 1px solid #3a3e47;
        margin: -.5px;
    }

    .hero {
        text-align: center;
    }

    .hero {
        padding-top: 100px;
    }

    .header_row .main-logo {
        max-width: 120px;
    }

    .btn_green {
        margin-left: auto;
        margin-right: auto;
    }

    .btn_green {
        padding: 10px 12px 10px 25px;
    }

    .white-box-acor .col-lg-4 {
        text-align: center;
    }
    .hero p {
        color: #fff;
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width:400px) {

    .clients li {
        flex: 0 0 auto;
        width: 50%;
        padding: 30px;
    }

    .section-bg {
        background-size: 100%;
        background-repeat: no-repeat;
        padding-bottom: 80px;
    }

    h2 {
        font-size: 34px;
    }

    header .coin_street_phone {
        padding: 5px 15px 5px 6px;
    }

    .modal-body {
        padding: 0 10px 10px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .tracking-tight {
        font-size: 34px;
        padding-top: 20px;
    }

}

@media (max-width:350px) {
    .tracking-tight {
        font-size: 28px;
    }

    .font-large {
        font-size: 48px;
        font-weight: 500;
    }

    .hero h1 {
        font-size: 42px;
    }

    .accordion-button {
        font-size: 15px;
    }

    .header_row .main-logo {
        max-width: 100px;
    }

    header .coin_street_phone {
        font-size: 15px;
    }

    header .coin_street_phone span {
        background: transparent;
    }

    header .coin_street_phone {
        gap: 2px;
    }

}



.showMobileCallbtn {
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    display: none;
    z-index: 99999;
    padding: 10px;
    background: linear-gradient(2deg, rgb(0 0 0) 0%, rgb(255 255 255 / 0%) 65%);
}

.FexlCol {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-LP.showOnlyMobile {
    padding: 13px 10px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
    border-radius: 50px;
    margin: auto;
    background: #fff;
    color: #000;
    box-shadow: 2px 8px 5px 0px rgba(0, 0, 0, 0.3);

}

.MobileRounded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}

@media (max-width:767px) {
    .showMobileCallbtn {
        display: block;
    }

}