@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --main-color: #d77600;
    --secondary-color: #050d1a;
    --body-bg: #030912;

    --h-font: 'Jost', sans-serif;
    --p-font: 'Roboto', sans-serif;
}

body {
    color: #c5c5c5;
    background-color: #030912;
    font-family: var(--p-font);
    line-height: 1.7;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}
a, span {
    display: inline-block;
}
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--main-color);
    text-decoration: none;
}

label {
    text-transform: capitalize !important;
    margin-bottom: 6px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--h-font);
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
}
.cmn-btn {
    padding: 12px 30px;
    background-color: var(--main-color);
    color: var(--body-bg);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
    border: none;
}
.cmn-btn:hover {
    color: var(--body-bg);
}

.border-btn {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
}
.border-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.banner-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -10px;
}

.banner-btn-group [class*="-btn"] {
    margin: 3px 10px;
}

.form-control, .form-select {
    height: 50px;
    background-color: var(--secondary-color);
    padding: 10px 15px;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

textarea.form-control {
    min-height: 120px;
}

.form-control::-webkit-input-placeholder {
  color: #8f8f8f;
}
.form-control::-moz-placeholder {
  color: #8f8f8f;
}
.form-control:-ms-input-placeholder { 
  color: #8f8f8f;
}
.form-control:-moz-placeholder {
  color: #8f8f8f;
}
.form-control {
    padding: 10px 15px;
}

.form-control:disabled, .form-control[readonly] {
    background-color: rgba(255, 255, 255, 0.05);
}

.form-select option {
    background-color: var(--secondary-color);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--main-color);
    outline: 0;
    box-shadow: 0 3px 5px #e1b82340;
    background-color: var(--secondary-color);
}
.has-bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-bg {
    background-color: var(--secondary-color);
}

.section-bg + .section-bg {
    border-top: 1px solid rgba(255,255,255,0.1);    
}

img {
    max-width: 100%;
}
.dark-overlay {
    position: relative;
    z-index: 1;
}
.dark-overlay::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.85;
    z-index: -1;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/


/* joba's top */

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 8px;
    display: none;
    z-index: 999;
}

/* end */

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffc451;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
}

.back-to-top:hover {
    background: #151515;
}

.back-to-top:hover i {
    color: #ffc451;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.pointer {
    cursor: context-menu !important;
}

.login{
    margin-top: 14%!important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #151515;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid #ffc451;
    border-top-color: #151515;
    border-bottom-color: #151515;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #000;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

#header .logo a {
    color: #fff;
}

#header .logo a span {
    color: #ffc451;
}

#header .logo img {
    max-height: 75px;
}

@media screen and (max-width:330px) {
    #header .logo {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block!important;
        display: flex!important;
    }
}


/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/

.btn-padding {
    padding: 3px 20px;
}

.get-started-btn:hover {
    background: #ffbb38;
    color: #343a40;
}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

@media screen and (max-width:575px) {}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
    z-index: 1;
}

