html {
    scroll-behavior: smooth;
}

body {
    font-family: "Regular", sans-serif;
    /* word-break: break-word; */
    overflow-x: hidden;
}

p {
    font-family: "Regular", sans-serif;
    font-size: 16px;
    color: #666666;
}

@font-face {
    font-family: Bold;
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: Regular;
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: Medium;
    src: url(../fonts/Poppins-Medium.ttf);
}

ul li,
a:hover {
    list-style-type: none;
    text-decoration: none;
}

.w-700 {
    font-weight: 700 !important;
}

.w-900 {
    font-weight: 900;
}

.text-align-last-center {
    text-align-last: center !important;
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

button:focus {
    outline: none;
}


/* width */

::-webkit-scrollbar {
    width: 10px;
    /* display: none; */
}


/* Track */

::-webkit-scrollbar-track {
    background: #fff;
    /* display: none; */
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #286f6c;
    /* display: none; */
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #d9fff3;
    /* display: none; */
}

.form-control {
    background-color: #fff;
    border-radius: 50px;
    height: 46px;
    padding-inline: 25px;
}

.form-group.pb-3 {
    margin-bottom: 0;
    padding: 0px !important;
}

.form-control::placeholder {
    font-weight: 700;
    color: #cccccc;
}

.form-control:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
    background-color: none;
    border-color: #286f6c;
}

::selection {
    background-color: #286f6c;
    color: #fff;
}

textarea.form-control {
    resize: none;
    border-radius: 20px;
    color: #000;
}

textarea.form-control:focus {
    height: auto;
}

.default-btn,
.default-btn:hover {
    border: none;
    border-radius: 50px;
    /* color: #fff; */
    line-height: 2.5;
    /* background-color: #286F6C; */
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 0px 20px 0 rgb(157 157 157 / 19%);
}

.title,
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0px;
}

.sp-between {
    justify-content: space-between;
}

.w-md-50 {
    width: 50% !important;
}

.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: none;
}

.bg-none {
    background: none;
}

.lineThrough {
    text-decoration: line-through;
}

.br-0 {
    border-radius: 0px;
}

.br-50 {
    border-radius: 50px;
}

.br-15 {
    border-radius: 15px;
}

.br-50 {
    border-radius: 50px;
}

.h-30p {
    height: 30%;
}

.min-h-70p {
    min-height: 70%;
}

.h-100vh {
    height: 100vh;
}

.h-75vh {
    height: 75vh;
}

.h-250 {
    height: 250px;
}

.h-400 {
    height: 400px;
}

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

.f-12 {
    font-size: 12px;
}

.f-15 {
    font-size: 15px;
}

.f-20 {
    font-size: 18px;
}

.f-25 {
    font-size: 25px;
}

.f-30 {
    font-size: 30px;
}

.f-40 {
    font-size: 40px;
}

.f-50 {
    font-size: 50px;
}

.f-80 {
    font-size: 80px;
}

.over-hidden {
    overflow: hidden !important;
}

.fit-cover {
    object-fit: cover;
}

.border {
    border: 0.5px solid #2c3125 !important;
}

.title {
    font-family: "Bold", sans-serif;
}

.shadow {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 0px 20px 0 rgb(157 157 157 / 19%);
}

.fill-width {
    width: -webkit-fill-available;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
}

.before-0:before {
    display: none;
}

p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.underLine {
    text-decoration: underline !important;
}

.line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.pointer {
    cursor: pointer;
}


/* ================== form input style ============== */

.form-control::placeholder {
    font-size: 20px;
    font-weight: 700;
}

input.form-control {
    border: 2px solid #d2d2d2;
    border-radius: 50px;
    /* padding: 25px; */
    color: #333;
    font-weight: 600;
    /* margin-bottom: 15px; */
    box-shadow: none;
    transition: 0.2s all;
    padding-inline: 25px;
}

input.form-control:focus {
    border-color: #286f6c;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 8%);
}

textarea.form-control {
    border: 2px solid #d2d2d2;
    border-radius: 25px;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    resize: none;
    box-shadow: none;
    overflow: hidden;
    transition: 0.2s all;
    padding: 12px 20px;
}

textarea.form-control:focus {
    border-color: #286f6c;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 8%);
}

form .form-group label {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 5px;
    margin-left: 8px;
}

.form-group {
    position: relative;
}


/* ================== colors ================== */

.default-color {
    color: #286f6c !important;
}

.second-color {
    color: #d9fff3;
}

.third-color {
    color: #666666;
}

.default-bg {
    background-color: #286f6c;
}

.second-bg {
    background-color: #d9fff3;
}

.third-bg {
    background-color: #666666;
}

.yellow-color {
    color: #f7941d;
}


/* ================== navbar =================== */

nav {
    position: absolute !important;
    /* top: -30px; */
    width: 100%;
    z-index: 999999;
}

nav .nav-link {
    color: #fff;
}

.main-nav .nav-link {
    color: #333;
}

.nav-link {
    font-weight: 700;
}

.active .nav-link {
    color: #f23f38;
}

.navbar-nav {
    display: none;
}

nav .nav-item {
    display: inline-block;
}

nav .user-img {
    width: 55px;
    background: #fff;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
}

nav .dropdown-toggle::after {
    display: none;
}

nav .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
}

nav .dropdown-menu.show {
    display: block;
    border: none;
    border-radius: 10px;
    /* min-width: fit-content; */
}

nav .dropdown-item:hover {
    color: #f23f38;
}

.user-dropInfo {
    text-align: start;
    padding-inline-start: 10px;
    width: 150px;
    white-space: initial;
    word-break: break-all;
}

.logo {
    width: 140px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #286f6c;
}


/* ================== header ===================*/

header img {
    height: 80vh;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

header:after {
    content: "";
    background-image: linear-gradient(to top, rgb(40 111 108), transparent);
    position: absolute;
    z-index: 0;
    inset: 0;
    height: 40%;
    bottom: 0;
    top: auto;
}


/* ================== Get estimate ================== */

#estimate {
    background: #286f6c;
}

#estimate-form .form-control {
    border: none;
    border-radius: 0;
    height: auto;
    padding: 0;
    color: #333;
    font-weight: 700;
    background: transparent;
}

#estimate-form img {
    width: 33px;
}

.terms-and-condition,
.terms-and-condition:hover {
    color: gray;
}

.terms-and-condition:active {
    color: #23625e;
}


/* ================== our services ============= */

#services:before {
    content: "";
    background-color: #286f6c;
    width: 100%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}

#services .icon {
    width: 200px;
    object-fit: contain;
    margin-top: 25px;
    height: 200px;
}

#services .serv {
    box-shadow: 0 0px 8px 0 #0000000d, 0 0px 20px 0 #0000000d;
}

#services .serv h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 1; */
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}


/* ================== why choose =========== */

#chooseSlider .mySwiper .navigation {
    position: absolute;
    width: 100px;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0;
    height: 60px;
}

#chooseSlider:after {
    content: "";
    background-color: #286f6c;
    width: 100%;
    height: 500px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: auto;
}

#chooseSlider .swiper-button-next:after,
.swiper-button-next:after {
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 30px;
    transition: 0.5s all;
}

#chooseSlider .swiper-button-prev:after,
.swiper-button-prev:after {
    content: "\f30a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 30px;
    transition: 0.5s all;
}

#chooseSlider .swiper-wrapper {
    padding-bottom: 50px;
    margin-bottom: 50px;
}

#chooseSlider .swiper-button-prev:hover:after,
#chooseSlider .swiper-button-prev:focus:after,
#chooseSlider .swiper-button-next:hover:after,
#chooseSlider .swiper-button-next:focus:after {
    color: #333;
}

#chooseSlider .swiper-button-next,
#chooseSlider .swiper-button-prev {
    position: inherit !important;
    width: auto;
}


/* ================== testmonial =========== */

#testmonial {
    background-image: url(../images/testmonial-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#testmonial .slick-slide img {
    display: block;
    margin: auto;
    object-fit: contain;
}

#testmonial .slick-track {
    display: flex;
}

.slick-initialized .slick-slide {
    margin-top: auto;
    margin-bottom: auto;
}

