/*-----------------------------------------------------------------------------------

    Template Name: Biogra - Personal Portfolio Template
    Author: RRDevs
    Description: Biogra - Personal Portfolio Template
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

	01. Template Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Template Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --rr-ff-body: 'Inter Tight', sans-serif;
    --rr-ff-heading: 'Inter Tight', serif;
    --rr-ff-p: 'Inter Tight', sans-serif;
    --rr-fw-normal: normal;
    --rr-fw-thin: 100;
    --rr-fw-elight: 200;
    --rr-fw-light: 300;
    --rr-fw-regular: 400;
    --rr-fw-medium: 500;
    --rr-fw-sbold: 600;
    --rr-fw-bold: 700;
    --rr-fw-ebold: 800;
    --rr-fw-black: 900;
    --rr-fs-body: 16px;
    --rr-fs-p: 16px;
    --rr-fs-h1: 180px;
    --rr-fs-h2: 48px;
    --rr-fs-h3: 24px;
    --rr-fs-h4: 22px;
    --rr-fs-h5: 16px;
    --rr-fs-h6: 14px;
    --rr-color-common-white: #ffffff;
    --rr-color-common-black: #000000;
    --rr-color-common-dark: #232323;
    --rr-color-heading-primary: #0F0F0F;
    --rr-color-text-body: #696969;
    --rr-color-theme-primary: #0F0F0F;
    --rr-color-bg-1: #11151C;
    --rr-color-grey-1: #F8F8F8;
    --rr-color-grey-2: #2D343E;
    --rr-color-grey-light: #F2F3F4;
    --rr-color-border-1: rgba(15, 15, 15, 0.1);
    --rr-color-border-light: #E4E4E4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
    background-color: var(--rr-color-common-white);
    font-family: var(--rr-ff-body);
    font-size: 16px;
    line-height: 1.625;
    font-weight: normal;
    color: var(--rr-color-text-body);
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a,
a:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    margin-top: 0px;
    font-weight: var(--rr-fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h1 {
    font-size: var(--rr-fs-h1);
}

h2 {
    font-size: var(--rr-fs-h2);
}

h3 {
    font-size: var(--rr-fs-h3);
}

h4 {
    font-size: var(--rr-fs-h4);
}

h5 {
    font-size: var(--rr-fs-h5);
}

h6 {
    font-size: var(--rr-fs-h6);
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: var(--rr-ff-p);
    font-size: 16px;
    font-weight: var(--rr-fw-normal);
    color: var(--rr-color-text-body);
    margin-bottom: 15px;
    line-height: 1.625;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--rr-color-theme-primary);
}

.slick-list.draggable {
    cursor: grab;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    outline: none;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

ul {
    display: block;
    padding: 0;
    margin: 0;
}

*::-moz-selection {
    background: var(--rr-color-common-black);
    color: var(--rr-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--rr-color-common-black);
    color: var(--rr-color-common-white);
    text-shadow: none;
}

::selection {
    background: var(--rr-color-common-black);
    color: var(--rr-color-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--rr-color-common-black);
    font-size: var(--rr-fs-body);
    opacity: 1;
}

*::placeholder {
    color: var(--rr-color-common-black);
    font-size: var(--rr-fs-body);
    opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.z-index-1 {
    z-index: 1;
}

.z-index-11 {
    z-index: 11;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.b-radius {
    border-radius: 6px;
}

.overflow-x {
    overflow-x: clip;
}

.bg-grey {
    background-color: var(--rr-color-grey-1);
}

.bg-dark-1 {
    background-color: var(--rr-color-heading-primary);
}

.bg-dark-2 {
    background-color: #F4F4F4;
}

.container {
    max-width: 1810px;
}

.container-3 {
    max-width: 1740px;
}

.container-6 {
    max-width: 1320px;
}

.container-2 {
    max-width: 1320px;
}

.container-4 {
    max-width: 1880px;
}

.container-5 {
    max-width: 1910px;
}

.border-all-body {
    margin: 0 20px;
    border-left: 1px solid rgba(15, 15, 15, 0.15);
    border-right: 1px solid rgba(15, 15, 15, 0.15);
}

.bd-bottom {
    border-bottom: 1px solid var(--rr-color-border-1);
}

.top-shape {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    width: 468px;
    height: 478px;
    position: absolute;
    top: -200px;
    left: -200px;
    z-index: -1;
}

@media (max-width: 1399px) {
    .top-shape {
        top: -250px;
        left: -250px;
    }
}

@media only screen and (max-width: 992px) {
    .top-shape {
        display: none;
    }
}

.bottom-shape {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    width: 468px;
    height: 478px;
    position: absolute;
    bottom: -200px;
    right: -200px;
    z-index: -1;
}

@media (max-width: 1399px) {
    .bottom-shape {
        bottom: -250px;
        right: -250px;
    }
}

@media only screen and (max-width: 992px) {
    .bottom-shape {
        display: none;
    }
}

.bg-color-top {
    background-color: #171719;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.bg-color-bottom {
    background-color: #171719;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
}

.overflow-h {
    overflow: hidden;
}

.line-wrap .line {
    background-color: #0c1420;
    height: 100%;
    width: 1px;
    position: absolute;
    left: 20%;
    top: 0;
    z-index: -1;
}

.line-wrap .line span {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--rr-color-primary-color, #4b83ff) 75%, var(--rr-color-primary-color, #4b83ff) 100%);
    width: 100%;
    height: 15vh;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: line-anim 15s 0s infinite;
    animation: line-anim 15s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.75, 0, 0.175, 1);
    animation-timing-function: cubic-bezier(0.75, 0, 0.175, 1);
}

.line-wrap .line:nth-child(2) {
    left: 50%;
}

.line-wrap .line:nth-child(2) span {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.line-wrap .line:nth-child(3) {
    left: 80%;
}

.line-wrap .line:nth-child(3) span {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

@-webkit-keyframes line-anim {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

@keyframes line-anim {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

.section-heading-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 10px;
}

.section-heading-1 .sub-heading {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .section-heading-1 .sub-heading {
        font-size: 14px;
    }
}

.section-heading-1 .sub-heading:before {
    background-color: var(--rr-color-heading-primary);
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 9%;
    left: 0px;
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 576px) {
    .section-heading-1 .sub-heading:before {
        top: 50%;
    }
}

.section-heading-1 .sub-heading.active:before {
    right: 0;
    opacity: 1;
}

.section-heading-1 .section-title {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
    text-transform: inherit;
    position: relative;
    overflow: hidden;
    margin-top: -10px;
}

@media (max-width: 1199px) {
    .section-heading-1 .section-title {
        font-size: 40px;
    }

    .section-heading-1 .section-title br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading-1 .section-title {
        font-size: 32px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading-1 .section-title {
        font-size: 28px;
    }

    .section-heading-1 .section-title br {
        display: none;
    }
}

.section-heading-1.white-content .sub-heading {
    color: var(--rr-color-common-white);
}

.section-heading-1.white-content .sub-heading:before {
    background-color: var(--rr-color-common-white);
}

.section-heading-1.white-content p,
.section-heading-1.white-content .section-title {
    color: var(--rr-color-common-white);
}

.section-heading-1.heading-2 {
    flex-direction: column;
    align-items: baseline;
}

.section-heading-1.heading-2 .sub-heading {
    margin-bottom: 25px;
}

.section-heading {
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    align-items: start;
    column-gap: 250px;
    padding-left: 250px;
}

@media (max-width: 1600px) {
    .section-heading {
        padding-left: 180px;
    }
}

@media (max-width: 1399px) {
    .section-heading {
        padding-left: 150px;
        column-gap: 180px;
    }
}

@media (max-width: 1199px) {
    .section-heading {
        padding-left: 100px;
        column-gap: 150px;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 60px;
        padding-left: 0;
        column-gap: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading {
        flex-wrap: wrap;
        row-gap: 20px;
    }
}

.section-heading .sub-heading {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .section-heading .sub-heading {
        font-size: 14px;
    }
}

.section-heading .sub-heading:before {
    background-color: var(--rr-color-heading-primary);
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.section-heading .sub-heading.active:before {
    right: 0;
    opacity: 1;
}

.section-heading .section-title {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
    text-transform: inherit;
    position: relative;
    overflow: hidden;
    margin-top: -10px;
}

@media (max-width: 1199px) {
    .section-heading .section-title {
        font-size: 40px;
    }

    .section-heading .section-title br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading .section-title {
        font-size: 32px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title {
        font-size: 28px;
    }
}

.section-heading.white-content .sub-heading {
    color: var(--rr-color-common-white);
}

.section-heading.white-content .sub-heading:before {
    background-color: var(--rr-color-common-white);
}

.section-heading.white-content p,
.section-heading.white-content .section-title {
    color: var(--rr-color-common-white);
}

.section-heading.heading-2 {
    flex-direction: column;
    align-items: baseline;
}

.section-heading.heading-2 .sub-heading {
    margin-bottom: 25px;
}

.section-title {
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

.section-title-four {
    margin-left: 29px;
}

.section-title-part-1 {
    font-size: 150px;
    line-height: 150px;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-bold);
}

@media (min-width: 1700px) and (max-width: 1850px) {
    .section-title-part-1 {
        font-size: 130px;
    }
}

@media (max-width: 1700px) {
    .section-title-part-1 {
        font-size: 120px;
    }
}

@media (max-width: 1600px) {
    .section-title-part-1 br {
        display: none;
    }
}

@media (max-width: 1600px) {
    .section-title-part-1 {
        font-size: 70px;
        line-height: 100px;
    }
}

@media (max-width: 1399px) {
    .section-title-part-1 {
        font-size: 67px;
        line-height: 85px;
    }
}

@media (max-width: 1199px) {
    .section-title-part-1 {
        font-size: 47px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 992px) {
    .section-title-part-1 {
        font-size: 42px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title-part-1 {
        font-size: 31px;
        line-height: 46px;
    }
}

.section-heading-wrapper {
    display: flex;
}

.section-heading-wrapper .sub-title {
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-medium);
    position: relative;
    padding-left: 16px;
}

.section-heading-wrapper .sub-title::before {
    content: "";
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #171717;
    position: absolute;
    display: block;
    border-radius: 100%;
}

.section-heading-wrapper .sub-title .section-titles {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #171717;
}

.section-heading {
    margin-bottom: 65px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    align-items: start;
    column-gap: 250px;
    padding-left: 250px;
}

@media (max-width: 1600px) {
    .section-heading {
        padding-left: 180px;
    }
}

@media (max-width: 1399px) {
    .section-heading {
        padding-left: 150px;
        column-gap: 180px;
    }
}

@media (max-width: 1199px) {
    .section-heading {
        padding-left: 100px;
        column-gap: 150px;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 60px;
        padding-left: 0;
        column-gap: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading {
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 10px;
    }
}

@media (max-width: 1199px) {
    .section-heading-4 {
        column-gap: 157px;
    }
}

.section-heading .sub-heading {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
    overflow: hidden;
    white-space: nowrap;
}

@media only screen and (max-width: 992px) {
    .section-heading .sub-heading {
        font-size: 14px;
    }
}

.section-heading .sub-heading:before {
    background-color: var(--rr-color-heading-primary);
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.section-heading .sub-heading.active:before {
    right: 0;
    opacity: 1;
}

.section-heading .section-title {
    font-size: 48px;
    line-height: 1.3;
    font-weight: var(--rr-fw-sbold);
    display: block;
    margin-bottom: 0;
    text-transform: inherit;
    position: relative;
    overflow: hidden;
    margin-top: -10px;
}

@media (max-width: 1399px) {
    .section-heading .section-title {
        font-size: 41px;
    }
}

@media (max-width: 1199px) {
    .section-heading .section-title {
        font-size: 38px;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading .section-title {
        font-size: 32px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .section-heading .section-title-4 br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title-4 br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading .section-title-4 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title-4 {
        font-size: 20px;
    }
}

.section-heading .section-title-wrap {
    margin-bottom: 32px;
}

@media only screen and (max-width: 992px) {
    .section-heading .section-title-wrap {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title-wrap {
        font-size: 25px;
    }
}

.section-heading-testi {
    column-gap: 152px;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .section-heading-testi {
        column-gap: inherit;
    }
}

.section-heading-testi .quote-wrap {
    display: flex;
    background: #FFFFFF;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 50px;
    padding: 16px 44px;
    align-items: center;
}

.section-heading-testi .quote-wrap .counter-item .title-one {
    display: flex;
    font-size: 30px;
    line-height: 36px;
    align-items: center;
    letter-spacing: -0.02em;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    color: #0F0F0F;
    padding-right: 13px;
    margin-bottom: 0;
}

.section-heading-testi .quote-wrap .counter-item .title-one .icon {
    display: flex;
    font-size: 30px;
    line-height: 36px;
    align-items: center;
    letter-spacing: -0.02em;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    color: #0F0F0F;
    padding-left: 3px;
}

.section-heading-testi .quote-wrap .rating span {
    display: flex;
    font-size: 16px;
    line-height: 19px;
    align-items: center;
    color: #0F0F0F;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-regular);
    margin-bottom: 4px;
}

.section-heading-testi .quote-wrap .rating .star {
    padding-left: 10px;
}

.section-heading-testi .quote-wrap .rating .star ul {
    display: flex;
    gap: 7px;
}

.section-heading-testi .quote-wrap .rating .star ul li {
    list-style: none;
}

.section-heading-testi .quote-wrap .rating .star ul li i {
    color: #FDAD00;
}

.section-heading-part {
    display: inherit;
}

.section-heading.white-content .sub-heading {
    color: var(--rr-color-common-white);
}

.section-heading.white-content .sub-heading:before {
    background-color: var(--rr-color-common-white);
}

.section-heading.white-content p,
.section-heading.white-content .section-title {
    color: var(--rr-color-common-white);
}

.section-heading.heading-2 {
    flex-direction: column;
    align-items: baseline;
}

.section-heading.heading-2 .sub-heading {
    margin-bottom: 25px;
}

.section-title {
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

.section-title-four {
    margin-left: 29px;
}

.section-title-part-1 {
    font-size: 150px;
    line-height: 150px;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-bold);
}

@media (min-width: 1700px) and (max-width: 1850px) {
    .section-title-part-1 {
        font-size: 130px;
    }
}

@media (max-width: 1700px) {
    .section-title-part-1 {
        font-size: 120px;
    }
}

@media (max-width: 1600px) {
    .section-title-part-1 br {
        display: none;
    }
}

@media (max-width: 1600px) {
    .section-title-part-1 {
        font-size: 70px;
        line-height: 100px;
    }
}

@media (max-width: 1399px) {
    .section-title-part-1 {
        font-size: 67px;
        line-height: 85px;
    }
}

@media (max-width: 1199px) {
    .section-title-part-1 {
        font-size: 47px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 992px) {
    .section-title-part-1 {
        font-size: 42px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title-part-1 {
        font-size: 31px;
        line-height: 46px;
    }
}

.section-heading-wrapper {
    display: flex;
}

.section-heading-wrapper .sub-title {
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-medium);
    position: relative;
    padding-left: 16px;
}

.section-heading-wrapper .sub-title::before {
    content: "";
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #171717;
    position: absolute;
    display: block;
    border-radius: 100%;
}

.section-heading-wrapper .sub-title .section-titles {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #171717;
}

.heading-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
    margin-bottom: 60px;
}

@media only screen and (max-width: 992px) {
    .heading-space {
        margin-bottom: 40px;
    }
}

.t-up {
    text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
    color: var(--rr-color-common-white);
}

.img-reveal {
    position: relative;
    overflow: hidden;
    visibility: hidden;
    z-index: 1;
}

.img-reveal .img-overlay {
    background-color: var(--rr-color-common-white);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-reveal img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.parallax-img {
    overflow: hidden;
}

.anim-text {
    overflow: hidden;
}

.running-text {
    background-color: var(--rr-color-theme-primary);
    background-repeat: repeat;
    background-size: 20px;
    padding: 20px 0;
    overflow: hidden;
}

.running-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 60px;
}

.running-text ul li {
    display: inline-block;
    white-space: nowrap;
    font-size: 24px;
    color: var(--rr-color-common-white);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

.running-text ul li:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    content: "\f068";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

/* Site Preloader */
.preloader span {
    font-size: 80px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    overflow-x: hidden;
}

.site-name {
    background-color: var(--rr-color-heading-primary);
}

.preloader-gutters {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
}

.preloader-overlay {
    background-color: var(--rr-color-heading-primary);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    transform: translateX(-100%);
    opacity: 0.2;
}

.preloader {
    width: 100%;
    height: 100vh;
    position: relative;
    --preloader-clip: 0;
    clip-path: inset(0 0 0 var(--preloader-clip));
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

.site-name {
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .site-name span {
        font-size: 40px;
    }
}

.preloader-gutters .bar {
    width: 12.5%;
    height: 100%;
    background: transparent;
    position: relative;
}

.preloader-gutters .inner-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #fff;
}

