/* ==========================
   Global Styles
========================== */

:root {
    --primary-color: #18bee4;
    --bg-color: #18bee4;
    --secondary-color: #2483c5;
    --text-color: #7a7f88;
    --heading-color: #000000;
}

/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p a {
    color: #18bee4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

/* Links */

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Paragraph */

p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Onest", sans-serif;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

h1 {
    font-size: 50px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-size: 25px;
    line-height: 1.3;
}

h4,
h5,
h6 {
    font-size: 18px;
    line-height: 1.4;
}

/* Images */

img {
    max-width: 100%;
}

/* Lists */

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Utility Classes */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* topbar css start */

.topbar-main {
    background-color: var(--bg-color);
    position: relative;
    padding: 5px 0;
    z-index: 5;
    overflow: hidden;
}

.topbar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topbar-right ul {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.25);
    padding-left: 28px;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: 1;
}

.topbar-right ul::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    right: -1000000px;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: -1;
}

.topbar-right ul li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1;
}

.topbar-right ul li .content p {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 5px;
    color: #fff;
}

.topbar-right ul li .content h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 0;
    color: #fff;
}

.topbar-right ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.topbar-right ul li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #18bee4;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.topbar-social-meadia {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.topbar-social-meadia a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 17px;
    height: 38px;
    width: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.topbar-social-meadia a::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #fff;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.topbar-social-meadia a:hover {
    color: #18bee4;
    border: 1px solid #fff;
}

.topbar-social-meadia a:hover:before {
    transform: scaleX(1);
}

/* topbar css end */

/* Main Navbar Css Start */