.navbar li::before {
    position: absolute;
    content: '';
    top: 10px;
    left: 5px;
    width: 15px;
    height: 15px;
    border-left: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    background-color: transparent;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.navbar li::after {
    position: absolute;
    content: '';
    bottom: 10px;
    right: 5px;
    width: 15px;
    height: 15px;
    border-right: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    background-color: transparent;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}

.navbar li:hover::before,
.navbar li:hover::after,
.navbar li.active::before,
.navbar li.active::after {
    opacity: 1;
}
.navbar li.active::before,
.navbar li:hover::before {
    left: 15px;
}
.navbar li.active::after,
.navbar li:hover::after {
    right: 10px;
}

@media (max-width: 991px) {
    .navbar li::before,
    .navbar li::after {
        display: none;
    }
    .navbar li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .navbar a {
        color: #fff !important;
    }
    .navbar li.active a {
        color: var(--main-color) !important;
    }
    .navbar li:last-child {
        margin-top: 15px;
        border-bottom: none;
    }
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar li.active a,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--main-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #151515;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    background-color: #ffc451;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}
.changeLang {
    padding: 6px 10px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.changeLang option {
    background-color: var(--secondary-color);
}

.btn-border {
    padding: 12px 30px;
    border: 1px solid var(--main-color);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.btn-border:hover {
    background-color: var(--main-color);
    color: #fff;
}
.btn-sm {
    padding: 7px 20px;
    font-size: 14px;
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    
   
    .support-link{
        margin-right: 10px!important;
    }
    .nav-link{
        padding-left: 25px!important;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--secondary-color);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #151515;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    background-color: #ffc451;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.custom-select-form {
    margin-left: 18px !important;
}
.descripton-root span{
display: inline-block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section {
    padding-top: 260px;
    padding-bottom: 210px;
    position: relative;
    z-index: 1;
}
.banner-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    opacity: 0;
    z-index: -1;
}
.banner-title {
    font-size: 62px;
}

.overview-box {
    position: relative;
}
.overview-box::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    height: 50px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.overview-wrapper div[class*="col"]:last-child .overview-box::after {
    display: none;
}
.overview-box-amount {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--main-color);
    font-size: 36px;
    line-height: 1;
}
.overview-box p {
    color: #fff;
    margin-bottom: 0;
    margin-top: 8px;
}

/* calculate-area css start */
.calculate-area {
    padding: 65px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.calculate-area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 230px;
    height: 100%;
    background-color: var(--main-color);
    z-index: -1;
}
.calculate-area .calculator {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: -1;
}

.calculate-area .calculator img {
    max-height: 120px;
}

.calculate-area [class*="shape-"] {
    position: absolute;
    opacity: 0.15;
    z-index: -2;
}
.calculate-area [class*="shape-"] img {
    max-height: 80px;
}
.calculate-area .shape-1 {
    top: -10px;
    left: -20px;
}
.calculate-area .shape-2 {
    left: 120px;
    bottom: -10px
}
.calculate-area .shape-3 {
    top: -10px;
    right: -10px;
}
.calculate-area .shape-4 {
    right: 120px;
    bottom: -15px;
}
/* calculate-area css end */
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-top {
    margin-bottom: 45px;
}
.section-title {
    font-size: 48px;
}
@media (max-width: 1199px) {
    .section-title {
        font-size: 42px;
    }
}
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    .section-title {
        font-size: 32px;
    }
}
.s-pt-100 {
    padding-top: 100px;
} 
.s-pb-100 {
    padding-bottom: 100px;
}

@media (max-width: 1199px) {
    .s-pt-100 {
        padding-top: 80px;
    } 
    .s-pb-100 {
        padding-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .s-pt-100 {
        padding-top: 70px;
    } 
    .s-pb-100 {
        padding-bottom: 70px;
    }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.about-section .shape-el {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: -1;
}
.about-thumb {
    padding-left: 30px;
}
.about-thumb img {
    max-height: 350px;
}
.about-thumb-inner {
    display: inline-block;
    position: relative;
}
.about-thumb-line {
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-thumb-line::before, 
.about-thumb-line::after {
    position: absolute;
    content: '';
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--main-color);
}

.about-thumb-line::before {
    width: 12px;
    height: 12px;
}
.about-thumb-line::after {
    width: 20px;
    height: 20px;
}

.about-thumb-line-one {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: -15px;
    left: -15px;
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
}
.about-thumb-line-two {
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    top: -30px;
    left: -30px;
    animation: spin2 15s infinite linear;
    -webkit-animation: spin2 15s infinite linear;
}
.about-thumb-line-one::before {
    top: -6px;
    left: 50%;
    margin-left: -6px;
}
.about-thumb-line-one::after {
    top: 50%;
    left: -10px;
    margin-top: -10px;
}

.about-thumb-line-two::before {
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
}
.about-thumb-line-two::after {
    right: -10px;
    top: 50%;
    margin-top: -10px;
}

@keyframes spin2 {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
}
    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
}
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding-top: 20px;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc451;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.feature-box {
    margin-top: 20px;
}
.feature-box .icon {
    background-color: #000;
    margin-bottom: -30px;
    margin-left: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    position: relative;
    color: #fff;
}
.feature-box .icon .icon-line {
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    background-color: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.feature-box:hover .icon .icon-line {
    animation: spin 5s infinite linear;
    -webkit-animation: spin 5s infinite linear;
}
.feature-box .icon .icon-line::after {
    position: absolute;
    content: '';
    top: -14px;
    left: -14px;
    width: calc(100% + 28px);
    height: calc(100% + 28px);
    background-color: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.1);
}
.feature-box .icon .icon-line .icon-line-dot {
    position: absolute;
    background-color: var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 4px solid var(--body-bg);
}
.feature-box .icon .icon-line .icon-line-dot-one {
    width: 17px;
    height: 17px;
    top: -20px;
    left: 25px;
}
.feature-box .icon .icon-line .icon-line-dot-two {
    width: 12px;
    height: 12px;
    bottom: 66px;
    left: -4px;
}
.feature-box .icon .icon-line .icon-line-dot-three {
    width: 15px;
    height: 15px;
    right: 0;
    top: 0;
}
.feature-box .icon-inner {
    width: 100px;
    height: 100px;
    border: 12px solid var(--body-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    background-color: var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
    z-index: 2;
}

.feature-box .icon-inner::before,
.feature-box .icon-inner::after {
    position: absolute;
    content: '';
    background-color: var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.feature-box .icon-inner::before {
    width: 17px;
    height: 15px;
    left: 4px;
    top: 7px;
}
.feature-box .icon-inner::after {
    width: 12px;
    height: 9px;
    bottom: -3px;
    left: 42%;
}
.feature-box .content {
    padding: 75px 25px 25px 25px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0px 66px #d7760047;
    border: 1px solid var(--main-color);
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .banner-calc {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .banner-calc .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #ffc451;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .banner-calc .icon i {
    color: #151515;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .banner-calc h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .banner-calc h4 a {
    color: #151515;
    transition: ease-in-out 0.3s;
}

.services .banner-calc h4 a:hover {
    color: #ffc451;
}

.services .banner-calc p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .banner-calc:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.subscribe-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.subscribe-el {
    position: absolute;
    left: 80px;
    bottom: 0;
    z-index: -1;
}
.subscribe-el img {
    max-height: 330px;
}

.subscribe-form {
    display: flex;
}
.subscribe-form .form-control {
    height: 55px;
}
.subscribe-form button {
    width: 180px;
    border: none;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    margin-left: -2px;
}

/*--------------------------------------------------------------
# Investment Plans
--------------------------------------------------------------*/
.invest-plan {
    padding: 0 30px 30px 30px;
    position: relative;
    z-index: 1;
    text-align: center;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    z-index: 1;
}
.invest-plan-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}
.invest-plan-shape::before {
    position: absolute;
    content: '';
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    clip-path: polygon(54% 59%, 79% 50%, 100% 25%, 100% 100%, 0 100%, 36% 85%);
    background-color: var(--body-bg);
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: -1;
}
.invest-plan-shape::after {
    position: absolute;
    content: '';
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    clip-path: polygon(54% 59%, 79% 50%, 100% 25%, 100% 100%, 0 100%, 36% 85%);
    background-color: #d7760033;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: -2;
}

.invest-plan:hover .invest-plan-shape::after {
    background-color: #d77600;
}
.invest-plan:hover .invest-plan-shape::before,
.invest-plan:hover .invest-plan-shape::after {
    animation: lineUpDown 5s infinite linear;
    -webkit-animation: lineUpDown 5s infinite linear;
}

@keyframes lineUpDown {
    0% {
        clip-path: polygon(54% 59%, 79% 50%, 100% 25%, 100% 100%, 0 100%, 36% 85%);
    }
    25% {
        clip-path: polygon(53% 63%, 78% 53%, 100% 28%, 100% 100%, 0 100%, 32% 83%);
    }
    50% {
        clip-path: polygon(51% 64%, 81% 57%, 100% 28%, 100% 100%, 0 100%, 36% 83%);
    }
    75% {
        clip-path: polygon(58% 73%, 81% 57%, 100% 31%, 100% 100%, 0 100%, 32% 78%);
    }
    100% {
        clip-path: polygon(54% 59%, 79% 50%, 100% 25%, 100% 100%, 0 100%, 36% 85%);
    }
}

.invest-plan::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background-color: var(--body-bg);
    z-index: -1;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: 1px solid var(--main-color);
    box-shadow: inset 0 0px 66px #d776003b;
}
.invest-plan-top {
    width: 160px;
    height: 175px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}
.invest-plan-top::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    box-shadow: inset 0 0px 66px #d77600d4;
    z-index: -1;
}
.invest-plan-top::after {
    position: absolute;
    content: '';
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: var(--secondary-color);
    -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    z-index: -2;
}
.invest-plan-name {
    font-size: 18px;
}
.invest-plan-amount {
    font-size: 24px;
    color: var(--main-color);
}
.invest-plan-min-max {
    color: var(--main-color);
}
.invest-plan-features {
    padding: 5px 20px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin: 30px 0;
}
.invest-plan-features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.invest-plan-features li:last-child {
    border-bottom: none;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ffc451;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc451;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/* Timeline */
.work-box {
    padding: 25px 25px 25px 50px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    position: relative;
    border: 1px solid var(--main-color);
    margin-top: 37px;
    box-shadow: inset 0 0px 20px #d77600c4;
}

.work-box .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid var(--body-bg);
    position: absolute;
    top: 30px;
    left: -62px;
    background-color: var(--secondary-color);
    box-shadow: inset 0 0px 20px #d77600c4;
    font-size: 24px;
    color: var(--main-color);
}
.work-box .content p {
    margin-bottom: 0;
    margin-top: 15px;
}
.work-wrapper {
    counter-reset: work;
    padding-left: 53px;
}
.work-wrapper div[class*="col"] .work-box::after {
    position: absolute;
    counter-increment: work;
    content: counter(work);
    top: -72px;
    right: 25px;
    font-size: 72px;
    font-family: var(--h-font);
    color: var(--main-color);
    opacity: 0.15;
    z-index: -1;
    font-weight: 700;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.work-wrapper div[class*="col"]:hover .work-box::after {
    opacity: 1;
    top: -86px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-slider .slick-list {
    margin: -10px;
}
.testimonial-slider .single-slide {
    padding: 10px;
}

.testimonial-box .content {
    padding: 25px 25px 60px 25px;
    background-color: var(--body-bg);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: inset 0 0px 20px #d77600c4;
    text-align: center;
}
.testimonial-box .content p {
    margin-bottom: 0;
}
.testimonial-box .content p i {
    font-size: 22px;
    color: var(--main-color);
}
.testimonial-box .client {
    text-align: center;
    margin-top: -45px;
}
.testimonial-box .thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 12px solid var(--secondary-color);
    margin-left: auto;
    margin-right: auto;
}
.testimonial-box .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}
.testimonial-box .title {
    font-size: 20px;
}
.testimonial-box .designation {
    color: var(--main-color);
}

.testimonial-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.testimonial-slider .slick-dots li {
    margin: 3px;
}
.testimonial-slider .slick-dots li button {
    font-size: 0;
    padding: 0;
    border: none;
    background-color: rgba(255,255,255,0.15);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.testimonial-slider .slick-dots li.slick-active button {
    width: 35px;
    background-color: var(--main-color);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

/* table css start */
.cmn-table {
    border: none;
}
.cmn-table thead th {
    font-size: 14px;
    color: var(--body-bg);
    background-color: var(--main-color);
    border: none;
    text-align: center;
    padding: 10px 20px;
}
.cmn-table thead th:first-child {
    border-radius: 8px 0 0 0;
    text-align: left;
}
.cmn-table thead th:last-child {
    border-radius: 0 8px 0 0;
    text-align: right;
}
.cmn-table tbody tr {
    background-color: var(--secondary-color);
}
.cmn-table tbody td {
    border-top: none;
    border-bottom: 1px solid #000;
    text-align: center;
    vertical-align: middle;
    padding: 15px 20px;
    color: #fff;
}
.cmn-table tbody td:first-child {
    text-align: left;
}
.cmn-table tbody td:last-child {
    text-align: right;
}
.cmn-table tbody tr:last-child td {
    border-bottom: none;
}

.cmn-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -ms-border-radius: 0 0 0 5px;
    -o-border-radius: 0 0 0 5px;
}
.cmn-table tbody tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
    -webkit-border-radius: 0 0 5px 0;
    -moz-border-radius: 0 0 5px 0;
    -ms-border-radius: 0 0 5px 0;
    -o-border-radius: 0 0 5px 0;
}

.table>:not(:first-child) {
    border-top: none;
}
.view-btn {
    width: 30px;
    height: 30px;
    background-color: #6777ef47;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #6777ef !important;
    border: 1px solid #6777ef;
    font-size: 14px;
    transition: all 0.3s;
}
.view-btn:hover {
    background-color: #6777ef;
    color: #fff !important;
}

.cmn-table.style-separate {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.cmn-table.style-separate tbody tr {
    box-shadow: inset 0 0px 8px #d776004d;
    
}
.cmn-table.style-separate thead tr th:first-child {
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}
.cmn-table.style-separate thead tr th:last-child {
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
}
.cmn-table.style-separate tbody tr {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

td[data-caption] {
    position: relative;
}
td[data-caption]::before {
    position: absolute;
    content: attr(data-caption);
    font-size: 14px;
    color: #849bab;
    font-weight: 600;
    top: 11px;
    left: 0;
    display: none;
}
@media (max-width: 991px) {
    .cmn-table thead {
        display: none;
    }

    .cmn-table tbody tr {
        padding: 10px;
        display: block;
    }

    .cmn-table tbody tr:nth-child(odd) {
        background-color: #f7f7f70d;
    }
    .cmn-table tbody tr:nth-child(even) {
        background-color: var(--secondary-color);
    }

    .cmn-table tr td {
        display: block;
        text-align: right !important;
        padding: 10px 0 10px 40%;
    }
    .cmn-table tr td {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .cmn-table tr td:last-child {
        border-bottom: none !important;
    }
    td[data-caption]::before {
        display: block;
        width: 40%;
        text-align: left;
    }
    .cmn-table.style-separate tbody tr + tr {
        margin-top: 15px;
    }
}

.nav-pills.has-two {
    display: inline-flex;
    border: 1px solid var(--main-color);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    overflow: hidden;
}
.nav-pills.has-two .nav-item .nav-link {
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 12px 20px;
}
.nav-pills.has-two .nav-item .nav-link.active {
    background-color: var(--main-color);
    color: #000;
}
/* table css end */


/* button css start */
.btn-group {
    margin: -3px;
}
.btn-group [class*="btn"] {
    margin: 3px;
}

.btn {
    padding: 10px 30px;
}

.btn-primary {
    background-color: #6777ef;
    border-color: #6777ef;
}
.btn-primary:hover {
    background-color: #4759df;
    border-color: #4759df;
}

.btn-info {
    background-color: #0bb2d4;
    border-color: #0bb2d4;
}
.btn-info:hover {
    background-color: #0a9ebc;
    border-color: #0a9ebc;
}

.btn-warning {
    background-color: #eb6709;
    border-color: #eb6709;
}
.btn-warning:hover {
    background-color: #dd6008;
    border-color: #dd6008;
}

.btn-danger {
    background-color: #ff4c52;
    border-color: #ff4c52;
}
.btn-danger:hover {
    background-color: #f63d43;
    border-color: #f63d43;
}

.btn-success {
    background-color: #11c26d;
    border-color: #11c26d;
}
.btn-success:hover {
    background-color: #0da65c;
    border-color: #0da65c;
}

.view-btn {
    width: 30px;
    height: 30px;
    background-color: #6777ef47;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #6777ef !important;
    border: 1px solid #6777ef;
    font-size: 14px;
    transition: all 0.3s;
}
.view-btn:hover {
    background-color: #6777ef;
    color: #fff !important;
}

.view-btn-primary {
    color: #6777ef !important;
    border: 1px solid #6777ef;
    background-color: #6777ef47;
}
.view-btn-primary:hover {
    background-color: #6777ef;
}

.view-btn-info {
    color: #0bb2d4 !important;
    border: 1px solid #0bb2d4;
    background-color: #0bb2d447;
}
.view-btn-info:hover {
    background-color: #0bb2d4;
}

.view-btn-warning {
    color: #eb6709 !important;
    border: 1px solid #eb6709;
    background-color: #eb670947;
}
.view-btn-warning:hover {
    background-color: #eb6709;
}

.view-btn-danger {
    color: #ff4c52 !important;
    border: 1px solid #ff4c52;
    background-color: #ff4c5247;
}
.view-btn-danger:hover {
    background-color: #ff4c52;
}

.view-btn-success {
    color: #11c26d !important;
    border: 1px solid #11c26d;
    background-color: #11c26d47;
}
.view-btn-success:hover {
    background-color: #11c26d;
}
.tab-btn-group {
    display: inline-flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 20px;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}
.tab-btn.active {
    border-color: var(--main-color);
    color: var(--main-color);
}

.tab-btn .num {
    padding: 3px 5px;
    background-color: var(--main-color);
    color: var(--body-bg);
    font-size: 14px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    line-height: 1;
}

.cookie-modal {
    background-color: var(--secondary-color) !important;
    border: 2px solid rgba(255,255,255,0.1);
}
.cookie-modal button,
.cookies-card__icon {
    background-color: var(--main-color) !important;
}

input[type="file"].form-control {
    line-height: 37px;
    padding: 6px 12px;
}
/* button css end */

/* modal css start */
.modal-content {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-content .close {
    background-color: #ff4c52;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border: none;
}
.list-group-item {
    background-color: var(--body-bg);
    border: 1px solid rgba(255,255,255,0.05);
}
.modal-header,
.modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}
.modal-open,
.modal-open #header {
    padding-right: 0px !important;
}
.modal-open {
    overflow: auto !important;
}
.card {
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.card-header,
.card-footer {
    padding: 15px 20px;
    border-color: rgba(255,255,255,0.05);
}
.card-body {
    padding: 15px 20px;
}
.bg-body {
    background-color: var(--body-bg) !important;
}
.bg-second {
    background-color: var(--secondary-color) !important;
}
.bg-main {
    background-color: var(--main-color);
}

.instruction * {
    color: #fff !important;
}

.payment-box {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-color);
}
.payment-box-content {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -ms-border-radius: 0 0 8px 8px;
    -o-border-radius: 0 0 8px 8px;
}
/* modal css end */


/* badge css start */
.badge {
    padding: 0 0 0 15px;
    position: relative;
    color: #052554;
    background-color: transparent;
    font-size: 14px;
}
.badge::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #052554;
    border-radius: 50%;
    margin-top: -5px;
}

.badge-primary {
    color: #6777EF;
}
.badge-primary::before {
    background-color: #6777EF;
}

.badge-info {
    color: #0bb2d4;
}
.badge-info::before {
    background-color: #0bb2d4;
}

.badge-warning {
    color: #eb6709;
}
.badge-warning::before {
    background-color: #eb6709;
}

.badge-danger {
    color: #ff4c52;
}
.badge-danger::before {
    background-color: #ff4c52;
}

.badge-success {
    color: #11c26d;
}
.badge-success::before {
    background-color: #11c26d;
}

.single-reply {
    padding: 25px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.single-reply + .single-reply {
    margin-top: 20px;
}

.single-reply.admin-reply {
    position: relative;
}
.single-reply.admin-reply::before {
    position: absolute;
    content: 'Admin Reply';
    top: 0;
    right: 0;
    padding: 0px 7px 0 18px;
    background-color: var(--main-color);
    color: var(--body-bg);
    font-size: 12px;
    -webkit-clip-path: polygon(100% 0%, 100% 51%, 100% 100%, 0 100%, 15% 50%, 0 0);
    clip-path: polygon(100% 0%, 100% 51%, 100% 100%, 0 100%, 15% 50%, 0 0);
}
/* badge css end */


/* affiliate css start */
.referral-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 55px;
    margin-bottom: 45px;
    justify-content: center;
}
.referral-box {
    width: 15%;
    padding: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    margin-bottom: 45px;
}
.referral-box:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}
.referral-box::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: inset 0 0px 20px #d77600c4;
}
.referral-box::after {
    position: absolute;
    content: '';
    top: 50%;
    left: calc(50% - 15px);
    width: 170px;
    height: 170px;
    background-color: var(--body-bg);
    z-index: -2;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.referral-box-step {
    position: absolute;
    top: -58px;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border: 5px solid var(--body-bg);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    box-shadow: inset 0 0px 6px #d776009e;
    color: var(--main-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.referral-box:hover .referral-box-step {
    box-shadow: inset 0 0px 100px var(--main-color);
    color: #fff;
}
.referral-box-percentage {
    font-size: 48px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0;
    color: var(--main-color);
    line-height: 1;
}
/* affiliate css end */


/* blog section css start */
.blog-box {
    padding: 10px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.section-bg .blog-box {
    background-color: var(--body-bg);
}
.blog-box-thumb {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    height: 225px;
}
.blog-box-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.blog-category {
    font-size: 14px;
    padding: 2px 15px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    transform: translateY(-23px);
    -webkit-transform: translateY(-23px);
    -moz-transform: translateY(-23px);
    -ms-transform: translateY(-23px);
    -o-transform: translateY(-23px);
}

.blog-box-content {
    padding: 10px;
}
.blog-box-content .title {
    font-size: 24px;
    color: #fff;
}
.blog-box-content .title a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -15px;
}
.blog-meta li {
    padding: 3px 15px;
    display: flex;
    align-items: center;
}
.blog-meta li i {
    margin-right: 5px;
    color: var(--main-color);
}

.side-blog {
    display: flex;
    flex-wrap: wrap;
}
.side-blog + .side-blog {
    margin-top: 20px;
}
.side-blog-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
}
.side-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.side-blog-content {
    width: calc(100% - 80px);
    padding-left: 20px;
}
/* blog section css end */


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.map-area {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.map-area iframe {
    height: 500px;
    width: 100%;
}

@media (max-width: 991px) {
    .map-area iframe {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .map-area iframe {
        height: 300px;
    }
}

.contact-info-box {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    text-align: center;
    height: 100%;
}
.contact-info-box-icon {
    width: 90px;
    height: 90px;
    background-color: var(--main-color);
    color: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.contact-info-box-icon i {
    font-size: 28px;
}
.contact-info-box-content {
    margin-top: 30px;
}

/* NewsLetter */

#sub {
    height: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #3d3d3d !important;
    border-radius: 8px;
    color: #fff;
    width: 240px;
}

.btn-sub {
    width: 110px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    outline: none;
    background: #FF8E06!important;
    color: #fff!important;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    border-radius: 10px;
    margin-left: 10px;
}


/* .btn-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #f5a508;
    z-index: -1;
    transition: all 0.5s;
} */


/* .btn-sub:hover::before {
    width: 100%;
} */

.btn-sub:hover {
    color: black;
    background: #FF8E06!important;
}


/* .btn-sub:active:before {
    background: #b9b9b9;
} */

@media screen and (max-width:576px) {
    .button-form {
        display: flex;
    }
    .email-newsletter {
        margin-top: 0px!important;
    }
    .button-form #sub {
        min-width: 179px!important;
    }
}

@media screen and (min-width:768px) {
    .button-form #sub {
        min-width: 299px!important;
    }
}


/* faq */
.accordion-item {
    background-color: var(--body-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.accordion-button {
    background-color: var(--body-bg);
    color: #fff;
    font-size: 18px;
    position: relative;
}
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}
.accordion-button::after, 
.accordion-button:not(.collapsed)::after {
    background-image: none;
}
.accordion-button:not(.collapsed) {
    background-color: var(--main-color);
    color: #fff;
}

.accordion-button::after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 10px;
    right: 10px;
    width: 27px;
    height: 30px;
    -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.accordion-button:not(.collapsed)::after {
    background-color: var(--body-bg);
}

/*------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    background-size: cover;
    background-position: center;
    padding-top: 150px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}
.breadcrumbs::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    opacity: 0.65;
    z-index: -1;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #ffc451;
    content: "/";
}

@media (max-width: 991px) {
    .breadcrumbs {
        padding-top: 150px;
    }
    .breadcrumbs .d-flex {
        display: block !important;
        text-align: center;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/* auth section css start */
.auth-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}
.auth-wrapper {
    min-height: 100vh;
    width: 650px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 30px 70px;
    position: relative;
    z-index: 1;
}
.auth-wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    z-index: -1;
}

.auth-top-part {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.auth-logo img {
    max-width: 175px;
    max-height: 65px;
}
.auth-body-part {
    padding: 50px 0;
}

.auth-thumb-area {
    min-height: 100vh;
    padding: 50px;
    width: calc(100% - 650px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
}
.auth-thumb img {
    max-height: 750px;
}
.auth-section-two .auth-wrapper {
    width: 750px;
    padding: 30px 50px;
}
.auth-section-two .auth-thumb-area {
    width: calc(100% - 750px);
}
/* auth section css end */


/* user dashboard */
ul {
    list-style: none;
    padding: 0;
}
.d-box-one {
    background-color: var(--main-color);
    padding: 30px 100px 30px 30px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.d-box-one::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.1;
    z-index: -1;
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 50% 100%);
}
.d-box-one .d-box-one-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.d-box-one .d-box-one-icon i {
    font-size: 54px;
    line-height: 1;
    color: #fff;
    margin-top: 45px;
}
.d-box-one .caption-title {
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
}
.d-box-one-amount {
    margin-bottom: 0;
    padding: 25px 20px 25px 0;
    position: relative;
    z-index: 1;
}
.d-box-one-amount::before {
    position: absolute;
    content: '';
    top: 0;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    border-radius: 0 999px 999px 0;
    -webkit-border-radius: 0 999px 999px 0;
    -moz-border-radius: 0 999px 999px 0;
    -ms-border-radius: 0 999px 999px 0;
    -o-border-radius: 0 999px 999px 0;
}

.d-box-two {
    position: relative;
    padding: 30px 20px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.d-box-two:hover {
    border-color: var(--main-color);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}
.d-box-two::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 20%, 70% 100%, 100% 100%);
    background-color: var(--main-color);
    z-index: -1;
    bottom: 0;
    right: 0;
}
.d-box-two .link-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.d-box-two-amount {
    font-size: 22px;
}
.d-box-two-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.d-box-two-icon i {
    font-size: 24px;
    line-height: 1;
    color: #fff;
}
.text-small {
    font-size: 14px;
}
.d-sidebar {
    padding: 20px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    position: sticky;
    top: 100px;
}
.d-sidebar::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: -1;
    background-color: var(--main-color);
}

.d-sidebar-auth .thumb {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
}
.d-sidebar-auth .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.d-sidebar-menu li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.d-sidebar-menu li:last-child a { 
    border-bottom: none;
    padding-bottom: 0;
}
.d-sidebar-menu li.active a {
    color: var(--main-color);
}
.d-sidebar-menu li a i {
    margin-right: 5px;
}

.d-plan-notice {
    padding: 15px;
    background-color: var(--body-bg);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
}

.d-plan-notice p,
.d-plan-notice a {
    font-size: 14px;
}
.d-plan-notice a {
    color: var(--main-color);
}


/* footer css start */
.footer-section {
    position: relative;
    z-index: 1;
    margin-top: auto;
}
.footer-top {
    padding: 100px 0;
    position: relative;
    background-color: var(--secondary-color);
    z-index: 1;
}
.map-el {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -1;
}
.map-el img {
    max-height: 300px;
}
.footer-bottom {
    padding: 25px 0;
    background-color: var(--body-bg);
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    margin: -3px -5px;
}
.social-links li {
    padding: 3px 5px;
}
.social-links li a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.social-links li a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}
.footer-box .title {
    margin-bottom: 25px;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-box .title::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--main-color);
}
.footer-link-list li {
    position: relative;
    padding-left: 15px;
}
.footer-link-list li::before {
    position: absolute;
    content: "\f105";
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
}
.footer-link-list li:not(:first-child)::before {
    top: 5px;
}
.footer-link-list li a {
    padding: 5px 0;
}
.footer-link-list li:first-child a {
    padding-top: 0;
}
.footer-link-list li:last-child a {
    padding-bottom: 0;
}
/* footer css end */