#testmonial .testmonialImg-slider img {
    display: block;
    margin: auto;
    width: 90px;
    height: 90px;
    background: #d0d0d0;
    border-radius: 50%;
    /* padding-top: 15px; */
    padding-top: 0px;
    object-fit: cover !important;
}

.what-service-card .wrap-persons>img {
    width: 35px;
    margin-top: 20px;
}

.wrap-persons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.wrap-img-person {
    position: relative;
    min-height: 150px;
}

#testmonial .testmonialImg-slider .slick-center img {
    width: 135px;
    height: 135px;
    object-fit: contain;
    background-color: #286f6c;
}

.comment::after {
    content: "";
    background-color: #6666664f;
    width: 200px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    right: 0;
    margin: auto;
}


/* ================== questions ============ */

.card-header {
    border-radius: 0px;
    border: none;
    background: none;
}

.questions-accordion .card-title {
    cursor: pointer;
}


/* ================== hiring ================== */

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

#hiring-Modal .filupp>input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#hiring-Modal .custom-control-label,
#hiring-Modal .filupp {
    pointer-events: all !important;
    position: relative !important;
    border: 2px solid #d2d2d2 !important;
    border-radius: 50px;
    color: #d2d2d2;
    font-weight: 600;
    box-shadow: none;
    transition: 0.2s all;
    padding-inline: 25px;
    line-height: 2.2;
}

#hiring-Modal .filupp-file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

#hiring-Modal .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #e30613;
    background-color: #e30613;
}


/* ================== footer ================== */

footer {
    background-color: #f0f2f6;
    color: #666666;
    font-size: 17px;
}

footer .social a {
    background-color: #286f6c;
    width: 40px;
    height: 40px;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 2;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    margin-inline: 3px;
}

footer .social a:hover {
    border-radius: 0%;
    background-color: #d9fff3;
    color: #286f6c;
}

footer a {
    color: #666666;
    transition: all 0.5s ease-in-out;
}

footer a:hover {
    color: #286f6c;
    font-weight: 700;
}


/* ======================= estimate-1 page ================== */

.steps-number li {
    display: inline-block;
    background-color: #d5dbdb;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 2.5;
    font-size: 25px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 15px;
    position: relative;
}

.steps-number li:before {
    content: "";
    width: 200%;
    height: 3px;
    position: absolute;
    background: #d5dbdb;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.steps-number li.active,
.steps-number li.active:before {
    background-color: #286f6c;
}

.steps-number li:last-child:before {
    display: none;
}

.step-bg {
    background-color: #f7f8fa;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 25px;
    height: 25px;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #000000 solid 3px;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #286f6c;
    background-color: #286f6c;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 25px;
    height: 25px;
    content: "";
    background: no-repeat 50%/50% 50%;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.laborNum {
    display: none;
}

#googleMap {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
}

.step-header {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0px 7px 10px rgb(0 0 0 / 6%);
}

.change-dest {
    background-color: #ffffffb3;
    position: absolute;
    top: 20px;
    width: 90%;
    right: 0;
    left: 0;
    margin: auto;
    padding: 15px;
}


/* -------- upload images ------------- */

.upload__box .upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__box .upload__btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    padding: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload__box .upload__btn:hover {
    background-color: unset;
    color: #4045ba;
    transition: all 0.3s ease;
}

.upload__box .upload__btn-box {
    margin-bottom: 10px;
}

.upload__box .upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.upload__box .upload__img-box {
    width: 100px;
    height: 100px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.upload__box .upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.upload__box .upload__img-close:after {
    content: "✖";
    font-size: 14px;
    color: white;
}

.upload__box .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}


/* ================== estimate 4 page ============== */

.btn-group-toggle .btn input[type="radio"],
.btn-group-toggle .btn-group .btn input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btn-group-toggle .btn.active {
    background-color: #286f6c !important;
    color: #fff;
}

.payment .btn.active {
    border: 2px solid #286f6c;
    background-color: #fff !important;
}

.payment .btn img {
    height: 50px;
}

#estimateInfo-btn {
    cursor: pointer;
}

.estimateInfo {
    position: absolute;
    top: 0;
    height: calc(100% - 125px);
    padding-inline: 15px;
    width: 100%;
    right: 0;
    display: none;
    z-index: 9999;
}

#service.form-control {
    line-height: 2.2;
}

.estimateInfo .what-service-card {
    height: 100%;
    background: #f7f8fa;
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
}

.close {
    float: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    text-align: end;
}


/* =================================
                edit profile
                ==================================== */

#editProfile-form .filupp>input[type="file"],
#register-form .filupp>input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#editProfile-form .avatar-upload,
#register-form .avatar-upload {
    position: relative;
    max-width: 205px;
    margin: auto;
}

#editProfile-form .avatar-upload .avatar-edit,
#register-form .avatar-upload .avatar-edit {
    position: absolute;
    left: 35px;
    z-index: 1;
    top: 0px;
    background: #286f6c;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

#editProfile-form .avatar-upload .avatar-edit input,
#register-form .avatar-upload .avatar-edit input {
    display: none;
}

#editProfile-form .avatar-upload .avatar-edit input+label,
#register-form .avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    /* background: #FFFFFF;
        border: 1px solid transparent;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12); */
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
    font-size: 25px;
    line-height: 1;
}

#editProfile-form .avatar-upload .avatar-edit input+label:after,
#register-form .avatar-upload .avatar-edit input+label:after {
    content: "\f083";
    font-family: "Font Awesome 5 Free";
    color: #ffffff;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-weight: 700;
    font-size: 20px;
}

#editProfile-form .avatar-upload .avatar-preview,
#register-form .avatar-upload .avatar-preview {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 25px;
    border: 4px solid #fff;
    /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1); */
    margin: auto;
}

#editProfile-form .avatar-upload .avatar-preview>div,
#register-form .avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid #286f6c;
}

#editProfile-form .personalInfo-img,
#register-form .personalInfo-img {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-content .userImg {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}


/* ============== hover =========== */

.serv,
.serv img,
#chooseSlider .swiper-slide,
#chooseSlider .swiper-slide img,
#statistics>div>div,
#chooseSlider .swiper-slide .second-bg,
.contactus-div i,
.contactus-div,
.contactus-sec .contactus-div h4,
.card-order,
.card-order:hover h5 {
    transition: all 0.5s ease-in-out;
}

.contactus-div:hover,
.card-order:hover {
    margin-top: -4px;
}

.card-order:hover .main-button {
    background: #fff;
    color: #f23e37;
    font-weight: 700;
}

.serv:hover,
.card-order:hover {
    margin-top: -4px;
    /* background-color: rgb(0 0 0 / 50%) !important;
    color: #fff; */
}

.serv:hover h4,
.serv:hover p,
.card-order:hover h5 {
    color: #f23f38 !important;
}


/*
.serv:hover img {
    filter: brightness(0) invert(1);
} */

#chooseSlider .swiper-slide:hover {
    margin-top: -4px;
}

#chooseSlider .swiper-slide:hover .second-bg {
    background-color: #f2423b !important;
}

#chooseSlider .swiper-slide:hover .default-color {
    color: #fff !important;
}

#chooseSlider .swiper-slide:hover img {
    border-radius: 25px;
}

#statistics>div>div:hover,
.contactus-sec .contactus-div:hover h4 {
    color: #f2423b;
}

.contactus-sec .contactus-div:hover i {
    background-color: #f23f38;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #286f6c;
    border-radius: 0.25rem;
}


/* ===============================
           kareem styles
           ======================= */

::-webkit-input-placeholder {
    /* Edge */
    font-weight: 400 !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-weight: 400 !important;
}

::placeholder {
    font-weight: 400 !important;
}

