@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    overflow-x: hidden;
    word-break: break-word;
    color: var(--textColor);
    font: 15px/25px 'Montserrat', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #4c4c4c;
    --themeColor: #013365;
    --themeColor2: #88a2ac;
    --headingColor: #0f0f0f;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--textColor);
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--textColor);
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'AGaramondPro-Regular';
    src: url(../fonts/AGaramondPro-Regular.otf);
}

@font-face {
    font-family: 'BlenderPro-Medium';
    src: url(../fonts/BlenderPro-Medium.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'AGaramondPro-Regular';
}

h2 {
    font-size: 50px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'AGaramondPro-Regular';
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'AGaramondPro-Regular';
}

h4 {
    margin: 0 0 0px;
    font-size: 28px;
    font-weight: 500;
    color: var(--themeColor);
    font-family: 'AGaramondPro-Regular';
}

h5 {
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'AGaramondPro-Regular';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Montserrat';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1600px;
}

.theme-btn-1 {
    gap: 10px;
    display: flex;
    flex-shrink: 0;
    font-size: 14px;
    border-width: 1px;
    width: max-content;
    color: var(--white);
    border-style: solid;
    border-radius: 50px;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    padding: 3px 3.5px 3px 20px;
    font-family: 'BlenderPro-Medium';
    border-color: var(--themeColor2);
    background-color: var(--themeColor2);
    box-shadow: 0px 11px 14px 0px rgba(34, 37, 68, 0.18);
}

.theme-btn-1 span {
    width: 60px;
    height: 55px;
    display: flex;
    font-size: 16px;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    transition: ease-in-out;
    color: var(--themeColor2);
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.theme-btn-1 span img {
    width: 13px;
    margin: 0px;
    height: 10px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7449%) hue-rotate(218deg) brightness(116%) contrast(111%);
}

.theme-btn-1:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.theme-btn-1:hover span {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 1050px;
}


/*header css start */

.menuSection {
    z-index: 9;
    width: 100%;
    padding: 10px 3%;
    position: absolute;
}

.menuSection .row {
    align-items: center;
}

.menuSec {
    padding: 3px;
    width: fit-content;
    margin: 0px auto;
    border-radius: 100px;
    background-color: var(--themeColor2);
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    position: relative;
    text-align: center;
    align-items: center;
    text-transform: capitalize;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 13px 25px;
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    color: var(--white);
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    background-color: var(--themeColor);
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-logo {
    height: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.header-logo a {
    width: 195px;
    height: 195px;
    object-fit: contain;
}

.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*header css start */


/*banner css start */


.main_slider {
    display: flex;
    overflow: hidden;
    min-height: 850px;
    position: relative;
    align-items: center;
    padding: 100px 3% 50px;
    justify-content: center;
    background-image: url(../images/banner-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main_slider::before {
    top: 0;
    left: 0;
    right: 0;
    width: 140%;
    content: '';
    height: 100%;
    position: absolute;
    background: radial-gradient(circle, rgb(1 51 101 / 22%) 0%, rgb(1 51 101 / 48%) 25%, rgba(1, 51, 101, 0.9) 47%, rgba(1, 51, 101, 1) 71%);
}

.banner_text {
    z-index: 1;
    position: relative;
}

.banner_text p {
    opacity: 0.5;
    color: var(--white);
    margin-bottom: 25px;
}

.banner_text h5 {
    font-size: 20px;
    margin: 15px 0px;
    letter-spacing: 3.3px;
    color: var(--themeColor2);
}

/*banner css end*/

/* about-sec */

.about-sec {
    padding: 100px 0px;
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    padding: 40px 10px 40px 0px;
}

.about-text h2 {
    margin-bottom: 10px;
}

.about-text h4 {
    margin-bottom: 10px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-right-box-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.about-right-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* about-sec */

/* Services-sec */


.Services-sec {
    padding: 0px 3% 100px;
}

.services-sec-text {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    align-items: center;
    justify-content: space-between;
}

.servicesSlider .slick-slide {
    opacity: 0;
    margin: 0px 10px;
}

.servicesSlider .slick-slide.slick-active {
    opacity: 1;
}

.servicesSlider .slick-list {
    overflow: visible;
}

.service-box-img {
    width: 100%;
    height: 320px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.service-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-box-text {
    z-index: 1;
    width: 95%;
    padding: 20px;
    position: relative;
    border-radius: 10px;
    margin: -80px auto 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: 0px 0px 62.05px 10.95px rgba(0, 0, 0, 0.15);
}

.service-box-text .service-box-text-span {
    top: -25px;
    right: 20px;
    width: 58px;
    height: 58px;
    display: flex;
    font-size: 20px;
    position: absolute;
    align-items: center;
    border-radius: 10px;
    transition: ease-in-out;
    justify-content: center;
    color: var(--themeColor);
    transition-duration: 0.5s;
    background-color: var(--white);
    font-family: 'AGaramondPro-Regular';
}

.service-box-text h4 {
    margin-bottom: 15px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box-text p {
    margin-bottom: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box-text ul {
    gap: 10px;
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box-text ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    transition: ease-in-out;
    transition-duration: 0.5s;
    justify-content: flex-start;
}

.service-box-text ul li i {
    font-size: 7px;
    transition: ease-in-out;
    color: var(--themeColor);
    transition-duration: 0.5s;
}

.service-box-text ul li {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box-text .theme-btn-1 {
    height: 0px;
    border: none;
    padding: 0px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text .theme-btn-1,
.servicesSlider .slick-current.slick-active .service-box .service-box-text .theme-btn-1 {
    height: 64px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    padding: 3px 3.5px 3px 20px;
}

.service-box:hover .service-box-text,
.servicesSlider .slick-current.slick-active .service-box .service-box-text {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-box-text h4,
.servicesSlider .slick-current.slick-active .service-box .service-box-text h4 {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text p,
.servicesSlider .slick-current.slick-active .service-box .service-box-text p {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text ul li,
.servicesSlider .slick-current.slick-active .service-box .service-box-text ul li {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text ul li i,
.servicesSlider .slick-current.slick-active .service-box .service-box-text ul li i {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text .service-box-text-span,
.servicesSlider .slick-current.slick-active .service-box .service-box-text .service-box-text-span {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

/* Services-sec */

/* why-choose-sec */

.why-choose-sec {
    display: flex;
    min-height: 700px;
    padding-top: 100px;
    margin-bottom: 100px;
    align-items: flex-end;
    background-image: url(../images/why-choose-img.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.why-choose-sec-text {
    padding: 50px 40px 0px;
    background-color: var(--white);
    border-radius: 10px 10px 0px 0px;
}

.why-choose-sec-text h2 {
    margin-bottom: 10px;
}

.why-choose-sec-text h4 {
    margin-bottom: 10px;
}

.why-choose-sec-text p {
    margin-bottom: 20px;
}

.why-choose-sec-text ul {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 35px;
    align-items: flex-start;
    justify-content: flex-start;
}

.why-choose-sec-text.inner-why-choose-sec-text ul {
    margin-bottom: 0px;
    padding-bottom: 5px;
}

.why-choose-sec-text ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.why-choose-sec-text ul li i {
    font-size: 16px;
    color: var(--themeColor);
}

/* why-choose-sec */

/* Account Page Start */


/* Login */

.signin_sec {
    padding: 100px 0px;
}

.input-icons i {
    position: absolute;
    font-size: 20px;
    z-index: 99;
    margin-top: 5px;
}

.input-icons {
    width: 100%;
}

.input-field {
    width: 100%;
    border: none;
    height: 60px;
    display: flex;
    font-weight: 500;
    padding: 10px 50px;
    padding-left: 25px;
    position: relative;
    margin-bottom: 20px;
    color: var(--black);
    font-family: 'montserrat';
    background-color: var(--white);
    border: 1px solid var(--white);
}

.input-icons select {
    width: 100%;
    border: none;
    height: 60px;
    display: flex;
    font-weight: 500;
    padding: 10px 50px;
    padding-left: 25px;
    position: relative;
    margin-bottom: 20px;
    color: var(--black);
    font-family: 'montserrat';
    background-color: var(--white);
    border: 1px solid var(--white);
}

.input-icons .position-relative i {
    top: 15px;
    right: 20px;
    position: absolute;
    color: var(--black);
    pointer-events: none;
}

.input-field::placeholder {
    font-weight: 600;
    color: #999999;
}

.login h2,
.sign_up-bg h2 {
    margin-bottom: 20px;
}

.login p,
.sign_up-bg p {
    margin-bottom: 25px;
}

.login {
    width: 98%;
    z-index: 0;
    min-height: 100%;
    margin: 0 0 0 auto;
    position: relative;
    padding: 70px 40px;
    background: #ebebeb;
}

.sign_up-bg {
    z-index: 1;
    width: 70%;
    min-height: 100%;
    position: relative;
    padding: 70px 40px;
    background: #ebebeb;
}

.bg-from-clr {
    padding-left: 20px;
}

.bg-from-clr .col-lg-5 {
    padding-right: 0;
}

span.or {
    top: 50%;
    width: 80px;
    right: -29.5%;
    height: 70px;
    display: flex;
    font-size: 50px;
    font-weight: 800;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--themeColor);
    transform: translateY(-50%);
}

.btn-wrapper button,
.forgot_pass button {
    min-width: 180px;
    padding-left: 40px;
    justify-content: space-between;
}

.btn-wrapper button span,
.forgot_pass button span {
    background-color: var(--white);
}



/* Account Page End */



/* inner-banner */

section.main_slider.inner-banner-sec {
    min-height: 550px;
    padding-bottom: 0px;
}

/* inner-banner */

/* testimonials-sec */

.testimonials-sec {
    padding: 100px 3% 70px;
}

.testimonials-sec .testi-slider-box {
    margin-bottom: 100px;
}

/* testimonials-sec */

/* inner about sec */

.inner-about-sec .about-right-box-img {
    float: left;
    height: 380px;
    max-width: 350px;
    margin-right: 25px;
}

.inner-about-sec .about-right-box-text {
    padding-top: 20px;
}

.inner-about-sec .about-right-box-text h5 {
    font-size: 20px;
    margin: 15px 0px 10px;
}

.inner-about-sec .about-right-box-text p {
    margin-bottom: 20px;
}

/* inner about sec */


/* service-sec */

/* service-box */

.inner-service-sec .custom-mt-5 {
    margin: 50px 0px;
}

.service-img {
    width: 100%;
    height: 480px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    border-radius: 10px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text h2 {
    font-size: 45px;
    margin-bottom: 10px;
}

.service-text p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--themeBlack);
}

.service-text a.theme-1 span img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(26%) saturate(214%) hue-rotate(335deg) brightness(101%) contrast(99%);
}

.service-pagenation ul {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-top: 25px;
    justify-content: center;
}

.about-sec.inner-service-sec .row {
    align-items: center;
}

.service-detail-text h3 {
    margin-top: 30px;
    text-transform: uppercase;
}

.service-detail-text p {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--themeBlack);
}

section.about-sec.inner-service-sec {
    padding: 100px 3%;
}

.service-text ul li {
    gap: 10px;
    display: flex;
    font-weight: 500;
    align-items: center;
    transition: ease-in-out;
    color: var(--headingColor);
    transition-duration: 0.5s;
    justify-content: flex-start;
}

.service-text ul {
    gap: 10px;
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-text ul li i {
    font-size: 7px;
    transition: ease-in-out;
    color: var(--themeColor);
    transition-duration: 0.5s;
}

/* service-sec */


/* rental-sec */

.inner-rental-sec {
    padding: 100px 0px;
}

.coming-soon-text {
    display: flex;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
}

.coming-soon-text h2 {
    font-size: 120px;
}


/* rental-sec */

/* client-sec */

.client-sec {
    padding: 100px 3% 0px;
}

.testimonial-sec {
    position: relative;
    padding: 50px 0;
}

.testimonial-sec .sec-head h2 {
    font-size: 65px;
}

.test-box-text {
    width: 100%;
    right: -25px;
    bottom: -65px;
    max-width: 380px;
    position: absolute;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--themeColor);
}

.testi-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.testi-box {
    overflow: hidden;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.authr-box {
    display: flex;
    align-items: end
}

.test-box-text h4 {
    font-size: 20px;
    color: var(--white);
    text-transform: capitalize;
}

.testi-slider .slick-list {
    padding: 0;
}

.testi-slider button.slick-arrow {
    width: 200px;
    overflow: hidden;
    border-radius: 0;
    transition: 2s all;
    border-radius: 10px;
    height: calc(290px - 40px);
    background-blend-mode: overlay;
    background-size: cover !important;
    background-position: center !important;
}

.testi-slider button.slick-prev.slick-arrow {
    left: -240px;
}

.testi-slider button.slick-prev.slick-arrow::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.3;
    position: absolute;
    background-color: var(--themeColor);
}

.testi-slider button.slick-next.slick-arrow {
    right: -240px;
}

.testi-slider .slick-slide {
    opacity: 1;
    margin: 10px;
    padding-bottom: 70px;
    transition: all ease-in-out .3s;
}

.testi-slider button.slick-arrow:before {
    background: none;
}

.testi-slider button.slick-arrow:hover:before {
    color: #fff;
    transition: 0.5s ease-in-out;
}

.testi-slider button.slick-next.slick-arrow:before {
    top: 0;
    right: 0px;
    left: auto;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    background-color: var(--themeColor);
}

.testi-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0c7f7d;
    font-size: 16px;
}

.testi-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testi-slider .slick-dots {
    margin: 0;
    padding: 0;
    width: 100%;
    bottom: -55px;
    display: block;
    list-style: none;
    text-align: center;
    position: absolute;
}

.testi-slider-box {
    gap: 0;
    padding: 0;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    max-width: 680px;
    border-radius: 0;
    position: relative;
    border-radius: 40px;
    transition: 1s ease-in-out;
}

ul.tidti-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.stars {
    gap: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.stars li i {
    font-size: 14px;
    color: var(--white);
}

.test-box-text p {
    opacity: 0.5;
    line-height: 1.5;
    font-weight: 400;
    color: var(--white);
}

.test-main-box button {
    z-index: 1;
    bottom: 30px;
    border-radius: 5px;
    position: absolute;
}

.test-main-box {
    position: relative;
    margin: 50px 0;
}

.test-main-box button img {
    object-fit: cover;
}


.test-main-box button {
    width: 50px;
    height: 50px;
}

.test-main-box button img {
    object-fit: scale-down;
}

button.prev-slide1 {
    left: 36.5%;
    border: 1px solid #d3d3d3;
    background-color: var(--white);
}

button.next-slide1 {
    left: 42.5%;
    border: 1px solid #d3d3d3;
    background-color: var(--white);
}

button.prev-slide1 img,
button.next-slide1 img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1248%) hue-rotate(337deg) brightness(91%) contrast(75%);
}

button.prev-slide1:hover img,
button.next-slide1:hover img {
    filter: none;
}

button.prev-slide1:hover,
button.next-slide1:hover {
    background-color: var(--themeColor);
}

button.prev-slide1 img {
    transform: rotate(180deg);
}

/* Testimonial Section End */



/* client-sec */

/* rental-sec */

.rental-sec {
    overflow: hidden;
    padding: 100px 0px;
    position: relative;
    background-image: url(../images/rental-img.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.rental-sec::before {
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle, rgb(1 51 101) 0%, rgb(1 51 101 / 98%) 51%, rgba(1, 51, 101, 0.91) 73%, rgba(1, 51, 101, 0.95) 89%, rgba(1, 51, 101, 0.96) 100%);
}

.rental-text {
    gap: 20px;
    z-index: 1;
    display: flex;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.rental-text h2 {
    color: var(--white);
}

.rental-text p {
    opacity: 0.5;
    max-width: 1050px;
    color: var(--white);
}

.rental-text a.theme-btn-1 span {
    background-color: var(--white);
}

/* rental-sec */

/* contact-sec */

.contact-sec {
    padding: 100px 0px;
}

.contact-img {
    width: 100%;
    height: 450px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-text {
    padding: 40px 0px;
}

.contact-text h2 {
    margin-bottom: 5px;
}

.contact-text h4 {
    margin-bottom: 15px;
}

.contact-text p {
    margin-bottom: 25px;
}

.contact-text form input,
.contact-text form select {
    width: 100%;
    height: 45px;
    padding: 0px 15px;
    border-radius: 5px;
    color: var(--black);
    margin-bottom: 25px;
    border: 2px solid #dddddd;
}

.contact-text form input::placeholder,
.contact-text form textarea::placeholder {
    color: #9c9c9c;
    font-weight: 500;
    text-transform: capitalize;
}

.contact-text form .position-relative i {
    top: 18px;
    right: 30px;
    font-size: 10px;
    position: absolute;
    pointer-events: none;
}

.contact-text form textarea {
    width: 100%;
    height: 150px;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--black);
    margin-bottom: 25px;
    border: 2px solid #dddddd;
}

.contact-text form button span {
    background-color: var(--white);
}

.log-images {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.log-images img {
    width: auto;
    height: 180px;
    object-fit: contain;
}


/* contact-sec */

.real-sec {
    padding: 0px 0px 100px;
}

/*Footer Start*/

.footer-sec {
    width: 100%;
    height: 100%;
    padding: 80px 3% 40px;
    background: var(--themeColor);
}

.copy-right-row p {
    opacity: 0.9;
    color: var(--white);
}

.ftr-logo-box ul li a {
    width: 40px;
    opacity: 0.5;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    color: var(--white);
    justify-content: center;
    border: 1px solid var(--white);
}

.ftr-logo-box ul li a:hover {
    opacity: 1;
    color: var(--white);
    border-color: var(--themeColor2);
    background-color: var(--themeColor2);
}

.ftr-logo-box a img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-sec h2 {
    font-size: 20px;
    position: relative;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-sec h3:before {
    content: "";
    position: absolute;
    background: #092322;
    width: 70px;
    height: 5px;
    bottom: -15px;
}

.contact-info-box ul {
    line-height: 45px;
    margin-bottom: 0;
    margin-top: 35px;
}

.newletter-box input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}

.newletter-box input::placeholder {
    color: var(--white);
}

.copy-right-row {
    padding: 20px 0;
    text-align: center;
    background: var(--themeColor);
    border-top: 1px solid #ffffff2f;
}

.ftr-logo-box h4 {
    color: var(--white);
}

.contact-info-box ul li a {
    gap: 12px;
    display: flex;
    font-size: 14px;
    opacity: 0.5;
    color: var(--white);
    align-items: center;
}

.contact-info-box ul li a i {
    font-size: 18px;
}

.quick-links-box ul li a {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.quick-links-box ul {
    line-height: 55px;
}

.ftr-logo-box p {
    font-size: 16px;
    color: #fff;
}

.ftr-logo-box ul {
    gap: 10px;
    display: flex;
    margin-top: 25px;
    align-items: center;
}

.quick-links-box.quick-links-box-1 ul {
    columns: 2;
}

.copy-right-row .cusot-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-right-row .cusot-flex p:first-child {
    margin-right: 25px;
    padding-right: 25px;
    border-right: 1px solid var(--white);
}

/*Footer End*/

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/