@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


body {
    font-family: "Outfit", serif;
    font-size: 1rem;
}

h1 {
    font-size: 64px;
    font-family: "Outfit", serif;
}

@media(max-width: 992px) {
    h1 {
        font-size: 55px;
    }
}

@media(max-width: 768px) {
    h1 {
        font-size: 35px;
    }
}

@media(max-width: 576px) {
    h1 {
        font-size: 30px;
    }
}

h2 {
    font-size: 36px;
    font-family: "Outfit", serif;
}

@media(max-width: 768px) {
    h2 {
        font-size: 30px;
    }
}


h3 {
    font-size: 30px;
    font-weight: 500
}

h4 {
    font-size: 24px;
    font-weight: 500
}

h5 {
    font-size: 18px;
    font-weight: 400;
}

h6 {
    font-size: 18px;
    font-weight: 500;
}

p, a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    font-family: "Outfit", serif;
}

header ul li a {
    font-size: 18px !important;
}

p {
    color: #5B5B5B;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a, a:hover, a:focus {
    text-decoration: none !important;
}

    a:hover {
        color: #eed500 !important;
    }


img {
    border-style: none;
}

.padding-100 {
    padding: 120px 0px;
}

.padding-top {
    padding-top: 120px;
}

.padding-bottom {
    padding-bottom: 120px;
}

.text-yellow {
    color: #FEE61B;
}

.text-blue {
    color: #372E5F;
}

.text-grey {
    color: #5B5B5B;
}

/* scroll-top */

#scroll-top {
    display: inline-block;
    background: #FEE61B;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 35%;
    position: fixed;
    bottom: 10px;
    right: 15px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    padding-top: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

    #scroll-top:hover {
        background-position: 100% 0;
        box-shadow: rgba(0, 0, 0, 0.2) 0px -4px 0px inset, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        transform: translateY(-1px);
    }

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: "\f062 ";
        font-family: FontAwesome;
        font-size: 1.4rem;
        line-height: 40px;
        color: #000000;
    }


/* header */
.navbar {
    background: #372E5F;
}

.logo img {
    width: 170px;
}

@media(max-width: 768px) {
    .logo img {
        width: 140px;
    }
}

.navbar-nav li a {
    color: #ffffff;
}

    .navbar-nav li a:hover {
        color: #FEE61B !important;
    }

.btn-dark-yellow {
    background: #FEE61B;
    color: #000000 !important;
    padding: 13px 45px 13px 45px;
    transition: all 0.5s ease-in-out;
}

    .btn-dark-yellow:hover {
        color: #ffffff !important;
        background: #EB333D;
    }

.btn-yellow {
    background: #FEE61B;
    color: #000000 !important;
    padding: 17px 25px 17px 25px;
    border-start-start-radius: 10px;
    border-end-end-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.5s ease-in-out;
}

    .btn-yellow:hover {
        color: #ffffff !important;
        background: #EB333D;
    }

.btn-yellows {
    background: #FEE61B;
    color: #000000 !important;
    padding: 17px 50px 17px 50px;
    border-start-start-radius: 10px;
    border-end-end-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.5s ease-in-out;
}

    .btn-yellows:hover {
        color: #ffffff !important;
        background: #EB333D !important;
    }

@media(max-width: 768px) {
    .btn-yellows {
        padding: 15px 35px 17px 35px;
    }

    .btn-yellow {
        padding: 15px 22px 17px 22px;
    }
}


.dropdown-links ul li a {
    color: #000000;
}

.dropdown-item.active {
    background: #372e5ff0;
}

.dropdown-links ul li a:hover {
    background: #372e5ff0;
    color: #FEE61B;
}

.dropdown-links .dropdown-menu {
    background: #FEE61B;
}
/* footer */
#footer {
    background: #352C62;
}

.bg-footer {
    background: #352C62 url('../img/footer-bg.png') no-repeat center center;
    background-size: cover;
}

#footer p a, #footer ul li a {
    color: #ffffff;
}

@media(min-width: 992px) {
    .quick-links {
        margin-left: 165px;
    }
}

/* home */

#home-banner {
    background: url('../img/myprop-home-banner.png'), url('../img/myprop-home-banner.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.banner-heading {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(min-width: 768px) {
    .myprop-imgs {
        width: 400px;
        margin: auto;
    }
}

@media(max-width: 992px) {
    #home-banner {
        height: unset;
    }

    .banner-heading {
        height: 60vh;
    }
}

@media(max-width: 786px) {
    .banner-heading {
        height: 55vh;
    }
}

.icons {
    background: #FEE61B;
    border-radius: 5px;
    padding: 10px;
    color: #372E5F;
    transition: 0.5s ease-in-out;
}

    .icons:hover {
        background: #EB333D;
        color: #ffffff;
    }