.webkit-1,
.webkit-2,
.webkit-3,
.webkit-4,
.webkit-5,
.webkit-6,
.webkit-7,
.webkit-11 {
    display: -webkit-inline-box;
    width: 100%;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.webkit-1 {
    -webkit-line-clamp: 1;
}

.webkit-2 {
    -webkit-line-clamp: 2;
}

.webkit-3 {
    -webkit-line-clamp: 3;
}

.webkit-4 {
    -webkit-line-clamp: 4;
}

.webkit-5 {
    -webkit-line-clamp: 5;
}

.webkit-6 {
    -webkit-line-clamp: 6;
}

.webkit-7 {
    -webkit-line-clamp: 7;
}

.webkit-11 {
    -webkit-line-clamp: 12;
}

.left-img {
    position: relative;
    height: 100%;
}

.static-page-slider .swiper-slide {
    position: relative;
}

.left-img .swiper-slide::before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(to top, #286f6c, transparent);
    z-index: 2;
}

.left-img-txt h4 {
    font-size: 30px;
    margin-top: 0;
}

.left-img-txt h1 {
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 0px !important;
}

.left-img-txt {
    color: #fff;
    position: absolute;
    bottom: 120px;
    z-index: 9;
    text-align: center;
    width: 385px;
    margin: auto;
    right: 0;
    left: 0;
}

.left-img-txt span,
.left-img-txt h1,
.left-img-txt h4 {
    text-shadow: 0px 3px 4px rgb(0 0 0 / 60%);
}


/* .static-page>div {
    width: 50%;
} */

.static-page {
    display: inline-flex;
    width: 100%;
    position: relative;
    /* height: 100vh; */
    min-height: 100vh;
}

.static-page-slider {
    height: 100%;
}


/* .static-page>div {
    width: 50%;
    min-height: 100%;
} */

.footer-div a:hover {
    color: red;
}

.footer-div a {
    color: #fff;
}

.footer-div {
    position: absolute;
    width: 100%;
    display: inline-block;
    color: #fff;
    text-align: center;
    z-index: 9999;
    bottom: 21px;
    font-size: 13px;
}

.swiper-pagination-bullet {
    background: #fff !important;
    width: 12px !important;
    height: 12px !important;
}

.static-page-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.static-page-logo {
    position: absolute;
    z-index: 9;
    left: 40px;
    top: 0px;
    width: 150px;
    height: 150px;
    color: #333;
    font-size: 28px;
    transition: ease-in-out 0.4s;
}

.static-page-logo:hover {
    color: #f15e38;
}

.static-page-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 85px;
}

.right-form-txt h2 {
    color: #286f6c;
    font-weight: 900;
    font-size: 33px;
    margin-bottom: 20px;
}

.right-form {
    padding: 30px 90px 10px !important;
    padding-bottom: 0px;
}

.register-page .right-form {
    padding: 60px 60px;
}


/* .register-page .form-group label {
               font-size: 16px;
               margin-bottom: 7px;
           } */


/* .register-page .form-control {
               height: 40px;
           } */

.right-form-txt {
    margin-bottom: 20px;
}

::placeholder {
    font-size: 16px !important;
}

.right-form-txt h2 {
    color: #286f6c;
    font-weight: 900;
    font-size: 29px;
    margin-bottom: 10px;
}

.right-form-txt p {
    margin-bottom: 0px;
    color: #000;
    font-size: 18px;
}


/* .form-group label {
               font-weight: 600;
               color: #000;
               font-size: 19px;
               margin-bottom: 10px;
           } */


/* .form-control {
               background-color: #fff;
               border-radius: 50px;
               height: 60px;
               padding-inline: 25px;
           } */

.fa-eye:before {
    content: "\f06e";
    color: #bbb;
}

.toggle-password {
    position: absolute;
    right: 20px;
    bottom: 13px;
}

.toggle-password:hover {
    cursor: pointer;
}

.toggle-password:hover .fa-eye:before {
    color: #286f6c;
}

.remember-forget {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}

.remember-forget input {
    accent-color: #286f6c;
    height: 15px;
    width: 15px;
}

.remember-forget a {
    color: #286f6c;
    font-size: 17px;
    font-weight: 600;
    transition: ease-in-out 0.3s;
}

.remember-forget a:hover {
    color: #f15e38;
}

.remember-forget label {
    font-size: 17px;
    color: #767c81;
    font-weight: 600;
    margin-left: 10px;
}

.or:before {
    position: absolute;
    content: " ";
    width: 40%;
    right: 0;
    height: 2px;
    background: #ddd;
    top: 0;
    bottom: 0;
    margin: auto;
}

.or {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 30px 0px;
}

.end-form {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.end-form a {
    color: #286f6c;
    font-weight: 600;
}

.end-form a:hover {
    color: #f15e38;
}

.or:after {
    position: absolute;
    content: " ";
    width: 40%;
    left: 0;
    height: 2px;
    background: #ddd;
    top: 0;
    bottom: 0;
    margin: auto;
}

.or-login {
    width: 95%;
    display: inline-block;
    /* text-align: center; */
    color: #5a5a5a;
    border: 1px solid #a5a5a5;
    border-radius: 30px;
    padding: 13px;
    margin-bottom: 15px;
    margin-inline: auto;
    padding-inline-start: 30%;
}

.or-login img {
    width: 18px;
    margin-right: 8px;
    height: 18px;
    object-fit: contain;
}

.or-login:hover {
    color: #286f6c;
    border-color: #286f6c;
}


/*|||||||||||||||||||||||||| Affect button ||||||||||||||||||||||||||||||*/

.main-button {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #286f6c;
    padding: 12px;
    border: none;
    color: white;
    font-size: 17px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 100px;
    width: 100%;
    z-index: 3;
    transition: 0.4s ease-in-out;
}

.main-button span {
    position: relative;
    pointer-events: none;
    z-index: 999;
}

.main-button::before {
    --size: 0;
    content: "";
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, #f15e38, transparent);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease;
    z-index: 1;
}

.card-order .main-button {
    font-size: 14px;
}
.toggel-button {
    background-color: #f15e38;
}

.toggel-button::before {
    background: radial-gradient(circle closest-side, #286f6c, transparent);
}

.toggel-button::before:hover {
    --size: 150px;
}

.main-button:hover::before {
    --size: 250px;
}

.form-group .form-control:focus {
    border-color: #286f6c;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 8%);
}

.close-this {
    color: #333;
    position: absolute;
    right: 115px;
    transition: 0.4s ease-in-out;
}

.close-this:hover {
    color: #f15e38;
}

#change-password-Modal .modal-body img {
    width: 70px;
    margin: 20px 0px;
}

#change-password-Modal .modal-content {
    padding: 50px;
    border-radius: 10px;
    border: none;
}

#change-password-Modal .modal-footer {
    border: 0px;
}

#change-password-Modal .modal-body p {
    font-weight: 600;
    color: #000;
    font-size: 17px;
    margin-top: 5px;
}

.modal-backdrop {
    background-color: #dee2e6;
}

.profile-sec {
    padding: 90px 0px;
}

.profile-wrap>div {
    /* width: 33.3%; */
    /* padding: 0px 40px; */
}

.profile-wrap {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    padding: 35px 0px;
    margin-bottom: 25px;
    background: #f0f2f6;
    border-radius: 15px;
    position: relative;
}

.profile-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-button>.main-button {
    width: 180px;
    margin-right: 20px;
}

.profile-button {
    width: 100%;
    display: inline-flex;
}


/* .profile-wrap::before,
           .profile-wrap::after {
               content: " ";
               background-color: #3333331f;
               width: 1px;
               height: 100%;
               top: 0;
               position: absolute;
               bottom: 0;
           }

           .profile-wrap::before {
               left: 33.3%;
           }

           .profile-wrap::after {
               right: 33.3%;
           } */

.profile-content p {
    font-size: 18px;
    margin-bottom: 0px;
}

.profile-wrap input {
    width: 100%;
    background-color: transparent;
    border: none;
    font-size: 18px;
    border-radius: 5px;
}

.profile-wrap input:focus {
    outline: none;
}


/*partner*/

.partner-sec {
    padding: 50px 0px;
}

.partner-sec .partner-title {
    text-align: center;
    margin-bottom: 60px;
}

.partner-sec .partner-title {
    text-align: center;
    color: #000;
}

.partner-sec .partner-title h1 {
    font-weight: 600;
    font-size: 35px;
}

.partner-sec .partner-title span {
    font-size: 45px;
    font-weight: 900;
}

.partner-sec .partner-title p {
    font-size: 22px;
    font-weight: 800;
}

