/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Lato', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #092a49;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #092a49;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #0796fe;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #092a49;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #0796fe;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
/* =========================================
   STOCKS BEEZ HEADER
   BRAND COLORS

   RED    #e10105
   YELLOW #fff112
   WHITE  #ffffff
========================================= */


/* =========================================
   TOP BAR
========================================= */

.stocks-topbar {
    background: #111111;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: #ffffff;
}


.stocks-topbar-inner {
    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Left */

.stocks-top-left {
    display: flex;

    align-items: center;

    gap: 35px;
}


.stocks-top-item {
    display: flex;

    align-items: center;

    gap: 10px;
}


.stocks-top-item > i {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff112;

    color: #e10105;

    border-radius: 50%;

    font-size: 13px;
}


.stocks-top-item strong {
    display: block;

    color: #ffffff;

    font-size: 12px;

    line-height: 1.2;
}


.stocks-top-item span {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.55);

    font-size: 10px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.stocks-social {
    display: flex;

    align-items: center;

    gap: 7px;
}


.stocks-social a {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;

    text-decoration: none;

    transition: all .3s ease;
}


.stocks-social a:hover {
    background: #fff112;

    color: #e10105;

    transform: translateY(-2px);
}


/* =========================================
   NAVBAR
========================================= */

.stocks-navbar {
    position: relative;

    z-index: 999;

    width: 100%;

    background: #ffffff;

    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}


.stocks-nav-inner {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.stocks-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #111111;

    font-size: 27px;

    font-weight: 900;

    text-decoration: none;

    white-space: nowrap;
}


.stocks-logo:hover {
    color: #111111;

    text-decoration: none;
}


.stocks-logo b {
    color: #e10105;
}


.stocks-logo-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e10105;

    color: #fff112;

    border-radius: 50%;

    font-size: 17px;

    position: relative;
}


.stocks-logo-icon::after {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    right: -2px;
    top: 0;

    background: #fff112;

    border-radius: 50%;

    border: 2px solid #ffffff;
}


/* =========================================
   NAVIGATION
========================================= */

.stocks-nav-menu {
    display: flex;

    align-items: center;

    gap: 4px;
	font-size: 18px;
}


.stocks-nav-menu > a:not(.stocks-nav-btn) {
    position: relative;

    display: flex;

    align-items: center;

    height: 78px;

    padding: 0 15px;

    color: #333333;

    font-size: 18px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}


/* Bottom Line */

.stocks-nav-menu > a:not(.stocks-nav-btn)::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 0;

    height: 3px;

    background: #e10105;

    transform: scaleX(0);

    transition: transform .3s ease;
}


.stocks-nav-menu > a:not(.stocks-nav-btn):hover,
.stocks-nav-menu > a:not(.stocks-nav-btn).active {
    color: #e10105;
}


.stocks-nav-menu > a:not(.stocks-nav-btn):hover::after,
.stocks-nav-menu > a:not(.stocks-nav-btn).active::after {
    transform: scaleX(1);
}


/* =========================================
   JOIN BUTTON
========================================= */

.stocks-nav-btn {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-left: 15px;

    padding: 12px 20px;

    background: #e10105;

    color: #ffffff !important;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    box-shadow: 0 7px 20px rgba(225,1,5,.20);

    transition: all .3s ease;
}


.stocks-nav-btn:hover {
    background: #fff112;

    color: #111111 !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(225,1,5,.18);

    text-decoration: none;
}


.stocks-nav-btn i {
    transition: transform .3s ease;
}


.stocks-nav-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.stocks-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    border-radius: 5px;

    background: #e10105;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.stocks-menu-toggle span {
    width: 21px;
    height: 2px;

    background: #ffffff;

    border-radius: 2px;

    transition: all .3s ease;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .stocks-nav-menu > a:not(.stocks-nav-btn) {
        padding: 0 10px;

        font-size: 12px;
    }

    .stocks-nav-menu > a:not(.stocks-nav-btn)::after {
        left: 10px;
        right: 10px;
    }

    .stocks-nav-btn {
        margin-left: 8px;

        padding: 11px 14px;

        font-size: 11px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .stocks-topbar {
        display: none;
    }


    .stocks-nav-inner {
        min-height: 68px;
    }


    .stocks-logo {
        font-size: 23px;
    }


    .stocks-logo-icon {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }


    /* Show Toggle */

    .stocks-menu-toggle {
        display: flex;
    }


    /* Menu */

    .stocks-nav-menu {
        position: absolute;

        left: 15px;
        right: 15px;

        top: calc(100% + 8px);

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: #ffffff;

        border-radius: 8px;

        box-shadow: 0 15px 40px rgba(0,0,0,.15);

        border-top: 4px solid #e10105;
    }


    .stocks-nav-menu.show {
        display: flex;
    }


    .stocks-nav-menu > a:not(.stocks-nav-btn) {
        height: auto;

        min-height: 48px;

        padding: 13px 15px;

        border-bottom: 1px solid #eeeeee;
    }


    .stocks-nav-menu > a:not(.stocks-nav-btn)::after {
        display: none;
    }


    .stocks-nav-menu > a:not(.stocks-nav-btn).active {
        background: #fff112;

        color: #e10105;

        border-radius: 5px;
    }


    .stocks-nav-btn {
        margin: 12px 0 3px;

        min-height: 48px;

        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .stocks-nav-inner {
        min-height: 64px;
    }


    .stocks-logo {
        font-size: 21px;
    }


    .stocks-logo-icon {
        width: 36px;
        height: 36px;
    }


    .stocks-menu-toggle {
        width: 40px;
        height: 40px;
    }


    .stocks-nav-menu {
        left: 10px;
        right: 10px;
    }

}
/* =========================================
   STOCKS BEEZ HERO
========================================= */

.stocks-hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    background: #fff;
}