.soc-icon {
    margin-bottom: 27px;
}

.social-icons {
    position: absolute;
    left: 0px;
    top: 160px;
}

.about-bg {
    background: url('../img/about-bg.png') no-repeat center center;
    background-size: cover;
}

.bg-color-light {
    background: #f4f4f4;
}

.about-side-img {
    margin-top: -535px;
}

@media(min-width: 992px) {
    #key-metrics {
        background-size: 500px;
    }
}

@media(min-width: 1200px) {
    #key-metrics {
        background: url('../img/key-metrices-img.png'), url('../img/key-metrices-img.webp');
        background-repeat: no-repeat;
        background-size: 500px;
        background-position: top 50% right;
    }
}

@media(min-width: 1400px) {
    #key-metrics {
        background: url('../img/key-metrices-img.png'), url('../img/key-metrices-img.webp');
        background-repeat: no-repeat;
        background-size: 700px;
        background-position: top 50% right;
    }
}

.investment-img img {
    height: 100px;
}

.owl-prev, .owl-next {
    background: #372E5F !important;
    color: #ffffff !important;
    border-start-start-radius: 10px !important;
    border-end-end-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    transition: 0.3s ease-in-out !important;
}

    .owl-next:hover, .owl-prev:hover {
        background: #FEE61B !important;
        color: #000000 !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    }

.icon-blue {
    padding: 3px 5px 3px 5px !important;
}

#investment-options {
    background: #F9F7F7;
}

.bg-grey {
    background: #F9F7F7;
    transition: 0.5s ease-in-out;
}

    .bg-grey:hover {
        background: #FEE61B;
    }

        .bg-grey:hover p {
            color: #000000;
        }

.bg-symbol {
    background: url('../img/inverted-comma-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 160px;
    transition: 0.5s ease-in-out;
}

    .bg-symbol:hover {
        background: url('../img/symbol.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 160px;
    }

#myprop-investor {
    background: url('../img/investor-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#myprop-invest-works {
    background: #F9F7F7;
}

.bg-dark-blue {
    background: #372E5F;
    padding: 6px 5px 25px 5px;
    border-start-start-radius: 20px;
    border-end-end-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog-border {
    background: #ffffff;
    border: 1px solid #372E5F;
    border-end-end-radius: 15px;
    border-end-start-radius: 15px;
    padding: 20px 12px 1px 19px;
    margin-top: -70px;
    transition: 0.4s ease-in-out;
    height: 140px;
}

.bg-hover:hover .blog-border {
    background: #FEE61B;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translate(0);
    }

    50% {
        transform: translate(-5px);
    }
}

.arrow-animation {
    animation: moveUpDown 1.5s ease-in-out infinite;
}

.content-name {
    background: #372E5F;
    border-start-start-radius: 20px;
    border-end-end-radius: 20px;
    border-bottom-left-radius: 20px;
}


.img-border {
    border-start-start-radius: 20px;
    border-end-end-radius: 20px;
    border-bottom-left-radius: 20px;
}

.image-container {
    position: relative;
    display: inline-block;
}

    .image-container img {
        display: block;
        width: 100%;
    }

.content-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #372e5fd1;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 10px;
}

@media(max-width: 1030px) and (min-width: 992px) {
    #myprop-team-member .owl-prev, #myprop-team-member .owl-next {
        display: none;
    }
}

@media(min-width: 768px) {
    #myprop-team-member .owl-prev {
        position: absolute;
        top: 40%;
        left: -40px;
    }

    #myprop-team-member .owl-next {
        position: absolute;
        top: 40%;
        right: -40px;
    }
}

.scroll-down-btn {
    position: absolute;
    left: -65px;
    top: 508px;
}

    .scroll-down-btn a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: yellow;
        transition: transform 0.3s ease;
        transform: rotate(270deg);
        letter-spacing: 1px;
    }

@media(max-width: 992px) {
    .scroll-down-btn {
        display: none;
    }
}


/* about */
#about-us-banner {
    background: url('../img/about-us-banner.png'), url('../img/about-us-banner.webp');
    background-position: center;
    background-size: cover;
}


.banner-headings {
    padding-top: 120px;
    padding-bottom: 120px;
}

.content-downwards {
    margin-top: 87px;
}

@media(max-width: 768px) {
    .content-downwards {
        margin-top: 75px;
    }
}

.myprop-platform {
    background: #ffffff;
    border: 1px solid #372E5F;
    border-end-end-radius: 15px;
    border-end-start-radius: 15px;
    padding: 15px 12px 10px 19px;
    position: absolute;
    bottom: -20px;
    width: 90% !important;
    transition: 0.5s ease-in-out;
}

/*    .myprop-platform:hover {
        background: #FEE61B;
    }*/

.bg-hovers:hover .myprop-platform {
    background: #FEE61B;
}