.partner-sec .partner-img img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 30px;
    object-fit: cover;
}

.partner-img,
.partner-details {
    cursor: pointer;
}

.partner-sec .partner-details h3 {
    color: #000;
    font-weight: 900;
    font-size: 23px;
    margin-bottom: 5px;
}

.partner-sec .partner-details p {
    color: #a1a1a1;
    font-weight: 900;
    font-size: 15px;
    padding: 0px 30px;
    -webkit-line-clamp: initial;
}


/* .partner-sec .partner-link {
    margin: 15px 0px;
} */

.partner-sec .partner-link a {
    margin: 5px;
    display: inline-flex;
    background-color: #f3f3f3;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    height: 37px;
    width: 40px;
    transition: 0.5s all;
}

.partner-sec .partner-link a:hover {
    background-color: #059466;
    transform: scale(1.1);
}

.partner-sec .partner-link a:hover i {
    color: #f14037;
}

.partner-sec .partner-link a i {
    color: #acacac;
    font-size: 15px;
    transition: 0.5s all;
}

.partner-sec .partner-div {
    text-align: center;
    margin-bottom: 50px;
    transition: 0.5s all;
    border-radius: 30px;
}

.partner-sec .partner-div:hover {
    background-color: #fff;
    box-shadow: 0px 7px 10px rgb(0 0 0 / 6%);
}

.details-sec .part-two {
    color: #a6a6a6;
    font-size: 18px;
    text-align: left;
    font-weight: 800;
}

.details-sec {
    padding: 50px 0px;
}

.details-sec .detalis-title {
    color: #4f8886;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
    text-align: left;
}

.details-sec .part-one p {
    color: #000;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}

.details-sec .part-one strong {
    color: #000;
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
}

.details-sec .part-one {
    text-align: left;
}

.panner-sec {
    position: relative;
    height: 65vh;
}

#front-app .panner-sec:before {
    content: "";
    background-image: linear-gradient(to right, rgb(50, 117, 114), transparent);
    position: absolute;
    z-index: 9;
    inset: 0px;
}

.panner-sec img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
}

.panner-sec .first-nav {
    position: absolute;
    z-index: 10;
    /* bottom: 60px; */
    bottom: 20%;
}

.panner-sec .first-nav h3 {
    font-size: 44px;
    font-weight: 900;
    text-align: left;
    padding-left: 15px;
    color: #fff;
    text-shadow: 0px 5px 6px rgb(0 0 0 / 30%);
    /* width: 75%; */
}

.panner-sec .first-nav ol {
    background-color: transparent;
    line-height: 1;
}

.panner-sec .first-nav li {
    color: #fff !important;
    font-size: 27px;
    text-shadow: 0px 5px 6px rgb(0 0 0 / 30%);
}

.panner-sec .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    content: "-";
}

.panner-sec .first-nav a {
    color: #fff;
    transition: 0.2s all;
}

.panner-sec .first-nav a:hover {
    color: #f14037;
}


/* .card-order>div {
    width: calc(100% / 2 - 70px);
    padding: 0px 12px;
} */

.card-order {
    /* display: inline-flex;
    width: 100%; */
    /* padding: 40px 30px; */
    border-radius: 20px;
    background: #f0f2f6;
    /* margin-bottom: 30px; */
}

.card-order h5 {
    word-break: break-word;
}

.orders-sec {
    padding: 80px 0px;
}

.card-order .card-order-content:last-child {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 12px;
    width: 170px;
}

.card-order .main-button {
    box-shadow: 0px 5px 8px rgb(0 0 0 / 20%);
}

.card-order-tit {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.card-order-tit:nth-child(2) {
    margin: 15px 0px;
}

.card-order-tit h2 {
    font-size: 21px;
    margin-right: 10px;
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
}

.card-order-tit span {
    font-size: 18px;
}

.rating {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    overflow: hidden;
    flex-direction: row-reverse;
    height: 40px;
    position: relative;
}

.rating-0 {
    filter: grayscale(100%);
}

.rating>input {
    display: none;
}

.rating>label {
    cursor: pointer;
    width: 33px;
    height: 33px;
    margin-top: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: 0.3s;
}

.rating>input:checked~label,
.rating>input:checked~label~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating>input:not(:checked)~label:hover,
.rating>input:not(:checked)~label:hover~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.feedback {
    background-color: #fff;
    width: 100%;
    padding: 0;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    margin-bottom: 16px;
}

.review .modal-body textarea {
    width: 100%;
    padding: 14px;
    border-radius: 15px;
    border-color: #ddd;
    border-width: 2px;
    height: 150px;
    color: #000;
    margin-bottom: 20px;
}

.modal-footer {
    border: none;
    padding: 0px;
}

.review .modal-body p {
    font-size: 15px;
    margin-bottom: 0px;
}

.review .modal-body h2 {
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 0px;
}

.review .modal-content {
    padding: 40px;
    border-radius: 15px;
    border: none;
}


/*about us*/


/* .aboutus-sec {
               padding: 50px 0px;
               padding-top: 90px;
           } */


/* .aboutus-sec .about-div {
               text-align: left;
               margin-bottom: 60px;
           } */


/* .aboutus-sec .title-about {
               margin-bottom: 25px;
           } */


/* .aboutus-sec .title-about h2 {
               font-size: 40px;
               font-weight: 600;
               color: #316C68;
               margin-bottom: 20px;
           } */


/* .aboutus-sec .title-about p {
               color: #000;
               font-weight: 600;
               font-size: 40px;
               line-height: 1;
               margin-bottom: 8px;
           } */


/* .aboutus-sec .title-about strong {
               color: #000;
               font-weight: 900;
               font-size: 40px;
               line-height: 1;
           } */


/* .aboutus-sec .pragraph-about {
               color: #747474;
               font-weight: 600;
               font-size: 18px;
           }
            */


/* .aboutus-sec .img-about img {
               width: 100%;
               object-fit: cover;
           } */


/* .aboutus-sec .what-details {
               margin-top: 35px;
           } */


/* .aboutus-sec .what-details h2 {
               font-size: 40px;
               font-weight: 900;
               color: #000;
               margin-bottom: 30px;
           } */


/* .aboutus-sec .what-details li {
               font-weight: 600;
               color: #7B7B7B;
               font-size: 18px;
           } */


/* .aboutus-sec .what-details li::before {
               content: "\f058";
               font-family: "Font Awesome 5 Free";
               font-weight: 400;
               margin-right: 15px;
           } */


/*contact us*/


/* .contactus-sec {
               padding: 160px 0px 50px 0px;
           } */

.contactus-sec .contactus-div {
    text-align: center;
}

.contactus-sec .contactus-div i {
    color: #fff;
    background-color: #23625e;
    font-size: 35px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 22px;
}

.contactus-sec .contactus-div h4 {
    color: #23625e;
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 0px;
}

.contactus-sec .contactus-div a {
    color: #a4a4a4;
    font-weight: 900;
    font-size: 17px;
    transition: 0.5s all;
}

.contactus-sec .contactus-div a:hover {
    color: #f23f38;
    transform: rotateX(1.1);
}


/* .form-contactus-sec {
               padding: 50px 0px;
           } */

.form-contactus-sec .contact-title {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}


/* .form-contactus-sec .contact-title h4 {
               color: #487B78;
               font-size: 32px;
               font-weight: 900;
               margin-bottom: 0;
           } */


/* .form-contactus-sec .contact-title p {
               font-size: 33px;
               font-weight: 900;
               color: #000;
           } */


/* .form-contactus-sec .contact-form {
               color: #000;
               text-align: left;
               width: 600px;
               margin: auto;
           } */


/* .form-contactus-sec .contact-form label {
               font-weight: 900;
               font-size: 25px;
               margin-bottom: 13px;
           } */

.form-contactus-sec .contact-form button {
    color: #fff;
    background-color: #487b78;
    width: 220px;
    border-radius: 25px;
    padding: 8px;
    font-size: 20px;
    transition: 0.5s all;
}

#book,
.booked {
    display: none;
}

#book:checked+div .booked {
    display: inline-block;
}

#book:checked+div .book {
    display: none;
}