/* BANNER IMAGE */
.stocks-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 1;
}

/* CONTENT WRAPPER */
.stocks-hero .container {
    position: relative;
    z-index: 3;
    min-height: 680px;
}

/* LEFT CONTENT */
.stocks-hero-left {
    width: 48%;
    padding-top: 150px;
    padding-bottom: 80px;
}

/* BADGE */
.stocks-badge {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #e10105;

    margin-bottom: 18px;
    padding-left: 18px;

    position: relative;
}

.stocks-badge::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    background: #fff112;
    border-radius: 50%;

    transform: translateY(-50%);
}


/* COMPANY NAME */
.stocks-hero-left h1 {
    margin: 0 0 10px;

    font-size: 72px;
    line-height: 1;

    font-weight: 800;

    color: #e10105;

    letter-spacing: -2px;
}

.stocks-hero-left h1 span {
    color: #111;
}


/* SERVICE TITLE */
.stocks-hero-left h2 {
    margin: 0 0 22px;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 600;

    color: #111;
}

.stocks-hero-left h2 strong {
    color: #e10105;
    font-weight: 800;
}


/* DESCRIPTION */
.stocks-hero-left p {
    max-width: 500px;

    margin: 0 0 32px;

    font-size: 17px;
    line-height: 1.7;

    color: #555;
}


/* BUTTON */
.stocks-btn {
    display: inline-flex;

    align-items: center;
    gap: 14px;

    padding: 15px 28px;

    background: #e10105;
    color: #fff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: all .3s ease;
}

.stocks-btn i {
    transition: transform .3s ease;
}

.stocks-btn:hover {
    background: #c90004;
    color: #fff;

    transform: translateY(-3px);
}

.stocks-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .stocks-hero,
    .stocks-hero .container {
        min-height: 600px;
    }

    .stocks-hero-left {
        width: 52%;
        padding-top: 110px;
    }

    .stocks-hero-left h1 {
        font-size: 58px;
    }

    .stocks-hero-left h2 {
        font-size: 32px;
    }

    .stocks-hero-left p {
        font-size: 15px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .stocks-hero,
    .stocks-hero .container {
        min-height: 700px;
    }

    .stocks-hero-image {
        object-position: 68% center;
    }

    /* White readability overlay */
    .stocks-hero::after {
        content: "";

        position: absolute;
        inset: 0;

        background: linear-gradient(
            90deg,
            rgba(255,255,255,.98) 0%,
            rgba(255,255,255,.92) 45%,
            rgba(255,255,255,.15) 100%
        );

        z-index: 2;
    }

    .stocks-hero-left {
        width: 100%;

        padding: 100px 20px 60px;

        position: relative;
        z-index: 4;
    }

    .stocks-hero-left h1 {
        font-size: 50px;
    }

    .stocks-hero-left h2 {
        font-size: 29px;
    }

    .stocks-hero-left p {
        font-size: 15px;
        max-width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .stocks-hero,
    .stocks-hero .container {
        min-height: 650px;
    }

    .stocks-hero-left {
        padding-top: 80px;
    }

    .stocks-badge {
        font-size: 11px;
    }

    .stocks-hero-left h1 {
        font-size: 44px;
    }

    .stocks-hero-left h2 {
        font-size: 26px;
    }

    .stocks-hero-left p {
        font-size: 14px;
        line-height: 1.6;
    }

    .stocks-btn {
        padding: 13px 23px;
        font-size: 14px;
    }
}
.stocks-logo {
    display: flex;
    align-items: center;
    padding: 0;
}

.stocks-logo img {
    width: 230px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* Mobile Logo */
@media (max-width: 991px) {

    .stocks-logo img {
        width: 145px;
    }

}

@media (max-width: 575px) {

    .stocks-logo img {
        width: 130px;
    }

}
/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
}

.section-header h2 {
    margin: 0 0 0 40px;
    position: relative;
    font-size: 50px;
    font-weight: 200;
}

.section-header h2::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 0;
    top: 23px;
    left: -40px;
    border-bottom: 30px solid;
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.1) 3%) 30;
}

.section-header h2:hover::after {
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.1), rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.05) 3%) 30;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
/* =========================================
   STOCKS BEEZ FEATURE SECTION
========================================= */

.stocks-fact {
    position: relative;
    padding: 35px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Yellow top accent */
.stocks-fact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff112;
}


/* FEATURE ITEM */
.stocks-fact-item {
    position: relative;

    min-height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 20px 15px;

    background: #ffffff;

    border-right: 1px solid #eeeeee;

    transition: all 0.35s ease;
}


/* Remove border from last item */
.stocks-fact .col-lg-3:last-child .stocks-fact-item {
    border-right: none;
}


/* ICON */
.stocks-fact-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e10105;

    border-radius: 50%;

    position: relative;

    transition: all 0.35s ease;
}


/* Yellow circle accent */
.stocks-fact-icon::after {
    content: "";

    position: absolute;

    width: 76px;
    height: 76px;

    border: 2px solid #fff112;

    border-radius: 50%;

    opacity: 0;

    transform: scale(.7);

    transition: all .35s ease;
}


/* Existing image icons */
.stocks-fact-icon img {
    width: 34px;
    height: 34px;

    object-fit: contain;

    filter: brightness(0) invert(1);

    position: relative;
    z-index: 2;
}


/* FontAwesome icons */
.stocks-fact-icon i {
    font-size: 28px;
    color: #ffffff;

    position: relative;
    z-index: 2;
}


