/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Eluxen
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header-con
3. Banner  /.banner-con
4. Services  /.our-services-con
5. Statistics  /.statistics-con
6. About Us  /.about-us-con
7. How it Works  /.how-it-works-con
8. Pricing Plan  /.pricing-plan-con
9. Testimonials  /.testimonials-con
9. Call to Action  /.cta-con
9. Faq  /.faq-con
10. Send us a Message  /.send-us-msg-con
11. Footer  /.footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]

#  --primary--color: #ffffff;
#  --secondary--color: #ffffff;
#  --black--color: #000000;
#  --accent--color: #ffd051;
#  --text--color: #dadada;
#  --text--color2: #595959;
#  --grey--family--color: #191919;

*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy: "Urbanist", sans-serif;
Heading: "Urbanist", sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text--color);
    background-color: var(--black--color);
}

:root {
    --primary--color: #3460fc;
    --secondary--color: #ffffff;
    --black--color: #000000;
    --accent--color: #ffd051;
    --text--color: #dadada;
    --text--color2: #595959;
    --grey--family--color: #191919;
}

figure {
    margin-bottom: 0;
}

h1 {
    font-size: 104px;
    line-height: 108px;
    font-weight: 700;
    color: var(--secondary--color);
    margin-bottom: 22px;
}

h2 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--secondary--color);
}

/* h3 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    color: var(--secondary--color);
} */

h4 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    color: var(--secondary--color);
}

.footer-con h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--primary--color);
}

h5 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary--color);
}

h6 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--secondary--color);
}

p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text--color);
    word-break: break-word;
}

.text-size-18 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text--color);
}

.text-size-16 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text--color);
}

.text-size-14 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text--color);
}

.primary_btn {
    font-size: 18px;
    min-width: 197px;
    padding: 0;
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    color: var(--secondary--color);
    background-color: var(--primary--color);
    transition: all 0.8s ease-in-out;
    padding-right: 40px;
}

.primary_btn figure,
.secondary_btn figure,
button.submit-btn span.icon,
.service-btn figure,
.arrow-btn figure {
    background-color: var(--black--color);
    color: var(--secondary--color);
    border-radius: 8px;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 6px;
    top: 6px;
}

.contact-btn figure {
    background-color: var(--black--color);
    color: var(--secondary--color);
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 6px;
    top: 6px;
}

.error-section .secondary_btn figure {
    right: unset;
    left: 6px;
    top: 6px;
}

.error-section .secondary_btn {
    padding-left: 40px;
    padding-right: 0;

}

/* .primary_btn:hover figure,
.secondary_btn:hover figure,
button.submit-btn:hover figure {
    background-color: var(--secondary--color);
    color: var(--black--color);
    border-radius: 8px;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* .primary_btn:hover figure img,
.secondary_btn:hover figure img,
button.submit-btn:hover figure img {
    filter: brightness(0%) invert(0);
} */

.primary_btn:hover {
    color: var(--black--color);
    background-color: var(--accent--color);
}

.secondary_btn,
.submit-btn {
    font-size: 18px;
    min-width: 197px;
    padding: 0;
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    color: var(--black--color);
    background-color: var(--accent--color);
    transition: all 0.8s ease-in-out;
    padding-right: 40px;
}

.secondary_btn:hover {
    color: var(--secondary--color);
    background-color: var(--primary--color);
}

html {
    scroll-behavior: smooth;
}

.all_row {
    display: flex;
    flex-wrap: wrap;
}

.all_column {
    display: flex;
}

.all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.padding-top {
    padding-top: 130px;
}

.padding-bottom {
    padding-bottom: 130px;
}

.heading-title-con {
    margin-bottom: 47px;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-500 {
    font-weight: 500;
}

.primary-color {
    color: var(--primary--color);
}

.accent-color {
    color: var(--accent--color);
}

.bg-black {
    background-color: var(--black--color);
}

.background-primary {
    background-color: var(--primary--color);
}

.br-30 {
    border-radius: 30px;
}

.text-color {
    color: var(--text--color);
}

.spacer {
    float: left;
    width: 100%;
    height: 50px;
}

.padding-rl {
    padding-right: 50px;
    padding-left: 50px;
}

/* special classes ends here */
/* Home Page */

/* Header */

/* HEADER SECTION */
.header-con .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    color: var(--secondary--color);
    font-weight: 500;
    padding: 0 0 !important;
    position: relative;
}

.header-con .navbar-light .navbar-nav .nav-link:hover {
    color: var(--accent--color);
    /* text-decoration: underline; */
}

.header-con .navbar-expand-lg .navbar-nav {
    gap: 56px;
    justify-content: center;
    align-items: center;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 10px;
    padding: 10px 30px 10px 22px;
}

.header-con {
    z-index: 5;
    padding: 38px 0 18px;
}

.header-con .navbar {
    padding: 0;
}

.header-con .navbar-brand figure img {
    width: 145px;
}


/* .header-con .navbar-light .navbar-nav .nav-link:hover::before {
    width: 100%;
}

.header-con .navbar-light .navbar-nav .nav-link::before {
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    background: var(--accent--color);
    transition: ease-in-out 0.6s;
} */