.what-service-card p {
    font-size: 18px;
    margin-bottom: 3px;
}

.what-service-card h2 span {
    color: #333;
    margin-right: 5px;
}

.what-service {
    background-color: #f7f8fa;
    padding: 25px 25px;
    border-radius: 10px;
}

.what-service h2 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.what-service .what-service-card h2 {
    font-size: 21px;
    font-weight: 600;
    margin-top: 25px;
    color: #f3695f;
    margin-bottom: 0px;
}

.what-service-card img {
    width: 80%;
    object-fit: contain;
    height: 160px;
}

.what-service-card {
    text-align: center;
    padding: 30px;
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
}

.price {
    margin-bottom: 25px;
}

.price span {
    padding: 5px 10px;
    font-size: 15px;
    background: #f3f4fd;
    border-radius: 5px;
    margin-right: 13px;
    color: #059265;
    font-weight: 600;
}

.what-service {
    background-color: #f7f8fa;
    padding: 25px;
    border-radius: 10px;
}

.price {
    margin-bottom: 15px;
    display: inline-flex;
    align-content: center;
    align-items: center;
}

.price i {
    color: #286f6c;
    font-size: 21px;
}

.check-box-wrap div label {
    background: #286f6c;
    color: #fff;
    width: 200px;
    padding: 14px 0px;
    border-radius: 27px;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-tit {
    padding: 40px 0px;
}
.week .day.header {
    font-size: 17px;
}
.buttons-container {
    padding: 0 3rem;
}
.week {
    margin: 0px 0;
}

@media (max-width: 991px) {
    .buttons-container {
        padding: 0 0rem;
    }


    /* .contactus-sec {
                   padding: 120px 0px 40px 0px;
               } */
    .aboutus-sec .about-div {
        margin-bottom: 15px;
    }

    .aboutus-sec .title-about {
        margin-bottom: 20px;
    }

    .aboutus-sec .title-about h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .aboutus-sec .title-about p {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .aboutus-sec .title-about strong {
        font-size: 35px;
    }

    /* .aboutus-sec .pragraph-about {
                   font-size: 16px;
               } */
    .aboutus-sec .what-details {
        margin-top: 25px;
    }

    .aboutus-sec .what-details h2 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .aboutus-sec .what-details li {
        font-size: 16px;
    }

    .contactus-sec .contactus-div i {
        font-size: 25px;
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .contactus-sec .contactus-div h4 {
        font-size: 25px;
        margin-bottom: 8px;
    }

    .contactus-sec .contactus-div a {
        font-size: 15px;
    }

    /* .form-contactus-sec {
                   padding: 25px 0px;
               } */
    /* .form-contactus-sec .contact-title {
                   margin-bottom: 20px;
               } */
    /* .form-contactus-sec .contact-title h4 {
                   font-size: 30px;
               } */
    /* .form-contactus-sec .contact-title p {
                   font-size: 30px;
               } */
    /* .form-contactus-sec .contact-form {
                   width: 550px;
               } */
    /* .form-contactus-sec .contact-form label {
                   font-size: 20px;
                   margin-bottom: 10px;
               } */
    .form-contactus-sec .contact-form input {
        padding: 22px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .form-contactus-sec .contact-form textarea {
        font-size: 18px;
        margin-bottom: 15px;
        height: 150px;
    }

    .form-contactus-sec .contact-form button {
        width: 190px;
        font-size: 18px;
    }

    .panner-sec .first-nav h3 {
        font-size: 30px;
        /* width: 90%; */
    }

    .panner-sec .first-nav li {
        font-size: 22px;
    }

    .panner-sec {
        /* height: 60vh; */
        height: 400px;
    }

    .partner-sec {
        padding: 35px 0px;
    }

    .partner-sec .partner-title h1 {
        font-size: 30px;
    }

    .partner-sec .partner-title span {
        font-size: 40px;
    }

    .partner-sec .partner-title p {
        font-size: 20px;
    }

    .partner-sec .partner-img img {
        height: 220px;
        border-radius: 25px;
    }

    .partner-sec .partner-link a i {
        font-size: 14px;
    }

    .partner-sec .partner-link a {
        height: 36px;
        width: 36px;
    }

    .partner-sec .partner-link {
        margin: 10px 0px;
    }

    .details-sec .partner-details h3 {
        font-size: 20px;
    }

    .partner-sec .partner-details p {
        font-size: 14px;
        padding: 0px 30px;
    }

    .partner-sec .partner-div {
        margin-bottom: 35px;
    }

    .details-sec .detalis-title {
        font-size: 35px;
    }

    .details-sec .part-one p {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .details-sec .part-one strong {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    /* .contactus-sec {
                   padding: 80px 0px 30px 0px;
               } */
    .contactus-sec .contactus-div i {
        font-size: 20px;
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    .modal-footer {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem !important;
    }
    .modal-footer button {
        width: 90% !important;
    }

    .contactus-sec .contactus-div h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .contactus-sec .contactus-div a {
        font-size: 13px;
    }

    .contactus-sec .contactus-div {
        margin-bottom: 20px;
    }

    /* .form-contactus-sec .contact-title h4 {
                   font-size: 23px;
               } */
    /* .form-contactus-sec .contact-title p {
                   font-size: 23px;
               } */
    /* .form-contactus-sec .contact-form {
                   width: 350px;
               }
               .form-contactus-sec .contact-form textarea {
                   font-size: 15px;
                   height: 110px;
               } */
    /* .form-contactus-sec .contact-form label {
                   font-size: 18px;
                   margin-bottom: 5px;
               } */
    .form-contactus-sec .contact-form input {
        padding: 15px;
        font-size: 15px;
    }

    .form-contactus-sec .contact-form button {
        width: 160px;
        font-size: 16px;
    }

    .aboutus-sec {
        padding: 25px 0px;
    }

    .aboutus-sec .title-about {
        margin-bottom: 15px;
    }

    .aboutus-sec .title-about h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .aboutus-sec .title-about p {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .aboutus-sec .title-about strong {
        font-size: 25px;
    }

    .aboutus-sec .about-div {
        text-align: center;
    }

    /* .aboutus-sec .pragraph-about {
                   font-size: 14px;
               } */
    .aboutus-sec .img-about img {
        margin-bottom: 25px;
    }

    .aboutus-sec .what-details {
        margin-top: 0px;
    }

    .aboutus-sec .what-details h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .aboutus-sec .what-details li {
        font-size: 15px;
    }

    .what-details ul {
        padding: 0;
        text-align: left;
    }

    .panner-sec {
        /* height: 40vh; */
        height: 280px;
    }

    .panner-sec .first-nav {
        bottom: 10%;
    }

    .panner-sec .first-nav h3 {
        font-size: 17px;
        /* width: 90%; */
    }

    .panner-sec .first-nav li {
        font-size: 17px;
    }

    /* .panner-sec .first-nav {
                bottom: 20px;
            } */
    .partner-sec .partner-title h1 {
        font-size: 25px;
        margin-bottom: 0;
    }

    .partner-sec .partner-title p {
        font-size: 16px;
    }

    .partner-sec .partner-div {
        margin-bottom: 20px;
    }

    .partner-sec .partner-img img {
        height: 190px;
    }

    .partner-sec .partner-title span {
        font-size: 30px;
    }

    .partner-sec .partner-link a i {
        font-size: 13px;
    }

    .partner-sec .partner-details h3 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .partner-sec .partner-details p {
        font-size: 13px;
    }

    .details-sec {
        padding: 20px 0px;
    }

    .details-sec .detalis-title {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .details-sec .part-one p {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .details-sec .part-one strong {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .details-sec .part-two {
        font-size: 15px;
    }

    .partner-sec .partner-title {
        margin-bottom: 10px;
    }

    #services .icon {
        height: auto;
    }
}

@media (min-width: 576px) {
    #change-password-Modal .modal-dialog {
        max-width: 375px;
        margin: 5.75rem auto;
        text-align: center;
    }

    .review .modal-dialog {
        max-width: 620px;
    }
}

@media (max-width: 1199px) {
    .right-form {
        padding: 40px 60px;
        padding-bottom: 0px;
    }

    .card-order h5 {
        font-size: 16px;
    }
    .card-order .main-button {
        font-size: 11px;
    }

    .card-order .card-order-content:last-child {
        padding: 0px 10px;
        width: 160px;
    }

    .close-this {
        right: 75px;
    }

    .register-page .right-form {
        padding: 25px;
    }

    .register-page .col-md-6.col-xs-12 {
        padding-left: 8px;
        padding-right: 8px;
    }

    ::-webkit-input-placeholder {
        font-size: 13px !important;
    }

    :-ms-input-placeholder {
        font-size: 13px !important;
    }

    ::placeholder {
        font-size: 13px !important;
    }

    /* .register-page .form-control {
                   padding: 11px 13px !important;
               } */
}

@media (max-width: 991px) {
    .card-order-tit {
        flex-wrap: wrap;
    }
    .card-order .main-button {
        font-size: 16px;
    }
    .profile-wrap>div {
        padding: 0px 23px;
    }

    .card-order-tit h2 {
        font-size: 17px;
        margin-right: 5px;
        width: 100%;
    }

    .card-order-tit span {
        font-size: 15px;
    }

    .card-order-tit:nth-child(2) {
        margin: 10px 0px;
    }

    /* .card-order>div {
        padding: 0px 5px;
    } */
    /* .card-order {
        padding: 25px 20px;
    } */
    .profile-wrap {
        padding: 25px 0px;
    }

    .profile-content h2 {
        font-size: 20px;
    }

    .profile-wrap input {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .card-order {
        flex-wrap: wrap;
    }

    .review .modal-content {
        padding: 18px;
    }

    .orders-sec {
        padding: 35px 15px;
    }

    /* .card-order>div {
        width: 50% !important;
    } */
    .card-order .card-order-content:last-child {
        width: 100% !important;
        margin-top: 20px;
    }

    .modal-dialog {
        margin-top: 3%;
    }
    /* .card-order {
        margin-bottom: 20px;
    } */
    .profile-wrap {
        margin-bottom: 15px;
        flex-wrap: wrap;
        padding: 20px 0px;
    }

    .profile-content h2 {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .profile-wrap>div {
        width: 100%;
    }

    .profile-wrap::before,
    .profile-wrap::after {
        width: 100%;
        height: 1px;
        top: unset;
        position: absolute;
        bottom: unset;
        left: 0;
        right: 0;
    }

    .profile-wrap>div {
        padding: 5px 20px;
    }

    .profile-wrap::before {
        top: 34.3%;
    }

    .profile-wrap::after {
        bottom: 34.3%;
    }

    .profile-button>.main-button {
        width: 145px;
        margin-right: 15px;
    }

    .static-page>div {
        width: 100%;
        height: auto;
        min-height: unset;
    }

    .static-page .left-img {
        min-height: unset;
        height: 50vh;
    }

    .close-this {
        right: 40px;
    }

    .left-img-txt span {
        font-size: 14px;
    }

    .left-img-txt {
        bottom: 100px;
        width: 100%;
    }

    .left-img-txt h1 {
        font-size: 29px;
    }

    .left-img-txt h4 {
        font-size: 24px;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 65px;
    }

    .static-page-logo {
        left: 25px;
        top: 0px;
        width: 85px;
        height: 85px;
    }

    .right-form-txt {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 16px;
        /* margin-bottom: 5px; */
    }

    /* .form-control {
                   height: 43px
               } */
    .remember-forget label {
        font-size: 14px;
        margin-left: 5px;
    }

    .main-button {
        padding: 10px;
        font-size: 16px;
    }

    .or {
        margin: 26px 0px;
        font-size: 14px;
    }

    .or-login {
        padding: 10px;
        margin-bottom: 15px;
        font-size: 14px;
        text-align: center;
        padding-inline-start: 0;
        width: 100%;
    }

    .end-form {
        font-size: 13px;
    }

    .remember-forget a {
        font-size: 14px;
    }

    .right-form-txt h2 {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .right-form-txt p {
        font-size: 16px;
    }

    .static-page>div {
        width: 100%;
    }

    .static-page {
        flex-wrap: wrap;
    }
}

@media (max-width: 500px) {
    .left-img-txt h1 {
        font-size: 27px;
        line-height: 0.9;
    }

    /* .card-order>div {
        width: 100% !important;
    } */
    .static-page-logo {
        left: 15px;
        top: 0px;
        width: 75px;
        height: 75px;
    }

    .right-form {
        padding: 35px 35px;
        padding-bottom: 0px;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 60px;
    }

    .left-img-txt {
        bottom: 85px;
        width: 100%;
    }
}

.btn:hover:not(.disabled) {
    color: #f23f38;
    text-decoration: none;
}

.first-nav nav {
    position: unset !important;
}

.what-service-card:hover {
    cursor: pointer;
    /* transform: translate(0px, -10px); */
}

.what-service h2 {
    width: 100%;
}

.what-service-card {
    margin-bottom: 20px;
    transition: 0.5s all;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.what-service-card img {
    border-radius: 6px;
}

.check-box-wrap div label {
    transition: 0.5s all;
}

.check-box-wrap div label:hover {
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.07);
}

.checkbox-backages {
    /* display: none; */
    transition: 0.5s all;
    position: absolute;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    opacity: 0;
}

.checkbox-backages:checked+.what-service-card .booked {
    display: inline-block;
    background-color: #fff;
    color: #487b78;
    transition: 0.5s all;
}

.checkbox-backages:checked+.what-service-card {
    background-color: #487b78;
    transition: 0.5s all;
}

.checkbox-backages:checked+.what-service-card p,
.checkbox-backages:checked+.what-service-card h4,
.checkbox-backages:checked+.what-service-card .price i,
.checkbox-backages:checked+.what-service-card h2,
.checkbox-backages:checked+.what-service-card h2 span {
    color: #fff !important;
}

.checkbox-backages:checked+.what-service-card .book {
    display: none;
}

.what-service {
    width: 100%;
    margin: 0px;
    margin-bottom: 25px;
}

.what-service>div {
    position: unset !important;
}

.what-service .swiper-button-wrap {
    display: inline-block;
    width: auto;
    position: absolute !important;
    top: 30px;
    right: 25px;
}

.additional-service {
    position: relative;
}

.last-step .main-button {
    width: 150px;
    padding: 5px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 25px;
    font-weight: 600;
    display: inline-flex;
    margin: 0px 5px;
    color: #286f6c;
}

.what-service.additional-service h2 {
    font-size: 22px;
    margin-bottom: 5px;
    width: calc(100% - 100px);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    color: #ccc !important;
}

.swiper-button-lock {
    display: none !important;
}

.additional-service-swiper,
.additional-service-swiper .swiper-wrapper,
.additional-service-swiper .swiper-slide {
    height: auto !important;
}

.additional-service-swiper .swiper-slide {
    padding: 20px 0px 0px 0px;
}

.what-service-card h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
}

.swiper-button-next,
.swiper-button-prev {
    position: unset;
    display: inline-block;
    width: 50px;
}

.additional-service-swiper .what-service-card {
    margin-bottom: 0px;
    text-align: left;
}

.txt-header {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9;
}

@media (max-width: 1199px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
    }

    .what-service-card {
        padding: 18px;
    }

    .what-service-card h4 {
        font-size: 20px;
    }

    .what-service-card p {
        font-size: 16px;
    }

    .what-service h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .check-box-wrap div label {
        width: 175px;
        padding: 10px 0px;
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 3px;
    }
}


/* ================== edits =============== */

#EstimateForm .form-control {
    border: none;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    border-radius: 0px;
}

#EstimateForm .form-control:focus {
    box-shadow: none;
}

#EstimateForm img {
    width: 33px;
}

.estimate-serv {
    margin-block: 50px;
    /* margin-top: 100px; */
}

.estimate-serv img {
    filter: invert(1);
}

.estimate-serv #estimate {
    background: #fff;
}

.estimate-serv #estimate .bg-white {
    background-color: #286f6c !important;
    color: #fff;
}

.estimate-serv #estimate .form-control {
    background: transparent;
}

.estimate-serv .text-white {
    color: #286f6c !important;
}

.estimate-serv .main-button {
    background: #ffffff;
}

.servs-page #services:before {
    content: "";
    background-color: #ffffff;
}

.servs-page .text-white {
    color: #000 !important;
}

.servs-page h2 {
    font-size: 50px;
}

#EstimateOneForm .form-control {
    border: none;
}

#EstimateOneForm .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    border: none;
    border-radius: 30px;
    /* padding: 25px; */
    color: #d2d2d2;
    font-weight: 600;
    /* margin-bottom: 15px; */
    box-shadow: none;
    transition: 0.2s all;
    padding-inline: 25px;
    width: auto;
}

#EstimateOneForm .select2-container {
    width: auto !important;
}