/* contact */
#contact-us-banner {
    background: url('../img/contact-us-bg.png'), url('../img/contact-us-bg.webp');
    background-position: center;
    background-size: cover;
}

.contact-bg {
    background: url('../img/contact-form-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-forms {
    background: #ffffff;
    margin: 0px 130px 0px 130px;
    padding: 30px;
}

@media(max-width: 1200px) {
    .contact-forms {
        margin: 0px 60px 0px 60px;
    }
}

@media(max-width: 576px) {
    .contact-forms {
        margin: 0px 10px 0px 10px;
        padding: 15px;
    }
}

.contact-btn {
    margin-bottom: 70px;
    margin-top: 19px;
}

.maps {
    height: 100%;
    width: 100%;
}

@media(max-width: 992px) {
    .maps {
        height: 400px;
    }
}

/* blog */

#blogs .blogs-bg {
    background: #f1f1f1;
    padding: 30px;
}

.text-light-yellow {
    color: #FEE61B;
}

    .text-light-yellow:hover {
        color: #ffd600 !important;
    }

.bg-blue {
    background: #372E5F;
}

#bg-blue {
    background: #372E5F;
}

.socials-icon {
    background: #FEE61B;
    border-radius: 5px;
    padding: 10px 14px 10px 14px;
    color: #372E5F;
    transition: 0.5s ease-in-out;
}

    .socials-icon:hover {
        background: #EB333D;
        color: #ffffff;
    }

#recent-blogs .blog-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#recent-blogs .inner-img {
    float: left;
    width: 42%;
    min-width: 300px;
    margin-right: 30px;
}

@media(max-width: 992px) {
    #recent-blogs .inner-img {
        float: none;
        width: 100%;
        margin-right: 0;
    }
}

#other-blogs {
    background: #F9F7F7;
}

.bg-shape {
    border-start-start-radius: 20px;
    border-end-end-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* news */

#news .news-bg {
    background: #f1f1f1;
    padding: 30px;
}

.img-responsive img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* faqs */
#investment-options .accordion-button {
    color: #FEE61B;
    font-weight: 600;
    background-color: #372E5F !important;
}

    #investment-options .accordion-button:not(.collapsed) {
        background-color: #372E5F !important;
    }

.black-border {
    border: 1px solid #372E5F !important;
    border-end-end-radius: 10px;
    border-end-start-radius: 10px;
}

#investment-options .accordion-header {
    margin-bottom: -1px !important;
}

.accordion-button {
    background: #FEE61B !important;
}

#investment-options .accordion-button::after {
    background-image: url('../img/arrow-down.svg');
}

.active {
    color: #FEE61B !important;
    font-weight: 700 !important;
}

#myprop-banner {
    background: url('../img/myprop-banners.png'), url('../img/myprop-banners.webp');
    background-position: center;
    background-size: cover;
}

.site-font h3 a {
    font-size: 25px !important;
    font-weight: 500 !important;
    color: #000000 !important;
}

    .site-font h3 a:hover {
        color: #372E5F !important;
    }


.sticky-social-icons-res {
    position: fixed;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.iconss {
    background: #FEE61B;
    border-radius: 5px;
    padding: 10px;
    color: #372E5F;
    transition: 0.5s ease-in-out;
}

    .iconss:hover {
        background: #EB333D;
        color: #ffffff;
    }

@media(max-width: 1100px) and (min-width: 992px) {
    .banner-heading {
        margin-left: 50px;
    }
}

.scroll-down-btn, social-icons {
    width: fit-content;
}

.platform-fraction {
    cursor: pointer;
}

/* social media */

.social-media-posts {
    background: #ffffff;
    border: 1px solid #372E5F;
    border-end-end-radius: 15px;
    border-end-start-radius: 15px;
    padding: 20px 10px 20px 14px;
    margin-top: -30px;
    transition: 0.4s ease-in-out;
}

.bg-hover {
    transition: 0.5s ease-in-out;
}

    .bg-hover:hover .social-media-posts {
        background: #FEE61B;
    }

@media(max-width: 1300px) and (min-width: 1200px) {
    .social-media-posts {
        height: 100px;
    }
}

@media(max-width: 1200px) and (min-width: 992px) {
    .social-media-posts {
        height: 118px;
    }
}

@media(max-width: 992px) {
    .social-media-posts {
        padding: 16px 12px 14px 19px;
    }

        .social-media-posts h5 {
            text-align: center;
        }
}
/* #myprop-team-member #carousel .image-container{
    width:100%;
}

#myprop-team-member .owl-carousel .owl-item img {
    width: 100% !important;
    height: 330px !important;
    object-position: top;
    object-fit: cover;
}
@media(max-width: 768px) {
    #myprop-team-member .owl-carousel .owl-item img {
        height: 500px !important;
    }
} */