/* TITLE */
.stocks-fact-item h3 {
    margin: 0;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;

    color: #111111;

    transition: all .35s ease;
}


/* HOVER */
.stocks-fact-item:hover {
    transform: translateY(-5px);
}

.stocks-fact-item:hover .stocks-fact-icon {
    background: #fff112;
    transform: scale(1.05);
}

.stocks-fact-item:hover .stocks-fact-icon img {
    filter: none;
}

.stocks-fact-item:hover .stocks-fact-icon i {
    color: #e10105;
}

.stocks-fact-item:hover .stocks-fact-icon::after {
    opacity: 1;
    transform: scale(1);
}

.stocks-fact-item:hover h3 {
    color: #e10105;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .stocks-fact {
        padding: 25px 0;
    }

    .stocks-fact-item {
        min-height: 100px;
        border-bottom: 1px solid #eeeeee;
        border-right: none;
    }

    .stocks-fact-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .stocks-fact-item h3 {
        font-size: 16px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .stocks-fact {
        padding: 15px 0;
    }

    .stocks-fact-item {
        justify-content: flex-start;

        padding: 18px 20px;

        min-height: 90px;
    }

    .stocks-fact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .stocks-fact-icon img {
        width: 27px;
        height: 27px;
    }

    .stocks-fact-icon i {
        font-size: 23px;
    }

    .stocks-fact-item h3 {
        font-size: 16px;
    }
}

/*******************************/
/********** About CSS **********/
/*******************************/
/* =========================================
   STOCKS BEEZ ABOUT US
========================================= */

.stocks-about {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}


/* Decorative Background */
.stocks-about::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: 50px;

    background: #fff112;

    border-radius: 50%;

    opacity: .12;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.stocks-about-content {
    padding-right: 45px;
}


/* Tag */
.stocks-about-tag {
    display: inline-block;

    position: relative;

    padding-left: 18px;
    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #e10105;
}

.stocks-about-tag::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    background: #fff112;

    border-radius: 50%;

    transform: translateY(-50%);
}


/* Heading */
.stocks-about-content h2 {
    margin: 0;

    font-size: 52px;
    line-height: 1.12;

    font-weight: 800;

    color: #111111;
}

.stocks-about-content h2 span {
    display: block;
    color: #e10105;
}


/* Yellow Line */
.stocks-about-line {
    width: 70px;
    height: 5px;

    margin: 20px 0 25px;

    background: #fff112;

    border-radius: 10px;
}


/* Paragraph */
.stocks-about-content p {
    margin-bottom: 17px;

    font-size: 16px;
    line-height: 1.75;

    color: #555555;
}

.stocks-about-content p strong {
    color: #e10105;
}


/* =========================================
   FEATURES
========================================= */

.stocks-about-features {
    margin-top: 30px;
    margin-bottom: 30px;
}

.stocks-about-feature {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 20px;
}


/* Feature Icon */
.about-feature-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e10105;

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;

    transition: all .3s ease;
}

.stocks-about-feature:hover .about-feature-icon {
    background: #fff112;
    color: #e10105;

    transform: translateY(-3px);
}


/* Feature Text */
.stocks-about-feature h4 {
    margin: 2px 0 5px;

    font-size: 17px;

    font-weight: 700;

    color: #111111;
}

.stocks-about-feature p {
    margin: 0;

    font-size: 14px;

    line-height: 1.5;

    color: #666666;
}


/* =========================================
   BUTTON
========================================= */

.stocks-about-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 25px;

    background: #e10105;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border-radius: 5px;

    transition: all .3s ease;
}

.stocks-about-btn:hover {
    background: #111111;
    color: #ffffff;

    transform: translateY(-3px);
}

.stocks-about-btn i {
    transition: transform .3s ease;
}

.stocks-about-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   ABOUT IMAGE
========================================= */

.stocks-about-image {
    position: relative;

    padding: 25px;

    text-align: center;
}


/* Yellow Decorative Shape */
.about-yellow-circle {
    position: absolute;

    width: 400px;
    height: 400px;

    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    background: #fff112;

    border-radius: 50%;

    opacity: .25;

    z-index: 0;
}


/* Image */
.stocks-about-image img {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 650px;

    height: auto;

    display: block;

    margin: auto;

    border-radius: 10px;
}


/* Experience Badge */
.about-experience {
    position: absolute;

    z-index: 4;

    left: 10px;
    bottom: 50px;

    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #e10105;

    color: #ffffff;

    border: 6px solid #ffffff;

    border-radius: 50%;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.about-experience strong {
    font-size: 30px;

    line-height: 1;

    font-weight: 800;

    color: #fff112;
}

.about-experience span {
    margin-top: 5px;

    text-align: center;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 600;
}


/* =========================================
   STATS
========================================= */

.stocks-about-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 80px;

    padding: 30px 20px;

    background: #e10105;

    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(225,1,5,.15);
}


/* Individual Stat */
.about-stat {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 10px 20px;

    border-right: 1px solid rgba(255,255,255,.3);
}

.about-stat:last-child {
    border-right: none;
}


/* Stat Icon */
.about-stat-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff112;

    color: #e10105;

    border-radius: 50%;

    font-size: 21px;
}


/* Stat Number */
.about-stat strong {
    display: block;

    font-size: 25px;

    line-height: 1;

    color: #ffffff;

    font-weight: 800;
}