#DestinationAddressError,
#PickupAddressError,
#LaborsNumberError,
#ServiceError,
#WhatMoveError,
#GeneralError,
#EmailError,
#MainPhoneError,
.error-alert,
#PhoneError,
#NameError {
    background: #286f6c;
    display: block;
    color: #fff;
    border-radius: 10px;
    margin-top: 10px;
    position: relative;
    transform: translate(0px, 0px);
}

#DestinationAddressError,
#PickupAddressError,
#LaborsNumberError,
#ServiceError,
#WhatMoveError,
#GeneralError,
#EmailError,
#MainPhoneError,
.error-alert,
#PhoneError,
#NameError {
    display: block;
}

.custom-error {
    display: none;
}

#DestinationAddressError i,
#PickupAddressError i,
#LaborsNumberError i,
#ServiceError i,
#WhatMoveError i,
#EmailError i,
#GeneralError i,
#MainPhoneError i,
.error-alert i,
#PhoneError i,
#NameError i {
    position: fixed;
    color: #286f6c;
    top: -15px;
    left: 15px;
    font-size: 26px;
}

#DestinationAddressError small,
#PickupAddressError small,
#LaborsNumberError small,
#ServiceError small,
#WhatMoveError small,
#GeneralError small,
#EmailError small,
#MainPhoneError small,
.error-alert small,
#PhoneError small,
#NameError small {
    padding: 15px;
    color: #fff;
    display: block;
    padding: 10px;
}

