/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #058BC0;
    --secondary: #F3AB1B;


}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #F6F7F9;
    overflow-x: hidden;
    height: 100%;
    font-family: "Albert Sans", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4 {
    font-family: "Exo 2", sans-serif;
}

h5,
h6 {
    color: #000;

}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 100px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}



/* NAV HEADER CSS */

header {
    padding: 0 0 7px 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 45px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #1F1F25;
    text-transform: capitalize;
    font-weight: bold;
    padding: 0 0;
    display: inline-block;
}

ul.rightbars {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.topbar {
    background: #308cc5;
    padding: 11px 0;
}

ul.leftbars {
    display: flex;
    align-items: center;
    gap: 2rem;
}

ul.leftbars li {
    color: #fff;
}

ul.leftbars li a {
    color: #fff;
}

ul.leftbars li i {
    color: #F3AB1B;
    margin-right: 10px;
}

ul.rightbars li span {
    color: #fff;
    font-size: 1rem;
}

ul.rightbars li a {
    color: #fff;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 850px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 60px;
    line-height: 1;
    font-weight: bold;
    text-transform: capitalize;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 1rem;
    font-size: 1.25rem;
    margin-bottom: 0;
}


.slideOne .btn-group {
    gap: 30px;
    margin-top: 45px;
}

.themeBtn.yellowbtn {
    background: #F3AB1B;
}

.palybtn h5 {
    font-size: 1.375rem;
    color: #fff;
    margin: 0;
}

.palybtn {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.palybtn a i {
    background: #fff;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
}

.palybtn a {
    position: relative;
}

.palybtn a::before {
    position: absolute;
    content: "";
    border: 2px solid rgb(255 255 255 / 22%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    left: -60%;
    top: -50%;
}

.palybtn {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* !MAIN HERO SLIDER CSS */



.mainHead {
    font-size: 3rem;
    font-weight: bold;
    color: #1F1F25;
    text-transform: capitalize;
}

.subHead {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: capitalize;
    
}

.subHead span {
    color: #fff;
    background: var(--secondary);
    padding: 3px 7px;
    border-radius: 3px;
}


/* trusted-sec */

.trusted-top {
    text-align: center;
    margin-bottom: 3rem;
}

.trusted-wrap {
    text-align: center;
    border-radius: 15px;
    background: #fff;
    padding: 50px 34px;
}

.trusted-wrap figure {
    border: 1px solid #E9E9E9;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: auto;
}

.trusteccntnt h3 {
    font-weight: bold;
    color: #1F1F25;
}

.trusteccntnt p {
    font-size: 1rem;
    font-weight: 600;
    color: #74787C;
    line-height: 1.7;
    margin: 1rem 0 29px 0;
}

.trusteccntnt {
    margin-top: 30px;
}

/* trusted-sec */


/* about escalation */
.escaltion-wrap p {
    font-size: 1rem;
    font-weight: 500;
    color: #74787C;
    line-height: 1.7;
}

.escalationcntnt {
    display: flex;
    align-items: center;
    gap: 2rem;
}

ul.escallist li {
    font-size: 1rem;
    font-weight: 600;
    color: #1F1F25;
}

ul.escallist li+li {
    margin-top: 10px;
}

.btn-escaltion {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 4rem;
}

.video a {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.video a span {
    color: #1F1F25;
    font-size: 1rem;
    font-weight: 600;
}

.video a i {
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
}

.video a::before {
    position: absolute;
    content: "";
    border: 2px solid var(--secondary);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    left: -18%;
}

figure.soloresca1 {
    position: relative;
}

.experienceimg {
    position: absolute;
    bottom: 4%;
    display: flex;
    align-items: center;
    left: -6%;
    /* border-radius: 0 10px 10px 0; */
    /* background: #fff; */
}

.experienceimg h3 {
    font-size: 1.125rem;
    font-weight: bold;
    width: 44%;
    border-radius: 0 10px 10px 0;
    background: #fff;
    padding: 30px 10px;
    margin: 0;
}

figure.soloresca1 img {
    width: 100%;
}

figure.soloresca1::before {
    position: absolute;
    content: "";
    background: var(--secondary);
    width: 6px;
    height: 550px;
    left: -10%;
    bottom: 1%;
    border-radius: 20px;
}

figure.soloresca1::after {
    position: absolute;
    content: "";
    background: var(--secondary);
    width: 6px;
    height: 200px;
    left: -10%;
    top: 1%;
    border-radius: 20px;
}

.solor-escalation {
    padding-top: 2rem;
}

.solor-escalation .nav {
    gap: 20px;
    padding: 21px 0;
    border: 0;
}

.solor-escalation .nav-item {
    font-size: 1rem;
    font-family: var(--playfair);
    color: var(--black);
    font-weight: 600;
    border-radius: 5px;
    background: #fff;
    padding: 15px 30px;
}

.solor-escalation .nav-item.active {
    color: #fff;
    background: var(--primary);
}

/* about escalation */

/* stay-power */
.stay-power {
    background: #132241;
}

.stay-head {
    text-align: center;
    margin-bottom: 2rem;
}

.staycntnt {
    background: #fff;
    padding: 0 0 0 20px;
    border-radius: 0 0 10px 10px;
}

.staycntnt h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1F1F25;
    margin-top: 30px;
}

.staycntnt p {
    font-size: 1rem;
    color: #74787C;
    line-height: 1.6;
    margin-bottom: 27px;
}

.staycntnt .themeBtn {
    margin-left: auto;
    display: flex;
    align-items: end;
    justify-content: end;
    width: fit-content;
    border-radius: 10px 0 10px 0;
}

.staycntnt .themeBtn i {
    margin-left: 5rem;
}

.staycntnt figure {
    border: 1px solid #EDEDED;
    width: fit-content;
    padding: 1rem;
    border-radius: 5px;
    background: #fff;
    position: relative;
    margin-top: -40px;
}

.staywrap figure img {
    width: 100%;
}

.staywrap {
    border-radius: 10px;
}

ul.staylist {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    gap: 1.5rem;
    padding-top: 4rem;
    border-top: 1px solid #ffffff17;
}

ul.staylist li {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}

ul.staylist li a {
    color: #fff;
    font-size: 1.25rem;
}

ul.staylist li strong {
    color: #F3AB1B;
    font-weight: 500;
}

/* stay-power */


/* faq-sec */


.faqs-section #accordion .card {
    color: var(--white);
}

.faqs-title .mainHead {
    font-size: 3.4375rem;
}

.faqs-section #accordion .card {
    border: 0;
    background: #fff;
    margin-bottom: 20px;
    padding: 10px 25px;
    box-shadow: 0 4px 3px rgb(0 0 0 / 10%);
}

.faqs-section .card .subHeading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F1F25;
    font-family: 'Exo 2';
}

.faqs-section #accordion .card .btn-link {
    --height: 2.5rem;
    --width: 3.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    /* padding: 1rem 2rem; */
    text-transform: uppercase;
    /* background-color: #F3F3F3; */
    /* margin: 1rem 0 0; */
    border-radius: 0;
    justify-content: space-between;
}

