/*==============================================
Root Colors
===============================================*/


:root {
    --ronse-gray: #494949;
    --ronse-gray-rgb: 123, 100, 100;
    --ronse-general-color-rgb: 238, 33, 43;
    --ronse-second-color-rgb: 8, 44, 75;
    --ronse-white: #ffffff;
    --ronse-white-rgb: 255, 255, 255;
    --ronse-bdr-color: #DDDDDD;
    --ronse-bdr-color-rgb: 221, 221, 221;
}

body {
    font-family: var(--ronse-general-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ronse-general-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-family: var(--ronse-heading-font);
    text-transform: none;
    margin: 0 0 15px 0;
    font-weight: var(--ronse-heading-font-weight);
    letter-spacing: var(--ronse-heading-font-letter-spacing);
}

.bg-black {
    background-color: black;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea {
    border: 1px solid #ccc;
    border-radius: 0px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 5px;
    font-size: 14px;
    font-weight: 500;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none !important;
    border-color: var(--ronse-general-color);
}

/*==============================================
Breadcrumb
===============================================*/

.rs-hero-section {
    position: relative;
    width: 100%;
    height: 31.25rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.rs-hero-section .container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9;
}

.rs-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 45, 43, 0.8) 0%, rgba(33, 45, 43, 0.8) 100%);
    z-index: 1;
}

.rs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.25rem;
}

.rs-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: -0.0625rem;
}

.rs-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.875rem;
}

@media (max-width: 48rem) {
    .rs-hero-section {
        height: 25rem;
    }

    .rs-hero-title {
        font-size: 2.25rem;
    }

    .rs-hero-description {
        display: none;
    }
}

@media (max-width: 30rem) {
    .rs-hero-section {
        height: 18.75rem;
    }

    .rs-hero-title {
        font-size: 1.75rem;
    }

    .rs-hero-description {
        font-size: 0.875rem;
    }
}

.rs-hero-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    background-color: var(--ronse-general-color);
    width: max-content;
    padding: 0.3125rem 0.9375rem;
    border-radius: 0.9375rem 0;
    font-size: 0.95rem;
}

.rs-hero-list i {
    font-size: 1.2rem;
}

.rs-hero-list li {
    margin-right: 0.625rem;
}

.rs-hero-list li:after {
    content: "\F27B";
    margin-left: 0.325rem;
    font-family: bootstrap-icons !important;
    top: 0.125rem;
    position: relative;
}

.rs-hero-list li:last-child:after {
    content: none;
}

.rs-hero-list a {
    color: #fff;
    text-decoration: none;
}

.rs-hero-list a:hover {
    color: var(--ronse-second-color);
}

.rs-home-active {
    font-weight: 700;
}


/*==============================================
Faq One
===============================================*/
.section-title__title {
    color: var(--ronse-general-color);
    font-size: 3.125rem;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: none;
    margin: 0.625rem 0 0;
    letter-spacing: -0.0925rem;
    text-transform: uppercase;
}

.faq-one--service {
    position: relative;
    display: block;
    background: #f8f8f8;
}

.faq-one {
    position: relative;
    display: block;
    padding: 7.5rem 0 7.5rem;
    z-index: 1;
}

.faq-one::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../bsthe/lib/shape2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-one .row {
    align-items: flex-start;
}

.faq-one-accrodion {
    position: relative;
    display: block;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    background: var(--ronse-white);
    border: 0.0625rem solid var(--ronse-bdr-color);
    border-radius: 1.25rem;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 9;
}

.faq-one-accrodion .accrodion + .accrodion {
    margin-top: 1.25rem;
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 1.0625rem 1.5625rem 1.0625rem;
    padding-left: 1.25rem;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion .accrodion-title::before {
    position: absolute;
    top: -0.0625rem;
    left: -0.0625rem;
    right: -0.0625rem;
    bottom: 0;
    background: var(--ronse-second-color);
    border-radius: 1rem 1rem 0 0;
    height: 0;
    transition: all 0.4s ease;
    opacity: 0;
    content: "";
}

.faq-one-accrodion .accrodion.active .accrodion-title::before {
    height: 100%;
    opacity: 1;
}

.faq-one-accrodion .accrodion-title h4 {
    position: relative;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    padding-left: 3.125rem;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    letter-spacing: -0.5px;
}

.faq-one-accrodion .accrodion-title h4::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ronse-white);
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    font-weight: 600;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 1.875rem;
    height: 1.875rem;
    background: var(--ronse-general-color);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    content: "\F280";
    font-family: bootstrap-icons !important;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    color: var(--ronse-white);
    border: 0.0625rem solid var(--ronse-white);
    content: "\F280";
    font-family: bootstrap-icons !important;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    display: block;
    padding: 1.3125rem 1.875rem 1.4375rem;
}

.accrodion.active h4 {
    color: #fff;
    font-weight: 600;
}

.faq-one-accrodion .accrodion-content p {
    color: #333;
    margin: 0;
    line-height: 1.3rem;
    font-size: 1rem;
}

.faq-one__counter {
    position: relative;
    display: block;
    margin-left: 5rem;
}