.estimate-serv .form-control:focus {
    color: #fff;
}

.home-estimate #PickupAddressError,
.home-estimate #DestinationAddressError {
    position: absolute;
    box-shadow: 1px 3px 10px #c3c1c1;
}

.estimate-serv #PickupAddressError,
.estimate-serv #DestinationAddressError {
    background-color: #fff;
    position: absolute;
    box-shadow: 1px 3px 10px #c3c1c1;
}

.estimate-serv #PickupAddressError i,
.estimate-serv #DestinationAddressError i {
    color: #fff;
    position: fixed;
    top: -15px;
    left: 15px;
    font-size: 26px;
}

.estimate-serv #PickupAddressError small,
.estimate-serv #DestinationAddressError small {
    color: #286f6c;
}

.estimate-img::after {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    left: calc(50% - 0.75em);
    top: calc(50% - 0.75em);
    border: 0.15em solid #286f6c;
    border-right-color: white;
    border-radius: 50%;
    animation: button-anim 0.7s linear infinite;
    opacity: 0;
}

@keyframes button-anim {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.estimate-img.loading {
    width: 33px;
}

.estimate-img.loading::after,
.main-button.loading::after {
    opacity: 1;
}

.main-button::after {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    left: calc(50% - 0.75em);
    top: calc(50% - 0.75em);
    border: 0.15em solid #fff;
    border-right-color: #286f6c;
    border-radius: 50%;
    animation: button-anim 0.7s linear infinite;
    opacity: 0;
}

.main-button.loading {
    color: #ffffff00 !important;
}

.toggleMenu:hover i {
    color: #286f6c !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: #286f6c;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #286f6c;
}


/* .ui-datepicker-calendar {
    display: none;
} */
.cart-list img {
    width: 50px;
}

.snippet .qty {
    width: 60px;
    text-align: center;
    border: none;
    background: none;
    padding-inline-start: 13px;
    font-size: 20px;
    font-weight: 700;
}

.snippet .qty-minus,
.snippet .qty-plus {
    width: 40px !important;
    min-width: 40px !important;
    border-radius: 50%;
    height: 40px;
    background-color: #E3E3E3;
    border: none;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 0;

}

.snippet .qty-minus:hover,
.snippet .qty-plus:hover,
.snippet .qty-minus:focus,
.snippet .qty-plus:focus {
    background-color: #286f6c;
}

.copyRight {
    opacity: .5;
}

/* =================================
                        media
==================================== */

@media (max-width: 996px) {
    nav .nav-link {
        color: #333;
    }

    .active .nav-link {
        color: #f23f38;
    }

    .navbar-nav {
        position: absolute;
        top: 100px;
        width: 95%;
        background-color: #fff;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 999;
        padding: 10px;
        border-radius: 15px;
    }

    nav .nav-item {
        display: block;
    }

    nav .logo {
        width: 80px;
    }

    .steps-number li {
        display: inline-block;
        background-color: #d5dbdb;
        color: #fff;
        width: 40px;
        height: 40px;
        line-height: 2;
        font-size: 20px;
        font-weight: 700;
        border-radius: 50%;
        margin: 0 5px;
        position: relative;
    }

    .profile-content.border-right {
        border-bottom: 1px solid #dee2e6 !important;
    }

    .f-25 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .copyRight {
        text-align: center;
    }

    .snippet .qty-minus,
    .snippet .qty-plus {
        width: 30px !important;
        min-width: 30px !important;
        border-radius: 50%;
        height: 30px;
        font-size: 25px;
    }

    .snippet .qty {
        width: 30px;
        text-align: center;
        border: none;
        background: none;
        padding-inline-start: 0;
    }

    .h3,
    h3 {
        font-size: 1.2rem;
    }

    .h2,
    h2 {
        font-size: 1.5rem;
    }

    .h4,
    h4 {
        font-size: 1rem;
    }

    .h5,
    h5 {
        font-size: 0.9rem;
    }

    .w-md-50 {
        width: 100% !important;
    }

    .f-20 {
        font-size: 15px;
    }

    .f-50 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }

    .h-400 {
        height: 300px;
    }

    .hiring {
        margin-left: 0px;
        margin-top: -55px;
    }

    .hiring img {
        width: 80px !important;
    }

    header img {
        /* height: 50vh; */
        height: 400px;
    }

    #estimate {
        /* margin-top: -150px; */
    }

    .auth-btn {
        font-size: 10px;
    }

    nav .user-img {
        width: 50px;
        height: 50px;
    }

    nav .nav-link {
        color: #333;
    }

    .form-control {
        height: 55px;
    }
}

.step-2 .text-center .main-button {
    width: 190px;
    padding: 5px !important;
}

.payment .btn img {
    height: 33px;
}

.hover-custom .main-button {
    color: #286f6c;
}

.hover-custom {
    position: unset;
}

.position-un {
    position: unset;
}

.toggleMenu {
    width: 40px;
    display: inline-block;
    height: auto;
    line-height: 1.8;
    padding: 6px 7px;
    height: 40px;
}

.toggleMenu span {
    width: 100%;
    display: inline-block;
    height: 2px;
    background: #fff;
    transition: 0.5s all;
}

.toggleMenu.active span:nth-child(1) {
    transform: rotate(-45deg);
    margin-top: 12px;
}

.toggleMenu.active span:nth-child(2) {
    transform: rotate(45deg);
    position: relative;
    top: -7px;
}

.toggleMenu.active span:nth-child(3) {
    display: none;
}

.toggleMenu:hover {
    cursor: pointer;
    background-color: #fff;
}

.toggleMenu:hover span {
    background-color: #f15e38 !important;
}

.estimate-serv #estimate .pointer {
    color: #fff !important;
}

.socialSpace {
    height: 50px;
}

.dropdown-toggle:hover {
    color: #000000;
}


/* .estimateInfo .wrap-persons{
    position: relative !important;
} */


/* .alert-success{
    text-align: center;
    width: fit-content;
    margin-inline: auto;
    margin-top: 50px;
}
.alert-success p{
    margin-bottom: 0;
} */