.faqs-section #accordion .card .btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--height);
    margin-right: 1rem;
    font-size: 1.875rem;
}

.faqs-section #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: auto;
    color: #fff;
    background: #058bc0a3;
    border-radius: 50%;
    /* margin-left: 0px; */
}

.faqs-section #accordion .card .btn-link i::before {
    content: "\f068";
}

.faqs-section #accordion .card .btn-link.collapsed i::before {
    content: "\f067";
}

.faqs-section #accordion .card .card-body {
    padding: 1rem 0;
}

.faqs-section #accordion .card .card-body p {
    font-size: 1rem;
    color: #6E777D;
    margin: 0;
    line-height: 1.6;
}



.faqs-title {
    text-align: center;
}

.faqwatch {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.faqwatch h5 {
    font-size: 1rem;
    color: #000;
    font-weight: bold;
    margin-left: 3rem;
}

.faqwatch a i {
    color: #fff;
    background: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.faqwatch a {
    position: relative;
    margin-left: -2rem;
}

.faqwatch a::before {
    position: absolute;
    content: "";
    background: rgb(5 139 192 / 30%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    left: -35px;
    top: -36px;

}

figure.faqsimgs {
    position: relative;
}

figure.faqsimgs::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 460px;
    height: 230px;
    right: 11%;
    z-index: -1;
    top: -10%;
    border-radius: 10px;
}

.faqtop {
    margin-bottom: 2rem;
}

/* faq-sec */


/* / Blog-Sec Css Start / */
.blog-sec {
    padding: 4rem 0;
    background: #F6F7F9;
}

.blog-content {
    padding: 40px;
    background: #FFFFFF;
}

.blog-content ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.blog-content ul li {
    color: #74787C;
    font-size: 1rem;
    font-weight: 500;
    line-height: 27px;
}

.blog-content ul li i {
    color: #058BC0;
    margin-right: 10px;
}

.blog-content h2 {
    color: #1F1F25;
    font-size: 24px;
    font-weight: bold;
    line-height: 29px;
}

.blog-content .details {
    display: inline-block;
    padding: 19px 40px;
    border: 1px solid #058BC0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 19px;
    color: #1F1F25;
    margin-top: 20px;
}

.blog-content .details i {
    transform: rotate(320deg);
    margin-left: 3px;
}

.blogtop {
    text-align: center;
    margin-bottom: 2rem;
}

/* / Blog-Sec Css End  / */


/* reated-section */
.reated-section {
    padding: 0 5rem;
    background: #132241;
}

.customerwrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.customerwrap figure img {
    flex: 1;
}

.customerwrap .mainHead {
    font-size: 36px;
    color: #fff;
    margin: 1.5rem 0;
}

.customerwrap p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    width: 100%;
}

.ratedhead h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    font-family: 'Albert Sans';
    border: 1px solid #fff;
    width: fit-content;
    padding: 5px;
    margin: 0;
}