.about-stat span {
    display: block;

    margin-top: 5px;

    font-size: 13px;

    color: #ffffff;

    opacity: .9;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .stocks-about {
        padding: 75px 0;
    }

    .stocks-about-content {
        padding-right: 0;

        margin-bottom: 50px;
    }

    .stocks-about-content h2 {
        font-size: 44px;
    }

    .stocks-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat:nth-child(2) {
        border-right: none;
    }

    .about-stat:nth-child(1),
    .about-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.3);
        padding-bottom: 20px;
    }

    .about-stat:nth-child(3),
    .about-stat:nth-child(4) {
        padding-top: 20px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .stocks-about {
        padding: 60px 0;
    }

    .stocks-about-content h2 {
        font-size: 36px;
    }

    .stocks-about-content p {
        font-size: 14px;
    }

    .stocks-about-image {
        padding: 5px;
    }

    .about-yellow-circle {
        width: 280px;
        height: 280px;
    }

    .about-experience {
        width: 95px;
        height: 95px;

        left: 0;
        bottom: 25px;

        border-width: 4px;
    }

    .about-experience strong {
        font-size: 23px;
    }

    .about-experience span {
        font-size: 10px;
    }

    .stocks-about-stats {
        grid-template-columns: 1fr;

        margin-top: 50px;

        padding: 15px;
    }

    .about-stat {
        justify-content: flex-start;

        border-right: none !important;

        border-bottom: 1px solid rgba(255,255,255,.3);

        padding: 18px 10px !important;
    }

    .about-stat:last-child {
        border-bottom: none;
    }
}

/* =========================================
   WHY STOCKS BEEZ SECTION
========================================= */

.why-stocks-beez {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}


/* Decorative Background */
.why-stocks-beez::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    top: 180px;

    background: #fff112;

    border-radius: 50%;

    opacity: .12;
}

.why-stocks-beez::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    bottom: 50px;

    background: #e10105;

    border-radius: 50%;

    opacity: .06;
}


/* =========================================
   HEADING
========================================= */

.why-beez-heading {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 0 auto 65px;
}


/* Small Tag */

.why-beez-tag {
    display: inline-block;

    padding: 7px 18px;

    background: #fff112;

    color: #111111;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 16px;
}


/* Heading */

.why-beez-heading h2 {
    margin: 0;

    font-size: 50px;

    line-height: 1.15;

    font-weight: 800;

    color: #111111;
}

.why-beez-heading h2 span {
    color: #e10105;
}


/* Description */

.why-beez-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    font-size: 16px;

    line-height: 1.7;

    color: #666666;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.why-beez-wrapper {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1.15fr 1fr;

    align-items: center;

    gap: 45px;
}


/* =========================================
   FEATURE COLUMNS
========================================= */

.why-beez-column {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================
   FEATURE CARD
========================================= */

.why-beez-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    background: #ffffff;

    border-radius: 12px;

    border: 1px solid #eeeeee;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

    transition: all .35s ease;
}


/* Left red line */

.why-beez-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 20px;
    bottom: 20px;

    width: 4px;

    background: #e10105;

    border-radius: 0 5px 5px 0;

    transform: scaleY(.3);

    transition: transform .35s ease;
}


/* Hover */

.why-beez-card:hover {
    transform: translateY(-6px);

    border-color: #fff112;

    box-shadow: 0 18px 40px rgba(225,1,5,.10);
}

.why-beez-card:hover::before {
    transform: scaleY(1);
}


/* =========================================
   ICON
========================================= */

.why-beez-icon {
    width: 56px;
    height: 56px;

    min-width: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e10105;

    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;

    transition: all .35s ease;
}

.why-beez-card:hover .why-beez-icon {
    background: #fff112;

    color: #e10105;

    transform: rotate(5deg) scale(1.08);
}


/* =========================================
   CARD CONTENT
========================================= */

.why-beez-card-content h4 {
    margin: 0 0 6px;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 800;

    color: #111111;
}

.why-beez-card-content p {
    margin: 0;

    font-size: 13px;

    line-height: 1.55;

    color: #777777;
}


/* =========================================
   CENTER IMAGE
========================================= */

.why-beez-center {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 550px;
}


/* Main Circle */

.why-beez-circle {
    position: relative;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    padding: 15px;

    background: #fff112;

    box-shadow:
        0 25px 60px rgba(0,0,0,.15);

    overflow: hidden;
}


/* Red Outer Accent */

.why-beez-circle::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 3px solid #e10105;

    border-radius: 50%;

    z-index: 3;

    pointer-events: none;
}


/* Image */

.why-beez-circle img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    display: block;
}


/* Image Overlay */

.why-beez-image-overlay {
    position: absolute;

    inset: 15px;

    border-radius: 50%;

    background: linear-gradient(
        180deg,
        rgba(225,1,5,.05),
        rgba(0,0,0,.65)
    );

    z-index: 2;
}


/* =========================================
   CENTER TEXT
========================================= */

.why-beez-center-content {
    position: absolute;

    z-index: 4;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 80%;

    text-align: center;

    color: #ffffff;
}

.why-beez-center-content span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}

.why-beez-center-content h3 {
    margin: 10px 0 0;

    font-size: 43px;

    line-height: 1.05;

    font-weight: 800;

    text-shadow: 0 4px 15px rgba(0,0,0,.3);
}

.why-beez-center-content h3 strong {
    color: #fff112;
}


/* =========================================
   CENTER BADGE
========================================= */

.why-beez-badge {
    position: absolute;

    right: -15px;
    bottom: 45px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    background: #e10105;

    color: #ffffff;

    border-radius: 8px;

    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.why-beez-badge > i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff112;

    color: #e10105;

    border-radius: 50%;
}

.why-beez-badge strong {
    display: block;

    font-size: 14px;
}

.why-beez-badge span {
    display: block;

    margin-top: 2px;

    font-size: 11px;

    opacity: .85;
}