.header-con .navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary--color);
    background-color: var(--primary--color);
    border-radius: 5px;
    width: auto;
    padding: 4px 17px !important;
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link:hover::after {
    width: 0;
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link::after {
    width: unset;
    position: absolute;
    background: none;
    top: 12px;
    font-size: 15px;
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link.active::after {
    top: 15px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu {
    padding: 10px;
    margin: 0;
    background-color: var(--secondary--color);
    border: 0;
    z-index: 2;
    width: 230px;
    margin-top: 16px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 15%);
    border-radius: 10px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu a:last-child {
    border-bottom: none;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item {
    padding: 7px 12px;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black--color);
    border-radius: 6px;
    border-bottom: 1px solid var(--secondary--color);
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active,
.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: var(--accent--color);
    color: var(--black--color);
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item.active {
    background-color: var(--accent--color);
    color: var(--black--color);
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--accent--color);
    color: var(--black--color);
}

.header-con .navbar-light .navbar-brand {
    margin: 0;
    padding: 0;
}

/* HEADER SECTION */
/* BACK TO TOP BUTTON */

.header-contact .contact-btn {
    min-width: 177px;
    background-color: var(--accent--color);
    color: var(--black--color);
    height: 54px;
    line-height: 34px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    text-decoration: none;
    z-index: 1;
    border-radius: 10px;
    position: relative;
    padding-right: 40px;
}

.header-contact .contact-btn:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
    /* box-shadow: 0px 10px 20px rgb(0 0 0 / 15%); */
}

.header-contact ul li a.free-trial-btn {
    color: var(--secondary--color);
    font-weight: 800;
    font-size: 20px;
    margin-left: 24px;
}

.header-contact ul li a.free-trial-btn:hover {
    color: var(--accent--color);
    text-decoration: none;
}

.header-contact ul li a.free-trial-btn img {
    margin-right: 11px;
}

.header-contact {
    margin-left: 11px;
}

.font-weight-700 {
    font-weight: 700 !important;
}

/* Footer */
.footer-con .middle_portion {
    padding: 75px 0 90px;
}

.footer-con .middle_portion .logo-content .footer-logo {
    margin-bottom: 26px;
}

.footer-con .middle_portion .logo-content .footer-logo img {
    width: 153px;
}

.footer-con .middle_portion .logo-content p {
    margin-bottom: 30px;
    line-height: 24px;
    color: var(--text--color);
}

.footer-con .middle_portion .social-icons li {
    margin: 0 9px;
    display: inline-block;
    transition: all 0.6s ease-in-out;
}

.footer-con .middle_portion .social-icons a {
    margin-left: 0 !important;
}

.footer-con .middle_portion .social-icons i {
    font-size: 18px;
    color: var(--secondary--color);
    transition: all 0.6s ease-in-out;
}

.footer-con .middle_portion .social-icons i:hover {
    transform: translateY(-5px);
    color: var(--accent--color);
}

.footer-con .middle_portion .social-icons li:first-child {
    margin-left: 0;
}

.footer-con .middle_portion .social-icons li:last-child {
    margin-right: 0;
}

.footer-con .middle_portion h4 {
    margin-top: 16px;
    margin-bottom: 24px;
    color: var(--secondary--color);
}

.footer-con .middle_portion .links {
    padding-left: 44px;
}

.footer-con .middle_portion li {
    margin-bottom: 16px;
}

.footer-con .middle_portion li:last-child {
    margin-bottom: 0 !important;
}

.footer-con .middle_portion li i {
    font-size: 12px;
    top: -2px;
    position: relative;
    color: var(--primary--color);
}

.footer-con .middle_portion li a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    margin-left: 17px;
    color: var(--text--color);
    transition: all 0.8s ease-in-out;
}

.footer-con .middle_portion li a:hover {
    color: var(--accent--color);
}

.footer-con .middle_portion .icon {
    padding-left: 45px;
}

.footer-con .middle_portion .icon li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 34px;
    display: inline-block;
}

.footer-con .middle_portion .icon i {
    position: absolute;
    font-size: 16px;
    left: 0;
    top: 5px;
}

.footer-con .middle_portion .icon a {
    margin-left: 0 !important;
}

.footer-con .middle_portion .email-form {
    padding-left: 12px;
}

.footer-con .middle_portion .email-form h4 {
    margin-bottom: 30px;
}

.footer-con .middle_portion .email-form input {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text--color);
    background-color: rgb(255 255 255 / 8%);
    border-radius: 10px;
    padding: 19px 56px 19px 20px;
    margin-bottom: 28px;
    width: 100%;
    border: 1px solid transparent;
    overflow: visible;
    outline: none;
}

.footer-con .middle_portion .email-form input::placeholder {
    color: var(--text--color) !important;
}

.footer-con .middle_portion .email-form input:focus {
    border: 1px solid var(--accent--color);
}