.popup-search {
    width: 94%;
}

.popup-search-btn {
    height: 44px;
    margin-left: -38%;
    margin-top: -2px;
    background-color: #44c073;
    border: none;
    width: 36%;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 1px;
}

.form-wrapper {
    border-radius: 16px;
    background-color: #fff;
    z-index: 99;
}

.form-wrapper input {
    height: 48px;
}

.form-wrapper select {
    height: 48px;
}

.form-wrapper label {
    margin-bottom: 8px;
    color: #131533;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.f-btn {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    border: 2px solid #fff !important;
    border-radius: 40px !important;
    background-color: #2c71f0 !important;
    width: 100%;
    padding: 18px 40px;
    margin-top: 7px !important;
    color: #fff !important;
    transition: all 300ms ease;
}

.form-bg {
    position: absolute;
    left: 85%;
    top: 18%;
    transform: translateY(-50%);
    background-color: #0337cc;
    z-index: -4;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    border: 8px solid #fff;
}

.form-bg2 {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translateY(-50%);
    background-color: #03cca7;
    z-index: -4;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #fff;
}

.form-bg3 {
    position: absolute;
    left: 82%;
    top: 86%;
    transform: translateY(-50%);
    background-color: #f9a6f6;
    z-index: -4;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #fff;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .our-services {
        margin-top: 20px;
    }
    .location {
        margin-top: 23px!important;
    }
    .location-title {
        padding-bottom: 6px !important;
    }
    .useful-link {
        padding-bottom: 26px!important;
    }
}