/*  Custom Cursor */
@media (min-width: 992px) {
    .mt-cursor {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: fixed;
        left: 10px;
        top: 10px;
        user-select: none;
        pointer-events: none;
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .mt-cursor:before {
        background: var(--rr-color-theme-primary);
        opacity: 1;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }

    .mt-cursor.cursor-grow:before {
        opacity: 0.7;
        transform: scale(1.5);
        transition: all 0.3s ease;
    }

    .mt-cursor.hide {
        opacity: 0;
        transition: opacity 0.3s ease;
        transition-delay: 0.4s;
    }

    .mt-cursor.hide .inner {
        transform: scale(0.1);
        transition: transform 0.3s ease;
    }
}

.sticky-widget {
    position: -webkit-sticky;
    position: sticky;
    top: 170px;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}

/*-- Margin Top --*/
.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-180 {
    padding-top: 180px;
}

@media only screen and (max-width: 992px) {
    .pt-180 {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-180 {
        padding-top: 70px;
    }
}

.pt-130 {
    padding-top: 130px;
}

@media (max-width: 1199px) {
    .pt-130 {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .pt-130 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-130 {
        padding-top: 60px;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media (max-width: 1199px) {
    .pt-120 {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 992px) {
    .pt-120 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pt-90 {
    padding-top: 90px;
}

@media only screen and (max-width: 992px) {
    .pt-90 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-90 {
        padding-top: 60px;
    }
}

.pt-80 {
    padding-top: 80px;
}

@media only screen and (max-width: 992px) {
    .pt-80 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-80 {
        padding-top: 60px;
    }
}

.pt-70 {
    padding-top: 70px;
}

@media only screen and (max-width: 992px) {
    .pt-70 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-70 {
        padding-top: 60px;
    }
}

.pb-180 {
    padding-bottom: 180px;
}

@media only screen and (max-width: 992px) {
    .pb-180 {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-180 {
        padding-bottom: 70px;
    }
}

.pb-130 {
    padding-bottom: 130px;
}

@media (max-width: 1199px) {
    .pb-130 {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .pb-130 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-130 {
        padding-bottom: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media only screen and (max-width: 992px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}

@media only screen and (max-width: 992px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-90 {
        padding-bottom: 60px;
    }
}

.pb-80 {
    padding-bottom: 80px;
}

@media only screen and (max-width: 992px) {
    .pb-80 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-80 {
        padding-bottom: 60px;
    }
}

.pb-70 {
    padding-bottom: 70px;
}

@media only screen and (max-width: 992px) {
    .pb-70 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-70 {
        padding-bottom: 60px;
    }
}

.pl-0 {
    padding-left: 0 !important;
}

@media only screen and (max-width: 992px) {
    .md-pb-30 {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-40 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-50 {
        padding-bottom: 50px;
    }
}

/* Scroll To Top */
#scroll-percentage {
    position: absolute;
}

#scroll-percentage {
    height: 60px;
    width: 60px;
    background-color: var(--rr-color-common-white);
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}

@media only screen and (max-width: 992px) {
    #scroll-percentage {
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    #scroll-percentage {
        bottom: 20px;
        right: 20px;
    }
}

#scroll-percentage.active {
    bottom: 50px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 992px) {
    #scroll-percentage.active {
        bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    #scroll-percentage.active {
        bottom: 20px;
    }
}

#scroll-percentage-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-theme-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
}

#scroll-percentage-value i {
    font-size: 20px;
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}

.light-img {
    display: none;
}

.switcher-button {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 50;
    transform: translateY(-50%) rotate(90deg);
    display: none;
}

.switcher-button-inner-left:before,
.switcher-button-inner-left:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    outline: none;
}

.switcher-button .switcher-button-inner,
.switcher-button .switcher-button-inner-left {
    position: relative;
    cursor: pointer;
}

.switcher-button .switcher-button-inner-left:before {
    content: "\f186";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    display: block;
    color: #fff;
    position: absolute;
    z-index: 1;
    margin: 0;
    right: 26px;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.switcher-button .switcher-button-inner-left:after {
    content: "";
    display: inline-block;
    color: #fff;
    background: var(--rr-color-bg-1);
    border: 1px solid rgba(235, 235, 235, 0.2);
    width: 3.5em;
    height: 1.8em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    vertical-align: middle;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
}

.switcher-button .switcher-button-inner-left {
    color: rgba(250, 250, 250, 0.51);
}

[data-theme=light] .switcher-button .switcher-button-inner-left:before {
    right: 10px;
    content: "\f185";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    color: var(--rr-color-heading-primary);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

[data-theme=light] .switcher-button .switcher-button-inner-left:after {
    background: #fff;
    border: 1px solid rgba(235, 235, 235, 0.2);
}

[data-theme=light] .switcher-button .switcher-button-inner-left {
    color: rgba(149, 149, 149, 0.51);
}

[data-theme=light] .switcher-button .switcher-button-inner-left + .switcher-button-inner {
    color: rgba(250, 250, 250, 0.51);
}

.column-revers {
    flex-direction: row-reverse;
}

.htestimonial-bg {
    background: #F3F4F6;
}

.section-br-top {
    border-top: 1px solid rgba(28, 28, 40, 0.1);
}

.section-br-bottom {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

.pricing-bg {
    background: #F4F4F4;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-minuas-80 {
    margin-left: -86px;
}

.mb-minuas-30 {
    margin-bottom: -30px;
}

/** Buttons CSS */
.new-btn {
    background-color: var(--rr-color-common-white);
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    display: inline-flex;
    align-items: center;
    align-self: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 21px 40px;
    border: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.new-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--rr-color-heading-primary);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.new-btn:hover {
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-heading-primary);
}

.new-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.new-btn:hover i {
    transform: rotate(0deg);
}

.rr-primary-btn {
    background-color: var(--rr-color-common-white);
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 21px 40px;
    border: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.rr-primary-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--rr-color-heading-primary);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.rr-primary-btn i {
    margin-left: 10px;
    font-size: 14px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.rr-primary-btn:hover {
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-heading-primary);
}

.rr-primary-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.rr-primary-btn:hover i {
    transform: rotate(0deg);
}

.rr-primary-btn.transparent {
    background-color: transparent;
    border: 1px solid var(--rr-color-theme-primary);
    color: var(--rr-color-heading-primary);
}

.rr-primary-btn.transparent:hover {
    color: var(--rr-color-common-white);
}

.rr-primary-btn.transparent:before {
    background-color: var(--rr-color-theme-primary);
}

.rr-primary-btn-4 {
    background: #9175FF;
    color: white;
    padding: 21px 38px;
}

.rr-primary-btn-2 {
    margin-bottom: 50px;
}

@media (max-width: 1399px) {
    .rr-primary-btn-2 {
        margin-bottom: 43px;
    }
}

.rr-primary-btn-3 {
    padding: 6.5px 16px;
}

.rr-primary-btn-4 {
    padding: 20.5px 39.1px;
}

.rr-primary-btn-5 {
    width: 100%;
    display: inline;
    margin-top: 15px;
}

.rr-primary-btn-6 {
    padding: 21px 79.3px;
    border-color: #0F0F0F;
}

.rr-primary-btn-one {
    background: #9175FF;
    color: white;
    padding: 21px 38px;
    margin-top: 10px;
}

@media only screen and (max-width: 767px) {
    .rr-primary-btn-one {
        padding: 21px 34px;
        width: 100%;
    }
}

.rr-primary-btn-border {
    border: 1px solid rgba(23, 23, 23, 0.1);
    background: transparent;
}

.rr-primary-btn-border-2 {
    border: 1px solid #171717;
    background: transparent;
}

.rr-primary-btn-bg {
    background: #0F0F0F;
    color: white;
    position: relative;
    margin-top: 27px;
}

.rr-primary-btn-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #9175FF;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    color: #0F0F0F;
}

.rr-primary-btn-skil {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-regular);
    color: #696969;
    padding: 7px 20px;
    background: transparent;
    margin-right: 7px;
}

@media only screen and (max-width: 992px) {
    .rr-primary-btn-skil {
        padding: 7px 15px;
    }
}

@media only screen and (max-width: 767px) {
    .rr-primary-btn-skil {
        margin-bottom: 15px;
    }
}

.project-btn {
    margin-top: 20px;
    background-color: var(--rr-color-common-white);
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #696969;
    padding: 14px 26px;
    border: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .project-btn {
        padding: 11px 14px;
        font-size: 15px;
    }
}

.project-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--rr-color-heading-primary);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.project-btn i {
    margin-left: 10px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.project-btn:hover {
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-heading-primary);
}

.project-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.project-btn:hover i {
    transform: rotate(0deg);
}

.project-btn:focus {
    color: var(--rr-color-common-white);
}

.project-btn.transparent {
    background-color: transparent;
    border: 1px solid var(--rr-color-theme-primary);
    color: var(--rr-color-heading-primary);
}

.project-btn.transparent:hover {
    color: var(--rr-color-common-white);
}

.project-btn.transparent:before {
    background-color: var(--rr-color-theme-primary);
}

.project-btn-2 {
    margin-bottom: 50px;
}

@media (max-width: 1399px) {
    .project-btn-2 {
        margin-bottom: 43px;
    }
}

.project-btn-3 {
    padding: 6.5px 16px;
}

.project-btn-4 {
    padding: 20.5px 39.1px;
    border: 1px solid #0F0F0F;
}

.section-space-4 {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media only screen and (max-width: 992px) {
    .section-space-4 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-space-4 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.section-space-4-one {
    padding-bottom: 50px;
}

.section-space-4-two {
    padding-top: 140px;
    padding-bottom: 175px;
}

@media only screen and (max-width: 767px) {
    .section-space-4-two {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-space-4-three {
    padding-top: 130px;
    padding-bottom: 114px;
}

@media only screen and (max-width: 992px) {
    .section-space-4-three {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-space-4-three {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.section-space-top {
    padding-top: 96px;
}

@media only screen and (max-width: 992px) {
    .section-space-top {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-space-top {
        padding-top: 70px;
    }
}

.section-space-wrap {
    padding-top: 130px;
}

@media (max-width: 1199px) {
    .section-space-wrap {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-space-wrap {
        padding-top: 50px;
    }
}

.section-space-bottom-170 {
    padding-bottom: 170px;
}

@media only screen and (max-width: 992px) {
    .section-space-bottom-170 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-space-bottom-170 {
        padding-bottom: 70px;
    }
}

.section-title {
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

.section-title-four {
    margin-left: 29px;
}

.section-title-part-1 {
    font-size: 150px;
    line-height: 150px;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-bold);
}

@media (min-width: 1700px) and (max-width: 1850px) {
    .section-title-part-1 {
        font-size: 130px;
    }
}

@media (max-width: 1700px) {
    .section-title-part-1 {
        font-size: 120px;
    }
}

@media (max-width: 1600px) {
    .section-title-part-1 br {
        display: none;
    }
}

@media (max-width: 1600px) {
    .section-title-part-1 {
        font-size: 70px;
        line-height: 100px;
    }
}

@media (max-width: 1399px) {
    .section-title-part-1 {
        font-size: 67px;
        line-height: 85px;
    }
}

@media (max-width: 1199px) {
    .section-title-part-1 {
        font-size: 47px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 992px) {
    .section-title-part-1 {
        font-size: 42px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title-part-1 {
        font-size: 31px;
        line-height: 46px;
    }
}

.section-heading-wrapper {
    display: flex;
}

.section-heading-wrapper .sub-title {
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-medium);
    position: relative;
    padding-left: 16px;
}

.section-heading-wrapper .sub-title::before {
    content: "";
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #171717;
    position: absolute;
    display: block;
    border-radius: 100%;
}

.section-heading-wrapper .sub-title .section-titles {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #171717;
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
    background-color: transparent;
    width: 100%;
    position: fixed;
    top: 23px;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .header {
        position: relative;
        top: 0;
        height: auto !important;
        border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    }
}

.header .primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner {
        padding: 25px 0;
    }
}

.header .primary-header-inner .header-left {
    display: flex;
    align-items: center;
    column-gap: 80px;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-left {
        column-gap: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-left .mail-box {
        display: none;
    }
}

.header .primary-header-inner .header-left .mail-box a {
    color: var(--rr-color-heading-primary);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.header .primary-header-inner .header-left .mail-box a:before {
    background-color: var(--rr-color-heading-primary);
    content: "";
    width: 0;
    height: 1.5px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-left .mail-box a:hover:before {
    width: 100%;
}

.header .primary-header-inner .header-logo img {
    max-width: 170px;
}

.header .primary-header-inner .header-logo .logo-light {
    display: none;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-logo img {
        max-width: 150px;
    }
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-logo img {
        max-width: 150px;
    }
}

.header .primary-header-inner .header-menu-wrap {
    display: flex !important;
    align-items: center;
}

.header .primary-header-inner .header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-menu-wrap ul {
        display: none;
    }
}

.header .primary-header-inner .header-menu-wrap ul span {
    padding: 0 10px;
}

.header .primary-header-inner .header-menu-wrap ul .main-menu {
    margin: inherit;
}

.header .primary-header-inner .header-menu-wrap ul .main-menu-one {
    position: relative;
    padding: 0px 17px;
}

.header .primary-header-inner .header-menu-wrap ul .main-menu-one::after {
    content: "";
    left: -2px;
    top: 31px;
    width: 2px;
    height: 15px;
    display: block;
    background: #696969;
    position: absolute;
    transform: rotate(16deg);
}

.header .primary-header-inner .header-menu-wrap ul .main-menu-one:first-of-type::after {
    display: none;
}

.header .primary-header-inner .header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    margin: 0 17px;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 15px;
    }
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}

.header .primary-header-inner .header-menu-wrap ul li:first-child {
    margin-left: 0;
}

.header .primary-header-inner .header-menu-wrap ul li:last-child {
    margin-right: 0;
}

.header .primary-header-inner .header-menu-wrap ul li a {
    font-family: var(--rr-ff-heading);
    color: #696969;
    display: block;
    font-size: 16px;
    padding: 23px 0;
    letter-spacing: 0px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-menu-wrap ul li a {
        font-size: 16px;
    }
}

.header .primary-header-inner .header-menu-wrap ul li a:hover {
    color: var(--rr-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li a i {
    font-size: 13px;
}

.header .primary-header-inner .header-menu-wrap ul li a:after {
    background-color: var(--rr-color-heading-primary);
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 25px;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap ul li a:hover:after {
    width: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li.active a {
    color: var(--rr-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li.active a:after {
    width: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li ul {
    background-color: var(--rr-color-common-white);
    display: block;
    width: 220px;
    padding: 0;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    position: absolute;
    left: 0;
    top: 72px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all 0.6s ease;
}

.header .primary-header-inner .header-menu-wrap ul li:hover > ul {
    visibility: visible;
    transition: all 0.6s ease;
    opacity: 1;
    transform: none;
}

.header .primary-header-inner .header-menu-wrap ul li li {
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--rr-color-common-black);
}

.header .primary-header-inner .header-menu-wrap ul li li a {
    display: block;
    height: auto;
    line-height: inherit;
    color: var(--rr-color-heading-primary);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    padding-left: 25px;
    letter-spacing: 0px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    position: relative;
}

.header .primary-header-inner .header-menu-wrap ul li li a:hover {
    color: var(--rr-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li a:after {
    display: none;
}

.header .primary-header-inner .header-menu-wrap ul li li a:before {
    background-color: var(--rr-color-heading-primary);
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap ul li li:first-child a {
    padding-top: 20px;
}

.header .primary-header-inner .header-menu-wrap ul li li:first-child a:before {
    top: 59%;
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child {
    margin: 0;
    border-bottom: none;
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child a {
    padding-bottom: 20px;
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child a:before {
    top: 41%;
}

.header .primary-header-inner .header-menu-wrap ul li li.active {
    background-color: var(--rr-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    padding-left: 35px;
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a:before {
    width: 10px;
}

.header .primary-header-inner .header-menu-wrap ul li li ul {
    top: 0;
    left: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li li ul li a {
    color: var(--rr-color-common-white);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--rr-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
    color: var(--rr-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
    color: var(--rr-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
    position: relative;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
    padding-right: 17px;
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
        padding-right: 13px;
    }
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li {
    margin: 0;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li a {
    padding-right: 0;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    font-weight: 700;
    content: "\f078";
    color: var(--rr-color-heading-primary);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
    color: var(--rr-color-theme-primary);
}

.header .primary-header-inner .header-right-wrap {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 20px;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 50px;
    }
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 20px;
    }
}

.header .primary-header-inner .header-right-wrap .header-right {
    display: flex;
    align-items: center;
}

.header .primary-header-inner .header-right-wrap .header-right-four {
    display: none;
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-right-wrap .header-right-four {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
        width: 90px;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 10px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger span {
    background-color: var(--rr-color-heading-primary);
    width: 40px;
    height: 2px;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    margin-left: auto;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger span:nth-child(2) {
    width: 40px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger:hover span:nth-child(2) {
    width: 30px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger-4 span {
    background-color: #9175FF;
}

.header .primary-header-inner .header-right-wrap .header-right .search-icon {
    color: var(--rr-color-heading-primary);
    font-size: 20px;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .search-icon {
        margin-right: 20px;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-right-item {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item {
        line-height: 1;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
    color: var(--rr-color-common-white);
    font-size: 30px;
    opacity: 0.9;
}

@media (min-width: 993px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
        display: none;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
    font-size: 16px;
    margin-left: 55px;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
        margin-right: 20px;
    }
}

.header .primary-header-inner .header-right-wrap .header-right-4 {
    display: none;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .mean-push {
        display: none;
    }
}

.header.fixed {
    background-color: var(--rr-color-common-white);
    top: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    padding: 15px 0;
}

@media only screen and (max-width: 992px) {
    .header .primary-header.fixed .primary-header-inner {
        padding: 20px 0;
    }
}

.header-2.fixed {
    background-color: #0F0F0F;
    padding: 25px 0;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .header-right {
        display: none !important;
    }
}

.side-menu-icon {
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 100;
    display: block;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .side-menu-icon {
        display: none;
    }
}

.side-menu-wrapper {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 850px;
    -webkit-transform: translateX(850px);
    -ms-transform: translateX(850px);
    transform: translateX(850px);
    height: 100%;
    display: block;
    background-color: var(--rr-color-theme-bg-dark-deep);
    z-index: 100;
    padding: 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}

.side-menu-wrapper .side-menu-close {
    background-color: var(--rr-color-theme-primary);
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}

.side-menu-wrapper.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@media only screen and (max-width: 992px) {
    .side-menu-wrapper {
        display: none;
    }
}

.side-menu-content .side-menu-header {
    font-family: var(--rr-ff-body);
    font-size: 30px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    margin-bottom: 40px;
}

.side-menu-content .side-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box img {
    max-width: 150px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
    font-family: var(--rr-ff-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--rr-color-theme-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
    max-width: 400px;
    width: 100%;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
    margin-bottom: 0;
}

.side-menu-content .side-menu-item .side-menu-arrow {
    font-size: 45px;
    color: var(--rr-color-theme-primary);
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.side-menu-content .side-menu-item:hover {
    border: 1px solid var(--rr-color-border-6);
}

.side-menu-content .side-menu-item:hover .side-menu-arrow {
    transform: rotate(0deg);
}

.side-menu-content .side-menu-item:last-child {
    margin-bottom: 0;
}

.side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
}

@media only screen and (max-width: 992px) {
    .side-menu-overlay {
        display: none;
    }
}

.primary-header {
    width: 100%;
}

.primary-header.fixed {
    background-color: var(--rr-color-bg-1);
    position: fixed;
    left: 0;
    top: 0;
    animation-name: menuSticky;
    -webkit-animation-name: menuSticky;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    z-index: 99;
}

.primary-header.fixed .primary-header-inner {
    padding: 20px 60px;
}

@media (max-width: 1199px) {
    .primary-header.fixed .primary-header-inner {
        padding: 20px;
    }
}

@-webkit-keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.mobile-side-menu-overlay,
.mobile-side-menu {
    display: none;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu {
        background-color: var(--rr-color-bg-1);
        position: fixed;
        overflow-y: scroll;
        top: 0;
        right: 0;
        width: 400px;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        height: 100%;
        display: block;
        z-index: 100;
        padding: 40px 40px 40px 40px;
        -webkit-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        backface-visibility: hidden;
    }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu {
        padding: 40px 20px;
        width: 100%;
        max-width: 320px;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu.is-open {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .mobile-side-menu .side-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .mobile-side-menu .side-menu-head a img {
        max-width: 120px;
    }

    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        position: fixed;
        top: 35px;
        right: 40px;
        color: var(--rr-color-common-white);
        font-size: 17px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--rr-color-border-1);
    }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        right: 16px;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
        background-color: var(--rr-color-theme-primary);
        color: var(--rr-color-common-white);
    }

    .mobile-side-menu .side-menu-wrap {
        overflow: hidden;
        margin-bottom: 50px;
    }

    .mobile-side-menu p {
        color: var(--rr-color-common-white);
        margin-bottom: 50px;
    }

    .mobile-side-menu .list-header {
        color: var(--rr-color-common-white);
        font-family: var(--rr-ff-body);
        font-weight: 400;
        margin-bottom: 30px;
    }

    .mobile-side-menu .side-menu-list {
        list-style: none;
    }

    .mobile-side-menu .side-menu-list li {
        font-family: var(--rr-ff-heading);
        font-size: 16px;
        font-weight: 500;
        color: var(--rr-color-common-white);
    }

    .mobile-side-menu .side-menu-list li span,
    .mobile-side-menu .side-menu-list li a {
        color: var(--rr-color-common-white);
        margin-left: 10px;
        font-size: 16px;
    }

    .mobile-side-menu .side-menu-list li i {
        margin-right: 10px;
    }

    .mobile-side-menu-overlay {
        background-color: rgba(0, 0, 0, 0.7);
        height: 100%;
        width: 0%;
        position: fixed;
        top: 0;
        z-index: 9;
        right: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
        display: block;
    }

    .mobile-side-menu-overlay.is-open {
        width: 100%;
        opacity: 0.5;
        visibility: visible;
        cursor: url(../img/cancel.png), auto;
    }
}

.mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
}

.mean-bar .meanmenu-reveal {
    display: none !important;
}

.mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
}

@media (min-width: 993px) {
    .mean-bar .mean-nav {
        padding-top: 0;
    }
}

.mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
}

.mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
}

.mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DADADA;
}

.mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--rr-color-heading-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
}

@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav > ul li a {
        font-size: 14px;
    }
}

.mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    position: absolute;
    padding: 0;
    top: 0px;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 993px) {
    .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 12px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
}

.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
    background-color: var(--rr-color-theme-secondary);
    color: var(--rr-color-heading-primary);
}

.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
}

.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
    display: none;
}

.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
}

.mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 50px;
}

.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

@media (min-width: 993px) {
    .mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
        padding-bottom: 20px;
        margin-bottom: 25px;
    }
}

.mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

@media (min-width: 993px) {
    .mean-bar .mean-nav.mean-nav > ul li ul li a {
        font-size: 25px;
        text-transform: uppercase;
    }
}

@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav > ul li ul li a {
        font-size: 14px;
    }
}

.has---mneu {
    margin-top: 100px;
}

#popup-search-box {
    background-color: var(--rr-color-common-white);
    position: fixed;
    width: 100%;
    height: 20%;
    top: -100%;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap {
    background-color: var(--rr-color-bg-1);
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

#popup-search-box .box-inner-wrap form {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
}

#popup-search-box .box-inner-wrap form input {
    width: 100%;
    padding: 20px 15px;
    padding-right: 80px;
    background: transparent;
    border: none;
    color: #ddd;
    border: 1px solid var(--rr-color-border-1);
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-moz-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-moz-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:focus {
    outline: none;
}

#popup-search-box .box-inner-wrap:hover {
    cursor: url(../img/cross.png), auto;
}

#popup-search-box .box-inner-wrap .search-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-border-1);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    #popup-search-box .box-inner-wrap .search-close {
        height: 35px;
        width: 35px;
        top: 10px;
        right: 10px;
    }
}

#popup-search-box .box-inner-wrap .search-close:hover {
    background-color: var(--rr-color-theme-primary);
    border: 1px solid var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}

#popup-search-box.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.popup-tags {
    position: relative;
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {
    .header-3 {
        border-bottom: 1px solid transparent;
    }
}

.header-3.fixed {
    background-color: var(--rr-color-common-white);
    top: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    padding: 30px 0 0 0;
}

.header-3 .primary-header {
    border-bottom: 1px solid rgba(15, 15, 15, 0.15);
    padding: 0 0 30px 0;
    margin: 0 20px;
    width: initial;
}

@media only screen and (max-width: 992px) {
    .header-3 .primary-header {
        padding: 0 0 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .header-3 .primary-header .primary-header-inner .mail-box {
        display: none;
    }
}

.header-3 .primary-header .primary-header-inner .mail-box a {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0F0F0F;
}

.header-3 .primary-header .primary-header-inner .mail-box a i {
    color: #0F0F0F;
    margin-right: 5px;
}

.header-3 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span {
    background-color: #0F0F0F;
}

.white-pink-bg {
    background: #F2EEED;
}

.header-4-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 68px;
    position: relative;
    z-index: 9999;
}

.header-5 .primary-header .primary-header-inner .mail-box span {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 10px;
}

.header-5 .primary-header .primary-header-inner .mail-box span a {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #0F0F0F;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-section-1 {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .blog-section-1 {
        padding: 100px 0;
    }
}

@media (max-width: 1199px) {
    .blog-section-1 .section-heading-1 .sub-heading::before {
        top: 50%;
    }
}

.blog-section-1 .section-heading-1 .section-title {
    padding-left: 90px;
}

@media (max-width: 1199px) {
    .blog-section-1 .section-heading-1 .section-title {
        padding-left: 0;
    }
}

.post-card-wrap {
    border-bottom: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 992px) {
    .post-card-wrap {
        border: none;
    }
}

.post-card {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 992px) {
    .post-card {
        border: none;
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .post-card {
        display: block;
    }
}

.post-card .post-thumb-wrap {
    padding: 30px 0;
    padding-right: 130px;
    margin-right: 130px;
    border-right: 1px solid var(--rr-color-border-1);
}

@media (max-width: 1399px) {
    .post-card .post-thumb-wrap {
        padding-right: 60px;
        margin-right: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .post-card .post-thumb-wrap {
        padding: 0;
        margin: 0;
        border: none;
        margin-bottom: 30px;
    }
}

.post-card .post-thumb-wrap .post-thumb {
    width: 410px;
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .post-card .post-thumb-wrap .post-thumb {
        width: 320px;
    }
}

@media only screen and (max-width: 992px) {
    .post-card .post-thumb-wrap .post-thumb {
        width: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .post-card .post-thumb-wrap .post-thumb {
        max-width: 100%;
        width: 100%;
        height: 275px;
    }

    .post-card .post-thumb-wrap .post-thumb img {
        object-fit: cover;
    }
}

.post-card .post-thumb-wrap .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    transform: scale(1);
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .post-card .post-content {
        padding: 50px 0 60px 0;
    }
}

.post-card .post-content .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .post-card .post-content .title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .post-card .post-content .title {
        font-size: 18px;
    }
}

.post-card .post-content .title a {
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.post-card .post-content .title a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

.post-card .post-content .rr-primary-btn {
    font-size: 16px;
    font-weight: 500;
}

.post-card:hover .post-thumb img {
    transform: scale(1.04);
}

.post-meta {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}

.post-meta li {
    font-family: var(--rr-ff-body);
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: relative;
    padding-left: 15px;
}

.post-meta li:before {
    background-color: var(--rr-color-heading-primary);
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    opacity: 1;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-meta li span {
    color: var(--rr-color-heading-primary);
}

.post-meta li:not(:last-of-type) {
    margin-right: 30px;
}

.post-meta li a:hover {
    color: var(--rr-color-theme-primary);
}

@media only screen and (max-width: 767px) {
    .post-meta li {
        font-size: 14px;
    }
}

.post-meta-2 {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
    padding: 0 40px;
}

@media only screen and (max-width: 767px) {
    .post-meta-2 {
        padding: 0;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 450px) {
    .post-meta-2 {
        padding-left: 12px;
    }
}

.post-meta-2 li {
    margin: 15px 0;
}

.post-meta-3 {
    margin-bottom: 15px;
}

.post-meta-3 {
    margin-top: 25px;
}

.post-meta-4 {
    margin-bottom: 8px;
}

.pagination-wrap {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 10px;
}

.pagination-wrap li a {
    background-color: transparent;
    color: var(--rr-color-common-white);
    font-weight: 700;
    height: 50px;
    width: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid var(--rr-color-border-1);
}

.pagination-wrap li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}

.pagination-wrap li .active {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}

.post-content-2 {
    padding: 0 40px;
}

@media only screen and (max-width: 767px) {
    .post-content-2 {
        padding: 0;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 450px) {
    .post-content-2 {
        padding-left: 12px;
    }
}

.post-content-2 .title {
    margin-top: 25px;
    margin-bottom: 32px;
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #1C1C28;
}

.post-content-2 .title a {
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.post-content-2 .title a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

.post-content-2-3 {
    margin-top: 35px;
    margin-left: -7px;
}

@media only screen and (max-width: 992px) {
    .post-content-2-3 {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 450px) {
    .post-content-2-3 {
        margin-left: 12px;
    }
}

.post-content-2-3 .title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #1C1C28;
}

.post-content-2-3 .title a {
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.post-content-2-3 .title a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

@media only screen and (max-width: 767px) {
    .h2-blog-section .section-heading {
        margin-bottom: 20px;
    }
}

.h2-blog-card {
    border: 1px solid rgba(28, 28, 40, 0.1);
}

.h2-blog-thumb {
    padding: 30px;
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

@media only screen and (max-width: 576px) {
    .h2-blog-thumb {
        padding: 5px;
    }
}

@media (max-width: 1199px) {
    .h2-blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.h2-blog-thumb-2 {
    border: none;
    padding: 28px;
}

@media only screen and (max-width: 576px) {
    .h2-blog-thumb-2 {
        padding: 5px;
        padding-right: 5px;
    }
}

.h3-blog-section .section-heading-5 {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .h3-blog-section .section-heading-5 {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .h3-blog-section .h5-blog-info {
        display: block;
    }
}

.h3-blog-wrapper .title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #0F0F0F;
    margin-bottom: 17px;
}

.h3-blog-wrapper .title-2 {
    margin-top: 9px;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
}

@media (max-width: 1199px) {
    .h3-blog-wrapper .title-2 br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .h3-blog-wrapper .title-2 {
        font-size: 18px;
        line-height: 30px;
    }
}

.h3-blog-wrapper .title a {
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.h3-blog-wrapper .title a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

.h3-blog-wrapper .title-3 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-top: 15px;
}

@media only screen and (max-width: 992px) {
    .h3-blog-wrapper .title-3 br {
        display: none;
    }
}

.h3-blog-wrapper .title-5 {
    font-weight: 600;
    font-size: 35px;
    line-height: 50px;
    color: #0F0F0F;
}

@media only screen and (max-width: 767px) {
    .h3-blog-wrapper .title-5 {
        font-size: 29px;
        line-height: 40px;
    }
}

.h3-blog-wrapper .blog-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 65px;
    row-gap: 65px;
    row-gap: 10px;
    position: relative;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

@media only screen and (max-width: 992px) {
    .h3-blog-wrapper .blog-cta {
        gap: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .h3-blog-wrapper .blog-cta {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 767px) {
    .h3-blog-wrapper .blog-cta {
        gap: 20px;
    }
}

.h3-blog-wrapper .blog-cta span {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    padding-bottom: 20px;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .h3-blog-wrapper .blog-cta span {
        font-size: 15px;
    }
}

.h3-blog-wrapper .blog-cta .blog-pront::before {
    position: absolute;
    background-color: rgba(15, 15, 15, 0.2);
    height: 5px;
    width: 5px;
    content: "";
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.h3-blog-wrapper-2 {
    margin-bottom: 70px;
}

@media (max-width: 1600px) {
    .h3-blog-wrapper-2 {
        margin-bottom: 40px;
    }
}

.h3-blog-wrapper-3 {
    margin-bottom: 43px;
}

.h3-blog-wrapper .post-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-bottom: 20px;
}

.h3-blog-wrapper .h3-blog-thumb-2 {
    margin-bottom: 26px;
}

@media only screen and (max-width: 992px) {
    .h3-blog-wrapper .h3-blog-thumb-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.h3-blog-meta li {
    list-style: none;
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-left: 10px;
}

.h3-blog-meta li span {
    color: var(--rr-color-heading-primary);
}

.h3-blog-avater {
    display: flex;
    align-items: center;
}

.h3-blog-info span {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #0F0F0F;
    position: relative;
    margin-left: 16px;
}

.h3-blog-info span::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #0F0F0F;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    opacity: 1;
    border-radius: 50%;
}

.h3-blog-info .title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .h3-blog-info .title {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: 42px;
        line-height: 37px;
        color: #0F0F0F;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-blog-info .title {
        font-size: 30px;
        line-height: 37px;
    }
}

.h3-blog-info .title-4 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
    margin-top: 10px;
}

@media (max-width: 1399px) {
    .h3-blog-info .title-4 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-blog-info .title-4 {
        font-size: 40px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-blog-thumb-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.h3-blog-wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.submit-btn-4 {
    margin-top: 30px;
}

.h5-blog-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.h5-blog-inner .year {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-bottom: 0;
    padding: 7px 19.5px;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 100px;
}

@media only screen and (max-width: 767px) {
    .h5-blog-inner .year {
        margin-top: 20px;
    }
}

.h5-blog-info {
    display: flex;
    gap: 214px;
}

@media (max-width: 1199px) {
    .h5-blog-info {
        flex-wrap: wrap;
        gap: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .h5-blog-info {
        gap: 25px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .h5-blog-info .section-heading {
        margin-bottom: 0;
    }
}

.sidebar-rr-sticky {
    position: sticky;
    top: 120px;
}

@media (max-width: 1199px) {
    .sidebar-rr-sticky {
        margin-top: 50px;
    }
}

.sidebar {
    padding-left: 30px;
}

@media only screen and (max-width: 767px) {
    .sidebar {
        padding-left: 0;
    }
}

.sidebar__widget:not(:last-child) {
    margin-bottom: 55px;
}

.sidebar__widget-2:not(:last-child) {
    margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
    .sidebar__widget {
        margin-top: 50px;
    }
}

.sidebar__widget-title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    padding-bottom: 5px;
}

.sidebar__widget-title__have-bar {
    position: relative;
}

.sidebar__widget-service {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.sidebar__widget-service a {
    padding-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    line-height: 27px;
    border-bottom: 1px solid rgba(0, 15, 32, 0.1);
    color: var(--rr-heading-primary);
}

.sidebar__widget-service a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar__widget-service a:hover {
    color: var(--rr-theme-primary);
}

.sidebar__widget-service a i {
    color: var(--rr-theme-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.sidebar__widget-download {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar__widget-download a {
    padding: 11.5px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    line-height: 25px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid rgba(0, 15, 32, 0.1);
    color: var(--rr-heading-primary);
}

.sidebar__widget-download a img {
    max-width: 15px;
}

.sidebar__widget-download a:hover {
    background-color: var(--rr-theme-primary);
    color: var(--rr-common-white);
}

.sidebar__widget-download a:hover img {
    filter: brightness(0) invert(1);
}

.sidebar__widget-search .search__bar {
    height: 50px;
    width: 100%;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

.sidebar__widget-search .search__bar input {
    height: 100%;
    padding: 29px 35px 29px 56px;
    width: 100%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    border: 1px solid #F4F4F4;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    margin-left: 0;
    background: #F4F4F4;
}

.sidebar__widget-search .search__bar input::-webkit-input-placeholder {
    color: #696969;
}

.sidebar__widget-search .search__bar button {
    position: absolute;
    left: 18px;
    padding: 0;
    height: 100%;
    line-height: 0;
}

.sidebar__widget-search .search__bar button:hover svg path[stroke="#525257"] {
    stroke: var(--rr-theme-primary);
}

.sidebar__widget-search .search__bar .icon {
    position: absolute;
    top: 35%;
    left: 40px;
    transform: translate(-50%);
}

.sidebar__widget-category {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar__widget-category a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-top: 5px;
    margin-left: 13px;
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sidebar__widget-category a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

.sidebar__widget-category a span:first-child {
    display: flex;
    align-items: center;
}

.sidebar__widget-category a:hover {
    color: var(--rr-theme-primary);
}

.sidebar__widget-category a:hover span:first-child svg circle[fill="#525257"] {
    fill: var(--rr-theme-primary);
}

.sidebar__widget-category h4 {
    position: relative;
    margin: 0;
    margin-bottom: -2px;
}

.sidebar__widget-category h4::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 3px;
    height: 3px;
    background: #0F0F0F;
    border-radius: 100px;
    top: 50%;
}

.sidebar__widget-tagss .tagss {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar__widget-tagss .tagss a {
    display: block;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.sidebar__widget-tagss .tagss a:hover {
    color: #FFFFFF;
    background: #0F0F0F;
}

.sidebar__widget-have_any_question {
    padding: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    background: var(--rr-theme-primary);
    box-shadow: 0px 1px 3px 0px rgba(0, 15, 32, 0.1);
    background-repeat: no-repeat;
    background-size: cover;
}

.sidebar__widget-have_any_question-space {
    padding: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.sidebar__widget-have_any_question-media {
    padding-left: 41px;
    margin-top: -93px;
    margin-bottom: -30px;
    margin-right: -30px;
    max-width: 367px;
}

.sidebar__widget-have_any_question h3 {
    margin-bottom: 5px;
}

.sidebar__widget-have_any_question p {
    max-width: 275px;
    opacity: 0.8;
    color: var(--rr-common-white);
}

.sidebar__widget-have_any_question .rr-btn .text-one {
    color: var(--rr-heading-primary);
}

.sidebar__widget .sidebar-post {
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.sidebar__widget .sidebar-post_thumb {
    width: 100px;
    overflow: hidden;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 5px;
}

.sidebar__widget .sidebar-post:last-child {
    margin-bottom: 0;
}

.sidebar__widget .sidebar-post-2 {
    flex-wrap: nowrap;
}

.sidebar__widget .sidebar-post_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s 0s ease-out;
}

.sidebar__widget .sidebar-post_thumb:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.sidebar__widget .sidebar-post_content {
    max-width: 250px;
}

@media (max-width: 1199px) {
    .sidebar__widget .sidebar-post_content {
        width: 100%;
    }
}

.sidebar__widget .sidebar-post_content .post-meta {
    margin-bottom: 6px;
}

.sidebar__widget .sidebar-post_content .post-meta li {
    font-family: var(--rr-ff-body);
    color: var(--rr-text-body);
    font-weight: var(--rr-fw-regular);
    line-height: var(--rr-lh-h5);
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-style: normal;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .sidebar__widget .sidebar-post_content .post-meta li {
        font-size: 14px;
    }
}

.sidebar__widget .sidebar-post_content .post-meta li i {
    color: var(--rr-theme-primary);
}

.sidebar__widget .sidebar-post_content h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #0F0F0F;
}

.sidebar__widget .sidebar-post_content h3 a {
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sidebar__widget .sidebar-post_content h3 a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

.sidebar__widget .sidebar-post_content span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.bottom-button {
    gap: 10px;
    margin-top: 40px;
}

.bottom-button a {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #E9E9ED;
    transition: all 0.3s ease-in-out;
}

.bottom-button a:hover {
    background: #0F0F0F;
    color: white;
}

.post-content .dec {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

.blog-btn {
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.blog-btn:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
    color: #fff;
}

.blog-btn i {
    margin-left: 7px;
}

.blog-btn-2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.blog-detail-content {
    margin-bottom: 40px;
}

.blog-detail-content .detail-title {
    font-weight: 600;
    font-size: 35px;
    line-height: 42px;
    color: #0F0F0F;
    margin-bottom: 13px;
}

.blog-detail-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1399px) {
    .blog-detail-content p br {
        display: none;
    }
}

.blog-detail-content .dec {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    margin-top: 10px;
}

.blog-detail-thumb {
    margin-bottom: 40px;
}

.blog-detail-wrap {
    padding: 50px 55px 94px 55px;
    border: 1px solid rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .blog-detail-wrap {
        padding: 50px 36px 60px 33px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-detail-wrap {
        padding: 50px 0px 60px 14px;
    }
}

.blog-detail-wrap h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-bottom: 49px;
}

.blog-detail-wrap span {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #696969;
    margin-left: 55px;
    position: relative;
}

.blog-detail-wrap span::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    background: #0F0F0F;
    left: -56px;
    top: 50%;
}

.blog-detail-social ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.blog-detail-social ul li a {
    width: 40px;
    height: 40px;
    display: grid;
    border: 1px solid #696969;
    border-radius: 50%;
    place-items: center;
}

.blog-detail-social ul li a:hover {
    background: #0F0F0F;
    color: #fff;
}

.blog-detail-item {
    display: flex;
    padding-bottom: 70px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .blog-detail-item {
        flex-wrap: wrap;
    }
}

.blog-detail-item::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 102.7%;
    background: rgba(15, 15, 15, 0.1);
    bottom: 0;
}

@media only screen and (max-width: 767px) {
    .blog-detail-item .detail__img {
        width: 100%;
    }
}

.blog-detail-item .detail__img img {
    max-width: 300px;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .blog-detail-item .detail__img img {
        width: 100%;
    }
}

.blog-detail-item .detail-content {
    margin-left: 50px;
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .blog-detail-item .detail-content {
        margin-left: 0;
    }
}

.blog-detail-item .detail-content h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #0F0F0F;
}

.blog-detail-item .detail-content span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.blog-detail-item .detail-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .blog-detail-item .detail-content p br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .blog-detail-social {
        margin-top: 30px;
    }
}

.blog-detail-social .title {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #0F0F0F;
}

.sidebar__widget-tagss-2 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 70px;
    position: relative;
    flex-wrap: wrap;
}

.sidebar__widget-tagss-2::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 102.7%;
    background: rgba(15, 15, 15, 0.1);
    bottom: 0;
}

.sidebar-post__wrapper-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sidebar-post__wrapper-2 .sidebar-post {
    display: flex;
}

.sidebar-post__wrapper-2 .sidebar-post_content {
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .sidebar-post__wrapper-2 .sidebar-post_content-2 {
        margin-left: 0;
    }
}

.sidebar__widget-3 {
    margin-top: 65px;
    padding-bottom: 40px;
}

.sidebar__widget-3::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 102.7%;
    background: rgba(15, 15, 15, 0.1);
    bottom: 0;
}

.blog-border {
    position: relative;
}

.blog-border::before {
    position: absolute;
    content: "";
    height: 115%;
    width: 1px;
    top: -5.1%;
    bottom: 0;
    right: -24px;
    background: rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .blog-border::before {
        height: 116%;
    }
}

.blog-border-2::before {
    position: absolute;
    content: "";
    height: 115%;
    width: 1px;
    top: -3.3% !important;
    bottom: 0;
    right: -24px;
    background: rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .blog-border-2::before {
        height: 116%;
    }
}

.blog-border-2::before {
    position: absolute;
    content: "";
    height: 129%;
    width: 1px;
    top: -5.1%;
    bottom: 0;
    right: -24px;
    background: rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .blog-border-2::before {
        height: 116%;
    }
}

.contact-us__form-wrapper {
    margin-top: 65px;
}

.contact-us__form-wrapper .title {
    font-weight: 600;
    font-size: 27px;
    line-height: 33px;
    color: #0F0F0F;
    margin-bottom: 45px;
}

.contact-us__form-wrapper-2 {
    width: 100%;
    max-width: 100%;
}

.contact-us__form-wrapper .contact-shape {
    z-index: -1;
}

.contact-us__form-wrapper .contact-us__form .contact-us__input {
    position: relative;
}

.contact-us__form-wrapper .contact-us__form .contact-us__input span {
    color: var(--rr-heading-primary);
    font-weight: var(--rr-fw-regular);
    line-height: var(--rr-lh-h5);
    font-size: 16px;
    font-style: normal;
    display: block;
}

.contact-us__form-wrapper .contact-us__form .contact-us__input input {
    position: relative;
    line-height: var(--rr-lh-h5);
    font-weight: var(--rr-fw-regular);
    margin-top: 5px;
    margin-left: 0;
    background: #F4F4F4;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    margin-bottom: 22px;
    padding: 15px 12px 15px 27px;
    border-radius: 7px;
    font-style: normal;
    outline: none;
    width: 100%;
    border: none;
}

.contact-us__form-wrapper .contact-us__form .contact-us__input input::-moz-placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.contact-us__form-wrapper .contact-us__form .contact-us__input-5 {
    position: relative;
}

.contact-us__form-wrapper .contact-us__form .contact-us__input-5 input {
    background: none;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 49.5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    padding: 34.5px 188px 34.5px 40px;
    margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
    .contact-us__form-wrapper .contact-us__form .contact-us__input-5 input {
        padding: 30px 183px 30px 20px;
    }
}

.contact-us__form-wrapper .contact-us__form .contact-us__input-5 .contact-btn {
    position: absolute;
    top: 23%;
    right: 20px;
    transform: translateY(-50% -50%);
    color: var(--rr-heading-primary);
    border: none;
}

@media only screen and (max-width: 767px) {
    .contact-us__form-wrapper .contact-us__form .contact-us__input-5 .contact-btn {
        top: 25%;
        right: 10px;
    }
}

.contact-us__form-wrapper .contact-us__form .contact-us__textarea {
    position: relative;
}

.contact-us__form-wrapper .contact-us__form .contact-us__textarea textarea {
    color: #0F0F0F;
    margin-top: 5px;
    height: 150px !important;
    margin-left: 0;
    border: 1px solid #F4F4F4;
    padding: 10px 12px 10px 20px;
    border-radius: 7px;
    width: 100%;
    background: #F4F4F4;
}

.contact-us__form-wrapper .contact-us__form .contact-us__textarea textarea::-moz-placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.live-comment-widget__agree {
    margin-top: 15px;
}

.live-comment-widget__agree label {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-left: 12px;
}

.live-comment-widget__agree label span {
    color: #000000;
}

.live-comment-widget__agree-2 {
    margin-left: 40px;
}

@media only screen and (max-width: 767px) {
    .live-comment-widget__agree-2 {
        margin-left: 20px;
    }
}

@media (max-width: 1199px) {
    .blog-detail-img img {
        width: 100%;
        margin-top: 30px;
    }
}

.blog-section-4-item {
    display: flex;
    align-items: start;
    gap: 123px;
    padding: 29px 0px 29px 0px;
    border-top: 1px solid rgba(23, 23, 23, 0.1);
}

@media (max-width: 1399px) {
    .blog-section-4-item {
        gap: 91px;
    }
}

@media (max-width: 1199px) {
    .blog-section-4-item {
        display: flex;
        gap: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-section-4-item {
        display: block;
    }
}

.blog-section-4-item:last-child {
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.blog-section-4-item .author {
    display: flex;
    gap: 30px;
    align-items: center;
}

@media (max-width: 1199px) {
    .blog-section-4-item .author {
        white-space: nowrap;
    }
}

.blog-section-4-item .author-one {
    gap: 36px;
}

.blog-section-4-item .author-true {
    gap: 17px;
}

.blog-section-4-item .author .thumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-section-4-item .author .thumb .name {
    margin-bottom: 0;
}

.blog-section-4-item .author .thumb .name span {
    color: #696969;
}

.blog-section-4-item .author .date .icon {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-section-4-item .blog-wrap {
    display: flex;
    gap: 70px;
}

@media (max-width: 1399px) {
    .blog-section-4-item .blog-wrap {
        gap: 45px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .blog-section-4-item .blog-wrap {
        flex-wrap: nowrap !important;
        gap: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-section-4-item .blog-wrap {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 992px) {
    .blog-section-4-item .blog-wrap {
        margin-top: 30px;
    }
}

@media (max-width: 1199px) {
    .blog-section-4-item .blog-wrap .content {
        max-width: 301px;
    }
}

.blog-section-4-item .blog-wrap .content .title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.5;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

@media (max-width: 1399px) {
    .blog-section-4-item .blog-wrap .content .title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-section-4-item .blog-wrap .content .title br {
        display: none;
    }
}

.blog-section-4-item .blog-wrap .content .title a {
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 100%);
    background-size: 0% 1.5px;
    background-repeat: no-repeat;
    background-position: left 100%;
    transition: all 0.3s ease-in-out;
}

.blog-section-4-item .blog-wrap .content .title a:hover {
    background-size: 100% 2px;
}

@media (max-width: 1199px) {
    .blog-section-4-item .blog-wrap .content .title a br {
        display: none;
    }
}

.blog-section-4-item .blog-wrap .content .desc {
    display: flex;
    font-size: 16px;
    line-height: 28px;
    align-items: center;
    color: var(--rr-text-body);
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-regular);
    margin-bottom: 0;
    margin: 16px 0;
}

@media (max-width: 1199px) {
    .blog-section-4-item .blog-wrap .content .desc br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .blog-section-4-item .blog-wrap .content .desc {
        font-size: 15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .blog-section-4-item .blog-wrap .content .desc {
        margin: 9px 0;
    }
}

.blog-grid-section {
    padding-top: 130px;
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

@media (max-width: 1199px) {
    .blog-grid-section {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-grid-section {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-grid-section {
        padding-top: 70px;
    }
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
@media only screen and (max-width: 992px) {
    .testimonial-section-1 .section-heading {
        display: block;
    }
}

.testimonial-section-1 .section-heading .section-title {
    margin-left: -47px;
}

@media only screen and (max-width: 992px) {
    .testimonial-section-1 .section-heading .section-title {
        margin-left: 0;
        margin-top: 15px;
        max-width: 291px;
    }
}

.testi-carousel {
    max-width: 1730px;
    width: 100%;
    overflow: visible;
    margin-left: 0;
    padding-bottom: 75px;
}

.testi-carousel .swiper-pagination {
    bottom: -10px;
}

.testi-carousel .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--rr-color-heading-primary);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
}

.testi-carousel .swiper-pagination-bullet:only-child {
    display: block !important;
}

.testi-item {
    background-color: #F3F3F3;
    padding: 50px;
}

@media (max-width: 1600px) {
    .testi-item {
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testi-item {
        padding: 40px 20px;
    }
}

.testi-item-2 {
    background-color: #fff;
}

.testi-item .category {
    color: var(--rr-color-text-body);
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 25px;
}

.testi-item p {
    color: var(--rr-color-heading-primary);
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
    .testi-item p {
        font-size: 20px;
    }
}

.testi-item .testi-author {
    display: grid;
    align-items: center;
    grid-template-columns: 70px 1fr;
    grid-gap: 20px;
}

.testi-item .testi-author .author-img {
    height: 70px;
    width: 70px;
}

.testi-item .testi-author .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 50% 0;
}

.testi-item .testi-author .content .name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testi-item .testi-author .content span {
    color: var(--rr-color-text-body);
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .testi-item .testi-author .content span {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .testi-item-2 p {
        font-size: 20px;
    }
}

.testimonial-shape {
    position: absolute;
    right: 135px;
    top: -24px;
}

@media (max-width: 1600px) {
    .testimonial-shape {
        right: 32px;
        top: -21px;
    }
}

.h2-testimonial-quote {
    background: #FFFFFF;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 50px;
    padding: 15.5px 40px;
    display: inline-flex;
    margin-bottom: 30px;
}

.h2-testimonial-quote h2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.02em;
    color: #0F0F0F;
    margin-top: 6px;
}

.h2-testimonial-quote .reviews {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(15, 15, 15, 0.1);
}

.h2-testimonial-quote .reviews .ratine {
    margin-top: 10px;
}

.h2-testimonial-quote .reviews .ratine i {
    color: #FDAD00;
}

.h2-testimonial-item {
    margin-bottom: 250px;
    margin-top: 17px;
}

@media (max-width: 1199px) {
    .h2-testimonial-item {
        margin-bottom: 140px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-item {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-testimonial-item {
        margin-bottom: 30px;
    }
}

.h2-testimonial-item .title h2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #1C1C28;
    margin-top: 25px;
}

.h2-testimonial-item .title span {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696969;
}

.h2-testimonial-wraper {
    background: #FFFFFF;
    padding: 50px;
}

.h2-testimonial-rating {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-rating {
        margin-bottom: 30px;
    }
}

.h2-testimonial-rating span {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.h2-testimonial-rating .star {
    color: #FDAD00;
}

.h2-testimonial-rating .star i {
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    color: #FDAD00;
    margin: 2px;
}

@media (max-width: 1199px) {
    .h2-testimonial-rating .star i {
        margin: -1px;
    }
}

.h2-testimonial-thumb {
    margin-left: 25px;
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-thumb {
        margin-bottom: 30px;
        margin-left: 0px;
    }
}

.h2-testimonial-content {
    margin-left: -7px;
    margin-top: 17px;
}

@media (max-width: 1399px) {
    .h2-testimonial-content {
        margin-left: 0px;
    }
}

.h2-testimonial-content span {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #696969;
}

.h2-testimonial-content .dec {
    margin-top: 150px;
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    color: #1C1C28;
}

@media (max-width: 1399px) {
    .h2-testimonial-content .dec {
        margin-top: 70px;
        font-size: 27px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-content .dec {
        margin-top: 62px;
        font-size: 21px;
        line-height: 33px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-testimonial-content .dec {
        margin-top: 30px;
    }
}

.h2-testimonial-section {
    position: relative;
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-section .section-heading {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-section .swiper-arrow {
        display: none;
    }
}

.h2-testimonial-section .swiper-arrow .swiper-nav {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 58%;
    left: 223px;
    transform: translateY(-50%);
    z-index: 5;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 40px;
}

.h2-testimonial-section .swiper-arrow .swiper-nav:hover {
    background-color: var(--rr-heading-primary);
    color: var(--rr-common-white);
}

.h2-testimonial-section .swiper-arrow .swiper-nav.swiper-prev {
    left: auto;
    right: 223px;
}

.h2-testimonial-section .swiper-arrow .swiper-nav:hover {
    background: #fff;
}

/* !END: Testimonial CSS */
.h2-testimonial-quote {
    background: #FFFFFF;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 50px;
    padding: 15.5px 40px;
    display: inline-flex;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .h2-testimonial-quote {
        padding: 15.5px 24px;
    }
}

.h2-testimonial-quote h2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.02em;
    color: #0F0F0F;
    margin-top: 6px;
}

.h2-testimonial-quote .reviews {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(15, 15, 15, 0.1);
}

.h2-testimonial-quote .reviews .ratine {
    margin-top: 10px;
}

.h2-testimonial-quote .reviews .ratine i {
    color: #FDAD00;
}

.h2-testimonial-item {
    margin-bottom: 250px;
    margin-top: 17px;
}

@media (max-width: 1199px) {
    .h2-testimonial-item {
        margin-bottom: 140px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-item {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-testimonial-item {
        margin-bottom: 30px;
    }
}

.h2-testimonial-item .title h2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #1C1C28;
    margin-top: 25px;
}

.h2-testimonial-item .title span {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696969;
}

.h2-testimonial-wraper {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1600px) {
    .h2-testimonial-wraper {
        padding: 45px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-wraper {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-testimonial-wraper {
        padding: 15px;
    }
}

.h2-testimonial-rating {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-rating {
        margin-bottom: 30px;
    }
}

.h2-testimonial-rating span {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.h2-testimonial-rating .star {
    color: #FDAD00;
}

.h2-testimonial-rating .star i {
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    color: #FDAD00;
    margin: 2px;
}

@media (max-width: 1199px) {
    .h2-testimonial-rating .star i {
        margin: -1px;
    }
}

.h2-testimonial-thumb {
    margin-left: 25px;
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-thumb {
        margin-bottom: 30px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-testimonial-thumb img {
        width: 100%;
    }
}

.h2-testimonial-content {
    margin-left: -7px;
    margin-top: 17px;
}

@media (max-width: 1399px) {
    .h2-testimonial-content {
        margin-left: 0px;
    }
}

.h2-testimonial-content span {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #696969;
}

.h2-testimonial-content .dec {
    margin-top: 150px;
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    color: #1C1C28;
}

@media (max-width: 1399px) {
    .h2-testimonial-content .dec {
        margin-top: 70px;
        font-size: 27px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-content .dec {
        margin-top: 62px;
        font-size: 21px;
        line-height: 33px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-testimonial-content .dec {
        margin-top: 30px;
    }
}

.h2-testimonial-section {
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .h2-testimonial-section .swiper-arrow {
        display: none;
    }
}

.h2-testimonial-section .swiper-arrow .swiper-nav {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 58%;
    left: 215px;
    transform: translateY(-50%);
    z-index: 5;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 40px;
}

.h2-testimonial-section .swiper-arrow .swiper-nav i {
    color: #0F0F0F;
    font-size: 18px;
}

@media (max-width: 1600px) {
    .h2-testimonial-section .swiper-arrow .swiper-nav {
        left: 0px;
    }
}

.h2-testimonial-section .swiper-arrow .swiper-nav:hover {
    background-color: var(--rr-heading-primary);
    color: var(--rr-common-white);
}

.h2-testimonial-section .swiper-arrow .swiper-nav.swiper-prev {
    left: auto;
    right: 215px;
}

@media (max-width: 1600px) {
    .h2-testimonial-section .swiper-arrow .swiper-nav.swiper-prev {
        right: 0px;
    }
}

.h2-testimonial-section .swiper-arrow .swiper-nav:hover {
    background: #fff;
}

@media (max-width: 1399px) {
    .h2-testimonial-section .swiper-arrow {
        display: none;
    }
}

.testimonial-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h5-testimonial-section .section-br-bottom {
    padding-bottom: 100px;
}

@media (max-width: 1199px) {
    .h5-testimonial-section .section-br-bottom {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .h5-testimonial-section .section-br-bottom {
        padding-bottom: 40px;
    }
}

.h5-testimonial-section .section-br-bottom .section-heading {
    margin-bottom: 0;
}

.h5-testimonial__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h5-testimonial__item {
    margin-top: 15px;
}

.h5-testimonial__item h3 {
    margin-top: 26px;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-bottom: 3px;
}

.h5-testimonial__item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696969;
}

.h5-testimonial__wrap {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .h5-testimonial__wrap {
        flex-wrap: wrap;
    }
}

.h5-testimonial__content h4 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
}

@media (max-width: 1199px) {
    .h5-testimonial__content h4 {
        font-size: 40px;
        line-height: 52px;
    }
}

@media only screen and (max-width: 992px) {
    .h5-testimonial__content h4 {
        font-size: 32px;
        line-height: 43px;
    }
}

@media only screen and (max-width: 767px) {
    .h5-testimonial__content h4 {
        font-size: 23px;
        line-height: 34px;
        margin-top: 25px;
    }

    .h5-testimonial__content h4 br {
        display: none;
    }
}

.h5-testimonial {
    margin-left: 0;
    padding-bottom: 95px;
}

@media (max-width: 1199px) {
    .h5-testimonial {
        padding-bottom: 60px;
    }
}

.h5-testimonial .swiper-pagination {
    bottom: 0;
    left: -65px;
}

@media (max-width: 1199px) {
    .h5-testimonial .swiper-pagination {
        left: -90px;
    }
}

@media only screen and (max-width: 767px) {
    .h5-testimonial .swiper-pagination {
        left: 0;
    }
}

.h5-testimonial .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--rr-color-heading-primary);
    height: 10px !important;
    width: 10px !important;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.h5-testimonial .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px !important;
    border-radius: 5px;
}

.h5-testimonial .swiper-pagination-bullet:only-child {
    display: block !important;
    text-align: center;
}

.text-slider__wrapper {
    display: flex;
}

.text-slider__title {
    position: relative;
}

.text-slider__title h2 {
    font-weight: 600;
    font-size: 65px;
    line-height: 79px;
    color: #0F0F0F;
    margin-left: 83px;
    margin-right: 66px;
}

@media only screen and (max-width: 992px) {
    .text-slider__title h2 {
        font-weight: 600;
        font-size: 50px;
        line-height: 79px;
        color: #0F0F0F;
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .text-slider__title h2 {
        font-size: 35px;
        margin-left: 38px;
        margin-right: 10px;
    }
}

.text-slider__title::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background: #0F0F0F;
    border-radius: 100px;
    background-color: var(--rr-color-heading-primary);
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.text-slider__wrapper .swiper .swiper-wrapper .swiper-slide {
    width: auto !important;
}

.h3-fact__wrapper {
    display: flex;
    gap: 150px;
    margin-top: 240px;
}

@media (max-width: 1199px) {
    .h3-fact__wrapper {
        gap: 85px;
    }
}

@media only screen and (max-width: 992px) {
    .h3-fact__wrapper {
        gap: 85px;
        margin-top: 70px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-fact__wrapper {
        gap: 33px;
        margin-top: 70px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }
}

.h3-fact__wrapper .fact-item h2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 75px;
    line-height: 91px;
    color: #0F0F0F;
    margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
    .h3-fact__wrapper .fact-item h2 {
        font-size: 50px;
    }
}

.h3-fact__wrapper .fact-item h2 span {
    font-family: "Inter Tight";
}

.h3-fact__wrapper .fact-item p {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #696969;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .h3-fact__wrapper .fact-item p {
        font-size: 16px;
    }
}

.h3-fact__wrapper .fact-item .rating {
    margin-top: 7px;
}

.h3-fact__wrapper .fact-item .rating i {
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    color: #FDAD00;
    margin-right: 4px;
}

.h3-testimonial__section {
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.h3-testimonial__wrapper .testi-thumb-wrap {
    display: flex;
    gap: 10px;
}

.h3-testimonial__wrapper .testi-thumb-wrap img {
    border-radius: 50%;
}

.h3-testimonial__wrapper-2 {
    margin-left: -100px;
}

@media (max-width: 1399px) {
    .h3-testimonial__wrapper-2 {
        margin-left: 0;
    }
}

.h3-testimonial__content .content {
    margin-top: 45px;
}

.h3-testimonial__content .content span {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #696969;
}

.h3-testimonial__content .content h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-top: 25px;
}

@media (max-width: 1600px) {
    .h3-testimonial__content .content h5 br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .h3-testimonial__content .content h5 {
        font-size: 19px;
        line-height: 30px;
    }
}

.h3-testimonial_item {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.h3-testimonial_item .post-item {
    margin-left: 30px;
}

.h3-testimonial_item .post-item li {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #0F0F0F;
    list-style: none;
}

.h3-testimonial_item .post-item li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.h3-testimonial__wrapper .testi-thumb-wrap {
    overflow: hidden;
    width: 350px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 450px) {
    .h3-testimonial__wrapper .testi-thumb-wrap {
        width: 260px;
    }
}

.h3-testimonial__wrapper .thumb-carousel {
    width: 70px;
    margin: 0 auto;
    padding-top: 10px;
    overflow: visible;
}

.h3-testimonial__wrapper .thumb-carousel .swiper-slide {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
}

.h3-testimonial__wrapper .testi-thumb {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 10px;
}

.h3-testimonial__wrapper .testi-thumb img {
    border-radius: 50%;
}

.h3-testimonial__wrapper .swiper-slide.swiper-slide-active .testi-thumb {
    height: 54px;
    width: 54px;
    padding: 7px;
    border: 1px solid #0F0F0F;
    border-radius: 50%;
    opacity: 1;
    position: relative;
}

.h3-testimonial__wrapper .content-carousel {
    padding-bottom: 50px;
}

.h3-testimonial__wrapper .content-carousel .swiper-pagination {
    left: 0;
    text-align: left;
}

.h3-testimonial__wrapper .content-carousel .swiper-pagination {
    margin: 0;
    position: relative;
    top: 44px;
    left: 5px;
}

.h3-testimonial__wrapper .content-carousel .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: rgba(15, 15, 15, 0.15);
    border-radius: 50%;
    opacity: 1;
    margin-right: 10px;
}

.h3-testimonial__wrapper .content-carousel .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.h3-testimonial__wrapper .content-carousel .swiper-pagination .swiper-pagination-bullet-active {
    position: relative;
    background: #0F0F0F;
}

.h3-testimonial__wrapper .content-carousel .swiper-pagination .swiper-pagination-bullet-active:before {
    background-color: transparent;
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #0F0F0F;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial {
    padding-bottom: 22rem;
}

@media only screen and (max-width: 992px) {
    .testimonial {
        padding-bottom: 23rem;
    }
}

@media only screen and (max-width: 450px) {
    .testimonial {
        padding-bottom: 25rem;
    }
}

.testimonial .testimonial-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-two .testimonial-item-section {
    padding: 42rem 0 12rem 0;
    position: relative;
}

.testimonial-two .testimonial-section {
    background: #000;
    padding: 8.5rem 8.5rem 18.4rem 8.5rem;
    border-radius: 4rem;
    position: absolute;
    width: 100%;
    top: -58%;
}

.testimonial-two .testimonial-section h2,
.testimonial-two .testimonial-section h5,
.testimonial-two .testimonial-section p,
.testimonial-two .testimonial-section .review-text {
    color: #fff;
}

.testimonial-two .slider-section {
    position: relative;
}

.testimonial-two .slider-section .testimonial-buttons {
    position: absolute;
    display: flex;
    margin-top: 6.7rem;
}

.testimonial-two .slider-section .testimonial-pagination {
    display: flex;
    position: unset;
    width: auto;
    height: 4rem;
}

.testimonial-two .slider-section .testimonial-pagination .swiper-pagination-bullet {
    background: #fff;
}

.testimonial-two .slider-section .testimonial-button-next,
.testimonial-two .slider-section .testimonial-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b8915f;
    border: 1px solid #caa26e;
}

.testimonial-two .slider-section .testimonial-button-next svg,
.testimonial-two .slider-section .testimonial-button-prev svg {
    stroke: currentColor;
    color: #fff;
}

.testimonial-two .slider-section .testimonial-button-next:hover,
.testimonial-two .slider-section .testimonial-button-prev:hover {
    background-color: #fff;
}

.testimonial-two .slider-section .testimonial-button-next:hover svg,
.testimonial-two .slider-section .testimonial-button-prev:hover svg {
    color: #000;
}

.testimonial-two .testimonial-slide {
    display: unset;
}

.testimonial-two .testimonial-wrapper-section {
    position: relative;
}

.testimonial-two .testimonial-wrapper-section .subtitle-two {
    background: #b8915f;
    border: 1px solid #caa26e;
    color: #fff;
}

.testimonial-two .testimonial-img {
    position: absolute;
    right: 0;
    top: -15rem;
    user-select: none;
}

.testimonial-two .testimonial-wrapper {
    display: unset;
}

.testimonial-two .testimonial-wrapper p,
.testimonial-two .testimonial-wrapper h5 {
    font-family: sans-serif;
    font-weight: 400;
}

.testimonial-two .testimonial-wrapper .wrapper-review {
    display: flex;
    margin-bottom: 3rem;
}

.testimonial-two .testimonial-wrapper .wrapper-detail {
    font-size: 2.4rem;
    line-height: 3.7rem;
}

.testimonial-two .testimonial-wrapper .aurthor {
    margin-top: 4.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 2rem;
}

.testimonial-two .testimonial-wrapper .aurthor .aurthor-item {
    display: flex;
}

.testimonial-three .testimonial-section {
    background: #000;
}

.testimonial-three .testimonial-section h2,
.testimonial-three .testimonial-section h5,
.testimonial-three .testimonial-section p,
.testimonial-three .testimonial-section .review-text {
    color: #000;
}

.testimonial-three .testimonial-section .subtitle {
    background: #fff;
    color: yellow;
    border: 1px solid transparent;
}

.testimonial-three .slider-section .testimonial-pagination .swiper-pagination-bullet {
    background: #000;
}

.testimonial-three .slider-section .testimonial-button-next,
.testimonial-three .slider-section .testimonial-button-prev {
    background: yellow;
    border: 1px solid yellow;
}

.testimonial-three .slider-section .testimonial-button-next:hover,
.testimonial-three .slider-section .testimonial-button-prev:hover {
    background-color: #fff;
}

.testimonial-three .slider-section .testimonial-button-next:hover svg,
.testimonial-three .slider-section .testimonial-button-prev:hover svg {
    color: yellow;
}

.testimonial-three .counterup-section .devider {
    background: yellow;
}

.testimonial-three .counterup-section .counter-wrapper .counter-text {
    color: #000;
}

.testimonial-three .counterup-section .counter-wrapper .wrapper-detail {
    color: green;
}

.qs-wrapper {
    height: 26rem;
    width: 100%;
    position: relative;
    display: flex;
    z-index: -1;
}

.qs-slide {
    padding: 70px 194px;
    position: absolute;
    transition: all;
    transition-duration: 1s;
    opacity: 0;
    background: #fff;
    transform: scale(0.92);
    border-radius: 1rem;
    width: 100%;
    border: 1px solid rgba(23, 23, 23, 0.1);
}

@media only screen and (max-width: 992px) {
    .qs-slide {
        padding: 70px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .qs-slide {
        padding: 85px 30px;
    }
}

.qs-slide-active {
    z-index: 10;
    opacity: 1;
    top: 0;
    transform: scale(1);
}

.qs-slide-next {
    z-index: 9;
    top: 2.3rem;
    opacity: 0.8;
}

.qs-slide-next-2 {
    z-index: 8;
    top: 5rem;
    opacity: 0.8;
    transform: scale(0.82);
}

.home-two-next,
.home-two-prev {
    display: flex;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    transition: all 0.3s;
    background: #ECE1D5;
}

.home-two-next svg,
.home-two-prev svg {
    stroke: currentColor;
    color: yellow;
}

.home-two-next:hover,
.home-two-prev:hover {
    background-color: yellow;
}

.home-two-next:hover svg,
.home-two-prev:hover svg {
    color: #fff;
}

.wrapper-swiper {
    position: relative;
}

.wrapper-swiper .hotel-swiper {
    position: absolute;
    width: calc(100% - 40px);
    bottom: 4rem;
    padding: 2rem;
    background: rgba(37, 37, 37, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(20px);
    border-radius: 1.6rem;
}

.wrapper-swiper .hotel-swiper .swiper-img {
    height: 11.2rem;
    width: 16.1rem;
    overflow: hidden;
    border-radius: 1rem;
}

.wrapper-swiper .hotel-swiper .swiper-slide-thumb-active .swiper-img {
    border: 1px solid #fff;
    border-radius: 1rem;
}

.wrapper-swiper .hotel-swiper2 {
    height: 69.8rem;
    border-radius: 2rem;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper {
    text-align: center;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-img img {
    border-radius: 100px;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .wrapper-content {
    margin-top: 42px;
    padding-bottom: 49px;
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .wrapper-content .wrapper-detail {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #171717;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .wrapper-content .wrapper-detail br {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .wrapper-content .wrapper-detail {
        font-size: 20px;
        line-height: 30px;
    }
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .aurthor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .aurthor .position {
    display: flex;
    align-items: center;
    gap: 20px;
    row-gap: 10px;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .aurthor .position .name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .aurthor .position .name h5 {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #1C1C28;
    margin-bottom: 0;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .aurthor .position .name span {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696969;
}

.testimonial .testimonial-section .qs-wrapper .qs-slide .testimonial-wrapper .wrapper-item .aurthor .title h4 {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #1C1C28;
    margin-bottom: 0;
}

.qs-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: -221px;
    transform: translateX(-50%);
}

@media (max-width: 1399px) {
    .qs-pagination {
        bottom: -265px;
    }
}

@media only screen and (max-width: 450px) {
    .qs-pagination {
        bottom: -335px;
    }
}

.qs-bullet {
    background-color: var(--rr-color-heading-primary);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.qs-bullet.active {
    width: 25px;
    border-radius: 5px;
}

/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.service-section {
    border-top: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 767px) {
    .service-section .section-heading {
        column-gap: 80px;
    }
}

.service-section .item-wrapper {
    display: flex;
}

@media (max-width: 1199px) {
    .service-section .item-wrapper {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}

.service-section .item-wrapper .item {
    padding: 50px 52px 60px 51px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    overflow: hidden;
    max-width: 259px;
    margin-right: -1px;
    height: 454px;
    transition: all 0.3s ease-in-out;
}

.service-section .item-wrapper .item .icon img {
    max-width: 100%;
}

.service-section .item-wrapper .item .content {
    transform: translateY(53%);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.service-section .item-wrapper .item .content .title {
    color: #0F0F0F;
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 150px;
    display: inline-block;
}

@media (max-width: 1399px) {
    .service-section .item-wrapper .item .content .title {
        font-size: 16px;
    }
}

.service-section .item-wrapper .item .content p {
    color: #696969;
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 18px;
}

.service-section .item-wrapper .item .content .service-item-btn {
    color: #0F0F0F;
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-section .item-wrapper .item .content .service-item-btn i {
    background: #0F0F0F;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    transform: rotate(-45deg);
}

.service-section .item-wrapper .active {
    padding: 50px 54px 50px 70px;
    max-width: 515px;
    width: 100%;
}

@media (max-width: 1199px) {
    .service-section .item-wrapper .active {
        padding: 25px 54px 50px 70px;
    }
}

@media only screen and (max-width: 576px) {
    .service-section .item-wrapper .active {
        padding: 50px 20px 50px 20px;
    }
}

.service-section .item-wrapper .active .content {
    transform: translateY(0);
}

.service-item-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

.service-item {
    background-color: var(--rr-color-common-white);
    padding: 50px 35px;
}

.service-item .icon {
    margin-bottom: 168px;
}

.service-item .service-content .title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-item .service-content p {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* !END: Page Header CSS */
.service-5 .section-heading {
    margin-bottom: 70px !important;
}

.service-2 .section-heading {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .service-2 .section-heading {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .service-2 .section-heading {
        margin-top: 20px;
    }
}

.service-2__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid rgba(28, 28, 40, 0.1);
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
    padding: 30px 0;
    margin-bottom: -1px;
    transition: all 0.3s ease-in-out;
    column-gap: 10px;
}

.service-2__item:hover .content .thumb {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.service-2__item:hover .content .thumb-2 {
    max-height: 630px;
    opacity: 1;
    transform: translateY(0);
    width: 1070px;
    margin-left: 25px;
}

@media (max-width: 1700px) {
    .service-2__item:hover .content .thumb-2 {
        width: inherit;
    }
}

@media only screen and (max-width: 992px) {
    .service-2__item:hover .content .thumb-2 {
        max-height: 400px;
    }
}

.service-2__item .title-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-2__item .title-wrap .icon img {
    max-width: 100%;
}

.service-2__item .title-wrap .title {
    font-family: "Inter Tight";
    color: #1C1C28;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 35px;
}

.service-2__item .title-wrap .title-3 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
}

@media only screen and (max-width: 767px) {
    .service-2__item .title-wrap .title-3 {
        font-size: 36px;
        line-height: 50px;
    }
}

.service-2__item .title-wrap .title-2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #0F0F0F;
}

@media (max-width: 1399px) {
    .service-2__item .title-wrap .title-2 {
        margin-right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 1399px) {
    .service-2__item .title-wrap .title-2 {
        margin-right: 20px;
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 1199px) {
    .service-2__item .title-wrap .title-2 {
        margin-right: 3px;
        font-size: 26px;
        line-height: 37px;
    }
}

.service-2__item .title-wrap-2 {
    display: block;
}

@media (max-width: 1399px) {
    .service-2__item .title-wrap-2 {
        width: 500px;
    }
}

@media (max-width: 1199px) {
    .service-2__item .title-wrap-2 {
        width: 600px;
    }
}

.service-2__item .title-wrap-2 span {
    display: inline-block;
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 30px;
    padding: 5px 17px;
    margin-bottom: 20px;
}

.service-2__item .title-wrap span {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media only screen and (max-width: 767px) {
    .service-2__item .title-wrap span {
        font-size: 15px;
    }
}

.service-2__item .title-wrap-3 {
    gap: 50px;
}

@media only screen and (max-width: 992px) {
    .service-2__item .title-wrap-3 {
        gap: 57px;
    }
}

@media only screen and (max-width: 767px) {
    .service-2__item .title-wrap-3 {
        gap: 20px;
    }
}

.service-2__item .content {
    position: relative;
}

@media only screen and (max-width: 992px) {
    .service-2__item .content {
        margin: 20px 0;
    }
}

.service-2__item .content p {
    font-family: "Inter Tight";
    color: #696969;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

.service-2__item .content .thumb {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

@media only screen and (max-width: 992px) {
    .service-2__item .content .thumb img {
        width: 100%;
    }
}

.service-2__item .content-3 {
    margin-left: -34px;
}

@media only screen and (max-width: 992px) {
    .service-2__item .content-3 {
        margin-left: 0;
    }
}

.service-2__item-2 {
    transition: all 0.4s ease;
    padding: 70px 58px;
    border-top: 0;
    flex-wrap: nowrap;
}

.service-2__item-2:first-child {
    padding: 60px 58px 70px 58px;
}

@media (max-width: 1199px) {
    .service-2__item-2:first-child {
        padding: 70px 0 70px 0;
    }
}

@media only screen and (max-width: 992px) {
    .service-2__item-2 {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .service-2__item-2 {
        padding: 15px;
        flex-wrap: wrap;
    }
}

.service-2__item-2 .serivce-data span {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-left: 20px;
}

.service-2__item-2:hover {
    align-items: normal;
}

.service-2__item-2:hover .serivce-data-2 {
    margin-left: 230px;
    margin-top: 210px;
}

@media (max-width: 1600px) {
    .service-2__item-2:hover .serivce-data-2 {
        margin-left: 200px;
    }
}

@media (max-width: 1399px) {
    .service-2__item-2:hover .serivce-data-2 {
        margin-left: 120px;
        margin-top: 120px;
    }
}

@media (max-width: 1199px) {
    .service-2__item-2:hover .serivce-data-2 {
        margin-left: 30px;
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .service-2__item-2:hover .serivce-data-2 {
        text-align: end;
        margin-top: 0;
    }
}

.service-2__item-2:hover .title-wrap-2 {
    margin-top: 127px;
}

@media (max-width: 1399px) {
    .service-2__item-2:hover .title-wrap-2 {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .service-2__item-2:hover .title-wrap-2 {
        all: unset !important;
        opacity: 1 !important;
        transform: none !important;
        margin: 0 !important;
    }
}

.service-2__btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-2__btn-2 {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.service-2__btn-2 svg {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.service-2__btn-2:hover {
    background: #0F0F0F;
}

.service-2__btn-2:hover svg path {
    fill: white;
}

.custom-container {
    max-width: 1320px;
}

.service-section-2__item {
    padding: 29px 0;
    border-top: 1px solid rgba(28, 28, 40, 0.1);
}

.service-section-2__item:last-of-type {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

.service-section-2__item:hover .service-section-2__thumb {
    height: 200px;
}

@media only screen and (max-width: 992px) {
    .service-section-2__item:hover .service-section-2__thumb {
        margin-bottom: 20px;
    }
}

.service-section-2__item:hover .service-section-2__main-text {
    opacity: 1;
    height: 100px;
    visibility: visible;
}

@media only screen and (max-width: 992px) {
    .service-section-2__item:hover .service-section-2__main-text {
        height: 85px;
    }
}

.service-section-2__item:hover .service-section-2__left {
    opacity: 0;
    height: 0;
    visibility: hidden;
}

.service-section-2__item:hover .service-section-2__arrow a {
    width: 80px;
    height: 120px;
    font-size: 24px;
    color: #0F0F0F;
}

@media only screen and (max-width: 992px) {
    .service-section-2__item:hover .service-section-2__arrow a {
        width: 60px;
        height: 60px;
    }
}

.service-section-2__left {
    gap: 40px;
    display: flex;
    align-items: flex-end;
    transition: all 0.6s ease-in-out;
}

.service-section-2__left .service-section-2__title {
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .service-section-2__left {
        opacity: 0;
        height: 0;
        visibility: hidden;
    }
}

.service-section-2__thumb {
    height: 0;
    transition: all 0.6s ease-in-out;
}

.service-section-2__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-section-2__right {
    display: flex;
    margin-left: 40px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .service-section-2__right {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .service-section-2__right {
        gap: 10px;
        flex-wrap: wrap;
    }
}

.service-section-2__main-text {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .service-section-2__main-text {
        opacity: 1;
        height: 85px;
        visibility: visible;
    }
}

.service-section-2__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #1C1C28;
    margin-bottom: 5px;
    margin-top: 20px;
    font-family: Inter Tight;
}

@media only screen and (max-width: 992px) {
    .service-section-2__title {
        margin-top: 10px;
    }
}

.service-section-2__dec {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    font-family: Inter Tight;
    color: #696969;
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .service-section-2__dec br {
        display: none;
    }
}

.service-section-2__arrow a {
    width: 60px;
    height: 60px;
    display: flex;
    line-height: 1;
    font-size: 20px;
    font-weight: 400;
    align-items: center;
    border-radius: 500px;
    justify-content: center;
    color: rgb(105, 105, 105);
    transition: all 0.6s ease-in-out;
    border: 1px solid rgba(15, 15, 15, 0.1);
}

.service__3-wrapper {
    border-left: 1px solid rgba(28, 28, 40, 0.1);
    border-right: 1px solid rgba(28, 28, 40, 0.1);
}

.service__3-wrapper-2 {
    border: 1px solid rgba(28, 28, 40, 0.1);
}

@media (max-width: 1199px) {
    .service__3-wrapper-2 {
        border: none;
    }
}

.section-heading-2 {
    padding-left: 70px;
}

@media only screen and (max-width: 992px) {
    .section-heading-2 {
        padding-left: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading-2 {
        padding-left: 0;
    }
}

.section-heading-2-3 {
    padding-left: 0px;
}

.h3-service__video {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 415px;
    margin-top: 265px;
}

@media (max-width: 1199px) {
    .h3-service__video {
        margin-top: 70px;
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .h3-service__video {
        margin-top: 30px;
        width: 100%;
        max-width: 100%;
    }
}

.h3-service__video img {
    width: 100%;
}

.h3-service__video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 16px;
    cursor: pointer;
}

.h3-service__video .play-btn-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.h3-service__video .play-btn-2 a {
    background-color: var(--rr-color-common-white);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h3-service__video .play-btn-2 a:hover {
    background-color: var(--rr-color-heading-primary);
}

.h3-service__video .play-btn-2 a:hover i {
    color: #fff;
}

.h3-service__video .play-btn-2 span {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #0F0F0F;
}

.h3-service__item {
    display: flex;
    margin-left: -60px;
    position: relative;
    transition: 0.3s;
    padding: 25px 0;
}

@media (max-width: 1600px) {
    .h3-service__item {
        margin-left: 0px;
    }
}

.h3-service__item span {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.h3-service__item .title-2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #0F0F0F;
    margin-left: 45px;
}

@media only screen and (max-width: 767px) {
    .h3-service__item .title-2 {
        font-size: 22px;
        margin-left: 30px;
    }
}

.h3-service__item:hover {
    padding-bottom: 165px;
}

@media (max-width: 1399px) {
    .h3-service__item:hover {
        padding-bottom: 208px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-service__item:hover {
        padding-bottom: 265px;
    }
}

.h3-service__item:hover .h3-service__content {
    opacity: 1;
    visibility: visible;
}

.h3-service__item:hover .title-2 {
    opacity: 0;
    visibility: hidden;
}

.h3-service__item .border-botom {
    background: rgba(15, 15, 15, 0.1);
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 106.7%;
}

@media (max-width: 1600px) {
    .h3-service__item .border-botom {
        width: 101.5%;
    }
}

.h3-service__content {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    position: absolute;
}

@media only screen and (max-width: 767px) {
    .h3-service__content {
        flex-wrap: wrap;
    }
}

.h3-service__content img {
    margin-left: 80px;
}

@media only screen and (max-width: 992px) {
    .h3-service__content img {
        margin-left: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-service__content img {
        margin-left: 38px;
        width: 220px;
    }
}

.h3-service__wrap {
    margin-left: 67px;
    margin-top: 14px;
}

@media only screen and (max-width: 992px) {
    .h3-service__wrap {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-service__wrap {
        margin-left: 37px;
    }
}

.h3-service__wrap .title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #0F0F0F;
    margin-bottom: 18px;
}

@media (max-width: 1600px) {
    .h3-service__wrap .title {
        margin-bottom: 14px;
        line-height: 30px;
    }
}

.h3-service__wrap p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1600px) {
    .h3-service__wrap p br {
        display: none;
    }
}

@media (max-width: 1600px) {
    .h3-service__wrap p {
        font-size: 15px;
        line-height: 22px;
    }
}

.service-section-4-area {
    background: #FFFFFF;
    border-radius: 13px;
    margin: 0px 30px;
}

@media (max-width: 1399px) {
    .service-section-4-area {
        margin: 0px 20px;
    }
}

.service-section-4-area .service-slider-active {
    padding-bottom: 76px;
}

.service-section-4-item {
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 10px;
    padding: 40px 31px 40px 50px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1399px) {
    .service-section-4-item {
        padding: 30px 0px 30px 10px;
    }
}

.service-section-4-item:hover {
    background: #171717;
}

.service-section-4-item:hover .shape-circle {
    opacity: 1;
    visibility: visible;
}

.service-section-4-item:hover .number span {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.service-section-4-item:hover .sub-title {
    color: #fff;
}

.service-section-4-item:hover .desc {
    color: white;
}

.service-section-4-item:hover .service-tag span {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.service-section-4-item .number span {
    width: 40px;
    height: 40px;
    display: flex;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    font-family: var(--rr-ff-heading);
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid rgba(23, 23, 23, 0.1);
    color: var(--rr-text-body);
}

.service-section-4-item .sub-title {
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    font-size: 24px;
    line-height: 35px;
    display: flex;
    align-items: center;
    color: #171717;
    margin: 21px 0px 69px 0px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .service-section-4-item .sub-title {
        margin: 17px 0px 25px 0px;
    }
}

.service-section-4-item .desc {
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: center;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-ff-regular);
    color: var(--rr-text-body);
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.service-section-4-item .service-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
}

.service-section-4-item .service-tag span {
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-ff-regular);
    color: var(--rr-text-body);
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 30px;
    padding: 6px 15px;
}

.service-section-4-item .shape-circle {
    position: absolute;
    z-index: 1;
    display: block;
    top: -185px;
    right: -155px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination {
    margin-top: 50px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #1C1C28;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    height: 10px;
    background: #171717;
    border-radius: 5px;
}

.service-details__info .title {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
    margin-bottom: 23px;
}

@media only screen and (max-width: 767px) {
    .service-details__info .title {
        font-size: 40px;
        line-height: 46px;
    }
}

.service-details__info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    margin-bottom: 42px;
}

.service-details__info .dec {
    margin-bottom: 36px;
}

.service-details__content h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-bottom: 16px;
}

.service-details__content .dec {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1399px) {
    .service-details__content .dec br {
        display: none;
    }
}

.service-details__thumb {
    margin-top: 70px;
    margin-bottom: 68px;
}

.service-details__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details__card h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #0F0F0F;
}

@media (max-width: 1399px) {
    .service-details__card h3 {
        font-size: 18px;
        line-height: 25px;
    }
}

.service-details__card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1399px) {
    .service-details__card p br {
        display: none;
    }
}

.service-details__item {
    display: flex;
    gap: 93px;
}

@media only screen and (max-width: 767px) {
    .service-details__item {
        gap: 16px;
        flex-wrap: wrap;
    }
}

.service-details__icon {
    margin-bottom: 25px;
}

.service-2__item-5 {
    padding: 25px 0;
}

.service-2__item-5 .thumb {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(0px);
    transition: all 0.4s ease;
    margin-top: 40px;
}

.service-2__item-5:hover .thumb {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width: 767px) {
    .service-2__item-5:hover .thumb {
        display: none;
    }
}

.item-1 {
    margin-left: -98px;
}

@media (max-width: 1199px) {
    .item-1 {
        margin-left: 0;
    }
}

.item-2 {
    margin-left: -90px;
}

@media (max-width: 1199px) {
    .item-2 {
        margin-left: 0;
    }
}

.item-3 {
    margin-left: -90px;
}

@media (max-width: 1199px) {
    .item-3 {
        margin-left: 0;
    }
}

.item-4 {
    margin-left: -10px;
}

@media (max-width: 1199px) {
    .item-4 {
        margin-left: 0;
    }
}

.awards-1__wrapper {
    display: flex;
    gap: 140px;
}

@media (max-width: 1700px) {
    .awards-1__wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 1399px) {
    .awards-1__wrapper {
        gap: 100px;
    }
}

@media (max-width: 1199px) {
    .awards-1__wrapper {
        gap: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .awards-1__wrapper {
        flex-wrap: wrap;
    }
}

.awards-1__wrapper-2 {
    flex-direction: row-reverse;
    gap: 140px;
}

@media (max-width: 1700px) {
    .awards-1__wrapper-2 {
        padding: 0 15px;
    }
}

@media (max-width: 1600px) {
    .awards-1__wrapper-2 {
        gap: 100px;
    }
}

@media (max-width: 1199px) {
    .awards-1__wrapper-2 {
        gap: 40px;
    }
}

.awards-1__thumb {
    max-width: 945px;
    width: 100%;
}

@media (max-width: 1199px) {
    .awards-1__thumb {
        width: 100%;
        max-width: 100%;
    }
}

.awards-1__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .awards-1__item {
        padding: 0 15px 0 15px;
        display: flex;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 992px) {
    .awards-1__item {
        padding: 0 15px 0 15px;
    }
}

.awards-1__content {
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    width: 520px;
    max-width: 520px;
}

@media (max-width: 1199px) {
    .awards-1__content {
        width: 370px;
    }
}

@media only screen and (max-width: 992px) {
    .awards-1__content {
        width: 100%;
        max-width: 100%;
    }
}

.awards-1__content:last-child {
    margin-bottom: 100px;
}

@media (max-width: 1199px) {
    .awards-1__content:last-child {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .awards-1__content:last-child {
        margin-bottom: 0px;
    }
}

.awards-1__content .numbar {
    margin-bottom: 30px;
}

.awards-1__content .numbar span {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    padding: 15px 17.6px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.awards-1__content h4 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #B4B4B4;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .awards-1__content h4 {
        font-size: 36px;
        line-height: 53px;
    }

    .awards-1__content h4 br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .awards-1__content h4 {
        font-size: 29px;
        line-height: 40px;
        margin-bottom: 30px;
    }
}

.awards-1__content:hover {
    border-bottom: 1px solid #0F0F0F;
}

.awards-1__content:hover .numbar span {
    background: #0F0F0F;
    color: #fff;
}

.awards-1__content:hover h4 {
    color: #0F0F0F;
}

.awards-1__content-2 {
    margin-top: 110px;
}

@media (max-width: 1199px) {
    .awards-1__content-2 {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .awards-1__content-2 {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 992px) {
    .service-section-2-content {
        margin-bottom: 40px;
    }
}

@media (min-width: 320px) and (max-width: 576px) {
    .service-section-2-content {
        margin-bottom: 25px;
    }
}

.service-section-2-content .title span {
    font-size: 110px;
    color: #CACACA;
    line-height: 133px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    transition: all 0.3s ease-in-out;
    max-width: 712px;
    margin-bottom: 25px;
}

.service-section-2-content .title span:hover {
    border: 1px solid #0F0F0F;
    border-radius: 80px;
    padding: 12px 43px;
    color: #0F0F0F;
}

@media (max-width: 1399px) {
    .service-section-2-content .title span {
        font-size: 100px;
        color: #CACACA;
        line-height: 120px;
    }
}

@media (max-width: 1199px) {
    .service-section-2-content .title span {
        font-size: 76px;
        color: #CACACA;
        line-height: 97px;
        padding: 6px 36px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .service-section-2-content .title span {
        font-size: 70px;
        color: #CACACA;
        line-height: 90px;
        padding: 0px 36px;
    }
}

@media (min-width: 320px) and (max-width: 576px) {
    .service-section-2-content .title span {
        font-size: 29px;
        color: #CACACA;
        line-height: 55px;
        padding: 6px 10px;
    }
}

.service-section-2-media {
    margin-top: 195px;
}

@media only screen and (max-width: 992px) {
    .service-section-2-media {
        margin-top: 0;
    }
}

.service-section-2-media .desc {
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-medium);
    font-size: 18px;
    line-height: 30px;
    align-items: center;
    color: var(--rr-text-body);
    text-align: left;
    max-width: 300px;
    margin: 0 0 0 auto;
}

@media only screen and (max-width: 992px) {
    .service-section-2-media .desc {
        max-width: 100%;
    }
}

.service-section-2-media .thumb {
    margin-top: 122px;
}

@media only screen and (max-width: 992px) {
    .service-section-2-media .thumb img {
        width: 100%;
    }
}

@media (max-width: 1399px) {
    .service-section-2-media .thumb {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .service-section-2-media .thumb {
        margin-top: 28px;
    }
}

.service-2 {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

.service-2__wrapper {
    padding: 50px 50px 40px 50px;
    border: 1px solid rgba(15, 15, 15, 0.1);
}

@media (max-width: 1199px) {
    .service-2__wrapper {
        padding: 22px;
    }
}

@media only screen and (max-width: 992px) {
    .service-2__wrapper {
        margin-bottom: 30px;
    }
}

.service-2__wrapper .numbar {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    margin-bottom: 14px;
}

.service-2__content .sub-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
    .service-2__content .sub-title {
        margin-bottom: 50px;
    }
}

.service-2__content .sub-title-2 {
    margin-bottom: 65px;
}

.service-2__content .sub-title a {
    background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.service-2__content .sub-title a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

.service-2__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1399px) {
    .service-2__content p br {
        display: none;
    }
}

@media (max-width: 1199px) {
    .service-2__content p {
        font-size: 15px;
    }
}

/**----------------------------------------
    START: About CSS
----------------------------------------*/
.about-section-2 {
    border-bottom: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 992px) {
    .about-section-2 .about-heading-wrap {
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .about-content .section-heading {
        column-gap: 85px;
    }
}

.about-content-wrap {
    display: flex;
    align-items: center;
    align-items: start;
}

@media only screen and (max-width: 767px) {
    .about-content-wrap {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap {
        flex-wrap: wrap;
    }
}

.about-content-wrap > div {
    height: 100%;
    padding: 130px 0;
}

@media (max-width: 1199px) {
    .about-content-wrap > div {
        padding: 50px 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap > div {
        padding: 30px 0;
    }
}

.about-content-wrap > div:nth-child(1) {
    padding-right: 70px;
}

@media (max-width: 1399px) {
    .about-content-wrap > div:nth-child(1) {
        padding-right: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .about-content-wrap > div:nth-child(1) {
        padding-right: 0;
    }
}

.about-content-wrap > div:nth-child(2) {
    padding-right: 90px;
    margin-right: 100px;
    padding-left: 100px;
    border-right: 1px solid var(--rr-color-border-1);
    border-left: 1px solid var(--rr-color-border-1);
    padding-bottom: 208px;
}

@media (max-width: 1600px) {
    .about-content-wrap > div:nth-child(2) {
        padding-left: 38px;
        margin-right: 47px;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
        padding-bottom: 0;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap > div:nth-child(2) {
        padding-left: 10px;
        margin-right: 30px;
        padding-right: 8px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap > div:nth-child(2) {
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .about-content-wrap .about-left-content .about-author-img {
        display: none;
    }
}

.about-content-wrap .about-mid-content {
    height: 100%;
}

.about-content-wrap .about-mid-content p {
    font-size: 18px;
    font-weight: 400;
}

.about-content-wrap .about-mid-content p span {
    color: var(--rr-color-heading-primary);
}

.about-content-wrap .about-mid-content .about-mid-item {
    max-width: 447px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-mid-content .about-mid-item {
        max-width: 100%;
    }
}

.about-content-wrap .about-mid-content .about-mid-item:not(:last-of-type) {
    margin-bottom: 100px;
}

@media only screen and (max-width: 576px) {
    .about-content-wrap .about-mid-content .about-mid-item:not(:last-of-type) {
        margin-bottom: 60px;
    }
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item {
    display: flex;
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item-1 {
    gap: 100px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-1 {
        gap: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-1 {
        gap: 7px;
        justify-content: space-between;
    }
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item-2 {
    gap: 115px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-2 {
        gap: 75px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-2 {
        gap: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-2 {
        gap: 7px;
        justify-content: space-between;
    }
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item-3 {
    gap: 121px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-3 {
        gap: 82px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-3 {
        gap: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-3 {
        gap: 7px;
        justify-content: space-between;
    }
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item-4 {
    gap: 120px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-4 {
        gap: 90px;
    }
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-4 {
        gap: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item-4 {
        gap: 7px;
        justify-content: space-between;
    }
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item .year {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 20px;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 100px;
    display: inline-block;
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item .item-title {
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item .item-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .about-content-wrap .about-mid-content .about-mid-item .about-exp-item .item-title {
        margin-top: 15px;
    }
}

.about-content-wrap .about-mid-content .about-mid-item .about-exp-item .item-title span {
    color: var(--rr-color-text-body);
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 9px;
}

.about-content-wrap .about-mid-content .about-ed-list .list-1 {
    gap: 126px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-1 {
        gap: 20px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-1 {
        gap: 25px;
    }
}

.about-content-wrap .about-mid-content .about-ed-list .list-2 {
    gap: 134px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-2 {
        gap: 30px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-2 {
        gap: 25px;
    }
}

.about-content-wrap .about-mid-content .about-ed-list .list-3 {
    gap: 141px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-3 {
        gap: 40px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-3 {
        gap: 25px;
    }
}

.about-content-wrap .about-mid-content .about-ed-list .list-4 {
    gap: 92px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-4 {
        gap: 15px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-mid-content .about-ed-list .list-4 {
        gap: 25px;
    }
}

.about-content-wrap .about-mid-content .about-ed-list li {
    display: flex;
    line-height: 1;
    flex-wrap: wrap;
    row-gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--rr-color-border-1);
}

.about-content-wrap .about-mid-content .about-ed-list li:first-child {
    padding-top: 18px;
    border-top: 1px solid var(--rr-color-border-1);
}

.about-content-wrap .about-mid-content .about-ed-list li:not(:last-of-type) {
    margin-bottom: 18px;
}

.about-content-wrap .about-mid-content .about-ed-list li .category {
    color: var(--rr-color-heading-primary);
    font-size: 20px;
    font-weight: 500;
}

.about-content-wrap .about-mid-content .about-ed-list li span {
    font-size: 16px;
    font-weight: 400;
}

.about-content-wrap .about-ed-social li {
    display: flex;
    align-items: center;
    list-style: none;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    padding: 13px 0 10px 0;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-ed-social li {
        display: block;
    }
}

@media only screen and (max-width: 992px) {
    .about-content-wrap .about-ed-social li {
        display: flex;
        justify-content: space-between;
    }
}

.about-content-wrap .about-ed-social li h3 {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    margin-right: 129px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-ed-social li h3 {
        margin-right: 40px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-ed-social li h3 {
        margin-right: 10px;
    }
}

@media (max-width: 1199px) {
    .about-content-wrap .about-ed-social li h3 {
        margin-right: 70px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-ed-social li h3 {
        margin-right: 23px;
    }
}

.about-content-wrap .about-ed-social li h3 span {
    color: #696969;
}

.about-content-wrap .about-ed-social li h3 svg {
    margin-right: 15px;
}

@media (max-width: 1399px) {
    .about-content-wrap .about-ed-social li h3 svg {
        margin-right: 3px;
    }
}

@media (max-width: 1600px) {
    .about-content-wrap .about-ed-social li .rr-primary-btn-3 {
        margin-left: 65px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-ed-social li .rr-primary-btn-3 {
        margin-left: 53px;
    }
}

@media only screen and (max-width: 992px) {
    .about-content-wrap .about-ed-social li .rr-primary-btn-3 {
        margin-left: 0;
    }
}

.about-content-wrap .about-ed-social .end-list-1 {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.about-content-wrap .about-right-content .about-author-info {
    padding-bottom: 100px;
    position: relative;
    margin-left: 66px;
}

@media only screen and (max-width: 992px) {
    .about-content-wrap .about-right-content .about-author-info {
        padding-bottom: 50px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-right-content .about-author-info {
        padding-bottom: 50px;
        margin-left: 0;
    }
}

.about-content-wrap .about-right-content .about-author-info .border-label {
    background: rgba(15, 15, 15, 0.1);
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 180%;
    margin-left: -167px;
}

@media (max-width: 1600px) {
    .about-content-wrap .about-right-content .about-author-info .border-label {
        width: 116%;
        margin-left: -48px;
    }
}

@media (max-width: 1399px) {
    .about-content-wrap .about-right-content .about-author-info .border-label {
        width: 116%;
        margin-left: -31px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-wrap .about-right-content .about-author-info .border-label {
        width: 105%;
        margin-left: -48px;
    }
}

.about-content-wrap .about-right-content .about-author-info .author-img {
    margin-bottom: 30px;
}

.about-content-wrap .about-right-content .about-author-info .name {
    font-size: 20px;
    font-weight: 600;
}

.about-content-wrap .about-right-content .about-author-info span {
    display: block;
    margin-bottom: 15px;
}

.about-content-wrap .about-right-content .about-ed-list li {
    display: flex;
    line-height: 1;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--rr-color-border-1);
}

.about-content-wrap .about-right-content .about-ed-list li:first-child {
    padding-top: 19px;
    border-top: 1px solid var(--rr-color-border-1);
}

.about-content-wrap .about-right-content .about-ed-list li:not(:last-of-type) {
    margin-bottom: 19px;
}

.about-content-wrap .about-right-content .about-ed-list li .category {
    color: var(--rr-color-heading-primary);
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 1399px) {
    .about-content-wrap .about-right-content .about-ed-list li .category {
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .about-content-wrap .about-right-content .about-ed-list li .category {
        font-size: 16px;
    }
}

.about-content-wrap .about-right-content .about-ed-list li span {
    font-size: 16px;
    font-weight: 400;
}

.about-right-content p {
    font-size: 22px;
    margin-bottom: 45px;
}

.about-right-content p span {
    color: var(--rr-color-heading-primary);
    font-weight: 500;
}

.about-wrap-2 {
    margin-top: 100px;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .about-wrap-2 {
        margin-top: 50px;
    }
}

.about-wrap-2 .about-counter-items {
    display: flex;
    align-items: center;
    column-gap: 90px;
    border-top: 1px solid rgba(28, 28, 40, 0.1);
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
    padding: 70px 0 50px 0;
    max-width: 520px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .about-wrap-2 .about-counter-items {
        column-gap: 20px;
    }
}

.about-wrap-2 .about-counter-items .about-counter .title {
    font-size: 100px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
    margin-bottom: 0px;
    font-family: "Inter Tight";
}

.about-wrap-2 .about-counter-items .about-counter .title span {
    font-family: "Inter Tight";
}

@media (max-width: 1199px) {
    .about-wrap-2 .about-counter-items .about-counter .title {
        font-size: 89px;
    }
}

@media only screen and (max-width: 992px) {
    .about-wrap-2 .about-counter-items .about-counter .title {
        font-size: 45px;
    }
}

.about-wrap-2 .about-counter-items .about-counter .title .icon {
    font-size: 85px;
}

@media only screen and (max-width: 992px) {
    .about-wrap-2 .about-counter-items .about-counter .title .icon {
        font-size: 45px;
    }
}

.about-wrap-2 .about-counter-items .about-counter .title .odometer-auto-theme {
    line-height: 1;
    font-family: inherit;
}

.about-wrap-2 .about-counter-items .about-counter p {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1;
}

@media only screen and (max-width: 992px) {
    .about-wrap-2 .about-counter-items .about-counter p {
        font-weight: 400;
        font-size: 18px;
    }
}

.about-img-2 {
    height: 530px;
    width: 945px;
}

@media (max-width: 1199px) {
    .about-img-2 {
        width: 475px;
    }
}

@media only screen and (max-width: 992px) {
    .about-img-2 {
        width: 100%;
    }
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section-3 {
    border-top: 1px solid rgba(15, 15, 15, 0.15);
    border-bottom: 1px solid rgba(15, 15, 15, 0.15);
}

.about-section-3 .about-3-wrapper {
    display: flex;
    gap: 70px;
}

@media (max-width: 1199px) {
    .about-section-3 .about-3-wrapper {
        display: block;
    }
}

.about-section-3 .about-3-wrapper .about-3-thumb img {
    max-width: 999px;
    width: 100%;
}

.about-section-3 .about-3-wrapper .about-3-content {
    position: relative;
}

@media (max-width: 1199px) {
    .about-section-3 .about-3-wrapper .about-3-content {
        margin-top: 40px;
    }
}

.about-section-3 .about-3-wrapper .about-3-content::before {
    background: rgba(15, 15, 15, 0.15);
    position: absolute;
    width: 1px;
    height: 816px;
    top: -70px;
    left: 0;
    content: "";
}

@media (max-width: 1199px) {
    .about-section-3 .about-3-wrapper .about-3-content::before {
        display: none;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper {
    padding: 0 0 70px 70px;
}

@media only screen and (max-width: 992px) {
    .about-section-3 .about-3-wrapper .about-3-content .title-wrapper {
        padding: 0 0 70px 0;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .submenu {
    position: relative;
    font-family: "Inter Tight";
    color: #0F0F0F;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-left: 13px;
    margin-bottom: 18px;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .submenu::before {
    position: absolute;
    background: var(--rr-color-theme-primary);
    content: "";
    left: -13px;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .title {
    font-family: "Inter Tight";
    color: #0F0F0F;
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 30px;
}

@media (max-width: 1600px) {
    .about-section-3 .about-3-wrapper .about-3-content .title-wrapper .title br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .title-wrapper .title {
        font-size: 35px;
        line-height: 45px;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .dec {
    margin-bottom: 0;
    font-family: "Inter Tight";
    color: #696969;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 1600px) {
    .about-section-3 .about-3-wrapper .about-3-content .title-wrapper .dec br {
        display: none;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .dec span {
    color: #0F0F0F;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .about-2-btn-wrapper {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .about-2-btn-wrapper .about-2-btn .rr-primary-btn {
    background-color: var(--rr-color-heading-primary);
    color: #ffffff;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .about-2-btn-wrapper .about-2-btn .rr-primary-btn::before {
    background: #ffffff;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .about-2-btn-wrapper .about-2-btn .rr-primary-btn:hover {
    color: #0F0F0F;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .about-2-btn-wrapper .social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .about-2-btn-wrapper .social-btn .social-btn-common {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #696969;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.about-section-3 .about-3-wrapper .about-3-content .title-wrapper .about-2-btn-wrapper .social-btn .social-btn-common:hover {
    background: #0F0F0F;
    color: #ffffff;
}

.about-section-3 .about-3-wrapper .about-3-content .location-details ul li {
    font-family: "Inter Tight";
    color: #696969;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(15, 15, 15, 0.15);
    padding: 21px 0 21px 70px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul li {
        padding: 21px 0 21px 0;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .location-details ul li i {
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    padding-right: 15px;
}

.about-section-3 .about-3-wrapper .about-3-content .location-details ul li a {
    font-family: "Inter Tight";
    color: #0F0F0F;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul li a {
        margin-top: 10px;
    }

    .about-section-3 .about-3-wrapper .about-3-content .location-details ul li a:last-child {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1 {
        gap: 10px;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1 a {
    margin-left: 28px;
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-2 {
        gap: 10px;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-2 a {
    margin-left: 12px;
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-2 a {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-3 {
        gap: 10px;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-3 a {
    margin-left: 57px;
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-3 a {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-4 {
        gap: 10px;
    }
}

.about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-4 a {
    margin-left: 57px;
}

@media only screen and (max-width: 767px) {
    .about-section-3 .about-3-wrapper .about-3-content .location-details ul .about-3-item-1-4 a {
        margin-left: 0;
    }
}

/* !END: About CSS */
.experience-section {
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.experience-section .experience-wrapper {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper {
        flex-wrap: wrap;
        row-gap: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper {
        display: block;
    }
}

.experience-section .experience-wrapper .experience .experience-item {
    margin-top: 46px;
}

.experience-section .experience-wrapper .experience .experience-item .job-experience {
    display: flex;
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience {
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 25px !important;
    }
}

.experience-section .experience-wrapper .experience .experience-item .job-experience-1 {
    gap: 166px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-1 {
        gap: 50px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-1 {
        gap: 40px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-1 {
        gap: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-1 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .experience .experience-item .job-experience-2 {
    gap: 189px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-2 {
        gap: 65px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-2 {
        gap: 50px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-2 {
        gap: 90px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-2 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .experience .experience-item .job-experience-3 {
    gap: 238px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-3 {
        gap: 110px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-3 {
        gap: 70px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-3 {
        gap: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-3 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .experience .experience-item .job-experience-4 {
    gap: 144px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-4 {
        gap: 30px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-4 {
        gap: 10px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-4 {
        gap: 45px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .experience .experience-item .job-experience-4 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .experience .experience-item .job-experience:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.experience-section .experience-wrapper .experience .experience-item .job-experience .company-name {
    display: flex;
    gap: 20px;
    align-items: center;
}

.experience-section .experience-wrapper .experience .experience-item .job-experience .company-name .author .name {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0F0F0F;
    margin-bottom: 0;
}

.experience-section .experience-wrapper .experience .experience-item .job-experience .company-name .author .position {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.experience-section .experience-wrapper .experience .experience-item .job-experience .date span {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #696969;
    text-transform: uppercase;
    padding: 7px 15px;
    border: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 30px;
}

.experience-section .experience-wrapper .skill {
    position: relative;
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .skill {
        margin: 60px 0;
    }
}

.experience-section .experience-wrapper .skill::before {
    background: rgba(28, 28, 40, 0.1);
    position: absolute;
    content: "";
    top: -70px;
    left: -14%;
    width: 1px;
    height: 643px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .skill::before {
        display: none;
    }
}

.experience-section .experience-wrapper .skill .skill-item {
    margin-top: 46px;
    position: relative;
}

.experience-section .experience-wrapper .skill .skill-item::before {
    background: rgba(28, 28, 40, 0.1);
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 1px;
    height: 429px;
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .skill .skill-item::before {
        left: 53%;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .skill .skill-item::before {
        display: none;
    }
}

.experience-section .experience-wrapper .skill .skill-item .prodact-item {
    display: flex;
    gap: 153px;
    border-top: 1px solid rgba(28, 28, 40, 0.1);
    padding: 30px 0 23px 0;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .skill .skill-item .prodact-item {
        gap: 70px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .skill .skill-item .prodact-item {
        gap: 45px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .skill .skill-item .prodact-item {
        gap: 80px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .skill .skill-item .prodact-item {
        justify-content: space-between;
        gap: 0;
        flex-wrap: wrap;
        row-gap: 25px !important;
    }
}

.experience-section .experience-wrapper .skill .skill-item .prodact-item:last-child {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

.experience-section .experience-wrapper .skill .skill-item .prodact-item .expolore {
    display: flex;
    gap: 36px;
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .skill .skill-item .prodact-item .expolore {
        gap: 20px;
    }
}

.experience-section .experience-wrapper .skill .skill-item .prodact-item .expolore .author .name {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0F0F0F;
    margin-bottom: 0;
}

.experience-section .experience-wrapper .skill .skill-item .prodact-item .expolore .author .position {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.experience-section .experience-wrapper .skill .skill-item .prodact-item .expolore .author-2 {
    text-align: end;
}

.experience-section .experience-wrapper .stady {
    position: relative;
}

.experience-section .experience-wrapper .stady::before {
    background: rgba(28, 28, 40, 0.1);
    position: absolute;
    content: "";
    top: -70px;
    left: -14%;
    width: 1px;
    height: 643px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .stady::before {
        display: none;
    }
}

.experience-section .experience-wrapper .stady .stady-item {
    margin-top: 46px;
}

.experience-section .experience-wrapper .stady .stady-item .educational-item {
    border-top: 1px solid rgba(28, 28, 40, 0.1);
    padding: 35px 0 29px 0;
    display: flex;
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item {
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 20px !important;
    }
}

.experience-section .experience-wrapper .stady .stady-item .educational-item-1 {
    gap: 172px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-1 {
        gap: 120px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-1 {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-1 {
        gap: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-1 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .stady .stady-item .educational-item-2 {
    gap: 188px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-2 {
        gap: 130px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-2 {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-2 {
        gap: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-2 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .stady .stady-item .educational-item-3 {
    gap: 207px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-3 {
        gap: 130px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-3 {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-3 {
        gap: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-3 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .stady .stady-item .educational-item-4 {
    gap: 147px;
}

@media (max-width: 1600px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-4 {
        gap: 70px;
    }
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-4 {
        gap: 10px;
    }
}

@media (max-width: 1199px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-4 {
        gap: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .experience-section .experience-wrapper .stady .stady-item .educational-item-4 {
        gap: 0;
    }
}

.experience-section .experience-wrapper .stady .stady-item .educational-item:last-child {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

.experience-section .experience-wrapper .stady .stady-item .educational-item .title {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #0F0F0F;
    margin-bottom: 0;
}

.experience-section .experience-wrapper .stady .stady-item .educational-item .dec {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-bottom: 0;
}

.experience-section .experience-wrapper .same-item .title-wrapper .submenu {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #1C1C28;
    margin-bottom: 0;
    margin-left: 15px;
    position: relative;
    margin-bottom: 12px;
}

.experience-section .experience-wrapper .same-item .title-wrapper .submenu::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #1C1C28;
    top: 7px;
    left: -15px;
    border-radius: 50%;
}

.experience-section .experience-wrapper .same-item .title-wrapper .title {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #1C1C28;
    margin-bottom: 0;
    margin-top: 12px;
}

@media (max-width: 1399px) {
    .experience-section .experience-wrapper .same-item .title-wrapper .title {
        font-size: 35px;
        line-height: 45px;
    }
}

.about__wrap .dec {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #696969;
    margin-top: 14px;
    margin-bottom: 45px;
}

.h3-about__section {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

.h3-about__section .h3-about__wrraper .section-heading {
    column-gap: 35px;
}

@media only screen and (max-width: 992px) {
    .h3-about__section .h3-about__wrraper .section-heading .section-title br {
        display: none;
    }
}

.h3-about__thumb {
    text-align: right;
    margin-top: 130px;
}

@media (max-width: 1199px) {
    .h3-about__thumb {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-about__thumb {
        margin-top: 0;
    }
}

@media only screen and (max-width: 992px) {
    .h3-about__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.h3-about__thumb-2 {
    margin-top: 0px;
}

@media only screen and (max-width: 767px) {
    .h3-about__thumb-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.h3-about__content {
    margin-left: 115px;
}

@media only screen and (max-width: 992px) {
    .h3-about__content {
        margin-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-about__content {
        margin-left: 0px;
        margin-top: 30px;
    }
}

.h3-about__content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #696969;
    margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
    .h3-about__content p br {
        display: none;
    }
}

.h3-about__content-2 {
    margin-top: 50px;
    margin-left: 90px;
}

@media only screen and (max-width: 992px) {
    .h3-about__content-2 {
        margin-top: 30px;
        margin-left: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .h3-about__content-2 {
        margin-top: 30px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 992px) {
    .h3-about__content-2 p {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

.h3-about__wrraper .text-slider__wrapper {
    margin-top: -130px;
}

@media only screen and (max-width: 767px) {
    .h3-about__wrraper .text-slider__wrapper {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 992px) {
    .h3-about__wrraper .text-slider__wrapper-2 {
        margin-top: -80px;
    }
}

@media only screen and (max-width: 767px) {
    .h3-about__wrraper .text-slider__wrapper-2 {
        margin-top: 0px;
    }
}

.smooth-slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.about-2__info {
    text-align: center;
    margin-bottom: 100px;
}

@media (max-width: 1199px) {
    .about-2__info {
        margin-bottom: 70px;
    }
}

.about-2__info .title {
    font-weight: 700;
    font-size: 65px;
    line-height: 75px;
    letter-spacing: -0.01em;
    color: #0F0F0F;
}

@media (max-width: 1199px) {
    .about-2__info .title {
        font-size: 50px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .about-2__info .title {
        font-size: 28px;
        line-height: 35px;
    }

    .about-2__info .title br {
        display: none;
    }
}

.about-2-wrap {
    margin-bottom: 70px;
}

@media (max-width: 1199px) {
    .about-2-wrap {
        margin-bottom: 50px;
    }
}

.about-2-wrap h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
    margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
    .about-2-wrap h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

.about-2-wrap p {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    color: #696969;
}

@media only screen and (max-width: 992px) {
    .about-2-wrap p {
        font-size: 18px;
    }
}

.about-2__img {
    margin-top: 210px;
}

@media (max-width: 1199px) {
    .about-2__img {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .about-2__img {
        margin-top: 0px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .about-2__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.about__wrap .dec {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #696969;
    margin-top: 14px;
    margin-bottom: 45px;
}

@media only screen and (max-width: 992px) {
    .about__wrap .dec {
        margin-top: 0;
    }
}

.features__wrap {
    margin-top: 85px;
}

@media (max-width: 1199px) {
    .features__wrap {
        padding: 0 15px;
        margin-top: 0px;
    }
}

.features__item {
    margin-top: 47px;
    width: 520px;
    display: flex;
    gap: 120px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.features__item:last-child {
    border: none;
}

.features__item:first-child {
    margin-top: 0;
}

@media (max-width: 1600px) {
    .features__item {
        gap: 100px;
    }
}

@media (max-width: 1199px) {
    .features__item {
        width: 100%;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .features__item {
        gap: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .features__item {
        gap: 30px;
    }
}

.features__item .numbar span {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

.features__content h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-bottom: 12px;
}

.features__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .features__content p {
        margin-bottom: 30px;
    }
}

.features-2__item {
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .features-2__item {
        margin-top: 40px;
    }
}

.features-2__item .numbar {
    margin-bottom: 30px;
}

.features-2__item .numbar span {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    padding: 15px 17.6px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.features-2__item h3 {
    font-weight: 600;
    font-size: 35px;
    line-height: 42px;
    color: #B4B4B4;
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .features-2__item h3 {
        font-size: 30px;
        line-height: 39px;
    }
}

@media (max-width: 1199px) {
    .features-2__item h3 {
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 25px;
    }
}

.features-2__item:hover {
    border-bottom: 1px solid #0F0F0F;
}

.features-2__item:hover .numbar span {
    color: #fff;
    background: #0F0F0F;
}

.features-2__item:hover h3 {
    color: #0F0F0F;
}

.brand__thumb {
    text-align: center;
    width: 300px;
    padding: 58px 0;
    border: 1px solid rgba(15, 15, 15, 0.1);
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .brand__thumb {
        width: 205px;
        padding: 35px 0;
    }
}

.brand__thumb:nth-child(4) {
    margin-left: 110px;
}

@media (max-width: 1399px) {
    .brand__thumb:nth-child(4) {
        margin-left: 70px;
    }
}

@media (max-width: 1199px) {
    .brand__thumb:nth-child(4) {
        margin-left: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .brand__thumb:nth-child(4) {
        margin-left: 0px;
    }
}

.brand__thumb:nth-child(7) {
    margin-left: 260px;
}

@media only screen and (max-width: 992px) {
    .brand__thumb:nth-child(7) {
        margin-left: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .brand__thumb:nth-child(7) {
        margin-left: 0px;
    }
}

.brand__thumb:hover {
    border: 1px solid #0F0F0F;
}

.brand__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
    .brand__item {
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .brand__item {
        flex-wrap: wrap;
    }
}

.about-section-4-area {
    position: relative;
    overflow: hidden;
}

.about-section-4-area .shape-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-38%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .about-section-4-area .shape-1 {
        display: none;
    }
}

.about-section-4-wrapper {
    z-index: 2;
    position: relative;
}

.about-section-4-wrapper .about-counter {
    max-width: 230px;
    background: white;
    padding: 40px 60px 35px 41px;
}

@media (max-width: 1199px) {
    .about-section-4-wrapper .about-counter {
        padding: 40px 60px 35px 28px;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-4-wrapper .about-counter {
        margin-bottom: 30px;
        max-width: 100%;
        margin: 0 auto;
    }
}

.about-section-4-wrapper .about-thumb {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .about-section-4-wrapper .about-thumb {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-4-wrapper .about-thumb img {
        width: 100%;
    }
}

.about-section-4-wrapper .about-thumb .about-video-part .video {
    max-width: 154px;
    background: #9175FF;
    border-radius: 7px;
    padding: 10px 0px 28px 10px;
    position: absolute;
    bottom: -45px;
    right: 39px;
}

@media (max-width: 1399px) {
    .about-section-4-wrapper .about-thumb .about-video-part .video {
        right: 0px;
        padding: 10px 15px 23px 10px;
    }
}

@media only screen and (max-width: 992px) {
    .about-section-4-wrapper .about-thumb .about-video-part .video {
        left: -80px;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-4-wrapper .about-thumb .about-video-part .video {
        bottom: -60px;
        right: 0;
        left: inherit;
    }
}

.about-section-4-wrapper .about-thumb .about-video-part .video a {
    gap: 10px;
    display: flex;
    font-size: 16px;
    line-height: 22px;
    align-items: center;
    color: #FFFFFF;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-regular);
    margin-bottom: 29px;
}

.about-section-4-wrapper .about-thumb .about-video-part .video a i {
    display: flex;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 4px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #9175FF;
}

.about-section-4-wrapper .about-thumb .about-video-part .video .video-desg {
    font-family: var(--rr-ff-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    padding: 0px 25px 0px 16px;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .about-section-4-wrapper .about-thumb .about-video-part .video .video-desg {
        padding: 0px 9px 0px 16px;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-4-wrapper .about-thumb .about-video-part .video .video-desg {
        font-size: 16px;
    }
}

@media only screen and (max-width: 992px) {
    .about-section-4-content {
        margin-top: 80px;
    }
}

.about-section-4-content .desc {
    font-size: 16px;
    line-height: 28px;
    color: #171717;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-regular);
    margin-bottom: 34px;
}

.about-section-4-content .about-list ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.about-section-4-content .about-list ul li i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #9175FF;
    border-radius: 100%;
}

.about-section-4-content .about-btn a:hover {
    border: 1px solid #9175FF;
}

.h5-about .section-heading {
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .h5-about .section-heading .section-title br {
        display: none;
    }
}

/**----------------------------------------
    START: Hero CSS
----------------------------------------*/
.hero-section {
    position: relative;
    z-index: 1;
}

.hero-section .shape-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
}

.hero-section .shape-1 img {
    height: 100%;
    width: 100%;
}

.hero-wrap {
    position: relative;
    padding-top: 183px;
}

@media only screen and (max-width: 992px) {
    .hero-wrap {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-wrap {
        padding-top: 50px;
    }
}

.hero-wrap .hero-img-wrap {
    max-width: 616px;
    width: 100%;
    height: 570px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

@media (max-width: 1199px) {
    .hero-wrap .hero-img-wrap {
        left: 42%;
    }
}

.hero-wrap .hero-img-wrap .img-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 992px) {
    .hero-wrap .hero-img-wrap .img-bg-shape {
        opacity: 0.5;
    }
}

@media only screen and (max-width: 767px) {
    .hero-wrap .hero-img-wrap .img-bg-shape {
        display: none;
    }
}

.hero-wrap .hero-img-wrap .hero-men {
    position: absolute;
    right: 10%;
    bottom: 0;
    z-index: 2;
}

@media only screen and (max-width: 992px) {
    .hero-wrap .hero-img-wrap .hero-men {
        display: none;
    }
}

.hero-content {
    max-width: 1570px;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
}

@media (max-width: 1600px) {
    .hero-content {
        padding-left: 0;
    }
}

.hero-content .hero-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.hero-content .hero-list li {
    background-color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 25px;
    border-radius: 100px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    color: #0F0F0F;
}

@media only screen and (max-width: 767px) {
    .hero-content .hero-list li {
        font-size: 14px;
    }
}

.hero-content .hero-list li:not(:last-of-type) {
    margin-right: 20px;
}

.hero-content .hero-title-wrap {
    position: relative;
}

.hero-content .hero-title-wrap .title-icon {
    position: absolute;
    bottom: 9%;
    right: 8%;
}

@media (max-width: 1399px) {
    .hero-content .hero-title-wrap .title-icon {
        right: 7%;
    }

    .hero-content .hero-title-wrap .title-icon img {
        width: 80%;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content .hero-title-wrap .title-icon {
        right: 1%;
    }

    .hero-content .hero-title-wrap .title-icon img {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content .hero-title-wrap .title-icon {
        display: none;
    }
}

.hero-content .hero-title-wrap .hero-title {
    font-size: 180px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.04;
}

@media (max-width: 1600px) {
    .hero-content .hero-title-wrap .hero-title {
        font-size: 155px;
    }
}

@media (max-width: 1399px) {
    .hero-content .hero-title-wrap .hero-title {
        font-size: 135px;
    }
}

@media (max-width: 1199px) {
    .hero-content .hero-title-wrap .hero-title {
        font-size: 110px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content .hero-title-wrap .hero-title {
        font-size: 85px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content .hero-title-wrap .hero-title {
        font-size: 34px;
        line-height: 1.3;
    }
}

.hero-content .hero-bottom-wrap {
    display: flex;
    align-items: center;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 100px;
    padding-top: 180px;
}

@media (max-width: 1600px) {
    .hero-content .hero-bottom-wrap {
        padding-top: 100px;
        padding-bottom: 180px;
    }
}

@media (max-width: 1399px) {
    .hero-content .hero-bottom-wrap {
        padding-top: 70px;
        padding-bottom: 200px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content .hero-bottom-wrap {
        padding-top: 70px;
        padding-bottom: 80px;
        position: relative;
        z-index: 5;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content .hero-bottom-wrap {
        row-gap: 25px;
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 574px) {
    .hero-content .hero-bottom-wrap {
        flex-wrap: wrap;
    }
}

.hero-content .hero-bottom-wrap .hero-desc {
    color: var(--rr-color-heading-primary);
    padding-left: 30px;
    border-left: 2px solid #0F0F0F;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .hero-content .hero-bottom-wrap .hero-desc {
        font-size: 16px;
    }
}

.hero-content .hero-bottom-wrap .hero-desc span {
    font-weight: 500;
}

.hero-content .hero-bottom-wrap .hero-thumb {
    max-width: 350px;
    width: 100%;
    height: 190px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hero-content .hero-bottom-wrap .hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hero-content .hero-bottom-wrap .hero-thumb .overlay {
    background: rgba(15, 15, 15, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content .hero-bottom-wrap .hero-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content .hero-bottom-wrap .hero-thumb .play-btn a {
    background-color: var(--rr-color-common-white);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content .hero-bottom-wrap .hero-thumb .play-btn a:hover {
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
}

.hero-content .hero-bottom-wrap .hero-thumb .play-btn a:hover span {
    color: #fff;
}

.hero-content .hero-bottom-wrap .hero-thumb .play-btn a span {
    color: #0F0F0F;
}

.hero-section-2 {
    background-color: var(--rr-color-heading-primary);
}

.hero-wrap-2 {
    padding-top: 260px;
}

@media only screen and (max-width: 992px) {
    .hero-wrap-2 {
        padding-top: 280px;
    }
}

.hero-wrap-2 .hero-top-thumb {
    display: flex;
    align-items: center;
    align-items: start;
    column-gap: 50px;
    position: absolute;
    top: 130px;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .hero-wrap-2 .hero-top-thumb {
        column-gap: 10px;
    }
}

@media only screen and (max-width: 550px) {
    .hero-wrap-2 .hero-top-thumb {
        display: block;
    }
}

.hero-wrap-2 .hero-top-thumb p {
    color: var(--rr-color-common-white);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .hero-wrap-2 .hero-top-thumb p {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.hero-wrap-2 .hero-top-thumb .hero-thumb {
    max-width: 350px;
    width: 100%;
    height: 190px;
    position: relative;
}

.hero-wrap-2 .hero-top-thumb .hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wrap-2 .hero-top-thumb .hero-thumb .overlay {
    background: rgba(115, 0, 255, 0.1);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-wrap-2 .hero-top-thumb .hero-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hero-wrap-2 .hero-top-thumb .hero-thumb .play-btn a {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-2 .hero-title-wrap .hero-title {
    font-size: 150px;
    font-weight: 700;
    text-transform: inherit;
    line-height: 0.9;
}

@media (max-width: 1399px) {
    .hero-content-2 .hero-title-wrap .hero-title {
        font-size: 130px;
    }
}

@media (max-width: 1199px) {
    .hero-content-2 .hero-title-wrap .hero-title {
        font-size: 110px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content-2 .hero-title-wrap .hero-title {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-title-wrap .hero-title {
        font-size: 39px;
        margin-top: 90px;
        line-height: 1.4;
    }
}

.hero-content-2 .hero-title-wrap .hero-title .radius-border {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 90.5px;
    padding: 0 43px 21px 43px;
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-title-wrap .hero-title .radius-border {
        padding: 0 43px 5px 43px;
    }
}

.hero-content-2 .hero-bottom-wrap {
    justify-content: end;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 70px;
}

.hero-content-2 .hero-bottom-wrap .hero-author-img img {
    border-radius: 100px;
}

.hero-content-2 .hero-bottom-wrap .hero-desc {
    color: var(--rr-color-common-white);
    text-transform: inherit;
    margin-bottom: 0;
}

.hero-text-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text-wrap .hero-text-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text-wrap .hero-text-inner span {
    color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 30px 0;
}

@media only screen and (max-width: 500px) {
    .hero-text-wrap .hero-text-inner span {
        padding: 15px 0;
    }
}

.hero-section-3 {
    padding-top: 141px;
    padding-bottom: 50px;
}

@media (max-width: 1199px) {
    .hero-section-3 {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-3 {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-3 {
        padding-top: 50px;
    }
}

.hero-section-3 .title-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-section-3 .title-wrap .title {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 700;
    font-size: 166.6px;
    line-height: 206px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0F0F0F;
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .hero-section-3 .title-wrap .title {
        font-size: 125px;
        line-height: 150px;
    }
}

@media (max-width: 1399px) {
    .hero-section-3 .title-wrap .title {
        font-size: 120px;
        line-height: 150px;
    }
}

@media (max-width: 1199px) {
    .hero-section-3 .title-wrap .title {
        font-size: 100px;
        line-height: 130px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-3 .title-wrap .title {
        font-size: 110px;
        line-height: 140px;
    }
}

@media only screen and (max-width: 576px) {
    .hero-section-3 .title-wrap .title {
        font-size: 88px;
        line-height: 130px;
    }
}

@media only screen and (max-width: 425px) {
    .hero-section-3 .title-wrap .title {
        font-size: 65px;
        line-height: 90px;
    }
}

@media only screen and (max-width: 375px) {
    .hero-section-3 .title-wrap .title {
        font-size: 56px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 320px) {
    .hero-section-3 .title-wrap .title {
        font-size: 47px;
        line-height: 70px;
    }
}

.hero-section-3 .title-wrap .title span {
    background: #0F0F0F;
    color: #ffffff;
    padding: 0 29px;
    border-radius: 10px;
    display: inline-block;
    line-height: 170px;
}

@media (max-width: 1199px) {
    .hero-section-3 .title-wrap .dec {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-3 .title-wrap .dec {
        margin-top: 35px;
    }
}

.hero-section-3 .title-wrap .dec .hero-3-btn {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    padding: 9px 26px;
    background: #8A36FF;
    border-radius: 30px;
    margin: 0 0 0 -50px;
}

@media (max-width: 1600px) {
    .hero-section-3 .title-wrap .dec .hero-3-btn {
        margin: 0 0 0 -60px;
    }
}

@media (max-width: 1399px) {
    .hero-section-3 .title-wrap .dec .hero-3-btn {
        margin: 0 0 0 0;
    }
}

.hero-section-3 .title-wrap .dec p {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0F0F0F;
    margin-bottom: 0;
    padding-bottom: 22px;
    margin-top: 63px;
}

@media (max-width: 1600px) {
    .hero-section-3 .title-wrap .dec p {
        margin-top: 30px;
    }
}

@media (max-width: 1399px) {
    .hero-section-3 .title-wrap .dec p {
        margin-top: 20px;
    }
}

.hero-section-3 .title-wrap .dec p span {
    font-weight: 600;
    color: #0F0F0F;
}

.hero-section-5 {
    padding-top: 91px;
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

@media (max-width: 1199px) {
    .hero-section-5 {
        padding: 91px 15px 0 15px;
    }
}

.hero-section-5 .hero-5-wrapper {
    display: flex;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper {
        display: block;
    }
}

.hero-section-5 .hero-5-wrapper .shapes .shape-1 {
    position: absolute;
    top: 1123px;
    left: -367px;
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .shapes .shape-1 {
        top: 1321px;
    }
}

.hero-section-5 .hero-5-wrapper .thumb .thumb-content {
    margin-top: 106px;
    margin-left: 70px;
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .thumb .thumb-content {
        margin-left: 0;
        margin-top: 30px;
    }
}

.hero-section-5 .hero-5-wrapper .thumb .thumb-content .dec {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #0F0F0F;
    margin-bottom: 0;
    margin-bottom: 40px;
}

.hero-section-5 .hero-5-wrapper .thumb .thumb-content .rr-primary-btn {
    margin-bottom: 70px;
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .thumb .thumb-content .rr-primary-btn {
        margin-bottom: 30px;
    }
}

.hero-section-5 .hero-5-wrapper .thumb .thumb-content .count {
    border-top: 1px solid rgba(28, 28, 40, 0.1);
    padding-top: 63px;
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .thumb .thumb-content .count {
        padding-top: 23px;
    }
}

.hero-section-5 .hero-5-wrapper .thumb .thumb-content .count p {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #696969;
    margin-bottom: 0;
}

.hero-section-5 .hero-5-wrapper .thumb .thumb-content .count .title {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 100px;
    line-height: 121px;
    color: #0F0F0F;
    margin-bottom: 0;
}

.hero-section-5 .hero-5-wrapper .thumb .thumb-content .count .title span {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 100px;
    line-height: 121px;
    color: #0F0F0F;
    margin-bottom: 0;
}

.hero-section-5 .hero-5-wrapper .content {
    margin-top: 99px;
    margin-left: 100px;
    margin-bottom: -238px;
}

@media (max-width: 1600px) {
    .hero-section-5 .hero-5-wrapper .content {
        margin-left: 50px;
        margin-bottom: -76px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .content {
        margin-left: 0;
        margin-bottom: -76px;
        margin-top: 0;
    }
}

.hero-section-5 .hero-5-wrapper .content .title {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 700;
    font-size: 180px;
    line-height: 170px;
    color: #0F0F0F;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
}

@media (max-width: 1600px) {
    .hero-section-5 .hero-5-wrapper .content .title {
        font-size: 115px;
        line-height: 130px;
    }
}

@media (max-width: 1399px) {
    .hero-section-5 .hero-5-wrapper .content .title {
        font-size: 85px;
        line-height: 110px;
    }
}

@media (max-width: 1199px) {
    .hero-section-5 .hero-5-wrapper .content .title {
        font-size: 58px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .content .title {
        font-size: 44px;
        line-height: 70px;
    }
}

@media only screen and (max-width: 450px) {
    .hero-section-5 .hero-5-wrapper .content .title {
        font-size: 28px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .content .title br {
        display: none;
    }
}

.hero-section-5 .hero-5-wrapper .content .title span {
    line-height: 0;
    padding-right: 13px;
    position: relative;
}

.hero-section-5 .hero-5-wrapper .content .title span::before {
    content: "";
    position: absolute;
    border: 1px solid #0F0F0F;
    width: 100%;
    height: 67%;
    top: 35px;
}

@media (max-width: 1600px) {
    .hero-section-5 .hero-5-wrapper .content .title span::before {
        display: none;
    }
}

.hero-section-5 .hero-5-wrapper .content .video {
    position: absolute;
    z-index: 2;
    top: 920px;
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .content .video {
        top: 650px;
        left: 480px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-5 .hero-5-wrapper .content .video {
        top: 863px;
        left: 347px;
        display: none;
    }
}

.hero-section-5 .hero-5-wrapper .content .media {
    position: relative;
    left: 695px;
    top: -237px;
    z-index: -1;
}

@media (max-width: 1600px) {
    .hero-section-5 .hero-5-wrapper .content .media {
        left: 400px;
    }
}

@media (max-width: 1399px) {
    .hero-section-5 .hero-5-wrapper .content .media {
        left: 205px;
        top: -165px;
    }
}

@media (max-width: 1199px) {
    .hero-section-5 .hero-5-wrapper .content .media {
        left: 100px;
        top: -40px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .content .media {
        left: 50px;
        top: -40px;
    }
}

@media (max-width: 1399px) {
    .hero-section-5 .hero-5-wrapper .content .media img {
        height: 500px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-wrapper .content .media img {
        height: 300px;
    }
}

.hero-section-5 .hero-5-author {
    margin-left: 70px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-author {
        margin-left: 0;
        display: block;
        margin-top: 60px;
    }
}

.hero-section-5 .hero-5-author .autohor-service {
    margin-left: 100px;
}

@media (max-width: 1600px) {
    .hero-section-5 .hero-5-author .autohor-service {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-5 .hero-5-author .autohor-service {
        margin-left: 0;
        margin-top: 30px;
    }
}

.hero-section-5 .hero-5-author .autohor-service .img img {
    border-radius: 50px;
}

.hero-section-5 .hero-5-author .autohor-service .title {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 29px;
}

.hero-section-5 .hero-5-author .autohor-service .name {
    margin-top: 41px;
}

.hero-section-5 .hero-5-author .autohor-service .name h5 {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0F0F0F;
    margin-bottom: 10px;
}

.hero-section-5 .hero-5-author .autohor-service .name p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #696969;
    margin-bottom: 0;
}

.hero-section-5 .hero-5-author .autohor-service .name img {
    margin-top: 20px;
}

.hero-section-4-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 150px;
    padding: 118px 66px 70px 58px;
}

@media (max-width: 1700px) {
    .hero-section-4-wrapper {
        padding: 118px 20px 70px 15px;
    }
}

@media (max-width: 1399px) {
    .hero-section-4-wrapper {
        padding: 116px 15px 70px 15px;
    }
}

@media (max-width: 1199px) {
    .hero-section-4-wrapper {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-4-wrapper {
        padding: 50px 15px 70px 15px;
    }
}

@media only screen and (max-width: 576px) {
    .hero-section-4-wrapper {
        padding: 50px 20px 70px 20px;
    }
}

@media (max-width: 1399px) {
    .hero-section-4-wrapper br {
        display: none;
    }
}

@media (max-width: 1199px) {
    .hero-section-4-wrapper br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-4-wrapper br {
        display: none;
    }
}

.hero-section-4-wrapper .hero-right-thumb img {
    border-radius: 30px;
}

@media (max-width: 1399px) {
    .hero-section-4-wrapper .hero-right-thumb img {
        width: 100%;
    }
}

.hero-section-4-content {
    padding-top: 39px;
}

@media (max-width: 1199px) {
    .hero-section-4-content {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-4-content {
        margin-bottom: 50px;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .hero-section-4-content {
        padding-top: 0;
    }
}

.hero-section-4-content .author-wrap {
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 30px;
    padding: 4px 5px;
    max-width: 520px;
    margin-bottom: 35px;
    margin-left: 10px;
}

@media (max-width: 1399px) {
    .hero-section-4-content .author-wrap {
        margin-bottom: 15px;
    }
}

.hero-section-4-content .author-wrap .author {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 30px;
    gap: 20px;
    padding: 5px;
    margin-left: -12px;
}

@media only screen and (max-width: 767px) {
    .hero-section-4-content .author-wrap .author {
        margin-left: -24px;
    }
}

.hero-section-4-content .author-wrap .author .thumb {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.hero-section-4-content .author-wrap .author .thumb img {
    width: 100%;
    border-radius: 100%;
}

.hero-section-4-content .author-wrap .author .desg .des {
    font-size: 18px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #0A0A0A;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-medium);
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .hero-section-4-content .author-wrap .author .desg .des {
        font-size: 15px;
        line-height: 26px;
    }
}

.hero-section-4-content .hero-thumb-content {
    display: flex;
    align-items: center;
    gap: 150px;
    margin-top: 62px;
}

@media (max-width: 1700px) {
    .hero-section-4-content .hero-thumb-content {
        gap: 37px;
    }
}

@media (max-width: 1600px) {
    .hero-section-4-content .hero-thumb-content {
        gap: 29px;
    }
}

@media (max-width: 1399px) {
    .hero-section-4-content .hero-thumb-content {
        gap: 33px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-4-content .hero-thumb-content {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-4-content .hero-thumb-content .thumb {
        width: 100%;
    }
}

.hero-section-4-content .hero-thumb-content .thumb img {
    max-width: inherit;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .hero-section-4-content .hero-thumb-content .thumb img {
        width: 100%;
        max-width: 100%;
    }
}

.hero-section-4-content .hero-thumb-content .content .desc {
    font-size: 18px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #171717;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-medium);
    margin-bottom: 28px;
}

@media only screen and (max-width: 767px) {
    .hero-section-4-content .hero-thumb-content .content .desc {
        margin-bottom: 18px;
    }
}

/* !END: Hero CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.bg-soft-purple{background:rgba(132, 94, 247,.12); color:#6c5ce7;}
.bg-soft-green{background:rgba(16, 185, 129,.12); color:#10b981;}
.bg-soft-orange{background:rgba(251, 146, 60,.15); color:#f97316;}
.bg-soft-blue{background:rgba(59,130,246,.12); color:#3b82f6;}
.bg-soft-violet{background:rgba(168,85,247,.12); color:#a855f7;}
.bg-soft-mint{background:rgba(52,211,153,.12); color:#34d399;}
.bg-soft-amber{background:rgba(251,191,36,.18); color:#f59e0b;}
.object-fit-cover{object-fit: cover;}
@media (max-width: 991.98px){
    .position-relative[style*="height: 360px;"] {height: 300px;}
}

@media (max-width: 1600px) {
    .project-section {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 992px) {
    .project-section {
        padding: 80px 0;
    }
}

.project-item-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 50px;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .project-item-wrap {
        flex-direction: column;
        row-gap: 24px;
        justify-content: center;
    }
}

.project-item {
    position: relative;
    flex: 1;
}

@media (max-width: 1600px) {
    .project-item {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .project-item {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .project-item {
        margin-bottom: 30px;
    }
}

.project-item-6 {
    margin-right: 0px;
    margin-left: 0px;
}

.project-item .project-thumb {
    overflow: hidden;
    max-width: 885px;
    width: 100%;
}

.project-item .project-thumb img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.project-item .project-thumb-2 {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    overflow: visible;
}

.project-item .project-thumb-2 img {
    width: 100%;
    height: 950px;
    object-fit: cover;
    object-position: top;
}

@media only screen and (max-width: 767px) {
    .project-item .project-thumb-2 img {
        height: 350px;
    }
}

.project-item .project-thumb-3 {
    height: 480px;
    overflow: hidden;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .project-item .project-thumb-3 {
        height: 280px;
    }
}

.project-item .project-thumb-3 img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
}

@media only screen and (max-width: 767px) {
    .project-item .project-thumb-3 img {
        height: 280px;
    }
}

.project-item .project-content {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

.project-item .project-content .title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #0F0F0F;
}

@media (max-width: 1399px) {
    .project-item .project-content .title {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .project-item .project-content .title {
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item .project-content .title {
        font-size: 18px;
    }
}

.project-item .project-content .title a {
    transition: all 0.3s ease-in-out;
}

.project-item .project-content .title a:hover {
    color: #696969;
}

.project-item .project-content .title-2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
    margin-right: 40px;
}

@media (max-width: 1399px) {
    .project-item .project-content .title-2 {
        font-size: 30px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item .project-content .title-2 {
        font-size: 28px;
        line-height: 42px;
        margin-right: 23px;
    }
}

.project-item .project-content .project-list {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-wrap: wrap;
}

.project-item .project-content .project-list li {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    border-radius: 100px;
    padding: 2.5px 20px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 100px;
}

@media (max-width: 1199px) {
    .project-item .project-content .project-list li {
        font-size: 15px;
        text-align: center;
        font-weight: 400;
        border-radius: 100px;
        padding: 5px 17px;
    }
}

@media only screen and (max-width: 767px) {
    .project-item .project-content .project-list-3 li {
        font-size: 14px;
        padding: 7px 9px;
    }
}

.project-item .project-content span {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.project-item .project-content-2 {
    justify-content: start;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .project-item .project-content-2 {
        flex-wrap: wrap;
    }
}

.project-item .project-content-2 .title a {
    transition: all 0.3s ease-in-out;
}

.project-item .project-content-2 .title a:hover {
    color: #696969;
}

.project-item.big-item .project-thumb {
    height: 700px;
}

.project-item.big-item .project-thumb-2 {
    height: 100%;
}

@media (max-width: 1600px) {
    .project-item-1 {
        margin-right: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-1 {
        margin-right: 7.5px;
    }
}

.project-item-3 {
    margin-right: 30px;
    margin-left: 162px;
    margin-bottom: 93px;
}

@media (max-width: 1600px) {
    .project-item-3 {
        margin-left: 100px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-3 {
        margin-left: 0px;
        margin-bottom: 40px;
    }
}

.project-item-4 {
    margin-right: -38px;
}

@media only screen and (max-width: 992px) {
    .project-item-4 {
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .project-item-4 {
        margin-bottom: 40px;
    }
}

.project-item.project-item-2.big.item-2 {
    margin-left: -46px;
}

@media (max-width: 1600px) {
    .project-item.project-item-2.big.item-2 {
        margin-left: 0;
    }
}

.project-section-2 {
    overflow: hidden;
}

.project-section-2 .section-heading {
    padding-left: 0;
}

@media (max-width: 1399px) {
    .project-section-2 {
        margin: 0 15px;
    }
}

@media only screen and (max-width: 767px) {
    .project-section-2 .section-heading {
        margin-bottom: 50px;
    }
}

.project-section-2 .project-left {
    margin-left: 26px;
}

@media (max-width: 1600px) {
    .project-section-2 .project-left {
        margin-left: 0;
    }
}

.project-section-2 .project-left .last-item {
    margin-left: -51px;
    margin-right: 25px;
}

@media (max-width: 1600px) {
    .project-section-2 .project-left .last-item {
        margin-left: 0;
        margin-right: 0;
    }
}

.project-item-2 {
    padding-bottom: 150px;
}

@media (max-width: 1199px) {
    .project-item-2 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-2 {
        padding-bottom: 0px;
    }
}

.project-item-2 .project-thumb {
    max-width: 885px;
    width: 100%;
    height: 570px;
}

.project-item-2 .project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .project-item-2 .project-thumb {
        height: 450px;
    }
}

.project-item-2.big .project-thumb {
    width: 735px;
    height: 450px;
}

@media (max-width: 1600px) {
    .project-item-2.big .project-thumb {
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-2.big .project-thumb {
        height: 350px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-2.big {
        max-width: 100%;
    }

    .project-item-2.big .project-thumb {
        max-width: 100%;
    }
}

.project-item-2.medium {
    margin-right: auto;
}

.project-item-2.medium .project-thumb {
    max-width: 735px;
    width: 100%;
    height: 450px;
}

@media only screen and (max-width: 992px) {
    .project-item-2.medium .project-thumb {
        height: 350px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-2.medium {
        max-width: 100%;
    }

    .project-item-2.medium .project-thumb {
        max-width: 100%;
    }
}

.project-item-2.small {
    max-width: 520px;
    margin: 0 auto;
}

.project-item-2.small .project-thumb {
    max-width: 835px;
    width: 100%;
    height: 570px;
}

@media only screen and (max-width: 992px) {
    .project-item-2.small .project-thumb {
        height: 450px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-2.small {
        max-width: 100%;
    }

    .project-item-2.small .project-thumb {
        max-width: 100%;
    }
}

.project-item-2.item-2 {
    max-width: 765px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}

@media only screen and (max-width: 992px) {
    .project-item-2.item-2 {
        max-width: 100%;
    }

    .project-item-2.item-2 .project-thumb {
        max-width: 100%;
    }
}

.project-item-2.item-5 {
    padding-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .project-item-2.item-5 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-2.item-5 {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .project-item-2.item-5 {
        padding-bottom: 50px;
    }
}

.project-item-2.item-6 {
    max-width: 785px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .project-item-2.item-6 {
        max-width: 100%;
    }

    .project-item-2.item-6 .project-thumb {
        max-width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .project-item-2 {
        max-width: 100%;
    }

    .project-item-2 .project-thumb {
        max-width: 100%;
    }
}

.project-bottom-btn {
    margin-top: 70px;
}

.project-bottom-btn-2 {
    margin-top: 0px;
}

.project-bottom-btn a {
    font-family: var(--rr-ff-heading-2);
    background-color: var(--rr-theme-primary);
    height: 170px;
    width: 170px;
    margin: 0 auto;
    color: var(--rr-heading-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5;
}

.project-bottom-btn-4 {
    margin-top: -33px;
}

.Project__thumb {
    display: flex;
    gap: 30px;
}

@media only screen and (max-width: 992px) {
    .Project__thumb {
        flex-wrap: wrap;
    }
}

.Project__thumb img {
    width: 100%;
    object-fit: cover;
}

.project-details__content .title {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
    margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .project-details__content .title {
        font-size: 40px;
        line-height: 50px;
    }
}

.project-details__content .dec {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
    margin-bottom: 28px;
}

@media (max-width: 1199px) {
    .project-details__content .dec br {
        display: none;
    }
}

.project-details__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1199px) {
    .project-details__content p br {
        display: none;
    }
}

.project-details__info .title {
    margin-bottom: 33px;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
}

@media only screen and (max-width: 992px) {
    .project-details__info .title {
        margin-top: 30px;
    }
}

.project-details__item {
    display: flex;
    gap: 75px;
}

@media (max-width: 1199px) {
    .project-details__item {
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .project-details__item {
        gap: 20px;
    }
}

.project-details__item-2 {
    gap: 120px;
}

@media (max-width: 1199px) {
    .project-details__item-2 {
        gap: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .project-details__item-2 {
        gap: 30px;
    }
}

.project-details__list span {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #696969;
}

.project-details__list h4 {
    font-size: 18px;
    line-height: 30px;
}

.project-details__brand span {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #696969;
}

.project-details__brand h4 {
    font-size: 18px;
    line-height: 30px;
}

.project-service__info h3 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #0F0F0F;
}

.project-service__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1399px) {
    .project-service__content p br {
        display: none;
    }
}

.project-service__content .dec {
    margin-top: 30px;
}

.project-service__thumb {
    margin: 80px 0;
}

@media only screen and (max-width: 992px) {
    .project-service__thumb {
        margin: 40px 0;
    }
}

.project-service__wrap {
    margin-top: 93px;
}

.project-brand__wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.project-brand__item {
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 1199px) {
    .project-brand__item {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .project-brand__item {
        flex-wrap: wrap;
        gap: 40px;
    }
}

.project-brand__wrap {
    display: flex;
    gap: 70px;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .project-brand__wrap {
        flex-wrap: wrap;
        gap: 40px;
    }
}

.project-brand__content h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #0F0F0F;
    margin-bottom: 25px;
}

.project-section-4-wrapper {
    background: #FFFFFF;
    margin: 0 20px;
}

@media only screen and (max-width: 767px) {
    .project-section-4-wrapper {
        margin: 0 15px;
    }
}

.project-section-4-wrapper .project-section-4-item {
    margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
    .project-section-4-wrapper .project-section-4-item {
        margin-bottom: 45px;
    }
}

.project-section-4-wrapper .row:last-child .col-xl-6:last-child .project-section-4-item {
    margin-bottom: 0;
}

.project-section-4-wrapper .section-heading .section-title-4 {
    margin-left: -30px;
}

@media only screen and (max-width: 767px) {
    .project-section-4-wrapper .section-heading .section-title-4 {
        margin-left: 0;
    }
}

.project-section-4-item {
    position: relative;
}

.project-section-4-item .content {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .project-section-4-item .content {
        flex-wrap: wrap;
    }
}

.project-section-4-item .content .wrap .project-title {
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    font-size: 24px;
    line-height: 35px;
    display: flex;
    align-items: center;
    color: #171717;
    transition: all 0.3s ease-in-out;
}

.project-section-4-item .content .wrap .project-title:hover {
    color: #9175FF;
}

@media only screen and (max-width: 992px) {
    .project-section-4-item .content .wrap .project-title {
        font-size: 20px;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 767px) {
    .project-section-4-item .content .wrap .project-title {
        white-space: revert;
    }
}

.project-section-4-item .content .wrap .desg {
    font-size: 16px;
    line-height: 19px;
    margin-top: 11px;
    display: flex;
    align-items: center;
    color: var(--rr-text-body);
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-regular);
}

.project-section-4-item .content .wrap-one {
    padding-left: 118px;
}

@media only screen and (max-width: 767px) {
    .project-section-4-item .content .wrap-one {
        padding-left: 0px;
    }
}

.project-section-4-item .content .year span {
    display: flex;
    font-size: 24px;
    line-height: 35px;
    color: #171717;
    align-items: center;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

@media only screen and (max-width: 767px) {
    .project-section-4-item .content .year span {
        font-size: 20px;
    }
}

.project-section-4-item .content-one {
    justify-content: inherit;
    gap: 202px;
}

@media (max-width: 1199px) {
    .project-section-4-item .content-one {
        gap: 133px;
    }
}

@media only screen and (max-width: 992px) {
    .project-section-4-item .content-one {
        gap: 63px;
    }
}

@media only screen and (max-width: 767px) {
    .project-section-4-item .content-one {
        justify-content: space-between;
        gap: 10px;
    }
}

.project-section-4-item-one {
    margin-top: 99px;
}

@media only screen and (max-width: 767px) {
    .project-section-4-item-one {
        margin-top: 0;
    }
}

.project-section-4-item-two {
    text-align: end;
    margin-top: 99px;
}

@media only screen and (max-width: 767px) {
    .project-section-4-item-two {
        margin-top: 0;
    }
}

@media (max-width: 1199px) {
    .project-section-4-item-two .content {
        margin-left: 0px;
    }
}

.project-section-4-thumb {
    overflow: hidden;
}

.project-section-4-thumb img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    object-position: top;
}

@media only screen and (max-width: 767px) {
    .project-section-4-thumb img {
        width: 100%;
    }
}

.h5-project-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
    background: #fff;
}

@media (max-width: 1600px) {
    .h5-project-wrapper {
        margin: 0 15px;
        padding: 0 20px;
    }
}

@media (max-width: 1199px) {
    .h5-project-wrapper {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .h5-project-wrapper {
        flex-wrap: wrap;
        margin: 0 7px;
        padding: 0;
    }
}

.h5-project-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.h5-project-inner .project-list {
    margin-top: 20px;
    margin-right: 30px;
}

.h5-project-inner .project-list li {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    border-radius: 100px;
    padding: 5px 20px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 100px;
    list-style: none;
}

.project-list-3 li {
    padding: 7px 6px;
}

@media only screen and (max-width: 992px) {
    .project-details-section {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .project-details-section .section-br-bottom {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .project-service-section {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .project-service-section .project-service__wrap {
        margin-top: 50px;
    }
}

/* !END: Project CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.sponsor-section {
    padding: 70px 0;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.sponsor-item img {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.sponsor-item img:hover {
    opacity: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Counter CSS
----------------------------------------*/
.counter-item-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
    flex-wrap: wrap;
    row-gap: 24px;
}

@media only screen and (max-width: 767px) {
    .counter-item-wrap {
        flex-direction: column;
    }
}

.counter-item .title {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
    margin-bottom: 5px;
}

@media only screen and (max-width: 992px) {
    .counter-item .title {
        font-size: 60px;
    }
}

.counter-item .title .icon {
    font-size: 70px;
}

.counter-item .title .odometer-auto-theme {
    line-height: 1;
    font-family: inherit;
}

.counter-item .title-one {
    display: flex;
    font-size: 65px;
    line-height: 79px;
    align-items: center;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

.counter-item p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .counter-item p {
        font-weight: 400;
    }
}

.counter-item .about-desc {
    display: flex;
    font-size: 20px;
    line-height: 30px;
    color: #171717;
    align-items: center;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-medium);
    margin-bottom: 25px;
}

.count-section .count-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    padding-top: 22px;
    padding-bottom: 22px;
    column-gap: 15px;
}

.count-section .count-wrapper .count-item h4 {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #0F0F0F;
    margin-bottom: 0;
}

/* !END: Counter CSS */
/**----------------------------------------
    START: Award CSS
----------------------------------------*/
.award-accordion .accordion-item {
    border: none;
}

.award-accordion .accordion-item:last-child .accordion-header .accordion-button {
    border-bottom: 1px solid var(--rr-color-border-1);
}

.award-accordion .accordion-item .accordion-header {
    border: none;
}

.award-accordion .accordion-item .accordion-header .accordion-button {
    background-color: var(--rr-color-common-white);
    box-shadow: none;
    padding: 22px 0;
    border: none;
    border-top: 1px solid var(--rr-color-border-1);
    border-radius: 0;
}

@media only screen and (max-width: 767px) {
    .award-accordion .accordion-item .accordion-header .accordion-button {
        gap: 30px;
    }
}

@media only screen and (max-width: 450px) {
    .award-accordion .accordion-item .accordion-header .accordion-button {
        gap: 6px;
    }
}

.award-accordion .accordion-item .accordion-header .accordion-button:after {
    color: var(--rr-color-heading-primary);
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 500;
    content: "\f061";
}

.award-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-top: 1px solid var(--rr-color-heading-primary);
}

.award-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    transform: rotate(-45deg);
}

.award-accordion .accordion-item .accordion-header .accordion-button .award-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 570px;
}

.award-accordion .accordion-item .accordion-header .accordion-button .award-item-top span {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.award-accordion .accordion-item .accordion-header .accordion-button .award-item-top .title {
    color: var(--rr-color-heading-primary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}

.award-accordion .accordion-item .accordion-body {
    padding: 0;
}

.award-accordion .accordion-item .accordion-body .award-img {
    margin-bottom: 20px;
}

.award-shape.p-absolute {
    left: 258px;
    top: -43px;
}

@media (max-width: 1199px) {
    .award-shape.p-absolute {
        left: 170px;
        top: -52px;
    }
}

@media only screen and (max-width: 767px) {
    .award-shape.p-absolute {
        left: 148px;
        top: -54px;
    }
}

/* !END: Award CSS */
@media only screen and (max-width: 992px) {
    .award-section .award-content {
        display: flex;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 767px) {
    .award-section .award-content {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 992px) {
    .award-section .award-content .section-title {
        max-width: 215px;
    }
}

@media (max-width: 1600px) {
    .award-section__area-3 {
        padding-top: 100px;
    }
}

.award-section-box {
    display: flex;
    align-items: center;
    gap: 99px;
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-box {
        gap: 35px;
        flex-wrap: wrap;
    }
}

.award-section__title {
    display: flex;
    font-size: 18px;
    line-height: 22px;
    align-items: center;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-medium);
    color: var(--rr-color-theme-primary);
    margin-bottom: 0;
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section__title {
        font-size: 17px;
    }
}

.award-section__title-box {
    display: flex;
    align-items: center;
    column-gap: 265px;
}

@media (max-width: 1199px) {
    .award-section__title-box {
        column-gap: 150px;
    }
}

@media only screen and (max-width: 992px) {
    .award-section__title-box {
        column-gap: 100px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .award-section__title-box {
        display: block;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section__title-box {
        display: block;
    }
}

.award-section__title-box .date {
    display: flex;
    font-size: 16px;
    line-height: 19px;
    align-items: center;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-regular);
    color: var(--rr-color-text-body);
}

.award-section__title-box span {
    color: #403C38;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--rr-ff-heading);
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section__title-box span {
        font-size: 11px;
    }
}

.award-section__title-3 {
    font-size: 22px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: var(--rr-common-white);
    font-family: var(--rr-ff-heading-2);
    font-weight: var(--rr-fw-medium);
    text-transform: capitalize;
    margin-bottom: 0;
}

@media (min-width: 576px) and (max-width: 768px) {
    .award-section__title-3 {
        font-size: 18px;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section__title-3 {
        font-size: 17px;
        line-height: 45px;
    }
}

.award-section__sub-title {
    display: flex;
    font-size: 16px;
    line-height: 19px;
    align-items: center;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-regular);
    color: var(--rr-color-text-body);
    margin-bottom: 0;
}

.award-section__item {
    padding: 18px 0;
    position: relative;
    border-radius: 10px;
    transition: 0.3s;
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .award-section__item {
        padding: 15px 0;
    }
}

.award-section__item:hover {
    background-color: #EEE7DF;
}

.award-section__item:hover .award-section__link span {
    color: #fff;
    background-color: #453030;
}

.award-section__item:hover .award-section__link span i {
    transform: rotate(0);
}

.award-section__item-3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
}

.award-section__item-3:hover {
    background: inherit;
}

.award-section__item-3:last-child {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.award-section__item {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.award-section__item .rr-hover-reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 174px;
    height: 259px;
    opacity: 0;
    margin: -100px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
    z-index: 99;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.award-section__item .rr-hover-reveal-bg-back {
    background-size: inherit;
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section__item .rr-hover-reveal-bg {
        display: none;
    }
}

.award-section__item:hover .rr-hover-reveal-bg {
    opacity: 1;
}

.award-section-3__wraper {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.award-section-3__wraper-2 {
    gap: 190px;
    border: none;
}

@media (max-width: 1600px) {
    .award-section-3__wraper {
        padding: 0 15px;
    }
}

@media (max-width: 1399px) {
    .award-section-3__wraper {
        align-items: center;
    }
}

@media (max-width: 1199px) {
    .award-section-3__wraper {
        display: inherit;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-3__wraper {
        flex-wrap: wrap;
        padding: 0 15px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .award-section-3__wraper {
        flex-wrap: wrap;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-3__wraper {
        flex-wrap: wrap;
    }
}

.award-section-3__wraper .item1 {
    margin: auto 0;
}

@media (max-width: 1399px) {
    .award-section-3__wraper .item1 {
        display: flex;
        justify-content: start;
    }
}

@media (max-width: 1199px) {
    .award-section-3__wraper .item1 {
        display: inherit;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .award-section-3__wraper .item1 {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-3__wraper .item1 {
        flex-wrap: wrap;
    }
}

.award-section-3__wraper .item1 .award-image {
    margin-left: 69px;
    margin-top: -50px;
}

@media (max-width: 1600px) {
    .award-section-3__wraper .item1 .award-image {
        margin-left: 0;
    }
}

@media (max-width: 1399px) {
    .award-section-3__wraper .item1 .award-image {
        margin-left: 10px;
    }
}

@media (max-width: 1199px) {
    .award-section-3__wraper .item1 .award-image {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-3__wraper .item1 .award-image {
        margin-left: 0;
    }
}

.award-section-3__wraper .item1 .award-image img {
    max-width: inherit;
}

@media (max-width: 1700px) {
    .award-section-3__wraper .item1 .award-image img {
        max-width: 100%;
    }
}

@media (max-width: 1600px) {
    .award-section-3__wraper .item1 .award-image img {
        max-width: 100%;
    }
}

@media (max-width: 1399px) {
    .award-section-3__wraper .item1 .award-image img {
        width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-3__wraper .item1 .award-image img {
        flex-wrap: wrap;
    }
}

.award-section-3__wraper .item2 {
    width: 798px;
    margin-right: 70px;
    position: relative;
    padding: 69px 0;
}

@media (min-width: 1700px) and (max-width: 1890px) {
    .award-section-3__wraper .item2 {
        margin-left: 120px;
    }
}

@media (max-width: 1700px) {
    .award-section-3__wraper .item2 {
        margin-left: 117px;
    }
}

@media (max-width: 1600px) {
    .award-section-3__wraper .item2 {
        margin-right: 0;
        margin-left: 110px;
        padding: 0 0 69px 0;
    }
}

@media (max-width: 1399px) {
    .award-section-3__wraper .item2 {
        margin-right: 20px;
        margin-left: 40px;
    }
}

@media (max-width: 1199px) {
    .award-section-3__wraper .item2 {
        max-width: 100%;
        width: inherit;
        margin-right: 20px;
        margin-left: 20px;
        padding: 69px 0;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-3__wraper .item2 {
        margin-right: 0;
        margin-left: 0;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-3__wraper .item2 {
        margin-right: 0;
        margin-left: 0;
    }
}

.award-section-3__wraper .item2::before {
    content: "";
    left: -69px;
    top: 0;
    display: block;
    width: 1px;
    height: 726px;
    position: absolute;
    background: rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .award-section-3__wraper .item2::before {
        display: none;
    }
}

.award-section-3__wraper .item2 .sub-title {
    display: flex;
    font-size: 16px;
    line-height: 19px;
    position: relative;
    padding-left: 10px;
    align-items: center;
    text-transform: uppercase;
    color: var(--rr-color-theme-primary);
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-medium);
    margin-bottom: 15px;
}

.award-section-3__wraper .item2 .sub-title::before {
    content: "";
    left: 0;
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    background: var(--rr-color-theme-primary);
    border-radius: 100%;
}

.award-section-3__wraper .item2 .award-title {
    display: flex;
    font-weight: var(--rr-fw-sbold);
    font-size: 48px;
    line-height: 60px;
    align-items: center;
    color: var(--rr-color-theme-primary);
    font-family: var(--rr-ff-heading);
    margin-bottom: 47px;
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-3__wraper .item2 .award-title {
        font-size: 33px;
        line-height: 47px;
    }
}

.award-section-3__wraper .item2 .section-title {
    font-size: 50px;
    line-height: 60px;
    color: var(--rr-common-white);
    font-family: var(--rr-ff-heading-2);
    font-weight: var(--rr-fw-medium);
    margin-bottom: 91px;
}

@media (max-width: 1399px) {
    .award-section-3__wraper .item2 .section-title {
        margin-top: 40px;
    }
}

@media (max-width: 1199px) {
    .award-section-3__wraper .item2 .section-title {
        font-size: 44px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-3__wraper .item2 .section-title {
        font-size: 34px;
        line-height: 46px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .award-section-3__wraper .item2 .section-title {
        font-size: 28px;
        line-height: 45px;
        margin-bottom: 60px;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-3__wraper .item2 .section-title {
        font-size: 21px;
        line-height: 30px;
        margin-bottom: 50px;
    }
}

.award-section-3__wraper .item2 .section-title span {
    color: #999999;
}

.award-section-3__wraper .item2 .award-section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 320px) and (max-width: 575px) {
    .award-section-3__wraper .item2 .award-section__content {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.award-section-3__wraper .item2-3::before {
    display: none;
}

/**----------------------------------------
    START: EXP CSS
----------------------------------------*/
.exp-secction {
    border-top: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 992px) {
    .exp-secction .exp-left-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .exp-secction .section-heading .section-title br {
        display: none;
    }
}

.exp-content .exp-item {
    padding-bottom: 31px;
    border-bottom: 1px solid var(--rr-color-border-1);
}

.exp-content .exp-item:not(:last-of-type) {
    margin-bottom: 40px;
}

.exp-content .exp-item .exp-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 15px;
}

.exp-content .exp-item .exp-item-inner .left-content {
    display: grid;
    align-items: center;
    grid-template-columns: 40px 1fr;
    grid-gap: 30px;
}

.exp-content .exp-item .exp-item-inner .left-content .content .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.exp-content .exp-item .exp-item-inner .left-content .content span {
    font-size: 18px;
    font-weight: 500;
}

.exp-content .exp-item .exp-item-inner .year {
    color: var(--rr-color-text-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 6.2px 14.5px;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 100px;
}

.exp-content .exp-item p {
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.7;
    margin-left: 72px;
}

@media (max-width: 1399px) {
    .exp-content .exp-item p br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .exp-content .exp-item p {
        margin-left: 0;
    }
}

/* !END: EXP CSS */
/**----------------------------------------
    START: Skill CSS
----------------------------------------*/
@media only screen and (max-width: 992px) {
    .skill-section-2 .section-heading {
        margin-bottom: 30px !important;
    }
}

.skill-section {
    border-top: 1px solid var(--rr-color-border-1);
    border-bottom: 1px solid var(--rr-color-border-1);
    position: relative;
    z-index: 1;
}

.skill-section .mid-border {
    background-color: var(--rr-color-border-1);
    height: 100%;
    width: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    z-index: -1;
}

@media (max-width: 1600px) {
    .skill-section .mid-border {
        left: 54%;
    }
}

@media (max-width: 1399px) {
    .skill-section .mid-border {
        display: none;
    }
}

.skill-img {
    max-width: 760px;
    width: 100%;
    height: 770px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .skill-img {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .skill-img {
        height: 450px;
    }
}

.skill-img img {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.skill-content {
    padding-left: 116px;
}

@media (max-width: 1399px) {
    .skill-content {
        padding-left: 0;
    }
}

@media (max-width: 1199px) {
    .skill-content {
        max-width: 760px;
        margin: 0 auto;
        margin-top: 40px;
    }
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    max-width: 660px;
    width: 100%;
}

@media (max-width: 1199px) {
    .skill-items {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .skill-items {
        grid-template-columns: 1fr;
    }
}

.skill-items .skill-item {
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.skill-items .skill-item .skill-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 30px;
}

.skill-items .skill-item .skill-item-top .number {
    font-size: 16px;
    font-weight: 400;
}

.skill-items .skill-item .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1;
}

.skill-items .skill-item .category {
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 30px;
}

.skill-items .skill-item .skill-btn {
    font-size: 16px;
    font-weight: 400;
    padding: 7px 20px;
    border-radius: 100px;
    border: 1px solid rgba(15, 15, 15, 0.1);
}

.skill-items .skill-item .skill-btn:hover {
    color: var(--rr-color-heading-primary);
    border-color: var(--rr-color-heading-primary);
}

.skill-item-wrap .skill-item-2 {
    display: grid;
    grid-template-columns: 116px 1fr;
}

@media only screen and (max-width: 550px) {
    .skill-item-wrap .skill-item-2 {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }
}

.skill-item-wrap .skill-item-2:not(:last-of-type) {
    margin-bottom: 20px;
}

@media only screen and (max-width: 576px) {
    .skill-item-wrap .skill-item-2:not(:last-of-type) {
        margin-bottom: 40px;
    }
}

.skill-item-wrap .skill-item-2 .icon {
    height: 116px;
    width: 116px;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-item-wrap .skill-item-2 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 15px;
    padding: 20px 50px;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 100px;
    position: relative;
}

.skill-item-wrap .skill-item-2 .content .item-text {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.skill-item-wrap .skill-item-2 .content .item-text span {
    color: rgba(28, 28, 40, 0.03);
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1;
}

.skill-item-wrap .skill-item-2 .content .left-content .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1;
}

.skill-item-wrap .skill-item-2 .content .left-content span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.skill-item-wrap .skill-item-2 .content .text-span {
    color: var(--rr-color-text-body);
    font-size: 14px;
    font-weight: 500;
    padding: 3.5px 16px;
    border: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 30px;
}

.skill-section-4-area {
    background: white;
}

.skill-section-4-wrapp {
    display: flex;
    justify-content: space-around;
    padding: 0px 19px 0px 42px;
}

@media (max-width: 1600px) {
    .skill-section-4-wrapp {
        padding: 0px 21px 0px 15px;
    }
}

@media (max-width: 1399px) {
    .skill-section-4-wrapp {
        flex-wrap: wrap;
        justify-content: start;
    }
}

@media (max-width: 1199px) {
    .skill-section-4-wrapp {
        padding: 0px 15px 0px 15px;
    }
}

.skill-section-4-wrapp .skill-title .title {
    display: flex;
    font-size: 250px;
    line-height: 210px;
    color: #171717;
    align-items: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-bold);
}

@media (max-width: 1600px) {
    .skill-section-4-wrapp .skill-title .title {
        font-size: 177px;
        line-height: 177px;
    }
}

@media (max-width: 1399px) {
    .skill-section-4-wrapp .skill-title .title {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .skill-section-4-wrapp .skill-title .title {
        font-size: 156px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 992px) {
    .skill-section-4-wrapp .skill-title .title {
        font-size: 124px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .skill-section-4-wrapp .skill-title .title {
        font-size: 48px;
        line-height: 1;
        margin-bottom: 20px;
    }
}

.skill-section-4-wrapp .skill-thumb img {
    max-width: inherit;
}

@media (max-width: 1600px) {
    .skill-section-4-wrapp .skill-thumb img {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .skill-section-4-wrapp .skill-thumb img {
        width: 100%;
    }
}

.skill-section-4-bottom-wrapper .skill-section-4-bottom-wrapper .skill-row .main,
.skill-section-4-bottom-wrapper .skill-section-4-bottom-wrapper .skill-row .description,
.skill-section-4-bottom-wrapper .skill-section-4-bottom-wrapper .skill-row .icon {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.skill-section-4-bottom-wrapper .skill-section-4-bottom-wrapper .skill-row.active .main,
.skill-section-4-bottom-wrapper .skill-section-4-bottom-wrapper .skill-row.active .description,
.skill-section-4-bottom-wrapper .skill-section-4-bottom-wrapper .skill-row.active .icon {
    opacity: 1;
    visibility: visible;
}

.skill-section-4-bottom-wrapper .content {
    display: flex;
    justify-content: space-between;
    padding: 34px 0px;
    border-top: 1px solid rgba(23, 23, 23, 0.1);
}

.skill-section-4-bottom-wrapper .content .title .skills {
    font-size: 22px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #1C1C28;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

.skill-section-4-bottom-wrapper .content .description .desc {
    display: flex;
    font-size: 16px;
    line-height: 28px;
    align-items: center;
    color: var(--rr-text-body);
    font-weight: var(--rr-fw-regular);
    font-family: var(--rr-ff-heading);
    padding-right: 60px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .skill-section-4-bottom-wrapper .content .description .desc {
        padding-right: 85px;
    }
}

@media only screen and (max-width: 992px) {
    .skill-section-4-bottom-wrapper .content .description .desc {
        padding-right: 70px;
    }
}

.skill-section-4-bottom-wrapper .content .icon i {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(23, 23, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transform: rotate(-45deg);
    transition: all 0, 3s ease-in-out;
}

.skill-section-4-bottom-wrapper .main .number-item {
    width: 139px;
    height: 139px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #9175FF;
    border-radius: 20px;
    transform: rotate(23.47deg);
    position: relative;
    overflow: hidden;
}

.skill-section-4-bottom-wrapper .main .number-item .numbr {
    top: 37px;
    left: -82px;
    font-size: 200px;
    line-height: 0.7;
    text-align: center;
    color: #F3F4F6;
    position: absolute;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    transform: rotate(-23.47deg);
}

.skill-section-4-bottom-wrapper .row:last-child .content {
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.award-section-4 .main {
    height: 90px;
    position: relative;
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .award-section-4 .main {
        height: inherit;
        position: inherit;
        display: flex;
        align-content: center;
        justify-content: center;
    }
}

.award-section-4 .main.active .number-item {
    display: block;
}

.award-section-4 .main .number-item {
    width: 139px;
    height: 139px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #9175FF;
    border-radius: 20px;
    transform: rotate(23.47deg);
    position: relative;
    overflow: hidden;
    display: none;
    position: absolute;
    top: 0;
    left: 76px;
}

@media (max-width: 1399px) {
    .award-section-4 .main .number-item {
        left: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-4 .main .number-item {
        width: 120px;
        height: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .award-section-4 .main .number-item {
        position: inherit;
        top: 0;
        left: 0;
    }
}

.award-section-4 .main .number-item .numbr {
    top: 37px;
    left: -82px;
    font-size: 200px;
    line-height: 0.7;
    text-align: center;
    color: #F3F4F6;
    position: absolute;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    transform: rotate(-23.47deg);
}

@media only screen and (max-width: 992px) {
    .award-section-4 .main .number-item .numbr {
        font-size: 150px;
        top: 31px;
        left: -57px;
    }
}

.award-section-4 .award-accordion .accordion-item {
    border: none;
    background: transparent;
    position: relative;
    border-radius: 0;
}

.award-section-4 .award-accordion .accordion-item:last-child {
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.award-section-4 .award-accordion .accordion-item .accordion-header {
    border: none;
}

.award-section-4 .award-accordion .accordion-item .accordion-header .accordion-button {
    border-top: 1px solid rgba(23, 23, 23, 0.1);
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    font-size: 22px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #1C1C28;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
}

.award-section-4 .award-accordion .accordion-item .accordion-header .accordion-button:after {
    transform: rotate(0deg);
    background: transparent;
    color: var(--rr-color-heading-primary);
    border: 1px solid rgba(23, 23, 23, 0.1);
}

.award-section-4 .award-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-top: 1px solid rgba(23, 23, 23, 0.1);
    border-bottom: none;
    padding-top: 38px;
}

.award-section-4 .award-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    transform: rotate(-45deg);
    background: #9175FF;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.award-section-4 .award-accordion .accordion-item .accordion-header .accordion-button.collapsed {
    border-top: 1px solid rgba(23, 23, 23, 0.1);
    border-bottom: none;
}

.award-section-4 .award-accordion .accordion-item .accordion-header .accordion-button.collapsed:after {
    transform: rotate(0deg);
    background: transparent;
    color: var(--rr-color-heading-primary);
    border: 1px solid rgba(23, 23, 23, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.award-section-4 .award-accordion .accordion-item .accordion-body {
    max-width: 347px;
    margin-left: 38.5%;
    margin-top: -67px;
    position: relative;
    z-index: 22227;
    padding: 0 0 30px 0;
}

@media only screen and (max-width: 992px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body {
        margin-top: 0;
        margin-left: 0;
    }
}

.award-section-4 .award-accordion .accordion-item .accordion-body .desc {
    margin-bottom: 32px;
}

.award-section-4 .award-accordion .accordion-item .accordion-body-one {
    margin-left: 50%;
}

@media only screen and (max-width: 992px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body-one {
        margin-top: 0;
        margin-left: 0;
    }
}

.award-section-4 .award-accordion .accordion-item .accordion-body .description {
    padding-left: 180px;
}

@media (max-width: 1399px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description {
        padding-left: 78px;
    }
}

@media (max-width: 1199px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description {
        padding-left: 118px;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description {
        padding-left: 0;
        padding-right: 13px;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description br {
        display: none;
    }
}

.award-section-4 .award-accordion .accordion-item .accordion-body .description .desc {
    display: flex;
    font-size: 16px;
    line-height: 28px;
    align-items: center;
    color: #696969;
    font-weight: var(--rr-fw-regular);
    font-family: var(--rr-ff-heading);
    padding-right: 60px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description .desc {
        padding-right: 85px;
    }
}

@media only screen and (max-width: 992px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description .desc {
        padding-right: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .award-section-4 .award-accordion .accordion-item .accordion-body .description .desc {
        padding-right: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .award-section-4 .award-accordion-4 {
        margin-top: 50px;
    }
}

/* !END: Skill CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-header .overlay {
    background-color: rgba(2, 5, 10, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-header .shape {
    position: absolute;
    z-index: -1;
}

.page-header .shape.shape-1 {
    mix-blend-mode: multiply;
    top: 0;
    right: 0;
}

.page-header .shape.shape-2 {
    bottom: 0;
    left: 0;
}

.page-header .shape.shape-3 {
    bottom: 0;
    left: 0;
}

.page-header .page-header-content {
    padding: 310px 0 190px;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 992px) {
    .page-header .page-header-content {
        padding: 100px 0 100px 0;
    }
}

.page-header .page-header-content .title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .title {
        line-height: 1.3em;
    }
}

.page-header .page-header-content .title:before {
    background: linear-gradient(270deg, #3F5AF3 0%, transparent 100%);
    content: "";
    width: 100%;
    height: 76%;
    position: absolute;
    top: 15%;
    right: 0;
    z-index: -1;
    opacity: 0.95;
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .title:before {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .page-header .page-header-content .title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .title {
        font-size: 29px;
    }
}

.page-header .page-header-content .sub-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .sub-title {
        font-size: 13px;
    }
}

.page-header .page-header-content .sub-title .home {
    color: var(--rr-color-text-body);
    position: relative;
    padding-right: 25px;
    margin-right: 20px;
}

.page-header .page-header-content .sub-title .home:before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 13px;
    font-weight: 700;
    content: "\f324";
    color: var(--rr-color-text-body);
    position: absolute;
    top: 60%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .sub-title a {
        line-height: 2;
    }
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-section {
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
}

@media only screen and (max-width: 992px) {
    .contact-section .contact-content {
        margin-top: 30px;
    }
}

.contact-img-wrap {
    max-width: 840px;
    width: 100%;
    height: 540px;
    position: relative;
}

.contact-img-wrap .contact-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 320px;
    width: 100%;
    height: 370px;
}

@media only screen and (max-width: 577px) {
    .contact-img-wrap .contact-img-1 {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .contact-img-wrap .contact-img-1 {
        max-width: 378px;
    }
}

@media only screen and (max-width: 768px) {
    .contact-img-wrap .contact-img-1 {
        max-width: 300px;
    }
}

.contact-img-wrap .contact-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-img-wrap .contact-img-2 {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .contact-img-wrap .contact-img-2 {
        max-width: 420px;
    }
}

@media only screen and (max-width: 577px) {
    .contact-img-wrap .contact-img-2 {
        max-width: 100%;
    }
}

.contact-img-wrap .contact-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-control:focus:focus {
    box-shadow: none;
    border-color: #0F0F0F;
}

.contact-form .form-item {
    display: grid;
    align-items: center;
    grid-template-columns: 60px 1fr;
    margin-bottom: 20px;
}

.contact-form .form-item .icon {
    color: #696969;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-color-border-1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-form .form-item .icon-2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-62%);
    color: var(--rr-heading-primary);
    border: none;
    z-index: 999;
    height: initial;
    width: initial;
}

.contact-form .form-item .icon-4 {
    position: absolute;
    top: 50%;
    left: -22px;
    transform: translateY(-62%);
    color: var(--rr-heading-primary);
    border: none;
    z-index: 999;
}

.contact-form .form-item .icon-5 {
    position: absolute;
    top: 50%;
    transform: translateY(-53%);
    color: var(--rr-heading-primary);
    border: none;
    z-index: 999;
}

.contact-form .form-item .icon-7 {
    left: -22px;
}

.contact-form .form-item .icon-4 {
    z-index: 2;
    overflow: hidden;
    background-color: white;
}

@media (max-width: 1199px) {
    .contact-form .form-item .icon-4 {
        margin-left: 20px;
    }
}

.contact-form .form-item .icon-4 i {
    color: #696969;
}

.contact-form .form-item .form-control {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 500;
    padding: 17px 30px;
    border: 1px solid var(--rr-color-border-1);
    box-shadow: none;
    outline: none;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-form .form-item .form-control::-webkit-input-placeholder {
    color: #696969;
}

.contact-form .form-item .form-control:-moz-placeholder {
    color: #696969;
}

.contact-form .form-item .form-control::-moz-placeholder {
    color: #696969;
}

.contact-form .form-item .form-control:-ms-input-placeholder {
    color: #696969;
}

.contact-form .form-item .form-control.nice-select {
    height: auto;
    line-height: inherit;
    padding: 11px 30px;
}

.contact-form .form-item .form-control.nice-select:after {
    top: 46%;
    width: 10px;
    height: 10px;
    border-color: #1C1C28;
    border-bottom: 1px solid #1C1C28;
    border-right: 1px solid #1C1C28;
}

.contact-form .form-item .form-control.nice-select .list {
    background-color: var(--rr-color-common-white);
    width: 100%;
}

.contact-form .form-item .form-control.nice-select .list li {
    padding-left: 30px;
}

.contact-form .form-item .form-control-2 {
    border: none;
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
    border-radius: 0;
    padding: 7px 0px 17px 35px;
}

.contact-form .form-item .form-control-3 {
    margin-left: 0;
    padding: 7px 0px 17px 15px;
}

@media only screen and (max-width: 767px) {
    .contact-form .form-item .form-control-3 {
        padding: 7px 0px 17px 30px;
    }
}

.contact-form .form-item .form-control-4 {
    font-weight: var(--rr-fw-regular);
    transition: all 0.4s ease-in-out;
    padding: 17px 15px 17px 50px;
}

.contact-form .form-item .form-control-4::-webkit-input-placeholder {
    color: var(--rr-color-text-body);
    padding-left: 0px;
}

.contact-form .form-item .form-control-4:-moz-placeholder {
    color: var(--rr-color-text-body);
    padding-left: 0px;
}

.contact-form .form-item .form-control-4::-moz-placeholder {
    color: var(--rr-color-text-body);
    padding-left: 0px;
}

.contact-form .form-item .form-control-4:-ms-input-placeholder {
    color: var(--rr-color-text-body);
    padding-left: 0px;
}

@media (max-width: 1399px) {
    .contact-form .form-item .form-control-4 {
        padding: 17px 50px;
    }
}

@media (max-width: 1199px) {
    .contact-form .form-item .form-control-4 {
        padding: 17px 0px 17px 34px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-form .form-item .form-control-4 {
        padding: 17px 0px 17px 34px;
    }
}

.contact-form .form-item.message-item {
    align-items: start;
}

.contact-form .form-item.message-item .form-control {
    border-radius: 30px;
}

.contact-form .form-item:hover .icon {
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
}

.contact-form .form-item:hover .icon-2 {
    background: none;
    color: #696969;
}

.contact-form .form-item:hover .form-control {
    border-color: var(--rr-color-heading-primary);
}

.contact-form .form-item-2 {
    position: relative;
    grid-template-columns: none;
}

.contact-form .submit-btn {
    padding-left: 60px;
}

@media only screen and (max-width: 767px) {
    .contact-form .submit-btn {
        padding-left: 50px;
    }
}

.contact-form .submit-btn .rr-primary-btn:focus {
    border: 1px solid rgba(28, 28, 40, 0.1);
}

.blog-contact-form.form-2 {
    border: 1px solid var(--rr-color-border-1);
}

.map-wrapper {
    margin-bottom: -10px;
}

.single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us-title h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #0F0F0F;
    margin-bottom: 13px;
}

.blog-detail-social-2 ul li a {
    height: 53px;
    width: 53px;
}

@media only screen and (max-width: 767px) {
    .blog-detail-social-2 {
        margin-top: 0px;
    }
}

@media (max-width: 1199px) {
    .contact-content-2-3 {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .tab-contact-section-2 .tab-contact__wrap {
        padding: 40px 0px 40px 12px;
    }
}

@media only screen and (max-width: 767px) {
    .tab-contact-section-2 .tab-contact__meta {
        margin-left: 0;
    }
}

.tab-contact__wrap {
    padding: 65px 65px 103px 70px;
    border: 1px solid rgba(15, 15, 15, 0.15);
    border-radius: 10px;
}

@media only screen and (max-width: 767px) {
    .tab-contact__wrap {
        padding: 40px 0px 102px 12px;
    }
}

.tab-contact__wrap .title {
    font-weight: 600;
    font-size: 35px;
    line-height: 42px;
    color: #0F0F0F;
    margin-bottom: 40px;
}

.tab-contact__wrap-2 {
    padding: 0;
    border: none;
    border-radius: 0px;
}

.tab-contact__content {
    display: flex;
}

.tab-contact__content-2 {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
    margin-right: 110px;
}

@media only screen and (max-width: 767px) {
    .tab-contact__content-2 {
        margin-right: 0px;
    }
}

.tab-contact__content-3 {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    margin-right: 110px;
}

@media only screen and (max-width: 767px) {
    .tab-contact__content-3 {
        margin-right: 0px;
    }
}

.tab-contact__meta {
    margin-left: 16px;
}

@media only screen and (max-width: 767px) {
    .tab-contact__meta {
        margin-left: 10px;
    }
}

.tab-contact__meta h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    margin-bottom: 12px;
}

.tab-contact__meta span {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #696969;
}

.tab-contact__maps {
    padding: 13px 15px 3px 15px;
    border: 1px solid rgba(15, 15, 15, 0.15);
    border-radius: 10px;
}

.tab-contact__maps .map {
    height: 470px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .tab-contact__maps .map {
        height: 400px;
    }
}

.form-control-5 {
    height: 250px;
    padding-left: 70px;
    padding-top: 20px;
    border-radius: 0;
    margin-left: 18px;
    margin-right: 40px;
    width: auto;
}

@media (max-width: 1600px) {
    .form-control-5 {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 1399px) {
    .form-control-5 {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .form-control-5 {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .form-control-5 {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.form-control-5-6 {
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
    width: 100%;
    height: 119px;
    padding-top: 0px;
    padding-left: 50px;
}

.form-control-5-6:hover {
    border-bottom: 1px solid #1C1C28;
}

.form-item-2 {
    position: relative;
}

.form-item-2 .icon-3 {
    position: absolute;
    top: 14%;
    left: 32px;
    transform: translateY(-50%);
    color: var(--rr-heading-primary);
}

.form-item-2 .icon-7 {
    position: absolute;
    top: 10%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--rr-heading-primary);
}

.contact__map {
    padding: 0 0 70px 70px;
    position: relative;
}

.contact__map::before {
    position: absolute;
    content: "";
    height: 113%;
    width: 1px;
    background: rgba(28, 28, 40, 0.1);
    left: 0;
    top: -71px;
}

@media (max-width: 1199px) {
    .contact__map::before {
        height: 123.5%;
    }
}

@media only screen and (max-width: 992px) {
    .contact__map::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .contact__map {
        padding: 0px 30px 70px 33px;
    }
}

@media only screen and (max-width: 992px) {
    .contact__map {
        margin-left: 0;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contact__map {
        margin-left: 0;
        margin-top: 40px;
        padding: 0;
    }
}

.contact__map .map {
    height: 484px;
    width: 100%;
}

@media (max-width: 1199px) {
    .contact__map .map {
        height: 400px;
    }
}

@media only screen and (max-width: 992px) {
    .h3-contact-wrapper .section-heading .sub-heading {
        margin-bottom: 0;
    }
}

@media (max-width: 1199px) {
    .h3-content {
        margin-bottom: 40px;
    }
}

.contact-form .form-item .form-control.nice-select-2 {
    height: auto;
    line-height: inherit;
    padding: 0px;
}

.form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    width: 20px;
    height: 20px;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

.contact-section-4 {
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.contact-section-4 .contact-wrapper {
    max-width: 410px;
}

@media only screen and (max-width: 992px) {
    .contact-section-4 .contact-wrapper {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.contact-section-4 .contact-wrapper .contact-title {
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #1C1C28;
    margin-bottom: 56px;
}

@media (max-width: 1199px) {
    .contact-section-4 .contact-wrapper .contact-title {
        font-size: 35px;
        line-height: 52px;
    }
}

@media only screen and (max-width: 992px) {
    .contact-section-4 .contact-wrapper .contact-title {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-section-4 .contact-wrapper .contact-title {
        font-size: 23px;
        line-height: 20px;
    }
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

@media only screen and (max-width: 767px) {
    .contact-section-4 .contact-wrapper .contact-info-list .info-box {
        gap: 15px;
    }
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box:hover .icon {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box:hover .icon i {
    background: #9175FF;
    color: white;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .icon {
    display: flex;
    padding: 17px 20px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(23, 23, 23, 0.1);
    transition: all 0.7s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .contact-section-4 .contact-wrapper .contact-info-list .info-box .icon {
        padding: 13px 16px;
    }
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .icon i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 100%;
    transition: all 0.3s ease-in-out;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details {
    padding: 0px 14px 0px 0px;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details-one {
    padding: 27px 0px;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details-one span {
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-medium);
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #171717;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details-one .number-info span {
    padding-bottom: 0;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details span {
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #171717;
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-ff-medium);
    padding-bottom: 10px;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details a {
    font-family: var(--rr-ff-body);
    font-weight: var(--rr-fw-medium);
    font-size: 20px;
    line-height: 34px;
    display: flex;
    align-items: center;
    color: var(--rr-text-body);
    transition: all 0.3s ease-in-out;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details a:hover {
    color: #9175FF;
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details a:hover span {
    color: #171717;
}

@media (max-width: 1199px) {
    .contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details a {
        font-size: 17px;
        line-height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details a {
        font-size: 16px;
    }
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details a span {
    font-weight: var(--rr-fw-medium);
    font-size: 20px;
    line-height: 24px;
    align-items: center;
    color: var(--rr-text-body);
    font-family: var(--rr-ff-body);
}

.contact-section-4 .contact-wrapper .contact-info-list .info-box .info-details .one {
    line-height: 44px;
}

.contact-section-4 .contact-content-one {
    background: white;
    padding: 41px 70px 50px 70px;
    border-radius: 10px;
    margin-left: 6px;
}

@media (max-width: 1399px) {
    .contact-section-4 .contact-content-one {
        padding: 50px 35px 48px 35px;
    }
}

@media (max-width: 1199px) {
    .contact-section-4 .contact-content-one {
        padding: 50px 20px 48px 17px;
    }
}

.contact-section-4 .contact-content-one .section-heading-one {
    margin-bottom: 20px;
}

.contact-section-4 .contact-content-one .section-heading-one .section-title-one {
    font-size: 24px;
    line-height: 35px;
    display: flex;
    align-items: center;
    color: #171717;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-sbold);
    padding-left: 36px;
}

@media only screen and (max-width: 767px) {
    .contact-section-4 .contact-content-one .section-heading-one .section-title-one {
        padding-left: 0;
    }
}

.h3-contact__us .rr-primary-btn:focus {
    border: 1px solid rgba(28, 28, 40, 0.1);
}

@media only screen and (max-width: 767px) {
    .contact-us-section .contact-page {
        margin-top: 50px;
    }
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
    display: none;
}

.sidebar-trigger {
    display: block;
}

.sidebar-area {
    background-color: var(--rr-color-common-white);
    border-left: 1px solid var(--rr-color-border-1);
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    width: 450px;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    padding: 40px;
}

.open-sidebar .sidebar-area {
    right: 0;
    visibility: visible;
    transform: translate(0);
}

.sidebar-trigger.close {
    position: absolute;
    right: 30px;
    top: 63px;
    color: var(--grey-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-trigger.close:hover {
    color: var(--rr-color-theme-primary);
}

.sidebar-trigger.close svg {
    fill: currentColor;
    stroke: none;
    width: 20px;
    height: 20px;
}

.sidebar-content .site-logo {
    margin-bottom: 40px;
}

.sidebar-content .site-logo img {
    max-width: 200px;
}

.sidebar-content .sidebar-info li {
    font-size: 18px;
}

.sidebar-content .sidebar-social li {
    display: inline-block;
    margin: 0 3px;
    padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
    display: inline-block;
    border: 1px solid var(--border-1);
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sidebar-content .sidebar-social li a:after {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 59%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
    border: 1px solid var(--primary-color);
    color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
    margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ccc;
}

.sidebar-area::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area-webkit-::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area::-moz-selection {
    background-color: #999;
    color: #fff;
}

#sidebar-overlay {
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: calc(100% - 400px);
    z-index: -1;
}

.open-sidebar #sidebar-overlay {
    opacity: 1;
    z-index: 1002;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

@media (max-width: 992px) {
    .sidebar-content .list-post-area.list-2 {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    .sidebar-area {
        width: 400px;
        padding: 60px 30px;
        justify-content: center;
    }

    .side-menu-logo {
        margin-bottom: 50px;
    }

    .side-menu-wrap {
        margin-bottom: 70px;
    }

    .side-menu-header h3 {
        display: none;
    }

    .side-menu-list li a {
        font-size: 14px;
    }

    .side-menu-list li p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .sidebar-area {
        width: 320px;
        padding: 60px 20px 60px 20px;
    }

    .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
        height: 90px;
        width: 90px;
    }

    .sidebar-content .list-post-area.list-2 .list-post-card {
        grid-template-columns: 90px 1fr;
    }
}

.side-menu-logo {
    max-width: 150px;
}

.side-menu-about {
    margin: 50px 0 50px 0;
}

@media only screen and (max-width: 992px) {
    .side-menu-about {
        display: none;
    }
}

.side-menu-about p {
    margin: 25px 0;
}

.side-menu-header h3 {
    font-size: 30px;
    font-weight: 600px;
    line-height: 1;
    font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
    margin-bottom: 20px;
}

.side-menu-list {
    margin: 25px 0 35px 0;
}

.side-menu-list li {
    display: flex;
    align-items: center;
}

.side-menu-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.side-menu-list li i {
    background-color: var(--rr-color-theme-primary);
    font-size: 12px;
    color: var(--rr-color-common-white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
    background-color: var(--rr-color-theme-primary);
    color: #fff;
}

.side-menu-list li p {
    padding-left: 10px;
    margin-bottom: 0;
}

.side-menu-list li a {
    font-size: 16px;
    color: var(--rr-color-text-body);
    padding-left: 10px;
}

.side-menu-list li a:hover {
    color: var(--rr-color-theme-primary);
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-wrap {
    padding-right: 31px;
    border-right: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 992px) {
    .blog-details-wrap {
        padding-right: 0;
        border-right: none;
    }
}

.blog-details-img {
    width: 100%;
    height: 500px;
}

.blog-details-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

@media only screen and (max-width: 992px) {
    .blog-details-img {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-details-img {
        height: 300px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-details-content {
        margin-bottom: 40px;
    }
}

.blog-details-content .details-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

@media only screen and (max-width: 992px) {
    .blog-details-content .details-title {
        font-size: 24px;
    }
}

.blog-details-content .details-img-wrap {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 24px;
}

.blog-details-content .details-img-wrap img {
    max-width: 430px;
    width: 100%;
}

@media (max-width: 1199px) {
    .blog-details-content .details-img-wrap img {
        max-width: 280px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-details-content .details-img-wrap img {
        max-width: 350px;
    }
}

.blog-details-content .blog-details-thumb {
    height: 400px;
    width: 100%;
}

.blog-details-content .blog-details-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .blog-details-content .blog-details-thumb {
        height: 300px;
    }
}

blockquote {
    background-color: var(--rr-color-bg-1);
    display: grid;
    align-items: center;
    grid-template-columns: 150px 1fr;
}

@media only screen and (max-width: 767px) {
    blockquote {
        grid-template-columns: 1fr;
    }
}

blockquote .icon {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    font-size: 40px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    blockquote .icon {
        padding: 30px 0;
    }
}

blockquote .content {
    padding: 35px 40px;
}

blockquote .content p {
    color: var(--rr-color-common-white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    text-transform: uppercase;
    margin-bottom: 20px;
}

blockquote .content .author {
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
    padding-left: 50px;
    line-height: 1;
}

blockquote .content .author:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 30px;
    margin: 70px 0;
}

.tags .tag-left {
    display: flex;
    align-items: center;
}

.tags .tag-left .tag-list {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 15px;
}

.tags .tag-left .tag-list li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--rr-color-common-white);
    padding: 12px 30px;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 100px;
}

.tags .tag-left .tag-list li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}

.tags .social-list-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.tags .social-list-wrap .follow {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.tags .social-list-wrap .social-list {
    display: flex;
    align-items: center;
    column-gap: 15px;
    list-style: none;
}

.tags .social-list-wrap .social-list li:not(:last-of-type) {
    margin-right: 10px;
}

.tags .social-list-wrap .social-list li a {
    color: var(--rr-color-common-white);
    font-size: 15px;
}

.tags .social-list-wrap .social-list li a:hover {
    color: var(--rr-color-theme-primary);
}

.next-prev-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--rr-color-border-1);
    border-bottom: 1px solid var(--rr-color-border-1);
    margin: 50px 0 0 0;
}

.next-prev-wrap .post-btn {
    margin-bottom: 0;
}

.next-prev-wrap .post-btn a {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 600;
    column-gap: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.next-prev-wrap .post-btn a:hover {
    color: var(--rr-color-theme-primary);
}

.next-prev-wrap .post-btn a .icon {
    background-color: var(--rr-color-bg-1);
    color: var(--rr-color-common-white);
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--rr-color-border-1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.next-prev-wrap .post-btn a .icon:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}

.blog-author-wrap {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--rr-color-border-1);
}

.blog-author-item {
    background-color: var(--rr-color-bg-1);
    border: 1px solid var(--rr-color-border-1);
    padding: 40px;
    display: grid;
    align-items: center;
    grid-template-columns: 200px 1fr;
    grid-gap: 35px;
}

@media only screen and (max-width: 767px) {
    .blog-author-item {
        grid-template-columns: 1fr;
        grid-gap: 25px;
        padding: 25px;
    }
}

.blog-author-item .author-img {
    max-width: 200px;
    height: 170px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .blog-author-item .author-img {
        max-width: 100%;
    }
}

.blog-author-item .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-item .content .name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-author-item .content p {
    margin-bottom: 25px;
}

.blog-author-item .content .social-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.blog-author-item .content .social-list li a {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-bg-1);
    font-size: 13px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-author-item .content .social-list li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}

.blog-author-item .content .social-list li:not(:last-of-type) {
    margin-right: 10px;
}

.comments-area .section-heading .section-title {
    font-size: 40px;
}

@media only screen and (max-width: 992px) {
    .comments-area .section-heading .section-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .comments-area .section-heading .section-title {
        font-size: 26px;
    }
}

.comment-item {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 110px 1fr;
    grid-gap: 25px;
}

@media only screen and (max-width: 767px) {
    .comment-item {
        grid-template-columns: 1fr;
    }
}

.comment-item .reply {
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .comment-item .reply {
        position: inherit;
        top: 0;
        left: 0;
        margin-top: 20px;
    }
}

.comment-item .comment-thumb img {
    height: 100%;
    width: 110px;
    object-fit: cover;
    object-position: top;
}

.comment-item .comment-info .comments-meta {
    margin-bottom: 10px;
}

.comment-item .comment-info .comments-meta span {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.comment-item .comment-info .author {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.comment-item .comment-info p {
    font-size: 16px;
    margin-bottom: 0;
}

.comment-item.item-2 {
    padding-left: 135px;
}

@media only screen and (max-width: 767px) {
    .comment-item.item-2 {
        padding-left: 0;
    }
}

.comment-item:not(:last-of-type) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--rr-color-border-1);
}

.blog-contact-form {
    background-color: var(--rr-color-bg-1);
    padding: 75px 70px;
}

@media only screen and (max-width: 767px) {
    .blog-contact-form {
        padding: 30px 20px;
    }
}

.blog-contact-form .title {
    font-size: 40px;
    font-weight: 700;
}

@media only screen and (max-width: 992px) {
    .blog-contact-form .title {
        font-size: 28px;
    }
}

.blog-contact-form p {
    margin-bottom: 30px;
}

.blog-contact-form .request-form .form-item {
    position: relative;
}

.blog-contact-form .request-form .form-item .form-control {
    background-color: var(--rr-color-border-1);
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
    border: none;
    padding: 15.5px 30px;
    border-radius: 0;
    margin-bottom: 25px;
    width: 100%;
}

.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control.nice-select {
    height: auto;
    line-height: inherit;
    padding: 15.5px 30px;
}

.blog-contact-form .request-form .form-item .form-control.nice-select:after {
    top: 46%;
    width: 10px;
    height: 10px;
    border-color: var(--rr-color-text-body);
    border-bottom: 1px solid var(--rr-color-text-body);
    border-right: 1px solid var(--rr-color-text-body);
    right: 35px;
}

.blog-contact-form .request-form .form-item .form-control.nice-select .list {
    background-color: var(--rr-color-border-1);
    width: 100%;
}

.blog-contact-form .request-form .form-item .form-control.nice-select .list li {
    padding-left: 30px;
}

.blog-contact-form .request-form .form-item .icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.blog-contact-form .request-form .form-item.message-item .icon {
    top: 25px;
}

.sidebar-widget {
    padding-left: 10px;
}

.sidebar-widget:not(:last-of-type) {
    margin-bottom: 50px;
}

@media only screen and (max-width: 992px) {
    .sidebar-widget {
        padding-left: 0;
    }
}

.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget .search-form .form-control {
    background-color: var(--rr-color-bg-1);
    color: var(--rr-color-common-white);
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--rr-color-border-1);
    border-radius: 0;
    box-shadow: none;
    padding: 15px 0;
    padding-left: 20px;
    padding-right: 30px;
}

.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
    color: var(--rr-color-common-white);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control:-moz-placeholder {
    color: var(--rr-color-common-white);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control::-moz-placeholder {
    color: var(--rr-color-common-white);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control:-ms-input-placeholder {
    color: var(--rr-color-common-white);
    font-size: 16px;
}

.sidebar-widget .search-form .search-btn {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    height: 100%;
    width: 55px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.sidebar-widget .widget-title {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
}

.sidebar-widget.blog-author img {
    height: 220px;
    width: 220px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.sidebar-widget.blog-author .name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-widget.blog-author p {
    margin-bottom: 25px;
}

.sidebar-widget.blog-author .social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.sidebar-widget.blog-author .social-list li a {
    color: var(--rr-color-common-white);
    font-size: 15px;
    display: block;
}

.sidebar-widget.blog-author .social-list li:not(:last-of-type) {
    margin-right: 15px;
}

.sidebar-widget .category-list {
    list-style: none;
}

.sidebar-widget .category-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

.sidebar-widget .category-list li a {
    background-color: var(--rr-color-bg-1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--rr-color-border-1);
    padding: 12px 20px;
}

.sidebar-widget .category-list li a:not(:last-of-type) {
    margin-bottom: 20px;
}

.sidebar-widget .category-list li a i {
    color: var(--rr-color-theme-primary);
}

.sidebar-widget .category-list li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}

.sidebar-widget .category-list li a:hover i {
    color: var(--rr-color-common-white);
}

.sidebar-widget .blog-gallery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px;
}

@media (max-width: 1399px) {
    .sidebar-widget .blog-gallery-wrap {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 992px) {
    .sidebar-widget .blog-gallery-wrap {
        display: flex;
        align-items: center;
        column-gap: 10px;
        row-gap: 10px;
        flex-wrap: wrap;
    }
}

.sidebar-widget .blog-gallery-wrap .gallary-img {
    height: 100px;
    width: 100px;
}

.sidebar-widget .tags {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    row-gap: 20px;
    list-style: none;
    column-gap: 0;
    margin: 0;
}

.sidebar-widget .tags li:not(:last-of-type) {
    margin-right: 10px;
}

.sidebar-widget .tags li a {
    font-family: var(--rr-ff-body);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid var(--rr-color-border-1);
}

.sidebar-widget .tags li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}

.sidebar-widget .sidebar-post {
    display: grid;
    align-items: center;
    grid-template-columns: 95px 1fr;
    grid-gap: 0px;
}

.sidebar-widget .sidebar-post:not(:last-of-type) {
    margin-bottom: 20px;
}

.sidebar-widget .sidebar-post img {
    width: 100px;
    height: 100%;
    object-fit: cover;
}

.sidebar-widget .sidebar-post .post-content {
    padding-left: 20px;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content {
        padding-left: 10px;
    }
}

.sidebar-widget .sidebar-post .post-content .post-meta {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 5px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .post-meta {
        column-gap: 5px;
    }
}

.sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .post-meta li {
        font-size: 13px;
    }
}

.sidebar-widget .sidebar-post .post-content .title {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .title {
        font-size: 14px;
    }
}

.sidebar-widget .sidebar-post .post-content .title a:hover {
    color: var(--rr-color-theme-primary);
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 65px 0;
}

.footer-section .shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
}

@media only screen and (max-width: 992px) {
    .footer-top .section-title {
        font-size: 36px;
    }
}

.footer-top .footer-btn a {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
}

.footer-top .footer-btn a:hover {
    color: var(--rr-color-common-white);
}

.footer-bottom {
    padding-top: 100px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-2 {
    border: none;
    margin-top: 125px;
    padding-top: 0;
    margin-bottom: 80px;
}

@media only screen and (max-width: 992px) {
    .footer-bottom {
        padding-top: 70px;
        margin-top: 70px;
    }
}

.footer-bottom .footer-contact {
    display: flex;
    align-items: center;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 70px;
    column-gap: 10px;
}

@media only screen and (max-width: 992px) {
    .footer-bottom .footer-contact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-bottom .footer-contact {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}

.footer-bottom .footer-contact .footer-contact-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 9px;
}

.footer-bottom .footer-contact .footer-contact-item .item-title {
    color: var(--rr-color-common-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 0;
}

.footer-bottom .footer-contact .footer-contact-item .item-title a {
    color: var(--rr-color-common-white);
    position: relative;
    padding-bottom: 3px;
}

.footer-bottom .footer-contact .footer-contact-item .item-title a:before {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-bottom .footer-contact .footer-contact-item .item-title a:hover:before {
    width: 100%;
}

.footer-bottom .footer-contact .footer-contact-item ul {
    list-style: none;
}

.footer-bottom .footer-contact .footer-contact-item ul li {
    line-height: 1;
}

.footer-bottom .footer-contact .footer-contact-item ul li:not(:last-of-type) {
    margin-bottom: 15px;
}

.footer-bottom .footer-contact .footer-contact-item ul li a {
    color: var(--rr-color-common-white);
    line-height: 1;
    position: relative;
    font-size: 18px;
}

.footer-bottom .footer-contact .footer-contact-item ul li a:before {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-bottom .footer-contact .footer-contact-item ul li a:hover:before {
    width: 100%;
}

.footer-bottom .copyright-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .footer-bottom .copyright-content {
        flex-wrap: wrap;
        row-gap: 20px;
    }
}

.footer-bottom .copyright-content .footer-text {
    color: var(--rr-color-common-white);
    font-size: 160px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .footer-bottom .copyright-content .footer-text {
        font-size: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-bottom .copyright-content .footer-text {
        font-size: 80px;
    }
}

.footer-bottom .copyright-content p {
    margin-bottom: 0;
    color: var(--rr-color-common-white);
}

.h2-footer-section {
    padding: 50px 0;
    position: relative;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .h2-footer-section {
        padding: 20px 0;
    }
}

.h2-footer-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.8);
}

.h2-footer-title {
    text-align: center;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

.h2-footer-title h2 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 200px;
    line-height: 242px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
}

@media (max-width: 1399px) {
    .h2-footer-title h2 {
        font-size: 160px;
        line-height: 225px;
    }
}

@media (max-width: 1199px) {
    .h2-footer-title h2 {
        font-size: 130px;
        line-height: 225px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-footer-title h2 {
        font-size: 100px;
        line-height: 225px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-footer-title h2 {
        font-size: 65px;
        line-height: 75px;
        text-align: left;
        margin-left: 7px;
    }
}

.h2-footer-item {
    position: relative;
    z-index: 1;
    margin-top: 38px;
}

.h2-footer-item p {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .h2-footer-item p {
        font-size: 33px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .h2-footer-item p {
        font-size: 21px;
        line-height: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .h2-footer-item p {
        font-size: 33px;
        line-height: 40px;
    }

    .h2-footer-item p br {
        display: none;
    }
}

.h2-footer-content {
    margin-left: 80px;
    position: relative;
    z-index: 1;
}

.h2-footer-content .border-1 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    width: 2px;
    height: 165%;
    content: "";
    margin-top: -20px;
    top: 0;
    left: -80px;
}

@media only screen and (max-width: 992px) {
    .h2-footer-content {
        margin-left: 0px;
    }
}

.h2-footer-content .social-links {
    list-style: none;
    display: flex;
    gap: 38px;
    padding: 0;
    margin-bottom: 40px;
    margin-bottom: 42px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .h2-footer-content .social-links {
        gap: 20px;
    }
}

.h2-footer-content .social-links li {
    transition: all 3s ease-in-out;
}

.h2-footer-content .social-links li a {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.h2-footer-content .social-links li:hover {
    text-decoration-line: underline;
}

.h2-footer-contact {
    position: relative;
}

.h2-footer-contact .border-3 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    width: 195%;
    content: "";
    margin-top: -20px;
    top: 0;
    left: -80px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .h2-footer-contact .border-3 {
        width: 100%;
        left: 0;
    }
}

.h2-footer-contact .border-4 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    width: 195%;
    content: "";
    margin-top: -20px;
    top: 60px;
    left: -80px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .h2-footer-contact .border-4 {
        width: 100%;
        left: 0;
    }
}

.h2-footer-contact .border-5 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    width: 195%;
    content: "";
    margin-top: -20px;
    top: 120px;
    left: -80px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .h2-footer-contact .border-5 {
        width: 100%;
        left: 0;
    }
}

.h2-footer-contact .border-6 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    width: 195%;
    content: "";
    margin-top: -20px;
    top: 190px;
    left: -80px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .h2-footer-contact .border-6 {
        width: 100%;
        left: 0;
    }
}

.h2-footer-contact span {
    display: block;
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-bottom: 45px;
}

.h2-footer-contact span a {
    transition: all 0.3s ease-in-out;
}

.h2-footer-contact span a:hover {
    color: #EFDA00;
}

.h3-footer-section {
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    border-top: 1px solid rgba(15, 15, 15, 0.1);
    padding-top: 30px;
    padding-bottom: 30px;
}

.h3-footer-section .h3-footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
}

@media only screen and (max-width: 767px) {
    .h3-footer-section .h3-footer-wrapper {
        row-gap: 30px;
    }
}

.h3-footer-section .h3-footer-wrapper .timer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 240px;
}

@media (max-width: 1199px) {
    .h3-footer-section .h3-footer-wrapper .timer {
        padding-left: 0;
    }
}

.h3-footer-section .h3-footer-wrapper .timer .date {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.h3-footer-section .h3-footer-wrapper .timer .date i {
    color: #696969;
    margin-right: 7px;
}

.h3-footer-section .h3-footer-wrapper .timer .time {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.h3-footer-section .h3-footer-wrapper .timer .time i {
    color: #696969;
    margin-right: 7px;
}

.h3-footer-section .h3-footer-wrapper .copyright {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.h3-footer-section .h3-footer-wrapper .copyright span {
    color: var(--rr-color-heading-primary);
}

.h5-footer__text {
    padding-top: 10px;
    text-align: center;
}

.h5-footer__text .title {
    font-weight: 600;
    font-size: 230px;
    line-height: 278px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-transform: uppercase;
}

@media (max-width: 1600px) {
    .h5-footer__text .title {
        font-size: 190px;
    }
}

@media (max-width: 1399px) {
    .h5-footer__text .title {
        font-size: 150px;
    }
}

@media (max-width: 1199px) {
    .h5-footer__text .title {
        font-size: 120px;
        line-height: 200px;
    }
}

@media only screen and (max-width: 992px) {
    .h5-footer__text .title {
        font-size: 90px;
        line-height: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .h5-footer__text .title {
        font-size: 62px;
        line-height: 80px;
    }
}

.footer-4-area .section-heading {
    margin-bottom: 103px;
}

@media only screen and (max-width: 992px) {
    .footer-4-area .section-heading {
        margin-bottom: 40px;
    }
}

.footer-4-area {
    background: #fff;
    padding-bottom: 41px;
    position: relative;
    overflow: hidden;
}

.footer-4-area::before {
    content: "";
    left: 49.5%;
    top: 0;
    width: 1px;
    height: 569px;
    display: block;
    position: absolute;
    background: rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .footer-4-area::before {
        top: -16px;
    }
}

@media (max-width: 1199px) {
    .footer-4-area::before {
        top: -24px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-4-area::before {
        display: none;
    }
}

.footer-4-area .footer-item {
    display: flex;
    justify-content: space-between;
}

.footer-4-area .footer-title-wrap .title {
    font-weight: 600;
    font-size: 200px;
    line-height: 242px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #171717;
    font-family: var(--rr-ff-heading);
    margin-top: -47px;
    margin-bottom: 0;
    padding-left: 70px;
}

@media (max-width: 1600px) {
    .footer-4-area .footer-title-wrap .title {
        font-size: 190px;
        padding-left: 28px;
    }
}

@media (max-width: 1399px) {
    .footer-4-area .footer-title-wrap .title {
        font-size: 145px;
    }
}

@media (max-width: 1199px) {
    .footer-4-area .footer-title-wrap .title {
        font-size: 115px;
        margin-top: -71px;
    }
}

@media only screen and (max-width: 992px) {
    .footer-4-area .footer-title-wrap .title {
        font-size: 105px;
        margin-top: -82px;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer-4-area .footer-title-wrap .title {
        font-size: 74px;
        padding-left: 7px;
    }
}

.footer-4-area .footer-bottom-wrapper {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner {
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-one ul {
    display: flex;
    align-items: center;
    gap: 23px;
}

@media only screen and (max-width: 767px) {
    .footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-one ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-one ul li {
    list-style: none;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-one ul li a {
    position: relative;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-one ul li a::before {
    content: "";
    left: 0;
    top: 22px;
    width: 0;
    height: 1px;
    position: absolute;
    display: block;
    background: #696969;
    transition: all 0.3s ease-in-out;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-one ul li a:hover::before {
    width: 100%;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-two ul {
    display: flex;
    align-items: center;
    gap: 37px;
}

@media only screen and (max-width: 767px) {
    .footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-two ul {
        gap: 20px;
        flex-wrap: wrap;
    }
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-two ul li {
    list-style: none;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-two ul li a {
    position: relative;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-two ul li a::before {
    content: "";
    left: 0;
    top: 22px;
    width: 0;
    height: 1px;
    position: absolute;
    display: block;
    background: #696969;
    transition: all 0.3s ease-in-out;
}

.footer-4-area .footer-bottom-wrapper .footer-menu-inner .part-two ul li a:hover::before {
    width: 100%;
}

.footer-4-area .footer-copyright-part {
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.footer-4-area .footer-copyright-part .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

@media only screen and (max-width: 767px) {
    .footer-4-area .footer-copyright-part .copyright {
        flex-wrap: wrap;
    }
}

.footer-4-area .footer-copyright-part .copyright .copyright-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    font-family: var(--rr-ff-heading);
    font-weight: var(--rr-fw-regular);
    color: var(--rr-text-body);
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .footer-4-area .footer-copyright-part .copyright .copyright-text {
        flex-wrap: wrap;
        margin-bottom: 15px;
        gap: 15px;
    }
}

.footer-4-area .footer-copyright-part .copyright .copyright-text span {
    padding-left: 4px;
    font-family: var(--rr-ff-heading);
    color: #171717;
}

.footer-4-area .footer-copyright-part .copyright .copyright-text a {
    color: #9175FF;
    padding-left: 5px;
}

.footer-4-area .footer-copyright-part .copyright .copyright-text a:hover {
    color: var(--rr-color-heading-primary);
}

.footer-4-area .footer-copyright-part .copyright .footer-menu ul {
    display: flex;
    align-items: center;
    gap: 33px;
}

.footer-4-area .footer-copyright-part .copyright .footer-menu ul li {
    list-style: none;
}

.footer-4-area .footer-copyright-part .copyright .footer-menu ul li a {
    position: relative;
}

.footer-4-area .footer-copyright-part .copyright .footer-menu ul li a::before {
    content: "";
    left: 0;
    top: 22px;
    width: 0;
    height: 1px;
    position: absolute;
    display: block;
    background: #696969;
    transition: all 0.3s ease-in-out;
}

.footer-4-area .footer-copyright-part .copyright .footer-menu ul li a:hover::before {
    width: 100%;
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Breadcrumb SCSS
----------------------------------------*/
.breadcrumb-section {
    position: relative;
    z-index: 1;
}

.breadcrumb-section .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.breadcrumb-section .shape-1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.breadcrumb-section .breadcrumb-wrap {
    position: relative;
    padding-top: 190px;
    padding-bottom: 97px;
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap {
        padding-top: 125px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-section .breadcrumb-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content {
    max-width: 1570px;
    width: 100%;
    margin: 0 auto;
    padding-left: 33px;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content-2 {
    padding-left: 4px;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content-3 {
    padding-left: 0;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-list li {
    background-color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 25px;
    border-radius: 100px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    color: #0F0F0F;
}

@media only screen and (max-width: 767px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-list li {
        font-size: 14px;
    }
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-list li:not(:last-of-type) {
    margin-right: 20px;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap {
    position: relative;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
    font-family: "Inter Tight";
    color: #0F0F0F;
    font-style: normal;
    font-weight: 700;
    font-size: 175px;
    line-height: 190px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

@media (max-width: 1600px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
        font-size: 150px;
    }
}

@media only screen and (max-width: 1200px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
        font-size: 128px;
    }
}

@media (max-width: 1399px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
        font-size: 128px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
        font-size: 105px;
    }
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
        font-size: 78px;
        line-height: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
        font-size: 54px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 375px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title {
        font-size: 31px;
        line-height: 60px;
    }

    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title .title-border {
        border: 1px solid transparent !important;
        padding: 0 !important;
    }
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title .title-border {
    border: 1px solid #0F0F0F;
    border-radius: 95px;
    padding: 3px 50px;
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-2 {
        font-size: 76px;
        line-height: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-2 {
        font-size: 54px;
        line-height: 80px;
    }

    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-2 br {
        display: none;
    }
}

@media only screen and (max-width: 375px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-2 {
        font-size: 32px;
        line-height: 60px;
    }

    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-2 .title-border {
        border: 1px solid transparent !important;
        padding: 0 !important;
    }
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-2 .title-border {
    border: 1px solid transparent !important;
    padding: 0 !important;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-3 {
    text-transform: inherit;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-4 {
    text-transform: inherit;
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 700;
    font-size: 65px;
    line-height: 75px;
    letter-spacing: -0.01em;
}

@media (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-4 br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-4 {
        font-size: 55px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-4 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-blog {
        font-size: 49px;
        line-height: 61px;
    }
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-blog {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .breadcrumb-title-blog {
        font-size: 26px;
        line-height: 36px;
    }
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author {
    max-width: 676px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 15px;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name {
    display: flex;
    align-items: center;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name img {
    margin-right: 10px;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name span {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-right: 5px;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name h5 {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0F0F0F;
    margin-bottom: 0;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name-2 {
    position: relative;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name-2::before {
    position: absolute;
    content: "";
    background: #0F0F0F;
    top: 50%;
    left: -70%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name-2::before {
        display: none;
    }
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name-3 {
    position: relative;
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name-3::before {
    position: absolute;
    content: "";
    background: #0F0F0F;
    top: 50%;
    left: -60%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .breadcrumb-title-wrap .author .name-3::before {
        display: none;
    }
}

.breadcrumb-section .breadcrumb-wrap .breadcrumb-content .dec {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    color: #696969;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 176px;
    margin-top: 99px;
}

@media only screen and (max-width: 992px) {
    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .dec {
        margin-top: 40px;
        margin-right: 0;
    }

    .breadcrumb-section .breadcrumb-wrap .breadcrumb-content .dec br {
        display: none;
    }
}

.pricing {
    padding: 43px 50px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 15px;
}

@media (max-width: 1399px) {
    .pricing {
        padding: 43px 40px;
    }
}

@media (max-width: 1199px) {
    .pricing {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .pricing {
        padding: 43px 35px;
    }
}

@media only screen and (max-width: 767px) {
    .pricing {
        padding: 43px 2px 43px 6px;
    }
}

.pricing__badge {
    margin-bottom: 7px;
}

.pricing__badge span {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0F0F0F;
}

.pricing__price {
    margin-bottom: 27px;
}

.pricing__price h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: #0F0F0F;
}

.pricing__price h2 span {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

.pricing__content {
    margin-bottom: 40px;
}

.pricing__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media only screen and (max-width: 992px) {
    .pricing__content p br {
        display: none;
    }
}

.pricing__list {
    margin-top: 36px;
}

.pricing__list ul li {
    list-style: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
    margin-bottom: 25px;
    position: relative;
    margin-left: 20px;
}

.pricing__list ul li::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    left: -20px;
    top: 7px;
    border-radius: 100%;
    background: #0F0F0F;
}

.triple-line {
    border-top: 1px solid #e0e0e0;
    height: 7px;
}

.app-price-tab-wrap {
    margin-bottom: 70px;
    text-align: center;
    margin-left: -31%;
}

@media (max-width: 1199px) {
    .app-price-tab-wrap {
        margin-left: 0;
    }
}

.ai-price-tab-wrap {
    margin-bottom: 70px;
}

.ai-price-tab ul {
    padding: 4px;
    background: #F4F4F4;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 29.5px;
}

.ai-price-tab ul li button {
    padding: 10px 31.8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #696969;
}

.ai-price-tab ul li button.active {
    color: #0F0F0F;
    background: #FFFFFF;
    border-radius: 30px;
}

.faq__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__title h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0F0F0F;
}

.faq__title span {
    text-align: end;
}

.contact-content-3 {
    padding: 60px 70px;
    border: 1px solid rgba(15, 15, 15, 0.15);
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .contact-content-3 {
        padding: 40px 19px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-content-3 {
        padding: 40px 5px;
    }
}

.blog-detail-social-3 ul li a {
    height: 53px;
    width: 53px;
}

@media only screen and (max-width: 767px) {
    .blog-detail-social-3 {
        margin-top: 35px;
    }
}

.faq-section__wrapper .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.faq-section__wrapper .accordion-item:first-of-type {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.faq-section__wrapper .accordion-item-2:first-of-type {
    border-top: none;
}

.faq-section__wrapper .accordion-button {
    padding: 25.5px 0;
    background-color: transparent;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #0F0F0F;
}

.faq-section__wrapper .accordion-button.collapsed {
    color: var(--rr-text-body-2);
}

.faq-section__wrapper .accordion-button.collapsed::after {
    color: black;
    font-weight: 300;
    font-size: 24px;
    line-height: 18px;
    color: #0F0F0F;
}

.faq-section__wrapper .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: inherit;
    color: inherit;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0F0F0F;
    padding-bottom: 24px;
}

.faq-section__wrapper .accordion-button:not(.collapsed)::after {
    width: fit-content;
    height: inherit;
    content: "-";
    background-image: inherit;
    background-repeat: no-repeat;
    background-size: inherit;
    font-weight: 300;
    font-size: 30px;
    line-height: 18px;
    color: #0F0F0F;
}

.faq-section__wrapper .accordion-button:focus {
    border-color: inherit;
    box-shadow: inherit;
}

.faq-section__wrapper .accordion-button::after {
    width: fit-content;
    height: inherit;
    content: "+";
    background-image: inherit;
    background-repeat: no-repeat;
    background-size: inherit;
    font-weight: 300;
    font-size: 18px;
    line-height: 18px;
    color: #0F0F0F;
}

.faq-section__wrapper .accordion-body {
    padding: 0;
    padding-bottom: 11px;
}

.faq-section__wrapper .accordion-body p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

@media (max-width: 1199px) {
    .faq-section__wrapper .accordion-body p br {
        display: none;
    }
}

.faq-section__details__hidden {
    overflow-x: clip;
}

.faq__category {
    margin-right: 66px;
    border: 1px solid rgba(15, 15, 15, 0.1);
}

@media (max-width: 1399px) {
    .faq__category {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .faq__category {
        margin-right: 0px;
        margin-bottom: 40px;
    }
}

.faq__item {
    padding: 40px;
}

@media only screen and (max-width: 992px) {
    .faq__item {
        padding: 15px;
    }
}

.faq__item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    padding-bottom: 14px;
    margin-top: 15px;
}

.faq__item-content:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq__item-content:first-child {
    margin-top: 0;
}

.faq__item-content .number {
    font-family: "Inter Tight";
    font-style: normal;
    color: #0F0F0F;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    row-gap: 10px;
    gap: 25px;
}

.faq__item-content .number span {
    font-family: "Inter Tight";
    font-style: normal;
    font-weight: 500;
    color: #696969;
    font-size: 14px;
    line-height: 17px;
}

.faq__item-content .icon {
    font-style: normal;
    color: #696969;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.faq-details-border {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.fact__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid rgba(28, 28, 40, 0.1);
    border-top: 1px solid rgba(28, 28, 40, 0.1);
    padding-top: 65px;
    padding-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .fact__wrapper {
        gap: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .fact__wrapper {
        gap: 50px;
        margin-bottom: 30px;
        justify-content: center;
    }
}

@media only screen and (max-width: 576px) {
    .fact__wrapper {
        gap: 70px;
    }
}

.fact__item p {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #696969;
    margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
    .fact__item p {
        font-size: 18px;
    }
}

.fact__item h2 {
    font-weight: 600;
    font-size: 100px;
    line-height: 121px;
    letter-spacing: -0.03em;
    color: #1C1C28;
}

@media only screen and (max-width: 992px) {
    .fact__item h2 {
        font-size: 70px;
        line-height: 100px;
    }
}

/* Общая анимация "плавного качания" */
@keyframes levitate {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-15px); } /* вверх */
    100% { transform: translateY(0); }      /* вниз */
}

/* Для каждой карточки – немного разная задержка, чтобы выглядело естественно */
.card-levitate-1 {
    animation: levitate 4s ease-in-out infinite;
}

.card-levitate-2 {
    animation: levitate 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.card-levitate-3 {
    animation: levitate 8s ease-in-out infinite;
    animation-delay: 1s;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Общая логика: градиентный фон обрезается текстом */
.section-title span {
    background-clip: text;
    -webkit-background-clip: text; /* для Safari */
    color: transparent;
    -webkit-text-fill-color: transparent; /* для Safari */
}

.gradient-apps {
    background-image: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
}

/* Telegram Bots — кибер-зеленый в бирюзу */
.gradient-bots {
    background-image: linear-gradient(90deg, #00b09b 0%, #96c93d 100%);
}

/* Websites — тёплый розово-оранжевый */
.gradient-web {
    background-image: linear-gradient(90deg, #ff512f 0%, #dd2476 100%);
}

/* Developer Tools — современный пурпурно-голубой */
.gradient-devtools {
    background-image: linear-gradient(90deg, #8e2de2 0%, #4a00e0 100%);
}






.tabs {
    width: auto;
    font-family: sans-serif;
    position: relative;
}

/* скрываем радио */
.tabs input {
    position: absolute;
    left: -9999px;
}

/* контейнер вкладок */
.tab-labels {
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 9999px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* «бегунок» */
.slider {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(33.333% - 8px); /* 3 вкладки → ширина /3 */
    background: #f7f7f7;
    border-radius: 9999px;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* базовый стиль для кнопок-вкладок */
.tab-labels label {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
    cursor: pointer;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    border-radius: 9999px;
    position: relative;
    z-index: 2; /* над бегунком */
}

/* активный текст */
#tab-1:checked ~ .tab-labels label[for="tab-1"],
#tab-2:checked ~ .tab-labels label[for="tab-2"],
#tab-3:checked ~ .tab-labels label[for="tab-3"] {
    color: #000;
    font-weight: 600;
}

/* сдвиги бегунка */
#tab-1:checked ~ .tab-labels .slider {
    transform: translateX(0%);
}
#tab-2:checked ~ .tab-labels .slider {
    transform: translateX(100%);
}
#tab-3:checked ~ .tab-labels .slider {
    transform: translateX(200%);
}

/* панели контента */
.panel {
    display: none;
    padding: 12px;
    margin-top: 12px;
}
#tab-1:checked ~ #panel-1,
#tab-2:checked ~ #panel-2,
#tab-3:checked ~ #panel-3 {
    display: block;
}



/* Секция с карточками для Web Sceleton */

/* ... existing code ... */

/* LP Hero: адаптивная типографика и совместимость с остальным CSS */
.lp-hero {
    background: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #111827;
}

/* Заголовок: используем clamp и плавный скейлинг */
.lp-hero-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    /* от ~28px на мобилке до ~44px на десктопе */
    font-size: clamp(1.75rem, 2.3vw + 1rem, 2.75rem);
    color: #111827;
    margin-bottom: .5rem;
}

/* Контейнер: учитывать глобальные контейнеры темы, сохранить боковые поля уже на мобилке */
.lp-hero .container {
    padding-left: 12px;
    padding-right: 12px;
}

/* Чипсы */
.lp-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    margin: .75rem 0 0;
}

.lp-tag {
    display: inline-block;
    padding: .35rem .7rem;
    font-size: .95rem;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    white-space: nowrap;
}

/* Цветовые варианты чипсов */
.lp-tag--blue   { background:#eef2ff; color:#4f46e5; border-color:#e0e7ff; }
.lp-tag--green  { background:#ecfdf5; color:#10b981; border-color:#d1fae5; }
.lp-tag--orange { background:#fff7ed; color:#f59e0b; border-color:#ffedd5; }
.lp-tag--indigo { background:#eef2ff; color:#6366f1; border-color:#e0e7ff; }
.lp-tag--purple { background:#f5f3ff; color:#8b5cf6; border-color:#ede9fe; }

/* Акцент в заголовке */
.lp-hero-accent {
    color: #374151;
    position: relative;
}
.lp-hero-accent::after {
    content: '';
    position: absolute;
    right: -0.6ch;
    top: .35em;
    width: .35em;
    height: .35em;
    border-radius: 50%;
    background: #4b5563;
}

.lp-hero-text {
    font-size: clamp(0.8rem, 1.2vw + .6rem, 1.25rem);
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Текст */
.lp-hero-text p {
    font-size: clamp(0.8rem, 1.2vw + .6rem, 1.25rem);
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Breakpoints согласованы с темой (xs/sm/md/lg) */

/* ≥1200px: чуть шире текст и теги */
@media (min-width: 1200px) {
    .lp-hero .container { padding-left: 16px; padding-right: 16px; }
    .lp-hero-tags { gap: .6rem; }
}

/* 992–1199: уменьшить плотность, чтобы не ломать сетку .row/.col */
@media (max-width: 1199.98px) {
    .lp-hero-title { line-height: 1.12; }
    .lp-hero-text p { max-width: 68ch; }
}

/* 768–991: компактнее отступы и чипсы в 2+ рядов */
@media (max-width: 991.98px) {
    .lp-hero .container { padding-left: 12px; padding-right: 12px; }
    .lp-hero-tags { gap: .5rem; }
    .lp-tag { font-size: .9rem; }
}

/* ≤576: ужимаем заголовок и межстрочный, расширяем поля контейнера под край экрана */
@media (max-width: 575.98px) {
    .lp-hero-title { line-height: 1.12; }
    .lp-hero .container { padding-left: 12px; padding-right: 12px; }
    .lp-tag { font-size: .875rem; padding: .3rem .6rem; }
    .lp-hero-text p { margin-bottom: .875rem; }
}

/* ===== Карточный стек (контролы прижать вправо и адаптив) ===== */

.card-stack { position: relative; }

/* Контролы — вправо, с адаптивными отступами */
.card-stack .controls {
    display: flex;
    gap: 2em;
    grid-area: 4 / 2;
    z-index: calc((1 - min(1, var(--abs-p))) * var(--n, 1));
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 64px;
    padding-bottom: 128px;
}

/* Кнопки — адаптивные размеры */
.card-stack button {
    font-size: 1.8em;
}

@media (max-width: 1199.98px) {
    .card-stack img { height: 28em; }
    .card-stack .controls { gap: 1.25em; padding-right: 32px; padding-bottom: 80px; }
    .card-stack button { font-size: 1.6em; }
}

@media (max-width: 991.98px) {
    .card-stack { grid-gap: .5em 2em; }
    .card-stack img { height: 22em; aspect-ratio: 16/10; }
    .card-stack .controls { gap: 1em; padding-right: 24px; padding-bottom: 56px; }
    .card-stack button { font-size: 1.4em; }
}

@media (max-width: 575.98px) {
    .card-stack { grid-gap: .5em 1em; }
    .card-stack img { height: 16em; aspect-ratio: 16/10; }
    .card-stack .controls { gap: .75em; padding-right: 16px; padding-bottom: 32px; }
    .card-stack button { font-size: 1.2em; width: 2.25rem; aspect-ratio: 1 / 1; }
}

/*# sourceMappingURL=main.css.map */