.faq-one__counter-text {
    position: relative;
    display: block;
    margin-bottom: 2.6875rem;
}

.faq-one__counter-text p {
    color: var(--ronse-second-color);
}

.faq-one__counter-single {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--ronse-second-color);
    padding: 1.75rem 2.5rem 2.0625rem;
    padding-right: 2.1875rem;
    border-radius: 1.25rem;
    margin-top: 1.875rem;
}

.faq-one__counter-single-icon {
    position: relative;
    display: block;
    margin-right: 1.4375rem;
    z-index: 1;
}

.faq-one__counter-single-icon::before {
    position: absolute;
    top: -0.625rem;
    left: -0.625rem;
    border-top: 4.6875rem solid rgba(221, 221, 221, 0.1);
    border-right: 4.6875rem solid transparent;
    border-radius: 0.625rem;
    content: "";
    z-index: -1;
}

.faq-one__counter-single-icon span::before {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 3.75rem;
    line-height: 3.75rem;
    transition: all 600ms ease;
}

.faq-one__counter-single:hover .faq-one__counter-single-icon span::before {
    transform: rotateY(180deg);
}

.faq-one__counter-single-content {
    position: relative;
    display: block;
    flex: 1;
}

.faq-one__counter-single-content .count-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.faq-one__counter-single-content .count-box h2 {
    color: var(--ronse-white);
    font-size: 3.125rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0px;
}

.faq-one__counter-single-content .count-box .plus {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 3.125rem;
    font-weight: 700;
    top: -0.125rem;
}

.faq-one__counter-single-content p {
    color: var(--ronse-white);
    line-height: 1;
}

/*==============================================
Feature One
===============================================*/
.rs-features {
    position: relative;
    display: block;
    padding: 2.5rem 0 1rem;
    overflow: hidden;
    z-index: 1;
}

.rs-features .row {
    display: flex;
    flex-wrap: wrap;
}

.rs-features-single {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.rs-features-single .icon-box {
    position: absolute;
    left: 2.1875rem;
    top: 0;
    width: 5.625rem;
    height: 5.3125rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ronse-general-color);
    z-index: 2;
}

.rs-features-single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 3.125rem;
    line-height: 3.125rem;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.rs-features-single:hover .icon-box span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.rs-features-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 0.125rem solid #EFF3EA;
    border-radius: 1rem;
    padding: 4.5rem 2.1875rem 2.0625rem;
    overflow: hidden;
    word-break: break-word;
    background-color: #fff;
}

.rs-features-inner:hover {
    border: 0.125rem solid var(--ronse-second-color);
    background-color: var(--ronse-second-color);
}

.rs-features-inner:hover ul li, .rs-features-inner:hover h2 a, .rs-features-inner:hover p, .rs-features-inner:hover .btn-box a {
    color: #fff;
}

.rs-rem-1 {
    padding: 1.5rem;
}

.rs-border-none {
    border: none !important;
}

.rs-features-inner h2 {
    font-size: 1.15rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: capitalize;
    letter-spacing: -1px;
}

.rs-features-inner h2 a {
    color: var(--ronse-general-color);
}

.rs-features-inner h2 a:hover {
    color: var(--ronse-general-color);
}

.rs-features-inner p, .rs-features-inner ul li {
    margin: 0;
    flex-grow: 1;
    line-height: 1.3;
    font-size: 0.9rem;
    letter-spacing: -0.0525rem;
}

.rs-features-inner ul li {
    list-style: disc;
    margin-left: 15px;
    line-height: 1.2;
}

.rs-features-inner .btn-box {
    position: relative;
    display: block;
    margin-top: 1.5625rem;
}

.rs-features-inner .btn-box a {
    color: var(--ronse-general-color);
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.rs-features-inner .btn-box a:hover {
    color: var(--ronse-general-color);
}

.rs-features-inner .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 700;
    top: 0.125rem;
    padding-left: 0.125rem;
}

.rs-features-inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../bsthe/lib/shape1.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

/***
=============================================
Working Process One
=============================================
***/
.work-process-one {
    position: relative;
    display: block;
    z-index: 1;
}

.work-process-one .container {
    max-width: 105rem;
    width: 100%;
}

.work-process-one__tab {
    position: relative;
    display: block;
}


.work-process-one__tab .tabs-button-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ronse-second-color);
    padding: 3.75rem 0 3.25rem;
}

.work-process-one__tab .tabs-button-box li {
    margin-right: 6.484375rem;
}

.work-process-one__tab .tabs-button-box li:last-child {
    margin-right: 0;
}

.work-process-one__tab .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    cursor: pointer;
}

.work-process-one__tab .tabs-button-box .tab-btn-item .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.9375rem;
    height: 5.3125rem;
    margin: 0 auto 1.4375rem;
    border: 0.0625rem solid var(--ronse-white);
    border-radius: 0.625rem;
}

.work-process-one__tab .tabs-button-box .tab-btn-item .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 3.125rem;
    line-height: 3.125rem;
}

.work-process-one__tab .tabs-button-box .tab-btn-item h3 {
    color: var(--ronse-white);
    font-size: 1.1875rem;
    line-height: 1.8125rem;
    font-weight: 500;
    text-transform: capitalize;
}