@media (max-width: 767.98px) {
    .form-bg {
        display: none;
    }
    .form-bg2 {
        display: none;
    }
    .form-bg3 {
        display: none;
    }
    .footer-links {
        margin-top: 30px!important;
    }
    .our-services {
        margin-top: 0px!important;
    }
}

.text-justifys {
    text-align: justify;
    text-justify: inter-word;
}

.text-justifys span {
    color: #fff !important;
}

.card {
    background-color: #151515;
    position: relative;
    z-index: 1;
}

.card-hight {
    height: 500px;
}

.top {
    height: 42%;
    width: 100%;
    background-size: cover;
}

.category {
    background-color: #ffbb38;
    width: 50%;
    padding: 8px 0;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 800;
    opacity: 0.6;
}

.intro {
    text-align: justify;
    text-justify: inter-word;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.author {
    display: flex;
    align-items: center;
}

.profile {
    background-size: cover;
    background-position: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    margin: 10px 0 10px 22px;
}

.name {
    padding-left: 10px;
    cursor: pointer;
    font-weight: 300;
}

.name a {
    font-weight: 400;
    color: orange;
}

.info {
    display: flex;
    color: #999;
    font-size: 14px;
    margin-top: 8px;
    padding-left: 0;
}

.info a {
    cursor: pointer;
}

ion-icon {
    height: 20px;
    width: 20px;
    display: flex;
    padding: 10px 8px 0 22px;
}

.user-icon img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.user-icon {
    display: flex;
    align-items: center;
    vertical-align: bottom;
}

.user-icon h6 {
    margin-left: 10px;
    margin-bottom: 0;
}

.comment {
    margin-left: 38px;
    margin-top: 5px;
}

.header-dashboard {
    margin-right: 20px;
}


/* banner */

@media screen and (max-width: 1003px) {
    #hero .banner-calc-btn {
        /* padding: 55px 20px; */
        transition: ease-in-out 0.3s;
        height: 100%;
        text-align: left;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-top: 0px;
    }
    .banner-calc-box {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .triangle {
        display: none;
    }
    #hero h1 {
        font-size: 44px;
        line-height: 51px;
        padding: 24px 0;
    }
}

