@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --textLight: #747474;
}

body {
    font-size: 18px;
    line-height: 24px;
    color: var(--textLight);
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #000;
    transition: 0.5s ease;
    text-decoration: none;
}

p {
    font-size: 16px;
    line-height: 22px;
    color: var(--textLight);
    font-weight: 400;
    margin: 0 0 20px;
}

p:last-child {
    margin: 0;
}

h1,
h2,
h4,
h3,
h5,
h6 {
    font-weight: 600;
    line-height: 1.1;
    color: var(--black);
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

.fw_800 {
    font-weight: 800;
}

.fw_900 {
    font-weight: 900;
}

button {
    background: transparent;
    border: 0;
    padding: 0;
}

header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: 0.4s ease;
}

.top_header {
    text-align: center;
    padding: 5px 0;
    background: #E4E4E4;
    transition: 0.5s ease;
}

.top_header p {
    color: #000;
    font-size: 16px;
}

.navbar {
    padding: 0;
    transition: 0.5s ease;
}

.site-header.fixed .top_header {
    height: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
}

.site-header.fixed .header_inner {
    margin: 15px 0 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.site-header.fixed .navbar {
    padding: 0;
}

.navbar .container-fuild {
    display: flex;
    width: 100%;
    padding: 0 100px;
    align-items: center;
}

.navbar-nav .nav-item .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    text-transform: uppercase;
    padding: 0 15px;
    position: relative;
    cursor: pointer;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--black);
}

.smooth-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.smooth-content {
    position: relative;
    will-change: transform;
}

.btn_primary {
    transition: 0.5s ease;
    position: relative;
    z-index: 99;
    display: inline-block;
}