.work-process-one .tabs-content {
    position: relative;
    display: block;
}

.work-process-one .tabs-content .tab {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.work-process-one .tabs-content .tab.tab-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.work-process-one__single-tab {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
    background: #fbfbfb;
}

.work-process-one .tabs-content .tab.tab-active .work-process-one__single-tab {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}

.work-process-one__single-tab-inner {
    position: relative;
    display: block;
}


.work-process-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.work-process-one__single-img img {
    width: 100%;
}

.work-process-one__single-content {
    position: relative;
    display: block;
    padding: 3.75rem 0 7.4375rem;
}

.work-process-one__single-content .container {
    max-width: 84.375rem;
    width: 100%;
}

.work-process-one__single-content .row {
    align-items: center;
}

.work-process-one__single-content-left {
    position: relative;
    display: block;
}


.work-process-one__single-content-left .section-title {
    padding-bottom: 2.25rem;
}

.work-process-one__single-content-list {
    position: relative;
    display: block;
}

.work-process-one__single-content-list li {
    position: relative;
    display: block;
    margin-bottom: 1.4375rem;
}

.work-process-one__single-content-list li:last-child {
    margin-bottom: 0;
}

.work-process-one__single-content-list li p {
    color: var(--ronse-second-color);
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-weight: 500;
    font-family: var(--ronse-font-two);
}

.work-process-one__single-content-list li p span {
    position: relative;
    display: inline-block;
    color: var(--ronse-general-color);
    font-size: 1.0625rem;
    line-height: 1.0625rem;
    top: 0.0625rem;
    margin-right: 0.1875rem;
    font-weight: 700;
}

.work-process-one__single-content-right {
    position: relative;
    display: block;
}

.work-process-one__single-content-right-text {
    position: relative;
    display: block;
    margin-bottom: 2rem;
}

.work-process-one__single-content-right-text p {
    margin: 0;
}

/***
=============================================
Working Process Two
=============================================
***/
.work-process-two {
    position: relative;
    display: block;
    background: var(--ronse-general-color);
    padding: 0 0 5.625rem;
    z-index: 1;
}

.section-title__tagline h4 {
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.section-title_white_tagline {
    color: var(--ronse-white);
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.work-process-two .section-title__title {
    color: var(--ronse-white);
}

.work-process-two__single {
    position: relative;
    display: block;
    border: 0.0625rem solid var(--ronse-white);
    padding: 6.1875rem 2.5rem 1.9375rem;
    border-radius: 1.25rem;
    margin-bottom: 1.875rem;
}

.work-process-two__single .counting-text {
    position: absolute;
    top: 1.875rem;
    right: 1rem;
    color: rgba(var(--ronse-white-rgb), 0.07);
    font-size: 7.8125rem;
    line-height: 0.9em;
    font-weight: 500;
    font-family: var(--ronse-font-two);
}

.work-process-two__single-icon {
    position: relative;
    display: block;
    margin-bottom: 1.25rem;
}

.work-process-two__single-icon span {
    position: relative;
    display: block;
    line-height: 0;
}

.work-process-two__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 3.75rem;
    line-height: 3.75rem;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.work-process-two__single:hover .work-process-two__single-icon span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.work-process-two__single-title {
    position: relative;
    display: block;
}

.work-process-two__single-title h2 {
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-weight: 500;
    text-transform: capitalize;
}

.work-process-two__single-title h2 a {
    color: var(--ronse-white);
}

.work-process-two__single-title h2 a:hover {
    color: var(--ronse-general-color);
}

/*==============================================
Service One
===============================================*/
.service-one {
    position: relative;
    display: block;
    background: var(--ronse-second-color);
    padding: 7.5rem 0 7.5rem;
    z-index: 1;
}

.service-one .row {
    align-items: center;
}

.service-one__content {
    position: relative;
    display: block;
}

.service-one__content .section-title {
    padding-bottom: 1.1875rem;
}

.service-one__content .section-title__title {
    color: var(--ronse-white);
}

.service-one__content-text {
    position: relative;
    display: block;
}

.service-one__content-text p {
    color: var(--ronse-white);
}


.service-one__content-bottom {
    position: relative;
    display: block;
    margin-top: 3rem;
}

.service-one__single {
    position: relative;
    display: block;
}

.service-one__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 0.0625rem solid var(--ronse-white);
    border-radius: 1.25rem;
    margin-bottom: 1.0625rem;
}

.service-one__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 2.8125rem;
    line-height: 2.8125rem;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.service-one__single:hover .service-one__single-icon span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.service-one__single h2 {
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1.125rem;
}

.service-one__single h2 a {
    color: var(--ronse-white);
}

.service-one__single h2 a:hover {
    color: var(--ronse-general-color);
}

.service-one__single p {
    color: var(--ronse-white);
}

.service-one__video {
    position: relative;
    display: block;
    margin-left: 2.8125rem;
}

.service-one__video-img {
    position: relative;
    display: block;
    border-radius: 1.25rem;
    max-width: 36.5625rem;
    width: 100%;
    overflow: hidden;
}

.service-one__video-img img {
    width: 100%;
}

.service-one__video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.5rem;
    height: 7.5rem;
    margin: 0 auto;
    z-index: 2;
}

.service-one__video-box a {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.service-one__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.625rem;
    height: 5.625rem;
    line-height: 5.625rem;
    text-align: center;
    font-size: 1.5625rem;
    color: var(--ronse-general-color);
    background-color: var(--ronse-white);
    border-radius: 50%;
    margin: 0 auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-one__video-icon:hover {
    color: var(--ronse-white);
    background: var(--ronse-general-color);
}

.service-one__video-icon::before {
    position: absolute;
    top: -0.9375rem;
    left: -0.9375rem;
    right: -0.9375rem;
    bottom: -0.9375rem;
    border: 0.0625rem solid var(--ronse-white);
    border-radius: 50%;
    content: "";
}

.service-one__video-box .border-animation {
    position: absolute;
    top: -0.9375rem;
    left: -0.9375rem;
    bottom: -0.9375rem;
    right: -0.9375rem;
    border: 0.0625rem solid var(--ronse-white);
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
}

.service-one__video-box .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.service-one__video-box .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}


/*==============================================
Service Two
===============================================*/
.service-two {
    position: relative;
    display: block;
    background: var(--ronse-white);
    padding: 0 0 5.625rem;
    z-index: 1;
}

.service-two::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--ronse-second-color);
    height: 20rem;
    content: "";
    z-index: -1;
}