.ratedhead {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ratedhead h5 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.ratedhead h5 span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

.customerwrap a {
    color: #058BC0;
    font-weight: 600;
    text-decoration: underline !important;
}

.solorbox1 h2 {
    font-size: 36px;
    font-weight: bold;
    color: #F3AB1B;
}

.solorbox1 h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}

.solorbox1 p {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
}

.solorbox1 {
    text-align: center;
    background: rgb(243 171 27 / 20%);
    border-radius: 50%;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    margin-left: auto;
    margin-top: -3rem;
    position: relative;
}

.solorbox2 h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #058BC0;
}

.solorbox2 h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.solorbox2 p {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
}

.solorbox2 {
    text-align: center;
    background: rgb(5 139 192 / 20%);
    border-radius: 50%;
    width: 450px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    margin-bottom: -2rem;
    position: relative;
}


section.faqs-section {
    background: #F6F7F9;
    position: relative;
    z-index: 1;
}

.solorbox2::before {
    position: absolute;
    content: "";
    border: 1px solid rgb(5 139 192 / 20%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -10%;
}

.solorbox1::before {
    position: absolute;
    content: "";
    border: 1px solid rgb(243 171 27 / 20%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: -5rem;
    left: -11%;
}

/* reated-section */


/* / Project-Sec Css Start / */

.project-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: capitalize;
    color: #1f1f25;
    line-height: 1.2;
    margin-bottom: 0.525rem;
}

.project-content p {
    line-height: 1.625;
    text-transform: capitalize;
    color: #058bc0;
    margin: 0;
}

.project-wrapp {
    position: relative;
}

.project-wrapp figure img {
    width: 100%;
    border-radius: 12px;
}

.project-content {
    position: absolute;
    bottom: 2.5rem;
    background-color: var(--white);
    left: 4.0625rem;
    width: 470px;
    padding: 1.6875rem 0 1.875rem 1.25rem;
    border-radius: 5px 0 0 5px;
}

section.project-sec {
    padding: 6rem 7.5rem;
    background: #F6F7F9;
}

.projectslider {
    padding-bottom: 3.8rem;
}

.projectslider .swiper-pagination-bullet {
    background: #058bc0;
    height: 0.5rem;
    width: 0.5rem;
}

section.project-sec .row+.row {
    padding-top: 4.375rem;
}

/* / Project-Sec Css End  / */

/* / Client-Sec Css Start / */
section.client-sec {
    background-color: #132241;
}

.client-top {
    text-align: center;
    margin-bottom: 4.625rem;
}

.client-wrapp {
    padding: 2.5rem 2.5rem 2.625rem 2.5rem;
    display: flex;
    gap: 1.8125rem;
    background-color: #132750;
    border-radius: 10px;
}

.client-wrapp figure {
    flex-shrink: 0;
}

.client-content p {
    color: var(--white);
    line-height: 1.4;
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
}

.client-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #2c2c2c;
    padding-top: 2.125rem;
    margin-top: 2.125rem;
}

