@charset "utf-8";

/*
Owner: http://www.fxsources.com/
Design And Developed By Sweet Hasan Rajib(sweet27895@gmail.com)
*/


/*=========google-font==========*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300&display=swap');

/*****-----*****-----*****-----*****
    General CSS 
*****-----*****-----*****-----*****/

body {
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #5c5c5c;
    overflow-x: hidden;
    position: relative;
}

a {
    color: #F9BA06;
    text-decoration: none;
}


/* Custom Container */

@media (min-width: 1600px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
    }
}

.cust-pri-color {
    color: #F9BA06;
}


/* Common CSS */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cairo', sans-serif;
    color: #F9BA06;
    font-weight: bold;
    line-height: 1.3;
    text-transform: capitalize;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0;
    padding: 0;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:focus,
a:hover {
    color: #5c5c5c;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn:active,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(255 121 121 / 48%);
    color: white;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin: 0;
    padding: 0;
}

.broker-deatils-box ul li,
.footer-area ul li,
.pors-and-cons-row ul li {
    list-style-type: none;
}

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

.cust-shadow {
    box-shadow: 0 0rem 0.5rem rgb(0 0 0 / 15%) !important;
}


/* Form CSS */

.form-control {
    height: 45px;
    margin-bottom: 30px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border: 1px solid #ffcfcf;
}

.form-control:focus {
    border-color: #999999;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

::-webkit-input-placeholder {
    color: #333333 !important;
}

::-moz-placeholder {
    color: #333333 !important;
}

::-o-placeholder {
    color: #333333 !important;
}

:-ms-input-placeholder {
    color: #333333 !important;
}

input:-moz-placeholder {
    color: #333333 !important;
}

.subscribe-box ::-webkit-input-placeholder {
    color: #ffffff !important;
}

.subscribe-box ::-moz-placeholder {
    color: #ffffff !important;
}

.subscribe-box ::-o-placeholder {
    color: #ffffff !important;
}

.subscribe-box :-ms-input-placeholder {
    color: #ffffff !important;
}

.subscribe-box input:-moz-placeholder {
    color: #ffffff !important;
}

.section-default {
    padding: 30px 0 20px;
    position: relative;
}

.col-default {
    margin-bottom: 30px;
}

.dd {
    border: 1px solid #ffcfcf;
}

.ddlabel {
    color: #F9BA06;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #ffcfcf14;
}

.dd .ddTitle {
    background: #fffbfb;
}

.dd .divider {
    border: none;
}

.dd .ddChild li.selected {
    background-color: #ffcfcf14;
    color: #000;
}

.dd .ddChild li {
    background-color: #ffcfcf14;
    border-bottom: 1px solid #ffcfcf;
}

.dd .ddChild li .ddlabel {
    color: #a9a9a9;
}

.social svg {
    width: 25px;
    height: 25px;
    margin: 0 10px;
}


/* Btn CSS */


/* .theme-btn {
    min-width: 80px;
    color: #5c5c5c;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: transparent;
}

.theme-btn:hover {
    color: #ffffff;
    z-index: 1;
    background: transparent;
}

.theme-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 5px;
    background: #F9BA06;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.theme-btn:hover:before {
    height: 100%;
    z-index: -1;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-primary.focus,
.btn-primary:focus {
    background: #F9BA06;
    border-color: #F9BA06;
    box-shadow: none;
} */


/* Background Over Layer CSS */

.over-layer-black {
    position: relative;
}

.over-layer-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.over-layer-white {
    position: relative;
}

.over-layer-white:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.85);
}


/* Default Title CSS */

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 10px;
    position: relative;
    color: #F9BA06;
    /*display: inline;
    background-image: linear-gradient(rgba(255,117,41,1),rgba(255,117,41,1));
    background-size: .0625rem .3125rem;
    background-repeat: repeat-x;
    background-position: 0 78%;*/
    text-align: left;
}

.section-title p {
    margin-bottom: 0;
}


/* Back to top */

#back-to-top {
    position: fixed;
    bottom: -100%;
    right: 20px;
    z-index: 9999;
    /*width: 50px;
    height: 50px;*/
    text-align: center;
    font-size: 60px;
    /*background: #ff7529;*/
    color: #F9BA06;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#back-to-top.show {
    opacity: 1;
    bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* Banner CSS */