.btn_primary span {
    background: linear-gradient(90deg, #000000 0%, #666666 100%);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    gap: 15px;
    font-weight: 400;
    transition: 0.5s ease;
}

.btn_primary:before {
    content: "";
    position: absolute;
    left: -6px;
    top: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50px;
    background: linear-gradient(90deg, #000000 -30%, #ffffff 130%);
    z-index: -1;
}

.btn_primary:after {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50px;
    background: #fff;
    z-index: -1;
}

.btn_primary:hover span {
    background: linear-gradient(90deg, #666666 0%, #000000 100%);
}

.btn_primary img {
    transition: 0.5s ease;
}

.btn_primary_dark {
    background: linear-gradient(90deg, #000000 0%, #666666 100%);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    gap: 15px;
    font-weight: 400;
    transition: 0.5s ease;
}

.btn_primary_dark:hover {
    background: linear-gradient(90deg, #666666 0%, #000000 100%);
}

.btn_white {
    background: var(--white);
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    padding: 16px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn_white:hover {
    background: var(--black);
    color: var(--white);
}

.header_inner {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.navbar .dropdown-toggle::after {
    display: none;
}

.header_dropdown .dropdown-menu[data-bs-popper] {
    right: 0;
    left: inherit;
    top: 37px;
}

.dropdown-item {
    text-transform: uppercase;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
}

.dropdown-item:hover {
    background: #E4E4E4;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--black);
    color: var(--white);
}

.navbar .btn_primary_dark {
    margin-right: 20px;
}

.sidebar_menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar_menu li a {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--black);
    position: relative;
    transition: 0.5s ease;
}

.sidebar_menu li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.sidebar_menu li a:hover {
    padding-left: 15px;
}

.sidebar_menu li a:hover:before {
    opacity: 1;
    visibility: visible;
}

.sidebar_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar_inner .sidebar_follow_wrap {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.sidebar_follow_wrap h4 {
    font-size: 18px;
    font-weight: 600;
}

.offcanvas-header {
    border-bottom: 1px solid #ddd;
}

/* main{
    padding-top: 130px;
} */
.banner_wrapper {
    padding: 200px 0 0;
}

.banner_title {
    text-align: center;

}

.banner_title h1 {
    font-size: 150px;
    font-weight: 400;
    letter-spacing: 70px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) -170%, rgba(255, 255, 255, 1) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-_img {
    margin-top: -100px;
    text-align: center;
}

.banner_text {
    padding-top: 70px;
}

.banner_text h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 10px;
}

.animate_text {
    overflow: hidden;
}

.banner_text p {
    font-size: 15px;
    font-weight: 400;
}

.banner_text .line {
    width: 130px;
    height: 1px;
    background: var(--black);
    display: block;
}

.banner_icon ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.banner_icon {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

.banner_icon .arrow_img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.banner_bottom {
    padding: 30px 30px;
    text-align: center;
    max-width: 420px;
    margin: 0 auto -137px;
    background: #fff;
    z-index: 9;
    position: relative;
}

.banner_bottom:after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -6px;
    aspect-ratio: 130 / 143;
    background: url(../images/banner-shape.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 130px;
    background-size: 130px;
}

.banner_bottom:before {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -6px;
    aspect-ratio: 130 / 143;
    background: url(../images/banner-shape.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 130px;
    background-size: 130px;
    transform: scaleX(-1);
}

.banner_bottom h3 {
    font-size: 30px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 15px;
}

.clarity_wrapper {
    padding: 50px 0 90px;
    background: linear-gradient(153deg, rgba(0, 0, 0, 1) 30%, rgba(103, 103, 103, 1) 100%);
}

.bg_gradient {
    background: linear-gradient(153deg, rgba(0, 0, 0, 1) 30%, rgba(103, 103, 103, 1) 100%);
}

.follow_wraper h5 {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 15px;
}

.follow_wraper ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review_wrapper {
    text-align: center;
}

.review_wrapper .review_inner {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0 0 10px;
}

.review_wrapper .review_inner span {
    color: var(--white);
    padding-right: 7px;
    margin-right: 7px;
    border-right: 1px solid var(--white);
}

.review_wrapper p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.clarity_top_wrapper {
    padding: 0 0 80px;
}


.title_wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.title_wrapper h2 {
    font-size: 90px;
    text-transform: uppercase;
    letter-spacing: 18px;
    font-weight: 400;
    background: linear-gradient(180deg, #FFFFFF -83%, #2A2A2A 67%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title_wrapper h4 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: var(--white);
    margin: -50px 0 20px;
}

.title_wrapper p {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
}

.clarity_box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.clarity_box h4 {
    margin: 15px 0;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
}

.clarity_box p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.elite_wrapper {
    padding: 120px 0;
}

.title_wrapper.title_dark h2 {
    font-size: 60px;
    background: linear-gradient(180deg, #2A2A2A 0%, #FFFFFF 77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title_wrapper.title_dark h4 {
    margin: -33px 0 20px;
}

.title_wrapper.title_dark h4,
.title_wrapper.title_dark p {
    color: var(--black);
}

.elite_box_wrapper {
    max-width: 1020px;
    margin: 0 auto;
}

.elite_box {
    width: 100%;
    aspect-ratio: 30/34;
    border-radius: 20px;
    overflow: hidden;
    max-width: 300px;
    margin: 35px auto 0;
}

.elite_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.elite_box:hover img {
    transform: scale(1.08) rotate(2deg);
}

.feature_wrapper {
    padding: 0 0 100px;
}

.nav-tabs {
    justify-content: center;
    border: 0;
    gap: 10px;
    margin: 0 0 60px;
}

.nav-tabs li .nav-link {
    background: transparent;
    color: #868686;
    padding: 10px 40px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 400;
    border: 0 !important;
    transition: 0.5s ease;
}

.nav-tabs li .nav-link.active,
.nav-tabs li .nav-link:hover {
    border: 0;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}

.list_check {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.list_check li {
    position: relative;
    padding-left: 52px;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.list_check li:before {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 32px;
    height: 32px;
    background: url(../images/check.svg);
    background-size: 32px;
}

.feature_content h2 {
    margin: 0 0 40px;
}

.feature_img {
    aspect-ratio: 43/55;
    max-width: 430px;
    margin: 0 auto;
    position: relative;
}

.feature_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.feature_tag {
    padding: 10px 25px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.1);
    max-width: fit-content;
}

.feature_tag>* {
    margin: 0;
}

.feature_tag h5 {
    font-size: 16px;
    font-weight: 600;
}

.feature_tag p {
    font-size: 12px;
    font-weight: 500;
    color: #A6A6A6;
}

.feature_tag.one {
    position: absolute;
    left: -80px;
    top: 70px;
}

.feature_tag.two {
    position: absolute;
    right: -80px;
    top: 70px;
}

.feature_tag ul li {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #191A15;
}

.feature_tag ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../images/check-outline.svg);
    background-size: 24px;
}

.feature_tag.three {
    position: absolute;
    left: -80px;
    bottom: 30px;
    max-width: 300px;
}

.feature_list_inner {
    background: var(--white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 114px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: -170px;
    z-index: 9;
    position: relative;
}

.feature_list_inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
    position: relative;
}

.feature_list_inner ul:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: #D2D2D2;
}

.feature_list_inner ul:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #D2D2D2;
}

.feature_list_inner ul li {
    width: calc(50% - 45px);
    display: flex;
    align-items: center;
}

.feature_list_inner ul li .icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: #F4F4F4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_list_inner ul li .content {
    width: calc(100% - 90px);
    padding-left: 30px;
}

.feature_list_inner ul li .content h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
}

.feature_list_inner ul li .content p {
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 400;
}

.feature_dark_wrapper .left_img {
    width: 100%;
    aspect-ratio: 50/55;
    overflow: hidden;
    border-radius: 40px;
}

.feature_dark_wrapper .left_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature_dark_list ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 100px;
}

.feature_dark_list ul li {
    display: flex;
}

.feature_dark_list ul li .icon {
    width: 48px;
    height: 48px;
}

.feature_dark_list ul li .content {
    width: calc(100% - 48px);
    padding-left: 24px;
}

.feature_dark_list ul li .content h4 {
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 15px;
}

.feature_dark_list ul li .content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.feature_dark_wrapper {
    padding-top: 300px;
    padding-bottom: 100px;
}

.outcomes_wrapper {
    padding: 100px 0;
}

.outcome_box {
    padding: 30px 40px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: 0.5s ease;
}

.outcome_box:hover {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.outcome_box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.outcome_box h4 {
    margin: 20px 0 15px;
    font-size: 22px;
    font-weight: 500;
}

.connectivity_wrapper {
    padding: 80px 0;
}

.connectivity_wrapper h3 {
    color: var(--white);
    margin: 0 auto 70px;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
}

.connectivity_list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.connectivity_list li {
    position: relative;
    padding-left: 40px;
}

.connectivity_list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: url(../images/right-arrow.svg);
    background-size: 20px;
}

.connectivity_list li h4 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 15px;
    color: var(--white);
}

.connectivity_list li p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.athletes_wrapper {
    padding: 100px 0;
}

.athletes_box {
    text-align: center;
}

.athletes_box h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 15px;
}

.athletes_img_wrap {
    margin: 80px 0 0;
}

.athletes_img_wrap ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
}

.athletes_img_wrap ul li {
    width: calc(25% - 23px);
    overflow: hidden;
    border-radius: 150px 150px 0 0;
    aspect-ratio: 26/35;
}

.athletes_img_wrap ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athletes_img_wrap ul li:nth-child(even) {
    aspect-ratio: 26/27;
}

.testimonial_box {
    padding: 50px 40px;
    background: var(--white);
    transition: 0.5s ease;
}

.testimonial_box:hover {
    box-shadow: 15px 10px 50px 0 rgba(0, 0, 0, 0.1);
}

.testimonial_box>img {
    margin: 0 0 30px;
}

.testimonial_box>p {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    line-height: 30px;
}

.testimonial_box hr {
    border: 1px solid #737373;
    margin: 40px 0;
    opacity: 1;
}

.testimonial_user {
    display: flex;
    align-items: center;
}

.testimonial_user .user_img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial_user .user_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial_user .user_name {
    width: calc(100% - 95px);
    padding-left: 20px;
}

.user_name h4 {
    font-size: 24px;
    margin: 0 0 10px;
}

.user_name p {
    font-size: 16px;
    color: var(--black);
}

.banne_service_slider .swiper-wrapper {
    padding-left: calc((100% - 1320px) / 2);
}

.banne_service_slider {
    padding: 30px 0;
}

.testimonial_main_wrapper {
    padding: 0 0 100px;
}

.newslette_inner {
    background: var(--black);
    padding: 30px 60px;
    border-radius: 20px;
}

.newslette_inner h4 {
    color: var(--white);
    font-size: 30px;
    line-height: 45px;
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 100px;
}

.newslette_inner .form-control {
    background: var(--white) url(../images/email-icon.svg);
    background-size: 24px;
    background-position: left 16px center;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 52px;
    border-radius: 40px;
    border: 0;
    margin: 0 0 15px;
}

.newslette_inner .btn_white {
    width: 100%;
    background: var(--white);
    color: var(--black);
    text-align: center;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 50px;
}

.newslette_wrapper {
    margin-bottom: -90px;
    position: relative;
    z-index: 9;
}

.main_footer {
    padding: 140px 0 0;
    background: #F0F0F0;
}

.footer_logo>img {
    margin: 0 0 15px;
}

.footer_logo {
    max-width: 420px;
}

.footer_logo p {
    font-size: 14px;
    opacity: 0.6;
    margin: 0 0 20px;
    color: var(--black);
}

.social_wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social_wrapper li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.social_wrapper li a:hover {
    background: var(--black);
    border-color: var(--black);
}

.social_wrapper li a:hover img {
    filter: invert(1);
}

.footer_link h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 25px;
}