.client-bottom span {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 400;
}

.client-bottom ul {
    display: flex;
    align-items: center;
    gap: 0.225rem;
}

.client-bottom ul li a i {
    color: #f3ab1b;
}

.clientslider {
    padding-bottom: 3.5rem;
}

.clientslider .swiper-pagination-bullet {
    background-color: #058bc0;
    height: 0.5rem;
    width: 0.5rem;
}

/* / Client-Sec Css End / */


/* / Footer-Sec Css Start / */
footer {
    background: url(../images/footer-bg.webp) no-repeat center / cover;
    padding-top: 47px;
}

hr.linetop {
    border-color: #282828;
    margin: 48px 0 90px;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-info li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-info li a span {
    background: #058BC0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
}

.footer-info .contact small {
    font-size: 1rem;
    font-weight: 500;
    color: #EDEDED;
    margin-bottom: 7px;
}

.footer-info .contact h5 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}

footer h3 {
    margin-bottom: 49px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    position: relative;
}

footer h3::before {
    position: absolute;
    content: "";
    background: #979797;
    width: 46px;
    height: 2px;
    bottom: -5px;
}

footer h3::after {
    position: absolute;
    content: "";
    background: #979797;
    width: 15px;
    height: 2px;
    bottom: -5px;
    left: 51px;
}

.about-company p {
    font-size: 1rem;
    color: #EDEDED;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 34px;
    width: 80%;
}

.about-company .social-link {
    display: flex;
    align-items: center;
    gap: 9px;
}

.about-company .social-link li a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #132241;
    background: #fff;
}

ul.quicklist li a {
    color: #EDEDED;
    font-size: 1rem;
    font-weight: 400;
}

.quicklist li {
    margin-bottom: 20px;
}

.quicklist li a i {
    color: #F3AB1B;
    margin-right: 15px;
}


.footer-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}


.footer-gallery img {
    width: 100%;
    border-radius: 4px;
}


.copyRight {
    margin-top: 85px;
    padding: 20px 0;
    border-top: 2px solid #767676;
}

.copyRight p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.copyRight p span {
    color: #058BC0;
}


/* / Footer-Sec Css End / */


ul.quicklist li a:hover {
    color: var(--secondary);
}

.blog-content .details:hover {
    background: var(--primary);
    color: #fff;
}

.themeBtn:hover {
    background: var(--secondary);
    color: #fff;
}

.themeBtn.yellowbtn:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary);
}

/* Inner Pages Start */
/* ABOUT PAGE START */
.innerBann {
    height: 698px;
}

.solor-escalationSecond .row+.row {
    margin-top: 5rem;
}

.figure.soloresca12 {
    position: relative;
}

figure.soloresca12::before {
    position: absolute;
    content: "";
    background: var(--secondary);
    width: 6px;
    height: 384px;
    bottom: 2%;
    right: 11%;
}

figure.soloresca12::after {
    position: absolute;
    content: "";
    background: var(--secondary);
    width: 6px;
    height: 200px;
    right: 11%;
    top: 1%;
    border-radius: 20px;
}

/* ABOUT PAGE START */
/* Service PAGE START */



.service .row+.row {
    margin-top: 6rem;
}