.service-two__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 3.5625rem;
}

.service-two__top .section-title {
    padding-bottom: 0;
}

.service-two__top-btn {
    position: relative;
    display: block;
    top: -0.8125rem;
}

.service-two__single {
    position: relative;
    display: block;
    background: #f8f8f8;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.875rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--ronse-general-color);
    border-bottom: 5px solid var(--ronse-second-color);
}

.service-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.service-two__single-title {
    position: relative;
    display: block;
}

.service-two__single-title h2 {
    font-size: 1.3rem;
    line-height: 1.3rem;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: -0.0625rem;
}

.service-two__single-title h2 a {
    color: var(--ronse-second-color);
}

.service-two__single-title h2 a:hover {
    color: var(--ronse-general-color);
}

.service-two__single-img {
    position: relative;
    display: block;
    background: var(--ronse-second-color);
    overflow: hidden;
}

.service-two__single-img img {
    transition: 0.5s;
    background-size: cover;
    width: 100%;
}

.service-two__single-img img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.service-two__single:hover .service-two__single-img img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 0.6;
    filter: blur(0);
}

.service-two__single-img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.service-two__single:hover .service-two__single-img img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.service-two__single-img-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    background: var(--ronse-general-color);
    border-radius: 50%;
    color: var(--ronse-white);
    opacity: 0;
    transition: opacity 500ms ease, transform 500ms ease;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-two__single:hover .service-two__single-img-link {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
}

.service-two__single-img-link:hover {
    background: var(--ronse-general-color);
    color: var(--ronse-white);
}

.service-two__single-img-link span::before {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 700;
}


/*==============================================
Faq One Service
===============================================*/
.faq-one--service {
    position: relative;
    display: block;
    background: #f8f8f8;
}

/*==============================================
Service Details
===============================================*/
.service-details {
    position: relative;
    display: block;
    padding: 7.5rem 0 7.5rem;
    z-index: 1;
}

.service-details__content {
    position: relative;
    display: block;
}

.service-details__content-img {
    position: relative;
    display: block;
    border-radius: 1.25rem;
    background: var(--ronse-second-color);
    overflow: hidden;
}

.service-details__content-img img {
    width: 100%;
    transition: all 500ms ease;
}

.service-details__content-img:hover img {
    opacity: 0.5;
    transform: scaleY(1.05);
}

.service-details__content-img .icon-box {
    position: absolute;
    left: 1.875rem;
    bottom: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.25rem;
    height: 6.25rem;
    background: var(--ronse-general-color);
    border-radius: 0.625rem;
    overflow: hidden;
    z-index: 5;
}

.service-details__content-img .icon-box span {
    position: relative;
    display: block;
}

.service-details__content-img .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 4.0625rem;
    line-height: 4.0625rem;
}


.service-details__content-text1 {
    position: relative;
    display: block;
    margin-top: 2.1875rem;
}

.service-details__content-text1 h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
    font-weight: 900;
    text-transform: capitalize;
    margin-bottom: 1.5625rem;
}

.service-details__content-text1 .text1 {
    margin: 0;
    margin-bottom: 1.25rem;
}

.service-details__content-text1 .text2 {
    margin: 0;
    margin-bottom: 1.25rem;
}

.service-details__content-text1 .text3 {
    margin: 0;
}

.service-details__work-process {
    position: relative;
    display: block;
    margin-top: 2.0625rem;
}

.service-details__work-process .work-process-two__single {
    background: var(--ronse-second-color);
    border: none;
}

.service-details__work-process .work-process-two__single-icon span::before {
    color: var(--ronse-general-color);
}