/* =========================================
   BOTTOM HIGHLIGHTS
========================================= */

.why-beez-bottom {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 70px;

    padding: 22px 30px;

    background: #111111;

    border-radius: 10px;

    overflow: hidden;
}


.why-beez-bottom::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: #fff112;
}


.why-bottom-item {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #ffffff;

    border-right: 1px solid rgba(255,255,255,.2);
}

.why-bottom-item:last-child {
    border-right: none;
}

.why-bottom-item i {
    color: #fff112;

    font-size: 20px;
}

.why-bottom-item span {
    font-size: 13px;

    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .why-beez-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .why-beez-center {
        grid-column: 1 / -1;
        grid-row: 1;

        min-height: 500px;
    }

    .why-beez-column {
        grid-row: 2;
    }

    .why-beez-circle {
        width: 400px;
        height: 400px;
    }
}


/* =========================================
   TABLET SMALL
========================================= */

@media (max-width: 767px) {

    .why-stocks-beez {
        padding: 70px 0;
    }

    .why-beez-heading {
        margin-bottom: 45px;
    }

    .why-beez-heading h2 {
        font-size: 38px;
    }

    .why-beez-heading p {
        font-size: 14px;
    }

    .why-beez-wrapper {
        display: flex;

        flex-direction: column;
    }

    .why-beez-center {
        order: 1;

        width: 100%;

        min-height: auto;

        margin-bottom: 25px;
    }

    .why-beez-column:first-child {
        order: 2;
    }

    .why-beez-column:last-child {
        order: 3;
    }

    .why-beez-column {
        width: 100%;
    }

    .why-beez-circle {
        width: 350px;
        height: 350px;
    }

    .why-beez-badge {
        right: 0;
        bottom: 25px;
    }

    .why-beez-bottom {
        grid-template-columns: repeat(2, 1fr);

        gap: 0;

        padding: 10px;
    }

    .why-bottom-item {
        padding: 15px 8px;

        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .why-bottom-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.15);
    }

    .why-bottom-item:nth-child(3),
    .why-bottom-item:nth-child(4) {
        border-bottom: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .why-beez-heading h2 {
        font-size: 32px;
    }

    .why-beez-circle {
        width: 290px;
        height: 290px;
    }

    .why-beez-center-content h3 {
        font-size: 31px;
    }

    .why-beez-center-content span {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .why-beez-card {
        padding: 16px;
    }

    .why-beez-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 18px;
    }

    .why-beez-card-content h4 {
        font-size: 15px;
    }

    .why-beez-card-content p {
        font-size: 12px;
    }

    .why-beez-badge {
        padding: 9px 12px;
    }

    .why-beez-badge > i {
        width: 32px;
        height: 32px;
    }

    .why-beez-badge strong {
        font-size: 11px;
    }

    .why-beez-badge span {
        font-size: 9px;
    }

    .why-beez-bottom {
        grid-template-columns: 1fr;
    }

    .why-bottom-item,
    .why-bottom-item:nth-child(odd) {
        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .why-bottom-item:last-child {
        border-bottom: none;
    }
}
/* =========================================
   STOCKS BEEZ
   VISION MISSION VALUES
========================================= */

.stocks-vmv {
    position: relative;
    padding: 110px 0;
    background: #f8f8f8;
    overflow: hidden;
}


/* Background Decoration */

.stocks-vmv::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    bottom: -180px;

    background: #fff112;

    border-radius: 50%;

    opacity: .13;
}

.stocks-vmv::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -100px;

    background: #e10105;

    border-radius: 50%;

    opacity: .05;
}


/* =========================================
   IMAGE AREA
========================================= */

.vmv-image-wrap {
    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Yellow Shape */

.vmv-yellow-shape {
    position: absolute;

    width: 470px;
    height: 470px;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    background: #fff112;

    border-radius: 50%;

    opacity: .8;
}


/* Image Container */

.vmv-image {
    position: relative;

    z-index: 2;

    width: 88%;

    height: 530px;

    overflow: hidden;

    border-radius: 0 80px 0 80px;

    border: 8px solid #ffffff;

    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}


/* Image */

.vmv-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}

.vmv-image:hover img {
    transform: scale(1.05);
}


/* Red Border Accent */

.vmv-image::before {
    content: "";

    position: absolute;

    inset: 12px;

    border: 2px solid #e10105;

    border-radius: 0 65px 0 65px;

    z-index: 3;

    pointer-events: none;
}


/* =========================================
   FLOATING BADGE
========================================= */

.vmv-floating-badge {
    position: absolute;

    right: -5px;
    bottom: 70px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 20px;

    background: #e10105;

    color: #ffffff;

    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.vmv-floating-badge i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff112;

    color: #e10105;

    border-radius: 50%;

    font-size: 18px;
}

.vmv-floating-badge strong {
    display: block;

    font-size: 14px;

    font-weight: 800;
}

.vmv-floating-badge span {
    display: block;

    margin-top: 2px;

    font-size: 11px;

    opacity: .85;
}


/* =========================================
   CONTENT
========================================= */

.vmv-content {
    position: relative;

    z-index: 2;

    padding-left: 45px;
}


/* Tag */

.vmv-tag {
    display: inline-block;

    padding-left: 18px;

    position: relative;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #e10105;

    margin-bottom: 12px;
}

.vmv-tag::before {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    left: 0;
    top: 50%;

    background: #fff112;

    border-radius: 50%;

    transform: translateY(-50%);
}


/* Heading */

.vmv-content h2 {
    margin: 0;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 800;

    color: #111111;
}

.vmv-content h2 span {
    color: #e10105;
}