.service-img {
    position: relative;
}

.service-img .service-img-svg1 {
    content: "";
    width: 122px;
    height: 122px;
    display: grid;
    place-content: center;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
}

.service-img .service-img-svg2 {
    content: "";
    width: 122px;
    height: 122px;
    display: grid;
    place-content: center;
    background: var(--white);
    position: absolute;
    top: 0;
    right: 0;
}

.service .themeBtn {
    border-radius: 10px 1px 1px 1px;
}

/* Service PAGE START */

/* Reveiws PAGE START */

.client-inner .client-wrapp {
    margin-bottom: 7rem;
}

section.client-inner {
    background: var(--white);
}

section.reated-inner {
    background: var(--white);
}

.reated-inner .solorbox1 h3 {
    color: var(--black);
}

.reated-inner .solorbox1 p {
    color: var(--black);
}

.reated-inner .solorbox2 h3 {
    color: var(--black);
}

.reated-inner .solorbox2 p {
    color: var(--black);
}

.reated-inner .mainHead {
    color: var(--black);
}

.reated-inner p {
    color: var(--black);
}

.reated-inner .ratedhead h3 {
    color: var(--black);
    border: 1px solid #DEDEDE;
}

.reated-inner .ratedhead h5 {
    color: var(--black);
}

section.reated-inner {
    padding: 1rem 1rem 7rem 2rem;
}

/* Reveiws PAGE End */
/* Blog PAGE Start */

.blog-inner .blog-content {
    display: flex;
    justify-content: space-around;
    width: 86%;
    padding: 2rem 0;
    margin-left: 5.8rem;
}

.blog-inner .row+.row {
    margin-top: 5rem;
}

/* Blog PAGE End */
/* Contact PAGE Start */

.contact {
    margin-top: 1rem;
}

.contact-form {
    background: #132241;
    padding: 2rem 3rem 8rem 6rem;
}

.contact-form .mainHead {
    /* background: #1e1e1e; */
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.contact-form input {
    width: 93%;
    color: var(--white);
    background: none;
    outline: none;
    border: 1px solid #ffffffaa;
    position: relative;
    z-index: 1;
    padding: 1.5rem 1rem;
    margin: 0 0.5rem 2rem;
}

.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    outline: none !important;
    padding: 0.25rem 1rem;
    display: block;
    position: relative;
    margin: -2rem 0 0 auto;
    z-index: 1;
}

.contact-map {
    height: 100%;
    position: relative;
}

.contact-mapAddress {
    width: 270px;
    background: var(--primary);
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1.5rem 1.5rem 3rem;
}

.contact-mapAddress h3 {
    font-size: 1.75rem;
    text-transform: capitalize;
    color: var(--white);
}

.contact-mapAddress a {
    display: block;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 0.25rem;
}

.contactUsWrap {
    position: relative;
}

.contactUsWrap::before {
    content: "";
    width: 68%;
    height: 82%;
    border: 1px solid var(--primary);
    position: absolute;
    top: 11%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

/* Contact PAGE end */

.banner-form {
  background: #ffffff91;
  padding: 30px 30px;
}
    .banner_form_select{
        width:100%;
        height:50px;
        outline:none;
    }
    .banner-btn{
    width:100%;
    height:50px;
}
.banner-form label {
  color: #000 !important;
  font-weight: 700;
  margin-bottom: 0px;
  font-family: "Exo 2", sans-serif;
  text-transform: capitalize;
}
.banner-form input {
  height: 45px;
  border: 2px solid #000 !important;
}
.banner-form select {
  height: 45px;
  border: 2px solid #000;
  background: #fff;
}
.banner-form .col-lg-12 {
  margin-top: 20px;
}
.banner-form .col-lg-12 .banner-btn {
  background: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  display: inline-block;
  padding: 1.04em 1.96em;
  border-radius: 100px;
  line-height: normal;
  border: none;
  max-width: 150px;
  margin: 0 auto;
}
.slide-inner .col-lg-5 {
  margin-top: 40px;
}
/* Inner Pages Start */