.service-details__content-text2 {
    position: relative;
    display: block;
    margin-top: 0.125rem;
}

.service-details__content-text2 p {
    margin: 0;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__sidebar-single {
    position: relative;
    display: block;
    padding: 2.0625rem .7rem;
    border-radius: 0.625rem;
    border-top: 5px solid var(--ronse-general-color);
    border-bottom: 5px solid var(--ronse-second-color);
}

.service-details__sidebar-single + .service-details__sidebar-single {
    margin-top: 1.875rem;
}

.service-details__sidebar-single .title-box {
    position: relative;
    display: block;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5625rem;
}

.service-details__sidebar-single .title-box::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4.375rem;
    height: 0.1875rem;
    background: var(--ronse-general-color);
    content: "";
}

.service-details__sidebar-single .title-box h2 {
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 700;
}

.service-details__sidebar-single-service {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.service-details__sidebar-single-service li {
    position: relative;
    display: block;
}

.service-details__sidebar-single-service li + li {
    margin-top: 0.625rem;
}

.service-details__sidebar-single-service li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*  border: 0.0625rem solid var(--ronse-bdr-color); */
    border-radius: 0.65rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.875rem;
    font-weight: 600;
    padding: 0.55rem 1.875rem 0.55rem;
    overflow: hidden;
    z-index: 1;
    background-color: #fff;
}

.service-details__sidebar-single-service li a:hover,
.service-details__sidebar-single-service li a.active {
    color: var(--ronse-white);
    border-color: var(--ronse-general-color);
}

.service-details__sidebar-single-service li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--ronse-general-color);
    transform: scale(1, 0);
    perspective: 400px;
    visibility: hidden;
    transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
    transform-origin: bottom center;
    z-index: -1;
}

.service-details__sidebar-single-service li a:hover::before,
.service-details__sidebar-single-service li a.active::before {
    transform: scale(1, 1);
    visibility: visible;
    transform-origin: top center;
}

.service-details__sidebar-single-service li a span {
    position: relative;
    display: block;
    line-height: 0;
}

.service-details__sidebar-single-service li a span::before {
    position: relative;
    display: block;
    font-size: 0.9375rem;
    line-height: 0.9375rem;
}

.service-details__sidebar-single-contact {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__sidebar-single-contact .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.3125rem;
    height: 5.3125rem;
    background: var(--ronse-general-color);
    border-radius: 50%;
    overflow: hidden;
}

.service-details__sidebar-single-contact .icon-box span {
    position: relative;
    display: block;
    line-height: 0;
}

.service-details__sidebar-single-contact .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.service-details__sidebar-single-contact .content-box {
    position: relative;
    display: block;
    margin-left: 1.25rem;
    flex: 1;
}

.service-details__sidebar-single-contact .content-box p {
    color: var(--ronse-second-color);
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin-bottom: 0.5rem;
}

.service-details__sidebar-single-contact .content-box h2 {
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 500;
}

.service-details__sidebar-single-contact .content-box h2 a {
    color: var(--ronse-second-color);
}

.service-details__sidebar-single-contact .content-box h2 a:hover {
    color: var(--ronse-general-color);
}


/*==============================================
Thm Btn Css
===============================================*/
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    outline: none !important;
    background-color: var(--ronse-general-color);
    color: var(--ronse-white);
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0.85rem 1.25rem;
    overflow: hidden;
    border-radius: 0.4375rem;
    transition: all 0.5s linear;
    z-index: 1;
}

.thm-btn:hover {
    background-color: var(--ronse-second-color);
}

.thm-btn > span::before {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    top: 0.125rem;
    margin-left: 0.125rem;
}

.thm-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    background-color: var(--ronse-general-color);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.thm-btn::after {
    position: absolute;
    background-color: var(--ronse-general-color);
    bottom: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.thm-btn:hover {
    color: var(--ronse-white);
}

/*==============================================
Counter Two
===============================================*/
.counter-two {
    position: relative;
    display: block;
    background: var(--ronse-white);
    padding: 0px 0px 90px;
    z-index: 1;
}

.counter-two__single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border: 1px solid var(--ronse-bdr-color);
    padding: 38px 25px 43px;
    border-radius: 20px;
}

.counter-two__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--ronse-general-color);
    border-radius: 50%;
    overflow: hidden;
}

.counter-two__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--ronse-white);
    font-size: 35px;
    line-height: 35px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-two__single:hover .counter-two__single-icon span::before {
    transform: scale(0.9);
}

.counter-two__single-content {
    position: relative;
    display: block;
    margin-left: 18px;
}

.counter-two__single-content .count-box {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-two__single-content .count-box h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 5px;
}

.counter-two__single-content .count-box .plus {
    position: relative;
    display: inline-block;
    color: var(--ronse-second-color);
    font-size: 50px;
    font-weight: 700;
    top: -2px;
}

.counter-two__single-content p {
    color: var(--ronse-second-color);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
.rs-heading {
    margin-bottom: 30px;
    width: 50%;
    margin: 0 auto;
    letter-spacing: -1px;
}

.rs-heading p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--ronse-general-color);
    font-size: 1.25rem;
}