.footer_link ul li a {
    font-size: 16px;
    color: var(--black);
    opacity: 0.6;
    margin: 0 0 15px;
}

.footer_link ul li a:hover {
    opacity: 1;
}

.copyright {
    margin-top: 45px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright p {
    font-size: 14px;
    font-weight: 400;
}

.copyright ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.copyright ul li a img {
    border: 1px solid #D6DCE5;
    border-radius: 5px;
    box-shadow: 0 5px 9px 0 rgba(183, 183, 183, 0.08);
}

.tested_athletes {
    padding: 60px 0 100px;
}

.title_left {
    margin: 0 0 30px;
}

.title_left h4 {
    color: var(--white);
    font-size: 40px;
    font-weight: 500;
    margin: 0;
}

.title_left h2 {
    font-size: 60px;
    font-weight: 600;
    color: var(--white);
}

.tested_athletes_img_wrap {
    width: 100%;
    aspect-ratio: 40/38;
    overflow: hidden;
    border-radius: 10px;
}

.tested_athletes_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tested_athletes_slider .swiper-wrapper {
    padding-left: calc((100% - 1300px) / 2);
}

.tested_line h4 {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    margin: 0;
}

.tested_line h4 span {
    font-size: 65px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 6.5px;
    background: linear-gradient(180deg, #FFFFFF -105%, #000000 117%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.tested_line h4 span:before {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFFFFF -105%, #000000 117%);
}

.tested_line h4 span:last-child:before {
    display: none;
}

.parallax-container {
    overflow: hidden;
}

.feature_img .parallax-container {
    border-radius: 50px;
}

.corporate_banner {
    background: linear-gradient(153deg, rgba(0, 0, 0, 1) 30%, rgba(103, 103, 103, 1) 100%);
    padding: 200px 0 100px;
}

.corporate_banner_content h2 {
    color: var(--white);
    margin: 0 0 10px;
    font-weight: 500;
}

.corporate_banner_content h4 {
    color: var(--white);
    font-weight: 400;
    margin: 0 0 25px;
}

.corporate_banner_content p {
    margin: 0 0 40px;
    color: var(--white);
}

.corporate_banner_content {
    padding-right: 80px;
}

.corporate_img {
    width: 100%;
    aspect-ratio: 53/43;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: -4px 14px 17px 0 rgba(0, 0, 0, 0.25);
}

.corporate_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate_banner {
    position: relative;
    z-index: 9;
}

.corporate_banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 120px;
    background: url(../images/left-line-round.svg);
    background-size: 93px;
    width: 93px;
    height: 275px;
    background-repeat: no-repeat;
}

.corporate_banner:after {
    content: "";
    position: absolute;
    right: 0;
    top: 200px;
    background: url(../images/right-line-round.svg);
    background-size: 94px;
    width: 94px;
    height: 342px;
    background-repeat: no-repeat;
}

.how_works_Wrapper {
    padding: 100px 0;
}

.how_works_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.how_works_box .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how_works_box h5 {
    color: #515151;
    font-weight: 500;
    margin: 0;
}

.how_works_box p {
    color: #676767;
    font-size: 15px;
}

.why_choose_wrapper {
    padding: 100px 0;
}

.why_choose_box_wrappe {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1050px;
    margin: 0 auto;
}

.why_choose_box_wrappe li {
    width: calc(33.3333%);
    padding: 0 45px;
    border-left: 1px solid #6E6E6E;
}

.why_choose_box_wrappe li:first-child {
    border-left: 0;
}

.why_choose_box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.why_choose_box img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.why_choose_box h6 {
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.why_choose_box p {
    color: #B5B5B5;
}

.corporate_info_wrapper {
    padding: 100px 0;
}

.corporate_info_wrapper h6 {
    font-weight: 500;
}

.corporate_info_wrapper p {
    font-size: 15px;
    font-weight: 300;
}

.contact_wrapper {
    padding: 200px 0 100px;
}

.contact_left {
    padding-right: 100px;
}

.contact_left p {
    font-size: 20px;
    color: var(--black);
}

.email_wrapper {
    margin: 50px 0;
}

.email_wrapper h3 {
    font-size: 30px;
    font-weight: 500;
}

.social_wrap h3 {
    font-size: 35px;
    font-weight: 500;
}

.social_wrap ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    text-decoration: underline;
    display: inline-block;
    margin: 0 0 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 20px;
}

.form_group label {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.form_group .form-control,
.form_group .form-select {
    background-color: #F7F7F7;
    border-radius: 5px;
    box-shadow: none !important;
    outline: 0;
    border: 0 !important;
    padding: 12px 20px;
}

.form_group textarea.form-control {
    height: 150px;
}

.warrantee_wrapper {
    padding: 200px 0 100px;
}

.warantee_form_wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-check .form-check-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.form-check .form-check-input {
    border-radius: 2px;
    box-shadow: none !important;
}

.form-check .form-check-input:checked {
    background-color: #626262;
    border-color: #626262;
}

.submit_wrapper {
    max-width: 550px;
    margin: 0 auto;
}

ul.list_disc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 15px;
}

ul.list_disc li {
    list-style: disc;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.about_banner_img {
    aspect-ratio: 29/42;
    border-radius: 30px;
    overflow: hidden;
}

.parallax-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
}

.about_banner_img.small {
    aspect-ratio: 29/20;
}

.about_video_wrapper {
    padding: 100px 0;
}

.video_thumb {
    border-radius: 12px;
    aspect-ratio: 62/36;
    overflow: hidden;
    position: relative;
}

.video_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_thumb .video_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video_content {
    padding-left: 50px;
}

.video_content h3 {
    margin: 0 0 30px;
    font-weight: 500;
}

.why_choose_wrapper.two .title_wrapper {
    max-width: 850px;
}

.about_second_left p {
    margin: 0;
}

.about_second_left h3 {
    margin: 0 0 25px;
}

.about_second_wrap {
    padding: 100px 0;
}

.about_second_img {
    border-radius: 30px;
    aspect-ratio: 50/47;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
}

.company_history_wrapper {
    padding: 100px 0;
}

.company_history_left h3 {
    color: var(--white);
    margin: 0 0 20px;
}

.company_history_left p {
    color: var(--white);
}

.company_history_img {
    max-width: 500px;
    margin-left: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 30px;
}
.company_history_top{
    padding-bottom: 70px;
    margin-bottom: 70px;
    border-bottom: 1px solid var(--white);
}
.comapny_testimonial_wrap {
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.comapny_testimonial_wrap:before{
    content: "";
    position: absolute;
    right: -50px;
    top: -30px;
    background: url(../images/quate2.svg);
    width: 107px;
    height: 100px;
    background-size: 107px;
    background-repeat: no-repeat;
}
.comapny_testimonial_wrap h4{
    font-size: 28px;
    line-height: 38px;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 40px;
}
.comapny_testimonial_wrap h6{
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 5px;
}
.comapny_testimonial_wrap p{
    color: var(--white);
}

.review_main_wrapper{
    padding: 100px 0;
}

.review_box img{
    margin: 0 0 15px;
}
.review_box h6{
    font-size: 18px;
    font-weight: 600;
}

.blog_banner{
    background: url(../images/blog-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.blog_title{
    text-align: center;
    margin: 0 0 40px;
}
.blog_title h5{
    font-size: 25px;
    font-weight: 600;
    color: #747474;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
}
.blog_title h2{
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    line-height: 70px;
}
.blog_banner_slider{
    max-width: 1000px;
    margin: 0 auto;
}

.blog_main_content h5{
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 25px;
}
.blog_main_content p{
    font-weight: 300;
    color: var(--white);
}

.blog_banner_slider .swiper-button-next,
.blog_banner_slider .swiper-button-prev{
    top: inherit;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #B4B4B4;
    border-radius: 4px;
    transition: 0.5s ease;
}
.blog_banner_slider .swiper-button-prev{
    left: inherit;
    right: 50px;
}
.blog_banner_slider .swiper-button-next:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/right-angle.svg);
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
}
.blog_banner_slider .swiper-button-prev:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/left-arrow.svg);
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
}
.blog_banner_slider .swiper-button-next:hover,
.blog_banner_slider .swiper-button-prev:hover{
    background: var(--white);
    border-color: var(--white);
}
.blog_banner_slider .swiper-button-next:hover:after,
.blog_banner_slider .swiper-button-prev:hover:after{
    filter: brightness(0);
}