.footer-con .middle_portion .email-form button {
    font-size: 16px;
    color: var(--black--color);
    background-color: var(--accent--color);
    border-radius: 10px;
    width: 62px;
    height: 60px;
    line-height: 60px;
    border: none !important;
    float: right;
    position: absolute;
    top: 0;
    right: 0;
    overflow: visible;
    outline: none;
    transition: all 0.6s ease-in-out;
}

.footer-con .middle_portion .email-form button:hover {
    color: var(--secondary--color);
    background-color: var(--primary--color);
}

.footer-con .middle_portion .email-form .check-box {
    padding-left: 40px;
}

.footer-con .middle_portion .email-form .check-box input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.footer-con .middle_portion .email-form .check-box label {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text--color);
    position: relative;
    cursor: pointer;
    margin: 0;
}

.footer-con .middle_portion .email-form .check-box label a {
    text-decoration: underline;
    color: var(--text--color);
    transition: 0.8s ease-in-out;
}

.footer-con .middle_portion .email-form .check-box label a:hover {
    color: var(--accent--color);
}

.footer-con .middle_portion .email-form .check-box label:before {
    content: '';
    -webkit-appearance: none;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 5px;
    padding: 2px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: -21px;
    width: 20px;
    height: 20px;
    top: -1px;
    left: -38px;
}

.footer-con .middle_portion .email-form .check-box input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: -30px;
    width: 5px;
    height: 10px;
    border: solid var(--accent--color);
    border-width: 0 2px 2px 0;
    transform: rotate(50deg);
}

.footer-con .copyright p {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 21px 0;
    text-align: center;
    color: var(--text--color);
    border-top: 1px solid rgb(255 255 255 / 20%);
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--accent--color);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 10px;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: var(--black--color);
    font-weight: 600;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover {
    transform: translateY(-5px);
}

.special-text {
    color: var(--accent--color);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 5px;
    letter-spacing: 3px;
    font-weight: 500;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(255 208 81 / 40%)
    }

    to {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(255 208 81 / 40%)
    }

    to {
        /* box-shadow: 0 0 0 35px rgba(39, 39, 252, .01) */
        box-shadow: 0 0 0 35px rgba(255, 255, 255, .01)
    }
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
/* PRELOADER */

.js {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #19191f;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.preloader-orbit-loading {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    perspective: 780px;
}

.preloader-orbit-loading .cssload-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.preloader-orbit-loading .cssload-one {
    left: 0%;
    top: 0%;
    animation: cssload-rotate-one 1.15s linear infinite;
    -o-animation: cssload-rotate-one 1.15s linear infinite;
    -ms-animation: cssload-rotate-one 1.15s linear infinite;
    -webkit-animation: cssload-rotate-one 1.15s linear infinite;
    -moz-animation: cssload-rotate-one 1.15s linear infinite;
    border-bottom: 8px solid var(--accent--color);
}

.preloader-orbit-loading .cssload-two {
    right: 0%;
    top: 0%;
    animation: cssload-rotate-two 1.15s linear infinite;
    -o-animation: cssload-rotate-two 1.15s linear infinite;
    -ms-animation: cssload-rotate-two 1.15s linear infinite;
    -webkit-animation: cssload-rotate-two 1.15s linear infinite;
    -moz-animation: cssload-rotate-two 1.15s linear infinite;
    border-right: 8px solid var(--accent--color);
}

.preloader-orbit-loading .cssload-three {
    right: 0%;
    bottom: 0%;
    animation: cssload-rotate-three 1.15s linear infinite;
    -o-animation: cssload-rotate-three 1.15s linear infinite;
    -ms-animation: cssload-rotate-three 1.15s linear infinite;
    -webkit-animation: cssload-rotate-three 1.15s linear infinite;
    -moz-animation: cssload-rotate-three 1.15s linear infinite;
    border-top: 8px solid var(--accent--color);
}