.rs-heading h2 {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 0;
    letter-spacing: -2px;
}

/**
======================================================
Details
======================================================
**/
.rs-details {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.rs-cover-img {
    border-radius: 20px 5px;
    overflow: hidden;
    margin-bottom: 35px;
    border-top: 5px solid var(--ronse-general-color);
    border-bottom: 5px solid var(--ronse-second-color);
}

.rs-content-detail {
    position: relative;
    display: block;
}

.rs-content-detail-img1 {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
}

.rs-content-detail-tag .title {
    position: relative;
    display: block;
}

.rs-content-detail-tag .title h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
}

.rs-content-detail-tag ul {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 23px;
}

.rs-content-detail-tag ul li {
    position: relative;
    display: block;
}

.rs-content-detail-tag ul li + li {
    margin-left: 17px;
}

.rs-content-detail-tag ul li a {
    position: relative;
    display: inline-block;
    color: var(--ronse-gray);

    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.rs-content-detail-tag ul li a:hover {
    color: var(--ronse-general-color);
}

.rs-content-detail-social {
    position: relative;
    display: block;
}

.rs-content-detail-social .social-links {
    position: relative;
    display: flex;
    align-items: center;
}

.rs-content-detail-social .social-links a + a {
    margin-left: 10px;
}

.rs-content-detail-social .social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--ronse-bdr-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.rs-content-detail-social .social-links a:hover {
    border-color: transparent;
    background-color: var(--ronse-general-color);
}

.rs-content-detail-social .social-links a span {
    color: var(--ronse-second-color);
    font-size: 18px;
    line-height: 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.rs-content-detail-social .social-links a:hover span {
    color: var(--ronse-white);
}

.rs-details__next-previous {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

.rs-details__next-previous li {
    position: relative;
    display: block;
}

.rs-details__next-previous li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--ronse-gray);
    font-size: 20px;
    line-height: 30px;

    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.rs-details__next-previous li a:hover {
    color: var(--ronse-general-color);
}

.rs-details__next-previous li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--ronse-bdr-color);
    color: var(--ronse-second-color);
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.rs-details__next-previous li a span.two {
    margin-right: 0;
    margin-left: 20px;
}

.rs-details__next-previous li a:hover span {
    color: var(--ronse-white);
    border-color: var(--ronse-general-color);
    background-color: var(--ronse-general-color);
}

.rs-details__comment {
    position: relative;
    display: block;
    padding-top: 98px;
    padding-right: 85px;
}

.rs-details__comment .inner-title {
    position: relative;
    display: block;
    padding-bottom: 82px;
}

.rs-details__comment .inner-title h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
}

.rs-details__comment ul {
    position: relative;
    display: block;
}

.rs-details__comment ul li {
    position: relative;
    display: block;
    padding-left: 110px;
}

.rs-details__comment ul li + li {
    margin-top: 43px;
}

.rs-details__comment-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
}

.rs-details__comment-img img {
    width: auto;
}

.rs-details__comment-content {
    position: relative;
    display: block;
}

.rs-details__comment-content .top {
    position: relative;
    display: block;
}

.rs-details__comment-content .top h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 4px;
}

.rs-details__comment-content .top p {
    margin: 0;
}

.rs-details__comment-content .text {
    position: relative;
    display: block;
    padding-top: 20px;
}

.rs-details__comment-content .text p {
    margin: 0;
}

.rs-details__form {
    position: relative;
    display: block;
    margin-top: 58px;
    background-color: transparent;
    border: 1px solid var(--ronse-bdr-color);
    border-radius: 20px;
    padding: 58px 60px 60px;
}

.rs-details__form .inner-title {
    position: relative;
    display: block;
    padding-bottom: 45px;
}

.rs-details__form .inner-title h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 19px;
}

.rs-details__form .inner-title p {
    margin: 0;
}

#rs-details-form {
    position: relative;
    display: block;

}

#rs-details-form .form-group {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

#rs-details-form .form-group label {
    position: relative;
    display: inline-block;
    color: var(--ronse-second-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    padding-bottom: 12px;
}

#rs-details-form .form-group input[type="text"],
#rs-details-form .form-group textarea {
    position: relative;
    display: block;
    height: 70px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--ronse-gray);
    padding: 0PX 20PX 0PX;
    outline: none;
    font-size: 20px;
    font-weight: 400;
    color: var(--ronse-gray);
    border-radius: 20px;

}

#rs-details-form .form-group textarea {
    height: 130px;
    padding-top: 20px;
    padding-bottom: 10px;
}

#rs-details-form .button-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 8px;
}

#rs-details-form .button-box .thm-btn {
    width: 100%;
}


/*==============================================
About Two
===============================================*/
.about-two {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
    z-index: 1;
    overflow: hidden;
}

.about-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background-color: var(--ronse-general-color);
    z-index: -1;

}

.about-two .row {
    align-items: center;
}

.about-two__img {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    z-index: 1;
    border: 5px solid #fff;
    border-radius: 25px;
}

.about-two__img .shape2 {
    position: absolute;
    bottom: -35px;
    right: -35px;
    z-index: -1;
}