@media screen and (max-width:575px) {
    .faq-media {
        display: none;
    }
    .withdraw-ins{
        margin-top: 20px!important;
    }
}

.modal-footer{
    border-top: 0px!important;
}

/* responsive css start */
@media (max-width: 1800px) {
    .calculate-area .container {
        padding-left: 150px;
    }
}
@media (max-width: 1500px) {
    .calculate-area .container {
        padding-left: 280px;
    }
}
@media (max-width: 1399px) {
    .banner-title {
        font-size: 56px;
    }
    .overview-box-amount {
        font-size: 32px;
    }
    .banner-section {
        padding-top: 230px;
        padding-bottom: 180px;
    }
    .referral-box-percentage {
        font-size: 42px;
    }
}

@media (max-width: 1199px) {
    .calculate-area .container {
        padding-left: 150px;
    }
    .calculate-area .cmn-btn {
        padding: 12px 20px;
    }
    .feature-box .content .title {
        font-size: 24px;
    }
    .work-box {
        padding: 60px 25px 25px 25px;
    }
    .work-box .icon {
        top: -50px;
        left: 25px;
    }
    .work-box .content .title {
        font-size: 24px;
    }
    .work-wrapper {
        padding-left: 0;
    }
    .referral-box {
        width: 20%;
    }
    .subscribe-el {
        left: 0;
    }
    .auth-wrapper {
        width: 600px;
    }
    .auth-thumb-area {
        width: calc(100% - 600px);
    }
    .auth-thumb img {
        max-height: 550px;
    }
    .auth-section-two .auth-wrapper {
        width: 565px;
        padding: 30px;
    }
    .auth-section-two .auth-thumb-area {
        width: calc(100% - 565px);
    }
}