.main-navbar {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-navbar .navbar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-navbar .navbar-wrapper .logo-area img {
    max-width: 250px;
}

.navbar-menu-box {
    position: relative;
}

ul.navbar-menu-list {
    position: relative;
    display: flex;
}

ul.navbar-menu-list li {
    position: relative;
    margin-left: 32px;
}

ul.navbar-menu-list li:first-child {
    margin-left: 0;
}

ul.navbar-menu-list li a:hover,
ul.navbar-menu-list li a.active {
    color: #2483c5;
}

ul.navbar-menu-list li a.active:before {
    transform: scale(1, 1);
    transform-origin: right center;
}

ul.navbar-menu-list li a {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    position: relative;
}

span.dropdown-toggles {
    color: #000;
}

ul.navbar-menu-list li a::before {
    content: "";
    height: 2px;
    border-radius: 0px;
    background-color: #2483c5;
    position: absolute;
    bottom: -3px;
    left: 0px;
    right: 0px;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: right;
    z-index: 1;
}

ul.navbar-menu-list li a:hover::before {
    transform: scaleX(1);
}

.theme-btn {
    background-color: var(--bg-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.theme-btn span.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.theme-btn span.icon svg {
    width: 25px;
    height: 25px;
    transition: transform 0.35s ease;
    transform-origin: center;
}

/* Button hover par SVG 90 degree rotate hoga */
.theme-btn:hover span.icon svg {
    transform: rotate(45deg);
}

ul.dropdown-box-menu {
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    background: #fff;
    top: 100px;
    z-index: 1;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 15px;
    width: 340px;
}

ul.dropdown-box-menu li {
    margin-left: 0;
}

li.navbar-dropdown-menu:hover ul {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 40px;
    position: absolute;
    transition: all 0.4s;
}

.mobile-nav-icon {
    font-size: 23px;
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #18bee4;
}

span.menu-close {
    display: none;
}

.mobile-nav-icon.dots-menu {
    display: none;
}

ul.dropdown-box-menu li a {
    padding: 8px;
    display: block;
}

/* Main Navbar Css End */

/* Section Banner Css Start */

.banner-wrapper {
    position: relative;
    height: 100%;
    align-content: center;
}

section.banner-area {
    position: relative;
    padding: 100px 0;
    background-image: url("../assets/images/banner-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 600px; */
    background-position: left bottom;
}

.section-tagline-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 35px;
    color: #2483c5;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-wrapper h1 {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
}

.banner-wrapper p {
    color: #fff;
    font-size: 18px;
    text-align: justify;
}

.banner-cta-btn {
    display: flex;
    gap: 30px;
}

.banner-contact-form {
    position: relative;
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
}

.banner-contact-form h3 {
    text-align: center;
    color: #2483c5;
    margin-bottom: 20px;
}

.banner-contact-form .form-group {
    margin-bottom: 16px;
}

.banner-contact-form .form-group label.form-label {
    color: #2483c5;
    font-size: 18px;
    font-weight: 500;
}

.banner-contact-form .form-group .form-control {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.banner-contact-form .form-group .form-select {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.banner-form-btn .theme-btn {
    border: none;
    width: 100%;
    justify-content: space-between;
}

/* Section Banner Css End */

/* section Features css start */

section.features-area {
    position: relative;
    padding: 50px 0;
}

.feature-box {
    position: relative;
    display: flex;
    gap: 20px;
}

.feature-box .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.feature-box .icon img {
    width: 100%;
}

.feature-box .content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-box .content p {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 25px;
}

/* section Features css end */

/* section about us css start */

.features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 20px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.check-icon {
    width: 25px;
    height: 25px;
    min-width: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1db8dc;
    border-radius: 50%;
}

.check-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
}

.check-icon svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 767px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-item {
        font-size: 18px;
    }

    .check-icon {
        width: 25px;
        height: 25px;
        min-width: 25px;
    }
}

section.about-area {
    position: relative;
    padding: 60px 0;
}

.about-content {
    position: relative;
    padding-left: 20px;
}

.about-content .section-tagline-box {
    background-color: #18bee4;
    color: #fff;
    padding: 6px 20px;
}

.about-content h2 {
    font-size: 40px;
    line-height: 50px;
}

.about-img-area img {
    width: 100%;
    border-radius: 20px;
    height: 600px;
    object-fit: cover;
}

/* section about us css end */

/* section services css start */

section.services-area {
    position: relative;
    padding: 60px 0;
    background-image: url(../assets/images/services-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

section.services-area .section-title {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-title .section-tagline-box {
    background-color: #18bee4;
    color: #fff;
    margin: 0 auto 20px;
}

.section-title p {
    text-align: center;
}

.services-box {
    position: relative;
    padding: 20px;
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 40px;
}

.services-img {
    margin-bottom: 20px;
}

.services-img img {
    border-radius: 12px;
    width: 100%;
}

.services-content > a {
    color: #18bee4;
    font-size: 18px;
    font-weight: 500;
}

.services-btn {
    text-align: center;
}

/* section services css end */

/* Section Counter Css Start */

section.counter-area {
    background-color: #2483c5;
    position: relative;
    padding: 60px 0;
}

.counter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0;
}

.counter-box {
    position: relative;
    display: flex;
    gap: 20px;
}

.counter-box .icon {
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.counter-text h3 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 0;
}

.counter-text p {
    margin-bottom: 0;
    color: #fff;
}

.counter-box .icon img {
    max-width: 60px;
}

/* Section Counter Css End */

/* why choose us section css start */

.why-choose-us-content .section-tagline-box {
    background-color: #18bee4;
    color: #fff;
    padding: 6px 20px;
}

section.why-choose-us {
    position: relative;
    padding: 100px 0;
}

section.why-choose-us {
    position: relative;
    padding: 100px 0;
}

.why-choose-us-box {
    position: relative;
    padding: 20px;
}

.why-choose-us-box .icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-image: url(../assets/images/services-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.why-choose-us-box .icon img {
    max-width: 50px;
}

.why-choose-us-content h3 {
    font-size: 45px;
    font-weight: 700;
}

.why-choose-us-img img {
    width: 100%;
    max-width: 500px;
}

.why-choose-us-img {
    text-align: right;
}

.why-choose-us-box .content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.why-choose-us-box .content p {
    margin-bottom: 0;
}

.why-choose-us-box {
    position: relative;
    padding: 20px;
    border: 1px solid #18bee4;
    border-radius: 16px;
    margin-bottom: 30px;
}

/* why choose us section css end */

/* contact form area css start */

section.contact-area {
    background-color: #2483c5;
    padding: 100px 0;
    position: relative;
}

section.contact-area::before {
    content: "";
    background-image: url(../assets/images/shape-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
}

.contact-area-img img {
    width: 100%;
    border-radius: 16px;
    height: 600px;
    object-fit: cover;
}

.contact-area-img {
    text-align: center;
    position: relative;
}

.contact-form-area {
    position: relative;
}

.contact-form-area h3 {
    font-size: 30px;
    color: #fff;
    line-height: 45px;
}

.contact-form-area .form-group .form-control {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.contact-form-area .form-group .form-select {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.contact-form-area .form-group {
    margin-bottom: 20px;
}

.contact-form-area .form-group .form-label {
    color: #fff;
    font-size: 15px;
}

/* contact form area css end */

/* testimonails css start */

section.testimonails-area .section-title {
    position: relative;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

section.testimonails-area {
    padding: 70px 0;
    background-image: url("../assets/images/services-bg.jpg");
    background-size: cover;
    overflow: hidden;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    margin-bottom: 25px;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.testimonail-box {
    width: 500px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    position: relative;
}

/* Top Row Left To Right */
.slider-left .slider-track {
    animation: slideLeft 15s linear infinite;
}

/* Bottom Row Right To Left */
.slider-right .slider-track {
    animation: slideRight 15s linear infinite;
}

.testimonail-box::before {
    content: "";
    background-image: url(../assets/images/quote-icon-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: 30px;
    width: 120px;
    height: 100px;
    z-index: 0;
}

.star-rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonail-box h3 {
    margin-bottom: 10px;
}

.testimonail-box p {
    margin-bottom: 20px;
}

@keyframes slideLeft {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.star-rating {
    display: flex;
    gap: 5px;
}

/* testimonails css end */

/* footer css start */

footer.main-footer {
    background-color: #18bee4;
    padding: 80px 0 30px;
    position: relative;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    max-width: 260px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-widget p {
    color: #fff;
    margin-bottom: 20px;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff61;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-social-media h4 {
    margin-bottom: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.copyright-line p a {
    color: #fff;
}

section.contact-area .section-title {
    position: relative;
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

section.contact-area .section-title h3 {
    color: #fff;
}

section.contact-area .section-title p {
    color: #fff;
}

section.contact-area .section-title p a {
    color: #000;
}

.footer-social-media-list a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 17px;
    height: 38px;
    width: 38px;
    border: 2px solid #fff;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-social-media-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 40px;
}

.footer-box h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-box ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.footer-box ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.footer-box ul li::before {
    content: "";
    background-image: url(../assets/images/star.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    z-index: 0;
}

.footer-2 {
    background-color: #2483c5;
    padding: 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.footer-2-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.footer-2-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #2483c5;
    width: 50px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 25px;
}

.footer-2-box .content p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.footer-2-box .content h5 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/* footer css end */

.breadcrumbs-area {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("../assets/images/banner-bg.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.breadcrumbs-content {
    text-align: center;
}

.breadcrumbs-content h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: #18bee4;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-list li a:hover {
    color: #fff;
}

.breadcrumb-list span {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .breadcrumbs-area {
        padding: 90px 0;
    }

    .breadcrumbs-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .breadcrumbs-area {
        padding: 70px 0;
    }

    .breadcrumbs-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .breadcrumb-list li {
        font-size: 14px;
    }
}

/* services deatil page css start */

.service-sidebar-list ul li {
    margin-bottom: 10px;
    transition: 0.5s;
}

.service-sidebar-list ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    border-radius: 10px;
    background-color: #18bee4;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

.service-sidebar-list h5 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-sidebar {
    position: sticky;
    top: 30px;
}

.service-sidebar-list ul li a::after {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #50afe5;
    color: #fff;
    z-index: -1;
    transition: 0.3s;
}

.service-sidebar-list ul li a:hover::after {
    height: 100%;
}

.service-sidebar-list ul li a:hover {
    color: #fff;
}

section.services-deatil-page {
    position: relative;
    padding: 60px 0;
}
/* services deatil page css end */

.faq-wrapper {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: #50afe5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 22px 30px;
}

.faq-question h4 {
    font-size: 18px;
    color: #132238;
    font-weight: 600;
    margin: 0;
}

.faq-question span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #50afe5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

section.faq-page {
    position: relative;
    padding: 60px 0;
}

section.faq-page .section-title {
    margin: 0 auto 30px;
    text-align: center;
}