.about-two__img-inner {
    position: relative;
    display: block;
    border-radius: 20px;

    overflow: hidden;
    z-index: 1;
}

.about-two__img-inner .shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.about-two__img-inner img {
    width: 100%;
    transition: all 500ms ease;
}

.about-two__img:hover .about-two__img-inner img {
    opacity: 0.7;
}

.about-two__experience-box {
    position: absolute;
    left: 30px;
    bottom: 23px;
    z-index: 3;
}

.about-two__experience-box .count-box {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__experience-box .count-box h2 {
    color: #fff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    margin-bottom: 0;
}

.about-two__experience-box .count-box .plus {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    top: -3px;
}

.about-two__experience-box p {
    color: #fff;
}


.about-two__content {
    position: relative;
    display: block;
    margin-left: -20px;
}

.about-two__content .section-title {
    padding-bottom: 19px;
}

.about-two__content-text {
    position: relative;
    display: block;
}

.about-two__content-text p {

    margin: 0;
}

.about-two__content-middle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 23px;
}

.about-two__content-list {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.about-two__content-list li {
    position: relative;
    display: block;
}

.about-two__content-list li + li {
    margin-top: 7px;
}

.about-two__content-list li p {

    font-weight: 600;
    margin-bottom: 3px;
}

.icon-verified {
    color: var(--ronse-general-color);
}

.about-two__content-list li p span::before {
    position: relative;
    display: inline-block;

    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    top: 2px;
    margin-right: 4px;
}

.about-two__counter-box {
    position: relative;
    display: block;
    background: var(--ronse-general-color);
    padding: 28px 40px 32px;
    border-radius: 20px;
}

.about-two__counter-box-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__counter-box-inner .icon-box {
    position: relative;
    display: block;
}

.about-two__counter-box-inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 55px;
    line-height: 55px;
}


.about-two__counter-box-inner .count-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.about-two__counter-box-inner .count-box h2 {
    color: #fff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 0;
}

.about-two__counter-box-inner .count-box .k {
    color: #fff;
    font-size: 47px;
    line-height: 47px;
    font-weight: 700;
    top: -1px;
}

.about-two__counter-box-inner .count-box .plus {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    top: 2px;
    margin-left: 1px;
}

.about-two__counter-box {
    position: relative;
    display: block;
}

.about-two__counter-box p {
    color: #fff;
    font-family: var(--reroof-font-two);
    margin-top: 6px;
}

.about-two__content-text2 {
    position: relative;
    display: block;
    margin-top: 33px;
}

.about-two__content-text2 p {

    font-weight: 600;
}

.about-two__btn {
    position: relative;
    display: block;
    margin-top: 38px;
}

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

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

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 114px 0 120px;
    z-index: 1;
}

.contact-page__contact-info {
    position: relative;
    display: block;
}

.contact-page__contact-info .title-box {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.contact-page__contact-info .title-box h2 {
    font-size: 45px;
    line-height: 1.0em;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-page__contact-info-box {
    position: relative;
    display: block;
}

.contact-page__contact-info-single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 3px solid #f8f8f8;
    padding: 0;
    background-color: #dee2e6;
    border-radius: 10px;
}

.contact-page__contact-info-single:last-child {
    margin-bottom: 0;
}

.contact-page__contact-info-single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f8f8f8;
    border-radius: 5px;
    overflow: hidden;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__contact-info-single:hover .icon-box {
    background: var(--ronse-general-color);
}

.contact-page__contact-info-single .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--ronse-general-color);
    font-size: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__contact-info-single:hover .icon-box span {
    color: var(--ronse-white);
}

.contact-page__contact-info-single .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
    line-height: 1;
}

.contact-page__contact-info-single .content-box h3 {
    font-size: 1.1rem;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1px;
    color: #333;
}

.contact-page__contact-info-single .content-box p {
    margin: 0;
    color: #333;
    line-height: 1.2rem;
}

.contact-page__contact-info-single .content-box p a {
    color: var(--ronse-general-color);
}

.contact-page__contact-info-single .content-box p a:hover {
    color: var(--ronse-second-color);
}

.contact-page__contact-info-bottom {
    position: relative;
    display: block;
}

.contact-page__contact-info-bottom .text-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.contact-page__contact-info-bottom .text-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.contact-page__contact-info-bottom .text-box p {
    margin: 0;
}

.contact-page__contact-info-bottom .social-links {
    position: relative;
    display: block;
}

.contact-page__contact-info-bottom .social-links ul {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-page__contact-info-bottom .social-links ul li {
    position: relative;
    display: block;
}

.contact-page__contact-info-bottom .social-links ul li + li {
    margin-left: 10px;
}

.contact-page__contact-info-bottom .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f8f8f8;
    border: 1px solid #eee;
    color: #333;
    border-radius: 10px;
}

.contact-page__contact-info-bottom .social-links ul li a:hover {
    color: #fff;
    background: var(--ronse-general-color);
    border-color: var(--ronse-general-color);
}

.contact-page__contact-info-bottom .social-links ul li a span::before {
    position: relative;
    display: inline-block;
    font-size: 17px;
}