/* Intro */

.vmv-intro {
    max-width: 650px;

    margin: 18px 0 30px;

    font-size: 16px;

    line-height: 1.7;

    color: #666666;
}


/* =========================================
   VMV CARD
========================================= */

.vmv-card {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 20px 25px;

    margin-bottom: 15px;

    background: #ffffff;

    border-radius: 10px;

    border: 1px solid #eeeeee;

    box-shadow: 0 8px 25px rgba(0,0,0,.04);

    transition: all .35s ease;

    overflow: hidden;
}


/* Red Side Line */

.vmv-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #e10105;

    transform: scaleY(0);

    transition: transform .35s ease;
}


/* Hover */

.vmv-card:hover,
.vmv-card.active {
    transform: translateX(5px);

    border-color: #fff112;

    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.vmv-card:hover::before,
.vmv-card.active::before {
    transform: scaleY(1);
}


/* Number */

.vmv-number {
    position: absolute;

    right: 18px;
    top: 10px;

    font-size: 38px;

    line-height: 1;

    font-weight: 900;

    color: #f2f2f2;
}


/* Icon */

.vmv-icon {
    position: relative;

    z-index: 2;

    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e10105;

    color: #ffffff;

    border-radius: 50%;

    font-size: 20px;

    transition: all .35s ease;
}

.vmv-card:hover .vmv-icon,
.vmv-card.active .vmv-icon {
    background: #fff112;

    color: #e10105;

    transform: scale(1.08);
}


/* Card Content */

.vmv-card-content {
    position: relative;

    z-index: 2;

    padding-right: 35px;
}

.vmv-card-content h3 {
    margin: 2px 0 7px;

    font-size: 20px;

    font-weight: 800;

    color: #111111;
}

.vmv-card-content p {
    margin: 0;

    font-size: 16px;

    line-height: 1.65;

    color: #666666;
}


/* =========================================
   BOTTOM HIGHLIGHT
========================================= */

.vmv-highlight {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 25px;

    margin-top: 25px;

    padding: 16px 20px;

    background: #111111;

    border-radius: 8px;

    border-bottom: 4px solid #fff112;
}

.vmv-highlight div {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 700;

    color: #ffffff;
}

.vmv-highlight i {
    color: #fff112;

    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .stocks-vmv {
        padding: 80px 0;
    }

    .vmv-content {
        padding-left: 25px;
    }

    .vmv-image-wrap {
        min-height: 550px;
    }

    .vmv-image {
        width: 90%;
        height: 480px;
    }

    .vmv-yellow-shape {
        width: 400px;
        height: 400px;
    }

    .vmv-content h2 {
        font-size: 42px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .stocks-vmv {
        padding: 70px 0;
    }

    .vmv-image-wrap {
        min-height: auto;

        margin-bottom: 60px;
    }

    .vmv-image {
        width: 90%;
        height: 450px;
    }

    .vmv-yellow-shape {
        width: 380px;
        height: 380px;
    }

    .vmv-content {
        padding-left: 0;
    }

    .vmv-content h2 {
        font-size: 40px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .stocks-vmv {
        padding: 55px 0;
    }

    .vmv-image-wrap {
        margin-bottom: 45px;
    }

    .vmv-image {
        width: 94%;
        height: 350px;

        border-width: 5px;

        border-radius: 0 50px 0 50px;
    }

    .vmv-image::before {
        border-radius: 0 40px 0 40px;
    }

    .vmv-yellow-shape {
        width: 290px;
        height: 290px;
    }

    .vmv-floating-badge {
        right: 0;
        bottom: 25px;

        padding: 10px 13px;
    }

    .vmv-floating-badge i {
        width: 35px;
        height: 35px;

        font-size: 15px;
    }

    .vmv-floating-badge strong {
        font-size: 11px;
    }

    .vmv-floating-badge span {
        font-size: 9px;
    }

    .vmv-content h2 {
        font-size: 34px;
    }

    .vmv-intro {
        font-size: 14px;
    }

    .vmv-card {
        padding: 17px;
    }

    .vmv-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 17px;
    }

    .vmv-card-content h3 {
        font-size: 17px;
    }

    .vmv-card-content p {
        font-size: 12px;
    }

    .vmv-number {
        font-size: 28px;
    }

    .vmv-highlight {
        gap: 12px;

        flex-direction: column;

        align-items: flex-start;
    }
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: #0796fe;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #092a49;
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 20px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    background: none;
    border: 2px solid #092a49;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}

/* =========================================
   STOCKS BEEZ CONTACT SECTION
   BRAND COLORS
   RED    #e10105
   YELLOW #fff112
   WHITE  #ffffff
========================================= */

.stocks-contact {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}


/* Decorative Red Shape */

.stocks-contact::before {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    left: -220px;
    top: 80px;

    background: #e10105;
    border-radius: 50%;

    opacity: .06;
}


/* Decorative Yellow Shape */

.stocks-contact::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    bottom: -100px;

    background: #fff112;
    border-radius: 50%;

    opacity: .18;
}


/* =========================================
   HEADING
========================================= */

.stocks-contact-heading {
    position: relative;
    z-index: 2;

    max-width: 750px;
    margin: 0 auto 55px;

    text-align: center;
}


.stocks-contact-tag {
    display: inline-block;

    padding: 7px 20px;

    background: #fff112;
    color: #e10105;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


.stocks-contact-heading h2 {
    margin: 0;

    color: #111111;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 800;
}


.stocks-contact-heading h2 span {
    color: #e10105;
}


.stocks-contact-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   MAIN BOX
========================================= */

.stocks-contact-wrapper {
    position: relative;
    z-index: 2;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #eeeeee;

    box-shadow: 0 20px 60px rgba(225,1,5,.10);
}


/* =========================================
   LEFT CONTACT PANEL
========================================= */

.stocks-contact-info {
    position: relative;

    height: 100%;

    padding: 55px 45px;

    background: #e10105;

    color: #ffffff;

    overflow: hidden;
}


/* Big Yellow Circle */

.stocks-contact-info::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -180px;
    top: -130px;

    background: #fff112;

    border-radius: 50%;

    opacity: .95;
}


/* Small White Circle */

.stocks-contact-info::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -80px;
    bottom: -60px;

    background: #ffffff;

    border-radius: 50%;

    opacity: .10;
}


/* =========================================
   LEFT CONTENT
========================================= */

.contact-info-top {
    position: relative;
    z-index: 2;

    margin-bottom: 40px;
}


.contact-small-title {
    display: inline-block;

    color: #111111;

    background: #fff112;

    padding: 6px 12px;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.contact-info-top h3 {
    margin: 18px 0 14px;

    color: #ffffff;

    font-size: 35px;

    line-height: 1.15;

    font-weight: 800;
}


.contact-info-top h3 strong {
    display: block;

    color: #fff112;
}


.contact-info-top p {
    max-width: 450px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.stocks-contact-item {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 25px;
}


.stocks-contact-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #e10105;

    border-radius: 50%;

    font-size: 17px;

    transition: .3s ease;
}


.stocks-contact-item:hover .stocks-contact-icon {
    background: #fff112;

    color: #e10105;

    transform: scale(1.08);
}


.stocks-contact-item span {
    display: block;

    margin-bottom: 3px;

    color: #fff112;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.stocks-contact-item h4 {
    margin: 0 0 3px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}


.stocks-contact-item p {
    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 14px;
}


/* =========================================
   BOTTOM BADGE
========================================= */

.contact-info-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 35px;

    padding: 15px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 8px;
}


.contact-bottom-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff112;

    color: #e10105;

    border-radius: 50%;
}