@keyframes cssload-rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@-o-keyframes cssload-rotate-one {
    0% {
        -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@-ms-keyframes cssload-rotate-one {
    0% {
        -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-one {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@-moz-keyframes cssload-rotate-one {
    0% {
        -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes cssload-rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@-o-keyframes cssload-rotate-two {
    0% {
        -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@-ms-keyframes cssload-rotate-two {
    0% {
        -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-two {
    0% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@-moz-keyframes cssload-rotate-two {
    0% {
        -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes cssload-rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@-o-keyframes cssload-rotate-three {
    0% {
        -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@-ms-keyframes cssload-rotate-three {
    0% {
        -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-three {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@-moz-keyframes cssload-rotate-three {
    0% {
        -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

/* Preloader -------------------------------------------------------*/

/*  */
/* 404 page styling start here */
.coming-soon-con,
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* background-image: url(../images/pricing-plan-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover; */
}

.error-con {
    position: relative;
    z-index: 2;
}

.error-con h2 {
    font-size: 170px;
    line-height: 165px;
    margin-bottom: 30px;
    color: var(--secondary--color);
}

.error-con h2 i {
    font-size: 130px;
    line-height: 140px;
    color: var(--accent--color);
}

.error-con h4 {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 18px;
    color: var(--primary--color);
}

.error-con p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 30px;
    color: var(--secondary--color);
}

.error-con .secondary_btn {
    min-width: 260px;
}

/* COMING SOON PAGE */
.coming-soon-con .new-logo {
    margin-bottom: 35px;
}

.coming-soon-con h1 {
    margin-bottom: 30px;
    font-size: 85px;
    line-height: 95px;
    text-transform: uppercase;
}

.coming-soon-con h3 {
    margin-bottom: 20px;
    font-size: 34px;
    color: var(--primary--color);
}

/* coming soon countdown timer styling */
.compaign_countdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.compaign_countdown ul li {
    float: left !important;
    width: auto;
    margin: 0;
    text-align: center;
    margin: 0 13px;
    min-height: 133px;
    min-width: 133px;
    background-color: var(--accent--color);
    padding: 20px 16px;
    color: var(--black--color);
    font-size: 22px;
    font-weight: 400;
    border-radius: 10px;
}

.compaign_countdown ul li:first-child {
    margin-left: 0;
}

.compaign_countdown ul li:last-child {
    margin-right: 0;
}

.compaign_countdown ul li span.days,
.compaign_countdown ul li span.hours,
.compaign_countdown ul li span.minutes,
.compaign_countdown ul li span.seconds {
    display: block;
    color: var(--black--color);
    width: auto;
    font-size: 60px;
    line-height: 65px;
    border-radius: 10px;
    font-weight: 700;
}

.compaign_countdown {
    margin: 0 auto;
    width: 70%;
}

.coming-soon-con {
    flex-grow: 1;
    min-height: 100vh;
}

.error-banner,
.coming-soon-con {
    flex-grow: 1;
}

/* breadcrumb */

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: var(--secondary--colors);
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

.breadcrumb {
    padding: 16px 42px;
    min-width: 197px;
    transition: ease-in-out 0.6s;
    justify-content: center;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 8px;

}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--accent--color);
}

.breadcrumb-item a:hover {
    color: var(--primary--color);
}


/* .breadcrumb:hover .breadcrumb-item a,
.breadcrumb:hover .breadcrumb-item.active {
    color: var(--accent--color);
} */

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary--color);
    content: "-";
    font-family: "Font Awesome 6 Free";
    font-size: 15px;
    padding: 0 13px;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

/* .breadcrumb:hover .breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent--color);
} */

/* SEND US A MESSAGE */
.send-us-msg-con {
    padding: 50px 35px 50px 136px;
}

.send-us-msg-con .send-us-img-con {
    text-align: right;
}

.send-us-msg-con figure img {
    border-radius: 30px;
}

.send-us-msg-con button figure img {
    border-radius: 0;
}

.submit-btn {
    border: none;
    width: 100%;
    position: relative;
    cursor: pointer;
    outline: none;
    border-style: none;
}

.submit-btn:hover {
    background-color: var(--secondary--color);
    color: var(--black--color);
}

/* button.submit-btn:hover figure {
    background-color: var(--accent--color);
} */

.contact-form ul {
    display: grid;
    gap: 20px;
    margin-bottom: 11px;
    grid-template-columns: 48.4% 48.4%;
}

.contact-form ul li input:focus,
.contact-form ul li textarea:focus {
    /* .submit-btn:focus{ */
    outline: none;
    border: 1px solid var(--primary--color);
}

.contact-form ul li input,
.contact-form ul li textarea,
.contact-form ul li select {
    width: 100%;
    border: none;
    height: 63px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 12px;
    padding: 17px 20px 18px;
    color: var(--text--color2);
    border: 1px solid transparent;
    background: var(--secondary--color);
    font-family: "Urbanist", sans-serif;
}

.contact-form {
    z-index: 1;
    position: relative;
}

.contact-form ul li select {
    height: 63px;
    position: relative;
    width: 100%;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    border-radius: 12px;
    padding: 17px 20px 18px;
    color: var(--text--color2);
    border: 1px solid transparent;
    background: var(--secondary--color);
}

.contact-form ul li select::before {
    content: "\f107";
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.contact-form ul li input::placeholder,
.contact-form ul li select::placeholder {
    font-size: 14px;
    line-height: 14px;
    color: var(--text--color2);
}

.contact-form ul li:last-child {
    grid-column: 1/-1;
}

.contact-form ul li textarea {
    resize: none;
    height: 155px;
}

.contact-form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding-left: 3px;
    margin-top: 6px;
    margin-bottom: 0 !important;
    display: block;
    position: relative;
    color: var(--accent--color);
}

.send-us-msg-con .send-us-content-con {
    padding-right: 55px;
}

.send-us-msg-con form select {
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 94.3% 27px !important;
    background-image: url(../images/dropdown-arrow.png) !important;
    color: var(--black--color);
    font-weight: 600;
}

/*  */
.faq-con {
    background-image: url(../images/faq-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* FAQ SECTION */
.faq-con .faq_content .heading-title-con span {
    margin-bottom: 14px;
}

.faq-con .faq_content .heading-title-con h2 {
    margin-bottom: 0;
}

.faq-con h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    display: inline-block;
    font-family: "Teko", sans-serif;
}

.faq-con .accordion-card {
    margin-bottom: 25px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--grey--family--color);
    box-shadow: 0 2px 50px rgb(0 0 0 / 3%);
}

.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}

.faq-con .accordion-card .btn-link h6 {
    color: var(--accent--color);
}

.faq-con .accordion-card h6 img {
    position: absolute;
    top: 14px;
    margin: 0 auto;
    left: 20px;
}

.faq-con .accordion-card h6 {
    font-size: 20px;
    font-weight: 700;
}

.faq-con .accordion-card .collapsed h6 {
    color: var(--secondary--color);
    white-space: inherit;
    word-break: break-word;
    margin-bottom: 0;

}

.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--accent--color);

}

.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid transparent;
}

.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}

.faq-con .accordian-inner .card-header a {
    padding: 23px 37px 23px 37px;
}

.faq-con .accordian-inner .card-body {
    padding: 0 37px 20px 37px;
}

.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}

.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}

.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
    white-space: inherit;
    word-break: break-word;
}

.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}

.faq-con .accordion-card .btn-link:before {
    content: "\f068";
    font-size: 20px;
    top: 19px;
    right: 24px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--accent--color);
}

.faq-con .accordion-card .collapsed:before {
    content: "\2b";
    color: var(--accent--color);
}

.faq-con .heading-title-con {
    margin-bottom: 60px;
}

/* CTA SECTION */
.cta-con {
    background-image: url(../images/cta-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-con h2 {
    margin-bottom: 48px;
}

.cta-con .primary_btn {
    min-width: 247px;
    padding-right: 40px;
}

/* TESTIMONIALS SECTION */
.testimonials-con .testimonials-img-con {
    text-align: right;
}

.testimonials-con .testimonials-img-con figure img {
    border-radius: 30px;
}

.testimonials-con .heading-title-con h2 {
    margin-bottom: 28px;
}

.testimonials-con .testimonials-box figure.flex-shrink-0 {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary--color);
    border-radius: 100%;
    margin-right: 30px;
}


.testimonials-con .owl-carousel .owl-item img {
    display: block;
    width: auto;
}

.testimonials-con .testimonials-content-con {
    margin-right: 40px;
}

.testimonials-con .tb-top {
    margin-bottom: 42px;
}

.testimonials-con .tb-bottom {
    padding-left: 78px;
}

.testimonials-con .tb-bottom p {
    margin-bottom: 4px;
}

.testimonials-con .tb-bottom h6 {
    margin-bottom: 3px;
}

.testimonials-con .tb-bottom i {
    color: var(--accent--color);
    font-size: 11px;
}

.testimonials-box .tb-bottom .review-content {
    margin-left: 22px;
}

.testimonials-con .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: 9px;
}

.owl-carousel .owl-nav button.owl-next i,
.owl-carousel .owl-nav button.owl-prev i {
    margin: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: transparent;
}

.owl-carousel .owl-nav button.owl-next i:hover,
.owl-carousel .owl-nav button.owl-prev i:hover {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary--color);
    border: 1px solid var(--primary--color);
    border-radius: 100%;
}

/* PRICING PLANS SECTION */
.pricing-plan-con {
    background-image: url(../images/pricing-plans-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing-plan-con .pricing-box {
    background-color: var(--black--color);
    padding: 50px 45px;
    border-radius: 25px;
    transition: ease-in-out 0.6s;
}

.pricing-plan-con .pricing-box p {
    margin-bottom: 18px;
    line-height: 24px;
}

.pricing-plan-con ul {
    margin-bottom: 28px;
}

.pricing-plan-con ul li {
    padding-left: 30px;
    margin-bottom: 7px;
    color: var(--text--color);
    font-weight: 500;
}

.pricing-plan-con ul li:last-child {
    margin-bottom: 0;
}

.pricing-plan-con ul li i {
    color: var(--accent--color);
    position: absolute;
    left: 0;
    top: 4px;
}

.generic-price span.starting-at {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text--color);
    font-weight: 500;
}

.generic-price sup {
    font-size: 24px;
    top: -14px;
    color: var(--secondary--color);
}

.generic-price span.price-text {
    font-size: 54px;
    line-height: 60px;
    color: var(--secondary--color);
    font-weight: 700;
}

.generic-price span.per-month {
    font-size: 18px;
    color: var(--text--color);
}

.generic-price {
    margin-bottom: 16px;
}

.pricing-box:hover .generic-price span.price-text,
.pricing-box:hover .generic-price sup {
    color: var(--secondary--color);
}

.pricing-box:hover ul li i {
    color: var(--secondary--color);
}

.pricing-box:hover .generic-price span.per-month {
    color: var(--text--color);
}

.pricing-box:hover {
    transform: translateY(-2px);
    background-color: var(--primary--color);
}

.pricing-box:hover * {
    color: var(--secondary--color);
}

.pricing-plan-con .pricing-box:hover .primary_btn {
    background-color: var(--accent--color);
    color: var(--black--color);
}

.pricing-box:hover .generic-price span.starting-at {
    color: var(--secondary--color);
}

.pricing-box:hover .generic-price span.per-month {
    color: var(--secondary--color);
}

/* HOW IT WORKS SECTION */
.how-it-works-con .work-box {
    position: relative;
    padding: 0 24px;
}

.how-it-works-con .work-box figure {
    width: 163px;
    height: 163px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 45px;
}

.bg-yellow {
    background-color: var(--accent--color);
}

.bg-blue {
    background-color: var(--primary--color);
}

.how-it-works-con .work-box span {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -15px;
    border-radius: 100%;
}

.how-it-works-con .row::after {
    position: absolute;
    content: '';
    background-image: url(../images/dooted-line.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 2px;
    width: 930px;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 54%;
    z-index: -1;
}

/* ABOUT US SECTION */
.about-us-con .about-img-con figure img {
    border-radius: 30px;
}

.about-us-con .about-img-con,
.imgs-con {
    gap: 30px;
}

.about-us-con {
    padding: 50px 136px 50px 35px;
}

.about-us-con ul li {
    font-size: 18px;
    font-weight: 700;
    padding-left: 34px;
    color: var(--secondary--color);
    margin-bottom: 8px;
}

.about-us-con h2 {
    margin-bottom: 25px;
}

.about-us-con p {
    margin-bottom: 22px;
    color: var(--secondary--color);
    padding-right: 18%;
}

.about-us-con ul {
    margin-bottom: 38px;
}

.about-us-con ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
}

.about-us-con .car-vector {
    right: 0;
    bottom: 0;
}

.about-us-con .secondary_btn:hover {
    background-color: var(--secondary--color);
    color: var(--black--color);
}

/* STATISTICS SECTION */
.statistics-con .counter-content span.counter {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    color: var(--secondary--color);
    margin-bottom: 10px;
}

.statistics-con .counter-content sup {
    color: var(--accent--color);
    font-size: 35px;
    font-weight: 700;
    top: -19px;
}

.statistics-con .counter-content {
    border-right: 1px solid rgb(255 255 255 / 22%);
    padding-right: 70px;
}

.span-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: var(--text--color);
}

/* OUR SSERVICES SECTION  */
.our-services-con p {
    font-size: 16px;
    line-height: 28px;
}

.our-services-con .services-inner-con {
    margin-top: 60px;
    gap: 60px;
}

.our-services-con .row.margin-row {
    margin-bottom: 40px;
}

.our-services-con .services-outer-con .services-box img {
    border-radius: 30px;
}

.our-services-con .services-digit {
    top: 31px;
    left: 31px;
    font-size: 30px;
    font-weight: 700;
}

.our-services-con .services-detailing {
    width: 350px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 30px;
    z-index: 10;
    transition: ease-in-out 0.6s;
}

.service-btn figure {
    background-color: rgb(255 255 255 / 20%);
    border-radius: 8px;
}

.service-btn figure:hover {
    background-color: var(--black--color);
}

.our-services-con .services-outer-con .services-box .service-btn figure img {
    border-radius: 0;
}

.our-services-con .services-box:hover a.service-btn figure {
    background-color: var(--black--color);
}

.our-services-con .services-box .overlay-image,
.our-services-con .services-box {
    position: relative;
}

.our-services-con .services-box {
    transition: ease-in-out 0.6s;
}

.our-services-con .services-box:hover {
    transform: translateY(-4px);
}

.our-services-con .services-box .overlay-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 38%;
    border-radius: 30px;
    background-image: linear-gradient(to top, #000 0%, #000 100%);
}

.our-services-con .services-box:hover figure {
    opacity: 1;
    border-radius: 30px;
    /* background-image: linear-gradient(to top, #2238fc 0%, #fff 100%); */
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255, 0.1) 20%, rgb(52, 96, 252) 100%);
}

.our-services-con .services-box:hover .service-btn figure {
    border-radius: 8px;
    background: var(--black--color);
    color: var(--secondary--color);
}

.our-services-con .services-box:hover .overlay-image::before {
    opacity: 0;
}

.our-services-con .services-box:hover img {
    opacity: 0.3;
}

.our-services-con .services-box:hover .service-btn figure img {
    opacity: 100%;
}

.our-services-con .services-box:hover .services-detailing {
    transform: translateY(-3px);
}

/* BANNER SECTION */
.banner-con .banner-inner-con .primary_btn {
    margin-right: 17px;
}

.banner-con .banner-inner-con h1 {
    margin-bottom: 27px;
}

.banner-con .banner-inner-con p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text--color);
    margin-bottom: 32px;
}

.banner-con .blue-box {
    width: 364px;
    height: 358px;
    border-radius: 20px;
    background-color: var(--primary--color);
    position: absolute;
    bottom: -60px;
    right: 0;
    padding: 37px 26px 32px 35px
}

.banner-con .blue-box .user-box img {
    margin-left: -18px;
    border: 2px solid var(--secondary--color);
    border-radius: 100%;
    width: 51px;
}

.banner-con .blue-box .user-box .user-text span.counter,
.banner-con .blue-box .user-box .user-text span.alphabet,
.banner-con .blue-box .user-box .user-text sup {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 5px;

}

.banner-con .blue-box .user-box .user-text span.span-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    padding-bottom: 33px;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    margin-bottom: 33px;
}

.banner-con .blue-box .user-box .user-text sup {
    top: unset;
    right: 2px;
}

.banner-con .blue-box .user-box .imgz-wrap {
    margin-bottom: 30px;
}

.banner-con .user-bottom-wrap p {
    line-height: 22px;
}

.banner-con .user-bottom-wrap .arrow-btn figure {
    position: relative;
    right: unset;
    top: unset;
}

.banner-con .user-bottom-wrap .arrow-btn figure:hover {
    background-color: var(--accent--color);
}

.banner-con .user-bottom-wrap .arrow-btn figure:hover img {
    filter: brightness(0%) invert(0);
}

.banner-con .blue-box .user-bottom-wrap .arrow-btn figure img {
    margin-left: unset;
    border: unset;
    border-radius: 0;
    width: unset;
}

.home-banner-wrapper {
    background-image: url(../images/banner-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

/* PRIVACY POLICY */

.privacy-policy-content-con h4 {
    font-weight: 600;
    margin-bottom: 18px;
}

.privacy-policy-content-con p,
.privacy-policy-content-con ul li {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: var(--text--color);
}

.privacy-policy-content-con ul li {
    padding-left: 24px;
    margin-bottom: 8px;
}

.privacy-policy-content-con ul li i {
    left: 0;
    position: absolute;
    top: 6px;
    color: var(--accent--color);
    font-size: 14px;
}

/* SUB BANNER */
.sub-banner-con h1 {
    margin-bottom: 30px;
}

.sub-banner-con p {
    margin-bottom: 30px;
}

/*  */
.main-services-con .main-container {
    padding-right: 64px;
    padding-left: 64px;
}

.main-services-con .col-lg-4.col-md-6 {
    margin-bottom: 40px;
}

/* .sub-pg-wrapper.home-banner-wrapper {
    background-position: center;
} */

.main-faq-con.faq-con,
.main-pricing-con.pricing-plan-con {
    background-image: none;
}

/*  */
/* GALLERY SECTION */
.gallery-con .gallery-img-con img {
    display: block;
    object-fit: cover;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.gallery-con .gallery-img-con img {
    transition: .4s ease-in-out;
}

.gallery-con .gallery-img-con img {
    transition: .4s ease-in-out;
}

.gallery-con .gallery-img-con:hover img {
    transform: scale(1.1);
    overflow: hidden;
}

.gallery-con .gallery-img-con a {
    border-radius: 30px;
}

.gallery-con .gallery-img-con a::before {
    content: "";
    background: url(../images/Plus-icon.png) no-repeat center;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: none;
    transform: translate(-50%, -50%);
}

.gallery-con .gallery-img-con a::after {
    content: "";
    top: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 55%);
    display: none;
    border-radius: 30px;
}

.gallery-con .gallery-img-con:hover a::before,
.gallery-con .gallery-img-con:hover a::after {
    display: block;
}

.gallery-con .gallery-img-con a img {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    border-radius: 30px;
}

.gallery-con .gallery-img-con a.zoom:hover img {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

.gallery-con .gallery-img-con {
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

.gallery-inner-con .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.gallery-inner-con .left-image {
    grid-column: 1 / 2;
}

.gallery-inner-con .right-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 32px;
}

.gallery-inner-con .bottom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

#lightbox .modal-content {
    display: inline-block;
    text-align: center;
    background: none;
    border: none;
}

#lightbox .modal-body img {
    border-radius: 30px;
}

.modal {
    padding: 0;
}

.modal-open .modal {
    overflow-y: hidden;
    padding-right: 0 !important;
}

.modal-header {
    border: none;
}

.modal-body {
    padding: 0;
}

button.close:focus {
    outline: none;
    border: none;
}

button.close {
    border: 0;
    position: absolute;
    right: -20px;
    top: -20px;
    color: var(--secondary--color);
    background: var(--primary--color);
    opacity: 1;
    padding: 6px 16px 14px !important;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 32px;
    z-index: 2;
    font-weight: 300;
}

button.close span i {
    font-size: 20px;
}

button.close:hover {
    background: var(--primary--color);
    color: var(--secondary--color);
    opacity: 1;
}

.modal-dialog {
    max-width: fit-content;
    top: 20%;
    width: 55%;
}

.modal-content {
    height: 100vh;
    overflow: inherit;
}

/* MAIN ABOUT CON */
.main-about-us-con .about-content-con {
    padding-left: 65px;
}

/* VIDEO SECTION */
.video-con {
    background-image: url(../images/vid-con-bg-img.jpg);
    background-repeat: no-repeat;
    padding-bottom: 144px;
    padding-top: 144px;
    background-size: cover;
}

.video-con .special-text {
    margin-bottom: 18px;
}

.video-con figure {
    margin-right: 100px;
}

/* TEAM SECTION */

.our-team-con .team-box .designation {
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text--color);
    line-height: 20px;
}

.our-team-con .team-box figure {
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.our-team-con .team-box figure img {
    transition: ease-in-out 1s;
    border-radius: 25px;
}

.our-team-con .team-box:hover figure img {
    transform: scale(1.02);
}

.our-team-con .team-box ul li a {
    margin: 0 4px;
}

.our-team-con .team-box ul li:hover i {
    transform: translateY(-2px);
}

.our-team-con .team-box h5 {
    margin-bottom: 5px;
    font-size: 22px;
}

.our-team-con .team-box ul li i {
    width: 44px;
    height: 44px;
    font-size: 16px;
    background-color: var(--primary--color);
    line-height: 44px;
    color: var(--secondary--color);
    border-radius: 100%;
    transition: ease-in-out 0.5s;
}

.our-team-con .team-box ul li i:hover {
    background-color: var(--accent--color);
    color: var(--black--color);
}

.our-team-con .team-box {
    transition: ease-in-out 0.6s;
    padding-bottom: 20px;
}

.our-team-con .team-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: rgb(255 255 255 / 10%);
}

.our-team-con .col-lg-3.col-md-6 {
    margin-bottom: 65px;
}

.our-team-con .col-lg-3.col-md-6:nth-last-of-type(-n+4) {
    margin-bottom: 0;
}

/*  */
/* CONTACT INFO SECTION */

.contact-info-box {
    transition: ease-in-out 0.6s;
}

.contact-info-con .contact-info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.contact-info-con .contact-info-box figure {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: ease-in-out 0.5s;
}

.contact-info-con .contact-info-box h5 {
    margin-bottom: 11px;
}

.contact-info-con .contact-info-box p {
    line-height: 26px;
    font-weight: 500;
}

.contact-info-con .contact-info-box a {
    color: var(--text--color);
    font-weight: 500;
}

.contact-info-con .contact-info-box a:hover {
    color: var(--primary--color);
}

/* map section */
.contact-map-con iframe {
    height: 546px;
    width: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    margin-bottom: -8px;
    pointer-events: none;
    border-radius: 30px;
    border: none;
}

.contact-map-con iframe:hover {
    filter: none;
}

/* Login Form Page Style  */

.login-form {
    min-height: 100vh;
    /* background-image: url(../images/login-signup-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}

.login-form .login-form-title {
    margin-bottom: 30px;
}

.login-form .login-page-logo {
    margin-bottom: 25px;
}

.login-form .login-form-box {
    width: 450px;
    margin: 0 auto;
    position: relative;
}

.login-form .login-card {
    padding: 30px;
    margin-bottom: 30px;
    line-height: 0.8;
    border-radius: 20px;
    background: var(--primary--color);
}

.login-form .login-card label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 13px;
    color: var(--secondary--color);
}

.login-form .login-card .input-field {
    font-size: 16px;
    font-weight: 500;
    height: 54px;
    width: 100%;
    line-height: 16px;
    padding: 0 21px;
    border-radius: 100px;
    background: transparent;
    color: var(--secondary--color);
    /* border: 1px solid rgb(255 255 255 / 50%); */
    border: 1px solid var(--secondary--color);
}

.login-form .login-card .input-field:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--accent--color);
}