.summation i {
    background: #e24b41;
    border-radius: 50%;
    color: #fff !important;
    width: 30px;
    height: 30px;
    line-height: 2;
}

.multiplication i {
    background: #286f6c;
    border-radius: 50%;
    color: #fff !important;
    width: 30px;
    height: 30px;
    line-height: 2;
}

.equal i {
    background: #333;
    border-radius: 50%;
    color: #fff !important;
    width: 30px;
    height: 30px;
    line-height: 2;
}

#chooseSlider .swiper-slide img {
    height: 350px;
}

.static-page-slider .caption {
    position: absolute;
    bottom: 20%;
    width: 100%;
    text-align: center;
    z-index: 999;
}

.static-page-slider .caption p {
    color: #fff;
    -webkit-line-clamp: initial;
    font-size: 20px;
}

.select2-container .select2-selection--single {
    min-height: 28px;
    height: 100%;
    margin-inline-start: 25px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    white-space: initial;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
    position: absolute;
    top: 50%;
    right: 20px;
    width: auto;
}

#service.form-control {
    line-height: 2.2;
    min-height: 55px;
    height: auto;
    border-radius: 30px;
    margin-inline-start: 30px;
}


/* .testmonialImg-slider .slick-track {
    width: 100% !important;
} */

.dz-processing .progress {
    position: absolute;
    top: 40%;
    right: 0;
    left: 0;
    width: 50% !important;
    margin: auto;
    height: 10px;
}

.dz-processing .progress-bar {
    background-color: #286f6cb5;
    border-radius: 10px;
}

.preview img {
    width: 100%;
    height: 80px;
}

.dz-remove i {
    font-weight: 900;
    position: absolute;
    top: 5px;
    right: 15px;
    background: #33333354;
    color: #fff;
    padding: 7px;
    font-size: 15px;
    border-radius: 50%;
    line-height: 0.6;
}

.agreeTerms input {
    accent-color: #286f6c;
    height: 17px;
    width: 17px;
}

.agreeTerms label {
    font-size: 17px;
    color: #767c81;
    font-weight: 600;
    margin-left: 10px;
}

.modal-body p {
    -webkit-line-clamp: initial;
    line-clamp: initial;
}

.search-button {
    position: absolute;
    top: 0;
    height: 100%;
    background: #286f6c;
    right: 5px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    color: #fff;
    margin: auto;
    bottom: 0;
    border: none;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 30px;
    color: #286f6c;
    display: none;
}

.slick-next:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900;
}

.slick-prev:before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900;
}

.slick-next {
    right: -30px;
}

.slick-prev {
    left: -30px;
}

.what-service-card .person {
    object-fit: cover;
    height: 70px;
    margin-top: 10px !important;
}

.char {
    font-size: 40px;
    height: 40px;
    animation: an 1s ease-out 1 both;
    display: inline-block;
}
.week .day[disabled="disabled"] span {
    text-decoration: line-through;
    text-decoration-color: red;
}
.arrivalDate > div{
    margin-bottom: .5rem;
}

.step-bg  .times .btn.disabled,
.step-bg .times .btn:disabled {
    text-decoration: line-through;
    text-decoration-color: red;
}

@keyframes an {
    from {
        opacity: 0;
        transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
    }

    to {
        opacity: 1;
        transform: perspective(500px) translate3d(0, 0, 0);
    }
}


@media (max-width: 767px) {
    .toggleMenu.active span:nth-child(2) {
        top: -7.5px;
    }

    .register-page .right-form,
    .right-form {
        padding: 25px !important;
    }

    .estimateInfo .what-service-card,
    .estimateInfo .what-service-card .f-15 {
        font-size: 10px;
    }

    .estimateInfo .what-service-card .f-40 {
        font-size: 30px;
    }

    .summation i,
    .multiplication i,
    .equal i {
        width: 20px;
        height: 20px;
    }

    #arrival-time,
    .f-12 {
        font-size: 10px;
    }

    #googleMap {
        min-height: 600px;
    }

    .slick-next {
        right: 15px;
    }

    .slick-prev {
        left: 15px;
    }
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        @media (max-width: 768px) {

            .snippet .qty-minus,
            .snippet .qty-plus {
                width: 10px !important;
                /* min-width: 30px !important; */
                border-radius: 50%;
                height: 30px !important;
                font-size: 25px;
                padding: 0 !important;
            }
        }

        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .snippet .qty:focus-visible {
            outline-offset: 0px;
            outline: 0;
        }

    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.snippet .qty:focus-visible {
    outline-offset: 0px;
    outline: 0;
}

.times small {
    display: none;
    position: absolute;
    left: 15px;
    bottom: auto;
    top: 48%;
    z-index: 99999999;
    font-size: 10px;
}

.times small::before {
    content: "\f0de";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -14px;
    color: #286f6c;
    font-size: 25px;
}

.blogCard {
    border-radius: 14px;
    box-shadow: 0 5px 10px #eee;
}

.blogCard a {
    color: #000;
}

.blogCard img {
    height: 230px;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
    object-position: center;
}

.blogCard .dateTime {
    font-size: 14px;
}

.blogCard h3 {
    font-size: 22px;
    font-weight: 700;
}

.blogCard p {
    font-size: 14px;
}

.blogDetailsHeader {
    background: #F0F2F6;
    /* padding-top: 111px; */
}

.blogDetailsHeader h1 {
    font-size: 57px;
    font-weight: 900;
}

.description-border {
    position: relative;
    padding-inline-start: 30px;
}

.description-border:before {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
}

.f-24 {
    font-size: 24px;
}

.f-36 {
    font-size: 36px;
}

.blog-img {
    height: 521px;
    border-radius: 14px;
    object-fit: cover;
    object-position: center;
}

ul.breadcrumb {
    padding-inline: 0;
    list-style: none;
    background-color: transparent;
}

ul.breadcrumb li {

    display: inline;
    font-size: 16px;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: #000;
    content: "/\00a0";
}

ul.breadcrumb li a {
    color: #000;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: #000;
    text-decoration: underline;
}

.social .title {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.social ul li {
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 2;
    margin-inline-end: 8px;
}

.social ul li a {
    color: #000;
}

.f-14 {
    font-size: 14px;
}

.more-btn {
    background: #286F6C;
    border-radius: 50px;
    height: 56px;
    line-height: 2.6;
    color: #fff;
    padding-inline: 40px;
    margin-top: 40px;
}

.blogSearch {
    background: white;
    padding: 10px;
    border-radius: 9px;
    margin-top: -90px;
    position: relative;
    z-index: 9999;
    padding-inline-start: 22px;
    box-shadow: 0px 727px 204px 0px rgba(0, 0, 0, 0.00), 0px 466px 186px 0px rgba(0, 0, 0, 0.01), 0px 262px 157px 0px rgba(0, 0, 0, 0.05), 0px 116px 116px 0px rgba(0, 0, 0, 0.09), 0px 29px 64px 0px rgba(0, 0, 0, 0.02);
}

.blogSearch .form-control {
    border: none;
    padding-inline: 10px;
}

.blogSearch .btn {
    border-radius: 9px !important;
    background: #088775;
    color: #FFF;
    padding: 12px 22px;
    font-size: 18px;
}

.blogSearch .input-group {
    align-items: center;
}

.blogSearch i {
    color: #343A40;
}

.blogSearch .form-control::placeholder {
    color: rgba(0, 0, 0, 0.24);
    font-weight: 900;
    font-size: 21px;
}

.blogSearch input.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}

.categoryName {
    color: #088775;
    border-radius: 200px;
    background: #DAEDEB;
    font-size: 16px;
    margin-bottom: 15px !important;
    display: inline-block;
    padding: 4px 16px;
}

.control {
    font-weight: 700;
}

.mixitup-control-active {
    color: #088775;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .blogDetailsHeader {
        padding-top: 35px;
    }

    .blogDetailsHeader h1 {
        font-size: 30px;
        font-weight: 900;
    }

    .blog-img {
        height: 300px;

    }

    .f-24 {
        font-size: 19px;
    }

    .f-36 {
        font-size: 25px;
    }

    .f-40 {
        font-size: 30px;
    }
}