.contact-info-bottom strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
}


.contact-info-bottom span {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.75);

    font-size: 11px;
}


/* =========================================
   RIGHT FORM
========================================= */

.stocks-contact-form {
    padding: 55px 50px;

    background: #ffffff;
}


.form-heading {
    margin-bottom: 30px;
}


.form-heading > span {
    color: #e10105;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.form-heading h3 {
    margin: 7px 0;

    color: #111111;

    font-size: 30px;

    font-weight: 800;
}


.form-heading p {
    margin: 0;

    color: #777777;

    font-size: 13px;
}


/* =========================================
   FORM
========================================= */

.stocks-form-group {
    margin-bottom: 20px;
}


.stocks-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #333333;

    font-size: 12px;

    font-weight: 700;
}


.stocks-input {
    position: relative;
}


.stocks-input > i {
    position: absolute;

    left: 16px;
    top: 50%;

    z-index: 2;

    transform: translateY(-50%);

    color: #e10105;

    font-size: 14px;
}


.stocks-input .form-control {
    width: 100%;

    height: 52px;

    padding: 0 16px 0 45px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 7px;

    color: #111111;

    font-size: 13px;

    box-shadow: none;

    transition: .3s ease;
}


.stocks-input .form-control:focus {
    border-color: #e10105;

    box-shadow: 0 0 0 3px rgba(225,1,5,.08);
}


.stocks-input .form-control::placeholder {
    color: #aaa;
}


/* Textarea */

.stocks-textarea > i {
    top: 18px;

    transform: none;
}


.stocks-textarea textarea.form-control {
    height: 120px;

    padding-top: 15px;

    resize: none;
}


/* =========================================
   SEND BUTTON
========================================= */

.stocks-submit-btn {
    position: relative;

    width: 100%;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    border: none;

    border-radius: 7px;

    background: #e10105;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    overflow: hidden;

    transition: .3s ease;
}


.stocks-submit-btn::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #fff112;

    transition: .35s ease;
}


.stocks-submit-btn:hover::before {
    width: 100%;
}


.stocks-submit-btn span,
.stocks-submit-btn i {
    position: relative;
    z-index: 2;
}


.stocks-submit-btn:hover {
    color: #111111;
}


.stocks-submit-btn:hover i {
    transform: translateX(6px);
}


.stocks-submit-btn i {
    transition: .3s ease;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .stocks-contact {
        padding: 75px 0;
    }

    .stocks-contact-heading h2 {
        font-size: 42px;
    }

    .stocks-contact-info {
        padding: 45px 35px;
    }

    .stocks-contact-form {
        padding: 45px 35px;
    }
}


@media (max-width: 575px) {

    .stocks-contact {
        padding: 60px 0;
    }

    .stocks-contact-heading {
        margin-bottom: 40px;
    }

    .stocks-contact-heading h2 {
        font-size: 33px;
    }

    .stocks-contact-info {
        padding: 40px 25px;
    }

    .contact-info-top h3 {
        font-size: 29px;
    }

    .stocks-contact-form {
        padding: 40px 22px;
    }

    .form-heading h3 {
        font-size: 26px;
    }
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
/* =========================================
   STOCKS BEEZ FOOTER

   RED    #e10105
   YELLOW #fff112
   WHITE  #ffffff
   DARK   #111111
========================================= */

.stocks-footer {
    position: relative;

    background: #e10105;

    color: #ffffff;

    overflow: hidden;
}


/* Decorative Yellow Shape */

.stocks-footer::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -250px;
    top: -250px;

    background: #fff112;

    border-radius: 50%;

    opacity: .12;
}