.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__form .title-box {
    position: relative;
    display: block;
    margin-bottom: 47px;
}

.contact-page__form .title-box h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-page__form-box {
    position: relative;
    display: block;
}

.contact-page__form-box .input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-page__form-box .input-box .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.contact-page__form-box .input-box .icon span::before {
    position: relative;
    display: inline-block;
    color: #333;
    font-size: 15px;
}

.contact-page__form-box .input-box input[type="text"],
.contact-page__form-box .input-box input[type="email"],
.contact-page__form-box .input-box textarea {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(var(--reroof-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--reroof-gray);
    border-radius: 2px;
    font-family: var(--reroof-font);
}

.contact-page__form-box .input-box .select-box {
    width: 100%;
}

.contact-page__form-box .input-box .nice-select {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(var(--reroof-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    line-height: 48px;
    font-weight: 400;
    color: var(--reroof-gray);
    border-radius: 2px;
    font-family: var(--reroof-font);
    float: none;
}

.contact-page__form-box .input-box .nice-select:after {
    position: absolute;
    top: 16px;
    right: 23px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    margin-top: 0px;
    z-index: 10;
}

.contact-page__form-box .input-box .nice-select .option {
    color: #fff;
}

.contact-page__form-box .input-box textarea {
    height: 120px;
    padding-top: 11px;
    outline: none;
    resize: none;
}

.contact-page__form-box .input-box .icon.style2 {
    top: 11%;
    transform: translateY(0%);
}

.btn-rs-1 {
    background-color: var(--ronse-general-color);
}

.btn-rs-1:hover {
    background-color: var(--ronse-second-color);
}

.btn-rs-2 {
    background-color: var(--ronse-second-color);
}

.btn-rs-2:hover {
    background-color: var(--ronse-general-color);
}

.rs-mobile-menu li {
    border-bottom: 1px dashed #eee;
    padding: 10px 0;
}

.rs-mobile-menu li a {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: block;
}

.rs-mobile-menu .sub-menu li a {
    padding: 10px 0;
}

.rs-mobile-menu li a:hover {
    color: var(--ronse-second-color);
}

blockquote {
    padding: 2rem;
    position: relative;
    border-top: 10px solid var(--ronse-general-color);
    border-bottom: 10px solid var(--ronse-general-color);
    border-radius: 1rem;

}

blockquote::before {
    content: "";
    background-color: var(--ronse-general-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 1rem;
    opacity: 0.1;

}

/** Blog **/

.blog-one {
    position: relative;
    display: block;
    z-index: 1;
}

.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-one__single-img {
    position: relative;
    display: block;
}

.blog-one__single-img .date-box {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--ronse-general-color);
    padding: 8px 30px 7px;
    border-top-right-radius: 20px;
    z-index: 2;
}

.blog-one__single-img .date-box h4 {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.blog-one__single-img-inner {
    position: relative;
    display: block;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #333;
    overflow: hidden;
}

.blog-one__single-img-inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img-inner img {
    opacity: 0.5;
    transform: scale(1);
}

.blog-one__single-content {
    position: relative;
    display: block;
    border: 1px solid #eee;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 27px 30px 27px;
}

.blog-one__single-content h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-one__single-content h2 a {
    color: #333;
}

.blog-one__single-content h2 a:hover {
    color: var(--ronse-general-color);
}

.blog-one__single-content .btn-box {
    position: relative;
    display: block;
}

.blog-one__single-content .btn-box a:hover {
    color: var(--ronse-general-color);
}

.blog-one__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    top: 1px;
    margin-left: 3px;
}

.rs-link {
    color: #333;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.rs-mobile-menu .menu-item-has-children > a:after {
    background: var(--ronse-general-color);
    color: #fff;
    font-size: 1rem;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

tbody, td, tfoot, th, thead, tr {
    border: 1px solid #e1dfdf;
    padding: 5px 10px;
}

.rs-item-card {
    border: 1px solid #eee;
    padding: 1rem 1.5rem;
    border-radius: 1rem 0;
}

.rs-i-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.rs-title-new {
    position: relative;
    width: 100%;
}

.rs-title-new .rs-t-title {
    font-size: 1.2rem;
    background-color: var(--ronse-general-color);
    width: max-content;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 1rem 1rem 0 0;
}

.rs-title-new:after {
    content: "";
    position: absolute;
    background-color: var(--ronse-general-color);
    width: 100%;
    height: 2px;
}

.row > div:nth-child(even) .rs-item-card {
    background-color: #f1f1f1; /* istediğin renk */
}

.faq-one__counter-single-content p {
    margin-bottom: 0px;
}

.fixed-contact-btn {
    position: fixed;
    right: 0px;
    z-index: 9999;
    width: 220px;
    height: 50px;
    padding: 0 20px;
    font-weight: bold;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .fixed-contact-btn span {
    }
}

#rs_slider .swiper-slide .btn {
    font-weight: 600;
    letter-spacing: -1px;
}
.blog-one__single {
    transition: all 0.3s ease;
}

.blog-one__single.blurred {
    filter: blur(3px);
    opacity: 0.5;
}