.left-banner {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 999;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.left-banner.scroll-to-fixed {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 99;
    opacity: 1;
    margin-top: -330px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.right-banner {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 999;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.right-banner.scroll-to-fixed {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 99;
    opacity: 1;
    margin-top: -330px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.right-banner a img,
.left-banner a img {
    border-radius: 10px;
}

.my-pagination .page-item.active .page-link {
    background-color: #F9BA06;
    border-color: #dee2e6;
}

.my-pagination ul li .page-link {
    color: #F9BA06;
    font-size: 24px;
}

.my-pagination ul li .page-link:hover {
    color: #ffffff;
    background: #F9BA06;
}


/* Vertical Move Animation */

.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes mover {
    0% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
}


/* Blinking Animation */

.blink {
    -webkit-animation: blink 2.0s linear infinite;
    -moz-animation: blink 2.0s linear infinite;
    -ms-animation: blink 2.0s linear infinite;
    -o-animation: blink 2.0s linear infinite;
    animation: blink 2.0s linear infinite;
}

@keyframes blink {
    50% {
        box-shadow: 0 0 0;
    }
}

@-webkit-keyframes blink {
    0% {
        box-shadow: 0 0 20px rgba(39, 12, 145, 0.7);
    }
    50% {
        box-shadow: 0 0 0;
    }
    100% {
        box-shadow: 0 0 20px rgba();
    }
}


/*****-----*****-----*****-----*****
   Header CSS
*****-----*****-----*****-----*****/

.header-area {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.header-area .container-fluid {
    padding: 12px 64px;
    background: #ffffff;
}

.header-logo {
    width: 250px;
}


/* Nav CSS */

.stellarnav ul {
    text-align: right;
}

.stellarnav>ul>li>a {
    color: darkgray!important;
    text-transform: capitalize;
    /* padding: 30px 18px; */
    position: relative;
    font-weight: 400;
    font-size: 18px;
}

.stellarnav>ul>li>a {
    padding: 12px 24px;
}

.stellarnav>ul>li>a:hover {
    color: #F9BA06 !important;
}

.stellarnav>ul>li>a.active {
    color: #F9BA06 !important;
}

.stellarnav>ul>li:last-child a {
    padding-right: 0;
}

.stellarnav.light {
    background: transparent;
}

.stellarnav>ul>li.active>a {
    border-bottom-color: #F9BA06 !important;
}

.stellarnav ul ul {
    border-radius: 0;
    border: 1px solid #F9BA06;
    border-top: 2px solid #F9BA06;
}

.stellarnav ul li ul li a {
    padding: 12px 15px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    text-transform: capitalize;
}

.stellarnav ul li ul li a:hover {
    padding-left: 20px;
    color: #F9BA06;
    background: darkgray;
}

.stellarnav ul li ul li:last-child a {
    border-bottom: none;
}

.stellarnav.light a,
.stellarnav.light li a {
    color: #333333;
}


/* NavBar Fixed CSS */

.top-nav-collapse {
    background: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.top-nav-collapse .navbar-nav {
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


/*****-----*****-----*****-----*****
    Featured CSS
*****-----*****-----*****-----*****/

.featured-area {
    padding: 140px 0 20px;
    background: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featured-area .center-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.featured-area .center-box-content {
    text-align: left;
    display: block;
}

.featured-col .section-title h2 {
    color: #5c5c5c;
}

.fea-area-row-two {
    padding: 15px 0px;
    border-radius: 8px;
}

.cust-fea-small-box-blog-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #202020;  
}
.cust-fea-small-box-blog-title a h6  {
    color: #fff;
    display: block;
    padding: 8px 14px;
}
.cust-fea-small-box:hover .cust-fea-small-box-blog-title a h6 {
    color: #F9BA06;
}

.cust-fea-col {
    width: 100%;
    gap: 16px;
}

.cust-fea-small-box,
.featured-col .unique-post-card {
    width: 24%;
}

.view-all-button {
    text-align: right;
}

.view-all-button .theme-btn {
    border: 1px solid #F9BA06;
}

.view-all-button .theme-btn:hover {
    background: #F9BA06;
}

.featured-area .view-all-button .theme-btn {
    color: #ffffff;
    border: 1px solid #F9BA06;
}

.featured-area .view-all-button .theme-btn {
    background: #F9BA06;
}

.logo-box {
    width: 100%;
    height: auto;
    /* background: #fff; */
    position: relative;
}

.text-content {
    padding: 30px 30px;
    background: #ffffff;
}

.text-content h4 {
    text-transform: inherit;
}

.text-content h4 a {
    color: #F9BA06;
    text-transform: inherit;
}

.text-content h2 {
    margin-bottom: 20px;
    text-transform: capitalize;
}

.featured-small-box {
    position: relative;
    background: #ffffff;
    /* margin-bottom: 15px; */
}

.featured-small-box .logo-box {
    width: 100%;
    min-height: 100%;
}

.featured-small-box .logo-box img {
    width: 100%;
}

.featured-small-box .text-content {
    padding: 20px 15px;
}

.center-box-content .blog-details-side-image {
    width: 100%;
    text-align: right;
}

.featured-small-box .text-content h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
}

.featured-small-box .text-content h2 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5c5c5c;
}

.featured-small-box .rating-circle {
    width: 100%;
    height: 80px;
    /* left: 0px; */
    /* top: 0px; */
    /* padding: 0px 20px; */
}

.featured-small-box .rating-circle span {
    font-size: 16px;
    /* float: left; */
}

.featured-small-box .rating-circle h4 {
    font-size: 16px;
    line-height: 32px;
    /* float: right; */
}

.rating-circle .button_1 {
    font-size: 14px;
    padding: 0 6px;
}

.rating-circle .broker-name:hover {
    color: #F9BA06;
    text-decoration: underline;
}

.dis-block-991 {
    display: none;
}

.middle-content {
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.button_1 {
    background: #F9BA06;
    color: white;
    overflow: hidden;
    padding: 6px;
    border-radius: 0.25rem !important;
}


/* Push */

@keyframes button_1 {
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

.button_1 {
    display: inline-block;
}

.button_1:hover {
    animation-name: button_1;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    color: white;
}


/*****-----*****-----*****-----*****
    Broker Companies CSS Start
*****-----*****-----*****-----*****/

.broker-companies-area {
    padding: 10px 0;
}

.broker-companies-col {
    background: #ffffff;
    -webkit-box-shadow: 0 10px 15px rgb(39 12 145 / 15%);
    box-shadow: 0 10px 15px rgb(39 12 145 / 15%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #5c5c5c38;
    border-radius: 5px ! important;
    overflow: hidden;
}

.broker-companies-col:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #5c5c5c1c;
}

.broker-companies-col .image {
    border-bottom: 2px solid #dbdbdb;
}

.broker-companies-logo {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
    border: none !important;
}

.broker-companies-logo img {
    padding: 0;
}

.rating-circle {
    position: absolute;
    /* left: 20px; */
    /* top: 20px; */
    z-index: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    /* padding-top: 25px; */
    bottom: 0;
}

.broker-companies-logo .rating-circle {
    width: 60px;
    height: 50px;
    top: 15px;
    left: 15px;
    padding-top: 0px;
}

.rating-circle span {
    color: #ffffff;
}

.rating-circle h4 {
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 15px;
}

.broker-companies-logo .rating-circle span {
    font-size: 13px;
    line-height: 18px;
}

.broker-companies-content {
    padding: 15px 15px;
    padding-bottom: 20px;
    /* border: 1px solid transparent; */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.brokar-company-reting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.brokar-company-reting a:hover {
    color: #F9BA06;
    /* text-decoration: underline;
    text-decoration-thickness: 1px; */
}

.broker-companies-col:hover .broker-companies-content {
    /* border: 1px solid #dddddd;
    border-top: 1px solid transparent; */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.broker-companies-content span a {
    font-weight: bold;
    color: #fff;
}

.broker-companies-content p {
    margin-top: 5px;
    height: auto;
    font-size: 16px;
    text-transform: uppercase;
}

.broker-companies-content .theme-btn {
    text-align: center;
    margin-top: 10px;
}

.broker-companies-area .center-box-content {
    text-align: center;
    display: block;
    transition: .4s;
    position: relative;
    /* z-index: 2; */
}

.broker-companies-logo .image {
    border-radius: 0 ! important;
}


/* .broker-companies-logo:hover .center-box-content {
    transform: translateY(0%);
} */


/* my-cards-starts */

.unique-post-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    border: 1px solid #dbdbdb;
    overflow: hidden;
}

.unique-post-card .image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.unique-post-card .image img {
    width: 100%;
    transition: .5s;
    transition-delay: .1s;
}

.unique-post-card:hover .image img {
    opacity: .7;
    transform: translateY(20%);
}

.blog-col .image {
    border-radius: 0;
}

.unique-post-card .details {
    position: absolute;
    width: 100%;
    /* top: 0;
    left: 0;  
    height: 100%; */
    transition: .5s;
    transform-origin: top;
    transform: perspective(1500px) rotateX(-90deg);
    background: #202020;
    z-index: 1;
}

.unique-post-card:hover .details {
    transform: perspective(1500px) rotateX(0deg);
}

.unique-post-card:hover {
    overflow: hidden;
}

.unique-post-card .details .center {
    /* width: 100%; */
    text-align: center;
    /* background: aliceblue; */
    /* position: absolute;
    bottom: 0; */
    /* border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px; */
}

.unique-post-card .cus-det {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* my-cards-ends */


/*****-----*****-----*****-----*****
     User Reviews CSS Start
*****-----*****-----*****-----*****/

.user-reviews-area {
    background-repeat: repeat;
    position: relative;
    padding: 0;
}

.user-reviews-box {
    min-height: 330px;
    border: 8px solid #F9BA06;
    border-radius: 10px;
    margin: 0 30px 30px 30px;
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    justify-content: center;
    align-items: center;
}

.cust-review-rate-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-quote {
    font-size: 30px;
    color: #F9BA06;
    position: absolute;
    top: -15px;
    left: -30px;
}

.user-reviews-col .user-img-box {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.user-reviews-col .user-img-box img {
    width: 80px;
    height: 80px;
    border: 3px solid #F9BA06;
    border-radius: 5px;
}


/* .user-reviews-col .user-img-box ul {
    position: absolute;
    left: 100px;
    top: 25px;
    z-index: 0;
} */

.user-reviews-col .user-img-box ul li {
    display: inline-block;
    margin-right: 5px;
}

.user-reviews-col .user-img-box ul li a i {
    color: #F9BA06;
}

.user-reviews-col .name-bar {
    margin-bottom: 10px;
    text-align: center;
}

.user-reviews-col .name-bar p span {
    font-weight: bold;
}

.user-reviews-col .name-bar p a {
    color: #F9BA06;
}

.user-reviews-col .owl-controls {
    /* position: absolute;
    top: -75px;
    right: 0px;
    z-index: 0; */
    margin-top: 30px;
}

.user-reviews-col .owl-theme .owl-nav {
    margin-top: 0 !important;
}

.owl-theme .owl-nav [class*=owl-] {
    padding: 0;
    border: 2px #F9BA06 solid;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #F9BA06;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-theme .owl-nav [class*=owl-] i {
    font-size: 24px;
    color: #F9BA06;
    line-height: 37px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-theme .owl-nav [class*=owl-]:hover i {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.user-reviews-man-img {
    position: absolute;
    right: 100px;
    bottom: 0;
    z-index: 0;
    width: 550px;
}


/*****-----*****-----*****-----*****
    Awards CSS Start
*****-----*****-----*****-----*****/

.awards-col {
    background: #F6F6F6;
    padding: 20px 20px;
    min-height: 300px;
    position: relative;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 10px 15px rgba(39, 12, 145, 0.25);
    box-shadow: 0 10px 15px rgba(39, 12, 145, 0.25);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.awards-col:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ffffff;
    border-color: #dddddd;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.awards-col h4 {
    letter-spacing: 0.5px;
    position: absolute;
    left: -120px;
    bottom: 120px;
    z-index: 0;
    min-width: 300px;
    padding: 15px 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: #ffffff;
    border-top: 5px solid #F9BA06;
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.awards-col-content {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 0;
    margin-left: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.awards-col-content img {
    padding: 0 10px;
}

.awards-col .rating-circle {
    left: auto;
    right: 20px;
    top: 20px;
    width: 70px;
    height: 70px;
    text-align: center;
    padding-top: 8px;
}

.awards-col .rating-circle span {
    font-size: 13px;
    line-height: 18px;
}

.awards-col .rating-circle h5 {
    color: #ffffff;
    font-size: 24px;
    line-height: 24px;
}


/*****-----*****-----*****-----*****
    Interviews CSS Start
*****-----*****-----*****-----**
.interviews-area {
    background-repeat: repeat;
    background-color: #F6F6F6;
    position: relative;
}
.interviews-col {
    position: relative;
}
.interviews-img {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.interviews-img img {
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.interviews-col:hover .interviews-img img {
    -ms-transform: scale(1.1); 
    transform: scale(1.1); 
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.interviews-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    background: rgba(0,0,0,0.8);
    padding: 10px 20px;
    border-left: 5px solid #F9BA06;
}
.interviews-content span {
    text-transform: capitalize;
    color: #ffffff;
    color: #F9BA06;
}
.interviews-content h4 {
    font-weight: 500;
    color: #ffffff;
    font-size: 20px;
}

***/


/*****-----*****-----*****-----*****
    Blog CSS Start
*****-----*****-----*****-----*****/

.blog-col {
    -webkit-box-shadow: 0 10px 15px rgb(39 12 145 / 15%);
    box-shadow: 0 10px 15px rgb(39 12 145 / 15%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #dbdbdb;
}

.blog-col:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #fff;
}

.blog-img {
    overflow: hidden;
    position: relative;
}

.unique-post-card:hover .blog-img a img {
    opacity: .7;
    transform: translateY(20%);
    transition-delay: .1s;
}

.blog-img img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-col:hover .blog-img img {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-col-content {
    background: #ffffff;
    padding: 15px;
    border: 1px solid transparent;
    border-top: none;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-col:hover .blog-col-content {
    background: #ffffff;
    border-color: #dddddd;
    border-top: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-col-content h4 {
    margin-bottom: 10px;
}

.blog-col-content h4 a {
    color: #222222;
    font-size: 20px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.blog-col-content h4 a:hover {
    color: #F9BA06;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.blog-col-content ul {
    margin: 0;
    padding: 0;
}

.blog-col-content ul li {
    display: inline-block;
    margin-right: 20px;
}

.blog-col-content ul li i {
    margin-right: 8px;
    color: #F9BA06;
}

.blog-col-content ul li a {
    color: #333333;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-size: 15px;
}

.blog-col-content ul li a:hover {
    color: #F9BA06;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.blog-col-content p {
    margin: 0;
}

.blog-lastest-content {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    padding: 15px;
    width: 100%;
}

.main-blog-heighl {
    margin: 20px 0;
    font-size: 18px;
    line-height: 36px;
    font-family: 'Cairo';
    letter-spacing: 0.5px;
    color: #5c5c5c;
}

.blog-lastest-content h2 a {
    color: #fff;
    font-size: 30px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.blog-lastest-content h4 a:hover,
.blog-lastest-content h2 a:hover,
.blog-lastest-side h5 a:hover {
    color: #F9BA06;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.blog-lastest-content ul {
    margin: 0;
    padding: 0;
}

.blog-lastest-content ul li {
    display: inline-block;
    margin-right: 20px;
}

.blog-lastest-content ul li i {
    margin-right: 8px;
    color: #fff;
}

.blog-lastest-content ul li span {
    color: #fff;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-size: 16px;
    cursor:pointer;
}

.blog-lastest-content ul li span:hover {
    color: #F9BA06;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.blog-lastest-side {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    padding: 7px;
    width: 100%;
}

.blog-lastest-side h5 {
    color: #fff;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.blog-lastest-side h5 a {
    color: #fff;
    font-size: 15px;
}

.blog-lastest-side ul {
    margin: 0;
    padding: 0;
}

.blog-lastest-side ul li {
    display: inline-block;
    margin-right: 15px;
}

.blog-lastest-side ul li i {
    margin-right: 8px;
    color: #fff;
}

.blog-lastest-side ul li span {
    color: #fff;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-size: 13px;
    cursor:pointer;
}

.blog-lastest-side ul li span:hover {
    color: #F9BA06;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.blog-lastest-content p {
    margin-top: 10px;
    margin-bottom: 15px;
}

.all-blog-title {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    padding: 18px 12px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.all-blog-title h4 {
    color: #fff;
    font-size: 20px;
    margin: 5px 0;
    padding: 0;
}

.all-blog-title h4 a {
    color: #fff;
}

.all-blog-title ul {
    margin: 0;
    padding: 0;
}

.all-blog-title ul li {
    display: inline-block;
    margin-right: 15px;
}

.all-blog-title ul li i {
    margin-right: 8px;
    color: #F9BA06;
}

.all-blog-title ul li span {
    color: #fff;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-size: 16px;
    cursor:pointer;
}

.all-blog-title ul li span:hover {
    color: #F9BA06;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.all-blog-title p {
    margin-top: 10px;
    margin-bottom: 15px;
}


/* Blog Details CSS    -----Latest News------ */

.blog-details-area {
    padding: 10px 0 0 0px;
}

.blog-details-col {
    padding: 20px;
}

.blog-details-col h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.blog-details-col p {
    margin-bottom: 20px;
}

.blog-share-links {
    margin-top: 30px;
}

.blog-share-links ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 24px;
}

.blog-share-links ul li a i {
    color: #F9BA06;
}

.blog-sidebar {
    padding: 12px 18px 0;
    position: sticky;
    top: 90px;
}

.blog-sidebar ul li {
    position: relative;
    min-height: 100px;
    padding-left: 90px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.blog-sidebar ul li:last-child {
    border-bottom: none;
}

.blog-sidebar ul li img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.blog-sidebar ul li a {
    color: #444444;
}

.blog-sidebar ul li a:hover {
    color: #F9BA06;
}

.blog-sidebar ul li p {
    color: #999999;
}

.post-links {
    border-top: 1px solid #dddddd;
    padding-top: 50px;
    margin-top: 50px;
}

.post-links .post-links-col {
    margin-bottom: 10px;
}

.post-links .post-links-col .theme-btn {
    margin-bottom: 10px;
}

.post-links .post-links-col.next-post {
    float: right;
}

.post-info {
    margin-bottom: 20px;
}

.post-info li {
    display: inline-block;
    margin-right: 20px;
}

.post-info li i {
    color: #F9BA06;
    margin-right: 5px;
}

.post-info li span {
    color: #999999;
    cursor:pointer;
}

.blog-details-area .center-box-content {
    text-align: center;
    display: block;
}


/* .blog-sidebar .featured-small-box .details {
    transform: perspective(1500px) rotateX( 0deg);
} */

.blog-sidebar .featured-small-box .image img {
    opacity: 1;
    transform: translateY(0%);
}

.blog-sidebar .featured-small-box .details {
    background: #202020c4;
    backdrop-filter: blur(4px);
}


/*****-----*****-----*****-----*****
    Subscribe CSS Start
*****-----*****-----*****-----*****/

.add-col img {
    background-color: #ccc;
    animation: glow .5s infinite alternate;
    width: 970px;
}

@keyframes glow {
    0% {
        box-shadow: 0px 0px 20px 0px rgba(115, 103, 240, 0);
        -webkit-box-shadow: 0px 0px 20px 0px rgba(115, 103, 240, 0);
        -moz-box-shadow: 0px 0px 20px 0px rgba(115, 103, 240, 0);
    }
    100% {
        box-shadow: 0px 0px 20px -1px rgba(115, 103, 240, 0.51);
        -webkit-box-shadow: 0px 0px 20px -1px rgba(115, 103, 240, 0.51);
        -moz-box-shadow: 0px 0px 20px -1px rgba(115, 103, 240, 0.51);
    }
}

.subscribe-area {
    padding: 50px 0 110px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed;*/
    position: relative;
    background-color: #ffffff;
}

.subscribe-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.subscribe-box .form-control {
    height: 50px;
    background: #343a40;
    border: 1px solid;
    color: #5c5c5c;
}

.subscribe-box .input-group .btn {
    height: 50px;
    background: #F9BA06;
    color: #fff;
    margin-left: -1px;
    position: relative;
    z-index: 1;
    width: 120px;
    text-transform: uppercase;
}

.subscribe-box {
    text-align: center;
}

.subscribe-box h4 {
    margin-bottom: 20px;
    font-weight: 500;
}

footer {
    background: #fff;
}

footer .copyright span {
    color: #F9BA06;
}

.footer-social {
    font-size: 25px;
    /* text-align: center; */
}


/*****-----*****-----*****-----*****
    Page Title CSS Start
*****-----*****-----*****-----*****/

.page-title-area {
    padding: 120px 0 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.page-title-col {
    text-align: center;
}

.page-title-col h2 {
    font-size: 50px;
    color: #F9BA06;
    font-weight: 500;
}

.page-title-col b {
    color: #ffaeae;
}

.page-title-col p {
    text-align: center;
    /* color: #ffffff; */
}


/*****-----*****-----*****-----*****
    About CSS Start
*****-----*****-----*****-----*****/


/* .about-area {
    padding: 100px 0;
} */


/*****-----*****-----*****-----*****
    About CSS Start
*****-----*****-----*****-----*****/


/* .add-area {
    padding-top: 10px;
} */


/*****-----*****-----*****-----*****
    Voting CSS Start
*****-----*****-----*****-----*****/

.voting-col p {
    margin-bottom: 10px;
}


/*****-----*****-----*****-----*****
    Terms CSS Start
*****-----*****-----*****-----*****/

.terms-col p {
    margin-bottom: 15px;
}

.terms-col .nav-pills .nav-link.active,
.terms-col .nav-pills .show>.nav-link {
    background: #F9BA06;
    color: #ffffff;
}

.terms-col .nav-pills .nav-link {
    color: #444444;
    border: 1px solid #dddddd;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.terms-col .tab-pane h4 {
    margin-bottom: 20px;
}

.terms-col .tab-pane p {
    margin-bottom: 20px;
}


/*****-----*****-----*****-----*****
    Brokers CSS Start
*****-----*****-----*****-----*****/

.brokers-area {
    padding-bottom: 0px;
}

.brokers-area .form-group select {
    height: 50px;
    margin-left: 10px;
}

.brokers-col {
    text-align: center;
    -webkit-box-shadow: 0 10px 15px rgb(39 12 145 / 15%);
    box-shadow: 0 10px 15px rgb(39 12 145 / 15%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-bottom: 18px;
    border: 1px solid #dbdbdb;
}

.brokers-col:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    /*border: 1px solid #dddddd;*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cust-brokers-col {
    border-radius: 8px;
    overflow: hidden;
}

.cust-brokers-col .unique-post-card {
    border: none;
    border-radius: 0;
}


/* .cust-brokers-col .unique-post-card:hover {
    background: black !important;
    transition-delay: .1s;
} */

.cust-brokers-col .image {
    border-radius: 0;
}

.brokers-col .progress-bar {
    background-color: #202020;
    color: #F9BA06;
}

.brokers-area .load-more__btn {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-right: 10px;
}

.brokers-area .progress {
    height: 40px;
    font-size: 24px;
    background: transparent;
    position: absolute;
    top: 0px;
    width: 100%;
    border-radius: 0 !important;
}

.introduction-box {
    padding-top: 0;
}

.introduction-box img {
    margin-bottom: 20px;
}

.brokers-area .ddcommon {
    width: 290px !important;
}

active {
    color: #F9BA06;
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.rainbow {
    position: relative;
    z-index: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.rainbow:before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #F9BA06;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 0 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#DE3163), to(#ff7529)), -webkit-gradient(linear, left top, left bottom, from(#DE3163), to(#270C91)), -webkit-gradient(linear, left top, left bottom, from(#DE3163), to(#5352ed));
    background-image: -o-linear-gradient(#DE3163, #ff7529), -o-linear-gradient(#270C91, #270C91), -o-linear-gradient(#5352ed, #5352ed);
    background-image: linear-gradient(#DE3163, #ff7529), linear-gradient(#DE3163, #270C91), linear-gradient(#DE3163, #5352ed);
    animation: rotate 4s linear infinite;
}

.rainbow:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: white;
    border-radius: 5px;
}


/*****-----*****-----*****-----*****
    Broker Info CSS Start
*****-----*****-----*****-----*****/

.broker-info-area {
    padding: 100px 0 0;
}

.broker-info-col {
    background: #fff;
    padding: 20px 20px;
}

.my-broker-logo {
    text-align: center;
}

.my-broker-logo img {
    padding: 20px 20px;
    border: 1px solid #e2e2e2;
    margin-bottom: 10px;
}

.broker-info-buttons {
    margin-top: 15px;
}

.broker-info-buttons .theme-btn {
    margin: 0 20px;
    background: #ffffff;
}

.pors-and-cons-row {
    padding: 0 20px;
    margin-top: 30px;
}

.pors-and-cons-col {
    background: #ffffff;
    padding: 20px 20px;
}

.pors-and-cons-col ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}

.pors-and-cons-col ul li:before {
    content: "\00BB";
    font-family: "IcoFont";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    font-size: 25px;
    color: #F9BA06;
}

.review-rightside-content img {
    width: 100% !important;
    height: auto !important;
}


/*****-----*****-----*****-----*****
    Review Wrap CSS Start
*****-----*****-----*****-----*****/

.review-wrap-area {
    padding-top: 100px;
    padding-bottom: 70px;
}

.review-sidebar-nav-col {
    padding: 14px;
}

.review-sidebar-logo {
    margin-bottom: 15px;
    text-align: center;
}

.sidebar-rating {
    margin-bottom: 20px;
    text-align: center;
}

.sidebar-rating p {
    font-weight: bold;
    margin-bottom: 10px;
}

.sidebar-rating .progress-bar {
    background-color: #F9BA06;
}

.sidebar-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-buttons .theme-btn {
    margin-bottom: 10px;
}

.review-menu ul li {
    display: block;
}

.review-menu ul li a {
    color: #444444;
    padding: 5px 10px;
    display: block;
    text-transform: capitalize;
}

.review-menu ul li.active-item a {
    background: #F9BA06;
    color: #ffffff;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}

#bar-fixed {
    max-width: 290px;
    position: sticky;
    top: 120px;
}

#bar-fixed.stickIt {
    position: sticky;
    top: 100px;
    width: 100%;
}


/* Review RightSide Content CSS */


/*****-----*****-----*****-----*****
    Broker Details CSS Start
*****-----*****-----*****-----*****/

.cust-progress {
    display: block;
    margin: 0 auto;
    overflow: visible;
    transform: rotate(-90deg) rotateX(180deg);
    width: 100%;
    height: 100%;
}

.cust-progress circle {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset .5s ease;
    stroke: #F9BA06;
    stroke-width: 9px;
}

.cust-progress .bar {
    stroke: #ffcfcf;
}

.progressdiv {
    position: relative;
    width: 80px;
    height: 80px;
}

.progressdiv:after {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    transform: translate(-50%, -50%);
    content: "\2606" attr(data-percent);
    color: #F9BA06;
}

.broker-deatils-area {
    padding: 0;
}

.broker-deatils-area h4 {
    margin-bottom: 20px;
}

#broker-deatils {
    padding-top: 90px;
}

.broker-deatils-box {
    /*background: #f4f1ff;*/
    padding: 0;
}

.broker-deatils-col {
    margin-bottom: 15px;
}

.broker-deatils-box ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
}

.broker-deatils-box ul li:after {
    display: block;
    clear: both;
    content: "";
}

.broker-deatils-box ul li:last-child {
    margin-bottom: 0;
}

.broker-deatils-box ul li strong {
    display: block;
    text-transform: capitalize;
    color: #ffaeae;
}

.deposit-box {
    background: #f6F6F6;
    margin-bottom: 0;
    padding: 30px 20px 15px;
}

.add-review-box {
    margin-bottom: 0;
    padding: 12px;
    border-radius: 8px;
    /* background: rgb;
    background: -moz- rgba(39, 12, 145, 1) 100%;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#", endColorstr="#270c91", GradientType=1); */
}

.overall-rating-col p {
    font-weight: bold;
    color: #ffffff;
    /* margin-top: -22px; */
}

.overall-rating-col .progress {
    height: 30px;
    font-size: 24px;
}

.overall-rating-col .progress-bar {
    background-color: #F9BA06;
}

.add-review-button {
    text-align: right;
}

.add-review-button .theme-btn {
    background: #ffffff;
}

.add-review-button .theme-btn:focus {
    color: #F9BA06;
}

.add-review-button .theme-btn:focus:hover {
    color: #ffffff;
}


/* Rating-modal CSS Start*/

.rating-modal {
    padding: 15px 0;
    text-align: left;
    margin-top: 90px;
}

.rating-modal .ddcommon {
    width: 100% !important;
}

.rating-modal .modal-header {
    padding-left: 30px;
    padding-right: 30px;
}

.rating-modal ul li {
    display: inline-block;
}

.rating-modal ul li a i {
    color: #cccccc;
}

.rating-modal ul li a i:hover {
    color: #F9BA06;
}

.rating-modal .modal-footer {
    justify-content: center;
}

.my-rating {
    margin-bottom: 10px;
}

.side-space {
    padding: 0 15px;
}

.my-modal .modal-header .close {
    margin-top: -35px;
}

.my-modal .form-control {
    margin-bottom: 10px;
}

.my-modal .form-check {
    display: inline-block;
    margin-right: 10px;
}

.my-modal .form-check-input {
    margin-top: 7px;
}

.rating-form textarea {
    height: 80px;
}


/*****-----*****-----*****-----*****
    Review Details CSS Start
*****-----*****-----*****-----*****/

.review-details-area {
    padding: 0 0 100px;
}

.review-details-col h4 {
    margin-bottom: 15px;
}

.review-details-col p {
    margin-bottom: 15px;
}

.review-details-col p:last-child {
    margin-bottom: 0;
}

.text-box h4 {
    margin-bottom: 15px;
}

.success-box img {
    margin-bottom: 20px;
    margin-top: 8px;
    width: 30px !important;
}

.text-box:last-child p {
    margin-bottom: 0;
}


/*****-----*****-----*****-----*****
    Comparison CSS Start
*****-----*****-----*****-----*****/

.comparison-area {
    background-repeat: repeat;
    background-color: white;
}

.comparison-col {
    border: 5px solid #F9BA065c;
    padding: 50px 50px;
    text-align: center;
    border-radius: 10px;
}

.comparison-col p {
    margin-bottom: 30px;
}

.comparison-area .ddcommon {
    width: 100% !important;
    height: 45px;
    background: #E9ECEF;
    border-radius: 0 !important;
}

.ddcommon:focus {
    outline: none;
}

.dd .ddTitle .ddTitleText {
    padding: 8px 20px 5px 5px;
    height: 43px;
}

.comparison-col .theme-btn {
    background: #ffffff;
}

.comparison-col .theme-btn:focus {
    color: #F9BA06;
}

.comparison-col .theme-btn:focus:hover {
    color: #ffffff;
}

.bottom {
    position: absolute;
    bottom: 0;
    right: 0;
}


/*****-----*****-----*****-----*****
    faq CSS
*****-----*****-----*****-----*****/

.faq-area {
    padding: 0px 0 40px;
    position: relative;
    z-index: 9;
    background: #ffffff;
}

.faq-col .accordion>.card {
    margin-bottom: 10px;
}

.faq-col .accordion .btn {
    padding: 0;
}

.faq-col .card-header {
    padding: 0;
}

.faq-col .card-header .btn-link {
    font-size: 20px;
    text-transform: capitalize;
    padding: 10px 18px;
    width: 100%;
    text-align: left;
    color: #5c5c5c;
    border: none;
    border-radius: 0;
    /* background: #ffffff; */
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#5352ed", endColorstr="#270c91", GradientType=1);
}

.faq-col .accordion>.card {
    border: 2px solid #F9BA06;
}

.btn-link.focus,
.btn-link:focus,
.btn-link:hover {
    text-decoration: none;
}

.faq-col .card-body {
    border-bottom: 1px solid #F9BA06;
    text-align: justify;
    background-color: rgb(249 186 6 / 17%);
}

.faq-col .btn {
    line-height: 1.6;
    background: #fff6f3;
}

.card-header {
    border-bottom: 1px solid #F9BA06;
}

.form-check-input {
    margin-top: 0.6rem;
}


/*****-----*****-----*****-----*****
    All Review CSS
*****-----*****-----*****-----*****/

.all-review-area {
    padding: 0;
    position: relative;
    z-index: 9;
    background: #ffffff;
}

.my-top-bar {
    padding: 20px 20px;
    border-radius: 5px;
    /* filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#", endColorstr="#270c91", GradientType=1); */
}

.my-top-bar-col {
    text-align: center;
}

.my-top-bar-col h4 {
    color: #5c5c5c;
}

.my-top-bar-col p {
    display: inline-block;
    color: #5c5c5c;
}

.my-top-bar-col .ddcommon {
    width: 220px !important;
    margin-bottom: 0;
    text-transform: capitalize;
    margin-left: 10px;
}

.my-top-bar-col.text-right .form-control {
    width: 70px;
}

.review-text {
    /* margin-top: 50px; */
    /* min-height: 240px;
    width: 100%; */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 15px auto;
}

.review-creator {
    text-align: center;
    /* border-radius: 5px; */
    /* padding: 20px 20px; */
    /* -webkit-box-shadow: 0 0rem 0.5rem rgb(0 0 0 / 9%) !important;
    -moz-box-shadow: 0 0rem 0.5rem rgb(0 0 0 / 9%) !important;
    box-shadow: 0 0rem 0.5rem rgb(0 0 0 / 9%) !important; */
    /* width: 100%;
    height: 210px; */
    /* float: left; */
}

.review-creator i {
    font-size: 50px;
    color: #F9BA06;
}

.review-creator h4 {
    margin-bottom: 0;
    margin-top: 10px;
    text-transform: capitalize;
}

.review-creator ul li {
    display: inline-block;
    /* margin-right: 10px; */
    /* background: #F9BA06; */
    color: #5c5c5c;
    /* padding: 5px 15px; */
    /* margin-bottom: 10px; */
    font-size: 14px;
}

.review-creator h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.review-creator p {
    text-align: justify;
}

.all-review-area .theme-btn {
    display: table;
    margin: 0 auto;
}

.my-top-bar-col .form-control {
    width: 220px;
    border: none;
    margin: 0 auto;
    margin-top: 10px;
}

.cust-rev-des {
    text-align: left;
}

.load-more__btn {
    display: block;
    width: 100px;
    margin: auto;
}


/*****-----*****-----*****-----*****
    Compare Table CSS Start
*****-----*****-----*****-----*****/

.compare-table-area {
    position: relative;
    padding: 30px 0 0px;
}

.blog-area {
    padding: 20px 0 0 0;
}

.compare-table-col {
    /*height: 600px;
    overflow-y: scroll;*/
    overflow-x: auto !important;
}

.compare-table-col table {
    margin-bottom: 0;
}

.compare-table-col .table td,
.compare-table-col .table th {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 22px;
    width: 33%;
}

.table thead th {
    border-bottom: 2px solid #F9BA06;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(249 186 6 / 17%);
}

.text-success {
    color: #91d7a1 !important;
}

.text-danger {
    color: #ff7b88 !important;
}

.compare-table-col .table tr td:nth-child(1) {
    font-weight: bold;
}

.compare-table-col table tr th.bg-primary {
    color: #ffffff;
    background: rgb(83, 82, 237);
    background: -moz-radial-gradient(circle, rgba(83, 82, 237, 1) 0%, rgba(39, 12, 145, 1) 100%);
    background: -webkit-radial-gradient(circle, rgba(83, 82, 237, 1) 0%, rgba(39, 12, 145, 1) 100%);
    background: radial-gradient(circle, rgba(83, 82, 237, 1) 0%, rgba(39, 12, 145, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#5352ed", endColorstr="#270c91", GradientType=1);
}

.compare-bottom-buttons {
    margin-top: 20px;
    text-align: center;
}

.compare-bottom-buttons .theme-btn {
    margin-bottom: 10px;
}

.left-btn {
    margin-left: -12px;
}

.right-btn {
    text-align: right;
    margin-right: -55px;
}


/* .compare-table-area .brokers-col {
    padding: 15px;
    height: auto;
    display: inline-block;
} */

#box-left {
    width: 300px;
    margin: 0 auto;
    margin-right: 0;
}

#box-right {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}


/* .compare-brokar-image {
    width: 260px;
    float: left;
    padding: 0 20px 0 0;
} */


/* .compare-brokar-all-content {
    width: 300px;
    float: left;
} */

.compare-brokar-rating {
    top: 0;
    background: #202020;
    color: #F9BA06;
    padding: 8px;
    font-size: 20px;
}

.compare-brokar-image {
    border-radius: 0 !important;
}

.compare-table-area .unique-post-card {
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #dbdbdb!important;
}


/*****-----*****-----*****-----*****
    Contact CSS Start
*****-----*****-----*****-----*****/

.contact-col .nav-pills .nav-link.active,
.contact-col .nav-pills .show>.nav-link {
    background: #F9BA06;
    color: #ffffff;
}

.contact-col .nav-pills .nav-link {
    color: #444444;
}

.contact-box .form-control::placeholder {
    color: #fdb9b9 !important;
}

#compareform .form-control::placeholder {
    color: #F9BA06 !important;
}


/* .contact-box {
    padding: 0 200px;
} */

.contact-box h4 {
    margin-bottom: 20px;
}

.contact-box .theme-btn {
    margin-top: 10px;
}


/*****-----*****-----*****-----*****
    Footer CSS Start
*****-----*****-----*****-----*****/

.footer-area {
    padding: 40px 0 0 0;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 70%;
}

.footer-col {
    text-align: center;
    margin-bottom: 0px;
}

.footer-col h4 {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col ul li {
    color: #5c5c5c;
    margin-bottom: 5px;
}

.footer-col ul li a {
    color: #5c5c5c;
}

.footer-col ul li a:hover {
    color: #F9BA06;
}

.mail-list-footer {
    margin: 12px 0 16px !important;
}

.footer-col ul li i {
    color: #F9BA06;
    margin-right: 5px;
    display: none;
}

.footer-col-divider::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background: #F9BA06;
    left: 0;
}

.footer-col-divider::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background: #F9BA06;
    right: 0;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding: 15px 0;
    color: #ffffff;
    border-top: 1px solid #F9BA06;
    text-transform: capitalize;
}


/* Rating Star success box Style */

.success-box {
    margin: 50px 0;
    padding: 10px 10px;
    border: 1px solid #eee;
    background: #f9f9f9;
}

.success-box img {
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}

.success-box>div {
    vertical-align: top;
    display: inline-block;
    color: #888;
    /* margin-top: 12px; */
    margin-left: 8px;
}


/* Rating Star Widgets Style */

.rating-stars ul {
    list-style-type: none;
    padding: 0;
}

.rating-stars ul>li.star {
    display: inline-block;
}


/* Idle State of the stars */

.rating-stars ul>li.star>i.fa {
    font-size: 2.5em;
    /* Change the size of the stars */
    color: #ccc;
    /* Color on idle state */
}


/* Hover state of the stars */

.rating-stars ul>li.star.hover>i.fa {
    color: #F9BA06;
}


/* Selected state of the stars */

.rating-stars ul>li.star.selected>i.fa {
    color: #F9BA06;
}

.terms-col {
    padding: 50px;
}

span.fa.fa-star.checked {
    color: #F9BA06;
}

span.fa.fa-star-half-full {
    color: #F9BA06;
}

span.fa.fa-star-o {
    color: #F9BA06;
}


/* .star-p {
    text-align: right;
    margin-top: -27px;
} */

.star-p span {
    margin-right: 5px;
}