@media (max-width: 1150px) {
    .calculate-area::before,
    .calculate-area .calculator {
        display: none;
    }
    .calculate-area .container {
        padding-left: var(--bs-gutter-x,.75rem);
    }
}

@media (max-width: 991px) {
    .banner-section::before {
        opacity: 0.75;
    }
    #header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .banner-title {
        font-size: 48px;
    }
    .banner-section {
        padding-top: 180px;
        padding-bottom: 120px;
    }
    .about-thumb {
        margin-top: 30px;
        margin-bottom: 50px;
    }
    .referral-box {
        width: 25%;
    }
    .subscribe-el img {
        max-height: 265px;
    }
    .auth-wrapper {
        width: 400px;
        padding: 30px;
    }
    .auth-thumb-area {
        width: calc(100% - 400px);
    }
    .auth-thumb img {
        max-height: 400px;
    }
    .auth-section-two .auth-wrapper {
        width: 100%;
    }
    .auth-section-two .auth-thumb-area {
        display: none;
    }
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 36px;
    }
    .referral-box {
        width: 35%;
    }.subscribe-el img {
        max-height: 120px;
    }
    .auth-wrapper {
        width: 100%;
        padding: 30px;
    }
    .auth-thumb-area {
        display: none;
    }
}

@media (max-width: 575px) {
    .overview-box-amount {
        font-size: 24px;
    }
    .about-thumb img {
        max-height: 215px;
    }
    .referral-box {
        width: 100%;
    }
    .d-box-one {
        padding: 20px 50px 20px 20px;
    }
    .d-box-one .d-box-one-icon {
        width: 65px;
    }
    .d-box-one .d-box-one-icon i {
        font-size: 36px;
    }
    .tab-btn {
        padding: 10px;
    }
}

.social-links-btn{
    margin-right: 15px;
}
/* responsive css end */