.login-form .login-card .form-group {
    margin-bottom: 16px;
}

.login-form .login-card .btn-primary {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 20px 15px;
    margin-bottom: 16px;
    width: 100%;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    color: var(--primary--color);
    background-color: var(--secondary--color);
    transition: all 0.8s ease-in-out;
}

.login-form .login-card .btn-primary:hover {
    background-color: var(--accent--color);
    color: var(--black--color);
}

.login-form .login-card .forgot-password {
    color: var(--secondary--color);
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}

.login-form .login-card .forgot-password:hover {
    text-decoration: underline;
    color: var(--secondary--color);
}

.login-form .login-form-box .join-now-outer a {
    font-size: 16px;
    line-height: 18px;
    color: var(--secondary--color);
    text-decoration: none;
}

.login-form .login-form-box .join-now-outer a:hover {
    text-decoration: underline;
    color: var(--accent--color);
}

.login-form .login-card .select-option option {
    font-size: 16px;
    color: black;
}

.login-form .form_style::placeholder {
    color: var(--secondary--color);
    opacity: 1;
}

.login-form .form_style:-ms-input-placeholder {
    color: var(--black--color);
}

.login-form .form_style::-ms-input-placeholder {
    color: var(--primary--color);
}

/* Join-Now Form Page Style */

.sign-up-form {
    padding: 70px 0;
}

.sign-up-form .login-form-box {
    width: 700px;
}

.sign-up-form .login-card label small {
    font-size: 14px;
}

.sign-up-form .login-card .select-option {
    padding: 0 40px 0 21px;
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 96.5% 24px !important;
    background-image: url('../images/dropdown-arrow1.png') !important;
}

.sign-up-form .login-card .select-option:focus {
    outline: none;
    box-shadow: none;
}