/* Bottom Decorative Shape */

.stocks-footer::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -150px;
    bottom: -150px;

    background: #fff112;

    border-radius: 50%;

    opacity: .08;
}


/* =========================================
   MAIN FOOTER
========================================= */

.stocks-footer > .container {
    position: relative;

    z-index: 2;

    padding-top: 75px;
    padding-bottom: 60px;
}


/* =========================================
   LOGO
========================================= */

.stocks-footer-logo {
    display: inline-block;

    margin-bottom: 20px;
}


.stocks-footer-logo img {
    width: 175px;

    height: auto;

    max-height: 65px;

    object-fit: contain;

    /* If your logo has a dark background,
       remove this filter */
}


/* About */

.stocks-footer-about p {
    max-width: 390px;

    margin: 0 0 25px;

    color: rgba(255,255,255,.82);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.stocks-footer-contact {
    margin-bottom: 25px;
}


.stocks-footer-contact > div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 13px;
}


.stocks-footer-contact i {
    width: 32px;
    height: 32px;

    min-width: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff112;

    color: #e10105;

    border-radius: 50%;

    font-size: 16px;
}


.stocks-footer-contact span {
    color: rgba(255,255,255,.88);

    font-size: 16px;
}


/* =========================================
   SOCIAL
========================================= */

.stocks-footer-social {
    display: flex;

    gap: 8px;
}


.stocks-footer-social a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.13);

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    font-size: 13px;

    text-decoration: none;

    transition: all .3s ease;
}


.stocks-footer-social a:hover {
    background: #fff112;

    border-color: #fff112;

    color: #e10105;

    transform: translateY(-4px);
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.stocks-footer-links h3,
.stocks-footer-newsletter h3 {
    position: relative;

    margin: 8px 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


/* Yellow underline */

.stocks-footer-links h3::after,
.stocks-footer-newsletter h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    background: #fff112;

    border-radius: 3px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.stocks-footer-links a {
    display: block;

    margin-bottom: 13px;

    color: rgba(255,255,255,.8);

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    transition: all .3s ease;
}


.stocks-footer-links a i {
    margin-right: 8px;

    color: #fff112;

    font-size: 11px;

    transition: .3s ease;
}


.stocks-footer-links a:hover {
    color: #fff112;

    transform: translateX(5px);
}


.stocks-footer-links a:hover i {
    color: #ffffff;
}


/* =========================================
   NEWSLETTER
========================================= */

.stocks-footer-newsletter p {
    margin-bottom: 20px;

    color: rgba(255,255,255,.8);

    font-size: 13px;

    line-height: 1.7;
}


/* Form */

.stocks-newsletter-form {
    position: relative;

    display: flex;

    width: 100%;

    height: 50px;

    margin-bottom: 25px;
}


.stocks-newsletter-form input {
    width: 100%;

    padding: 0 55px 0 15px;

    border: none;

    outline: none;

    background: #ffffff;

    color: #111111;

    border-radius: 6px;

    font-size: 12px;
}


.stocks-newsletter-form input::placeholder {
    color: #999999;
}


.stocks-newsletter-form button {
    position: absolute;

    right: 5px;
    top: 5px;

    width: 40px;
    height: 40px;

    border: none;

    background: #fff112;

    color: #e10105;

    border-radius: 5px;

    cursor: pointer;

    transition: .3s ease;
}


.stocks-newsletter-form button:hover {
    background: #111111;

    color: #fff112;
}


/* =========================================
   FOOTER HIGHLIGHT
========================================= */

.stocks-footer-highlight {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    background: rgba(255,255,255,.1);

    border-left: 3px solid #fff112;

    border-radius: 5px;
}


.stocks-footer-highlight > i {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff112;

    color: #e10105;

    border-radius: 50%;

    font-size: 14px;
}


.stocks-footer-highlight strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
}


.stocks-footer-highlight span {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.65);

    font-size: 10px;
}


/* =========================================
   COPYRIGHT
========================================= */

.stocks-footer-bottom {
    position: relative;

    z-index: 3;

    border-top: 1px solid rgba(255,255,255,.18);

    background: rgba(0,0,0,.12);
}


.stocks-copyright {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.stocks-copyright p {
    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 11px;
}


.stocks-copyright strong {
    color: #fff112;
}


.stocks-footer-policy {
    display: flex;

    align-items: center;

    gap: 10px;
}


.stocks-footer-policy a {
    color: rgba(255,255,255,.7);

    font-size: 11px;

    text-decoration: none;

    transition: .3s ease;
}


.stocks-footer-policy a:hover {
    color: #fff112;
}


.stocks-footer-policy span {
    color: rgba(255,255,255,.3);

    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .stocks-footer > .container {
        padding-top: 60px;
        padding-bottom: 45px;
    }

    .stocks-footer-links,
    .stocks-footer-newsletter {
        margin-top: 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .stocks-footer > .container {
        padding-top: 50px;
        padding-bottom: 35px;
    }


    .stocks-footer-logo img {
        width: 155px;
    }


    .stocks-footer-about p {
        max-width: 100%;
    }


    .stocks-copyright {
        padding: 18px 0;

        flex-direction: column;

        text-align: center;

        gap: 10px;
    }


    .stocks-footer-policy {
        flex-wrap: wrap;

        justify-content: center;
    }

}


@media (max-width: 480px) {

    .stocks-footer-links h3,
    .stocks-footer-newsletter h3 {
        font-size: 17px;
    }

    .stocks-footer-contact span {
        font-size: 11px;
    }

    .stocks-footer-policy {
        gap: 6px;
    }

    .stocks-footer-policy a {
        font-size: 10px;
    }

}