.blog_list_wrapper{
    padding: 100px 0;
}

.blog_box .blog_img{
    aspect-ratio: 38/28;
    width: 100%;
    overflow: hidden;
    margin: 0 0 25px;
}
.blog_box .blog_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;

}
.blog_box h4{
    font-size: 25px;
    line-height: 34px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 20px;
}
.blog_box > a{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog_box:hover .blog_img img{
    transform: scale(1.08);
}
.load_more{
    text-align: center;
    margin-top: 60px;
}

.btn_border{
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    padding: 12px 35px;
    border: 1px solid var(--black);
}
.btn_border:hover{
    background: var(--black);
    color: var(--white);
}

.blog_detail_banner{
    padding: 0;
    position: relative;
    height: 100vh;
}
.blog_detail_banner .blog_detail_img{
    width: 100%;
    height: 100%;
    position: relative;
}
.blog_detail_banner .blog_detail_img:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg,rgba(7, 7, 7, 0) 37%, rgba(0, 0, 0, 1) 82%);
}
.blog_detail_banner .blog_detail_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_detail_content{
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
}
.blog_detail_content h1{
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    max-width: 880px;
    margin: 0;
}

.blog_content_wrapper{
    padding: 100px 0 60px;
}

.blog_content_wrapper h4{
    font-weight: 500;
    margin: 0 0 15px;
}

.blog_content_wrapper blockquote{
    position: relative;
    padding-left: 150px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    line-height: 45px;
    margin: 40px 0 30px;
}
.blog_content_wrapper blockquote:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 110px;
    height: 100px;
    background: url(../images/quate4.svg);
    background-size: 110px;
    background-repeat: no-repeat;
}
.share_wrapper{
    margin-top: 50px;
}
.share_wrapper ul{
    display: flex;
    align-items: center;
    max-width: 520px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #D9D9D9;
    gap: 40px;
}
.share_wrapper ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.share_wrapper ul li a{
     display: flex;
    align-items: center;
    gap: 10px;
}
.share_wrapper ul li.facebook_share a{
    color: #3B5998;
}
.share_wrapper ul li.twitter_share a{
    color: #00ACED;
} 

.related_blogs{
    padding: 0 0 100px;
}