
@import url("../fonts/gordita/stylesheet.css"); @import url("../fonts/bootstrap-icons-1.11.1/font/bootstrap-icons.css");
@import url("../fonts/font-awesome-6.4.2/css/all.css"); ::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

::-webkit-scrollbar-thumb {
    background: rgb(0, 0, 0);
    border-radius: 0px;
}

.main-page-wrapper {
    overflow-x: hidden;
}

body {
     font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 18px;
    position: relative;
    color: rgba(0, 0, 0, 0.7);
}


.video-container {
    position: relative;
    width: 100%;
    height: 750px; /* Adjust height as needed */
    overflow: hidden;
}



.video-content {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 0px;
    border-radius: 0px;
    width: 100%;
}


/* Hide mobile banner by default */
.mobile-video {
    display: none;
}
.paika-img {
    width: 20%; /* Default for laptops and larger screens */
}

/* Show mobile banner & hide desktop banner on small screens */
@media (max-width: 768px) { 
    .desktop-video {
        display: none; /* Hide desktop carousel */
    }
    .mobile-video {
        display: block; /* Show mobile banner */
    }
    
    .paika-img {
        width: 40%;
    }
}

.tour-schedule-fixed {
  position: fixed;
  bottom: 0px; /* distance from bottom */
  right: 20px;  /* distance from right */
  z-index: 999;
  /*background: white;*/
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
  /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
  border-radius: 10px;
}

.paika-hight{
    width: 10%;
    padding: 0px 0px 0px 19px;
    font-weight: 600;
    color: #ff0000;
    height: 16px;
    border-radius: 20px;
}

.font-garamond {
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: rgb(0, 0, 0);
}

h2 {
    font-size: 47px;
    line-height: 1.138em;
}

h3 {
    font-size: 35px;
    line-height: 1.25em;
}

h4 {
    font-size: 32px;
    line-height: 1.25em;
}

h5 {
    font-size: 24px;
    line-height: 1.25em;
}

h6 {
    font-size: 19px;
}

p {
    line-height: 1.777em;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

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

.fs-22 {
    font-size: 22px;
}

.fs-20 {
    font-size: 20px;
}

.fs-18 {
    font-size: 18px;
}

.fs-16 {
    font-size: 16px;
}

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

.shapes {
    position: absolute;
    z-index: -1;
}

.color-dark {
    color: rgb(0, 0, 0);
}

.bg-pink {
    background: rgb(255, 248, 244);
}

.bg-pink-two {
    background: rgb(245, 237, 232);
}

.bg-pink-three {
    background: rgb(250, 241, 236);
}

.bg-light {
    background: rgb(248, 248, 248);
}

.dark-bg {
    background: rgb(0, 0, 0);
}

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

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

.ctn-preloader {
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999999;
    background: rgb(244, 244, 244);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@keyframes spinner {
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.scroll-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: fixed;
    bottom: 20px;
    right: 5px;
    z-index: 99;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 25px;
    cursor: pointer;
    border-radius: 50%;
    background: rgb(255, 103, 37);
    transition: 0.3s ease-in-out;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.tran3s {
    transition: 0.3s ease-in-out;
}

.tran4s {
    transition: 0.4s ease-in-out;
}

.tran5s {
    transition: 0.5s ease-in-out;
}

.tran6s {
    transition: 0.6s ease-in-out;
}

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

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    padding: 0px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
    color: inherit;
}

button:focus {
    outline: none;
}

input, textarea {
    outline: none;
    box-shadow: none;
    transition: 0.3s ease-in-out;
}

audio, video, canvas {
    max-width: 100%;
}

iframe {
    border: none !important;
}

.style-none {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}




.p0 {
    padding: 0px !important;
}

.m0 {
    margin: 0px !important;
}

.theme-mb-0 {
    margin-bottom: 0px;
}

.theme-pb-0 {
    padding-bottom: 0px;
}

.pt-5 {
    padding-top: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-5 {
    padding-bottom: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-5 {
    margin-top: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-5 {
    margin-bottom: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1399px) {
    .xl-p0 {
        padding: 0px !important;
    }

    .xl-m0 {
        margin: 0px !important;
    }

    .xl-pt-10 {
        padding-top: 10px !important;
    }

    .xl-pt-20 {
        padding-top: 20px !important;
    }

    .xl-pt-30 {
        padding-top: 30px !important;
    }

    .xl-pt-40 {
        padding-top: 40px !important;
    }

    .xl-pt-50 {
        padding-top: 50px !important;
    }

    .xl-pt-60 {
        padding-top: 60px !important;
    }

    .xl-pt-70 {
        padding-top: 70px !important;
    }

    .xl-pt-80 {
        padding-top: 80px !important;
    }

    .xl-pt-90 {
        padding-top: 90px !important;
    }

    .xl-pt-100 {
        padding-top: 100px !important;
    }

    .xl-pt-110 {
        padding-top: 110px !important;
    }

    .xl-pt-120 {
        padding-top: 120px !important;
    }

    .xl-pt-130 {
        padding-top: 130px !important;
    }

    .xl-pt-140 {
        padding-top: 140px !important;
    }

    .xl-pt-150 {
        padding-top: 150px !important;
    }

    .xl-pt-200 {
        padding-top: 200px !important;
    }

    .xl-pb-10 {
        padding-bottom: 10px !important;
    }

    .xl-pb-20 {
        padding-bottom: 20px !important;
    }

    .xl-pb-30 {
        padding-bottom: 30px !important;
    }

    .xl-pb-40 {
        padding-bottom: 40px !important;
    }

    .xl-pb-50 {
        padding-bottom: 50px !important;
    }

    .xl-pb-60 {
        padding-bottom: 60px !important;
    }

    .xl-pb-70 {
        padding-bottom: 70px !important;
    }

    .xl-pb-80 {
        padding-bottom: 80px !important;
    }

    .xl-pb-90 {
        padding-bottom: 90px !important;
    }

    .xl-pb-100 {
        padding-bottom: 100px !important;
    }

    .xl-pb-110 {
        padding-bottom: 110px !important;
    }

    .xl-pb-120 {
        padding-bottom: 120px !important;
    }

    .xl-pb-130 {
        padding-bottom: 130px !important;
    }

    .xl-pb-140 {
        padding-bottom: 140px !important;
    }

    .xl-pb-150 {
        padding-bottom: 150px !important;
    }

    .xl-pb-200 {
        padding-bottom: 200px !important;
    }

    .xl-mt-10 {
        margin-top: 10px !important;
    }

    .xl-mt-20 {
        margin-top: 20px !important;
    }

    .xl-mt-30 {
        margin-top: 30px !important;
    }

    .xl-mt-40 {
        margin-top: 40px !important;
    }

    .xl-mt-50 {
        margin-top: 50px !important;
    }

    .xl-mt-60 {
        margin-top: 60px !important;
    }

    .xl-mt-70 {
        margin-top: 70px !important;
    }

    .xl-mt-80 {
        margin-top: 80px !important;
    }

    .xl-mt-90 {
        margin-top: 90px !important;
    }

    .xl-mt-100 {
        margin-top: 100px !important;
    }

    .xl-mt-110 {
        margin-top: 110px !important;
    }

    .xl-mt-120 {
        margin-top: 120px !important;
    }

    .xl-mt-130 {
        margin-top: 130px !important;
    }

    .xl-mt-140 {
        margin-top: 140px !important;
    }

    .xl-mt-150 {
        margin-top: 150px !important;
    }

    .xl-mt-200 {
        margin-top: 200px !important;
    }

    .xl-mb-10 {
        margin-bottom: 10px !important;
    }

    .xl-mb-20 {
        margin-bottom: 20px !important;
    }

    .xl-mb-30 {
        margin-bottom: 30px !important;
    }

    .xl-mb-40 {
        margin-bottom: 40px !important;
    }

    .xl-mb-50 {
        margin-bottom: 50px !important;
    }

    .xl-mb-60 {
        margin-bottom: 60px !important;
    }

    .xl-mb-70 {
        margin-bottom: 70px !important;
    }

    .xl-mb-80 {
        margin-bottom: 80px !important;
    }

    .xl-mb-90 {
        margin-bottom: 90px !important;
    }

    .xl-mb-100 {
        margin-bottom: 100px !important;
    }

    .xl-mb-110 {
        margin-bottom: 110px !important;
    }

    .xl-mb-120 {
        margin-bottom: 120px !important;
    }

    .xl-mb-130 {
        margin-bottom: 130px !important;
    }

    .xl-mb-140 {
        margin-bottom: 140px !important;
    }

    .xl-mb-150 {
        margin-bottom: 150px !important;
    }

    .xl-mb-200 {
        margin-bottom: 200px !important;
    }
}

@media (max-width: 1199px) {
    .lg-p0 {
        padding: 0px !important;
    }

    .lg-m0 {
        margin: 0px !important;
    }

    .lg-pt-10 {
        padding-top: 10px !important;
    }

    .lg-pt-20 {
        padding-top: 20px !important;
    }

    .lg-pt-30 {
        padding-top: 30px !important;
    }

    .lg-pt-40 {
        padding-top: 40px !important;
    }

    .lg-pt-50 {
        padding-top: 50px !important;
    }

    .lg-pt-60 {
        padding-top: 60px !important;
    }

    .lg-pt-70 {
        padding-top: 70px !important;
    }

    .lg-pt-80 {
        padding-top: 80px !important;
    }

    .lg-pt-90 {
        padding-top: 90px !important;
    }

    .lg-pt-100 {
        padding-top: 100px !important;
    }

    .lg-pt-110 {
        padding-top: 110px !important;
    }

    .lg-pt-120 {
        padding-top: 120px !important;
    }

    .lg-pt-130 {
        padding-top: 130px !important;
    }

    .lg-pt-140 {
        padding-top: 140px !important;
    }

    .lg-pt-150 {
        padding-top: 150px !important;
    }

    .lg-pt-200 {
        padding-top: 200px !important;
    }

    .lg-pb-10 {
        padding-bottom: 10px !important;
    }

    .lg-pb-20 {
        padding-bottom: 20px !important;
    }

    .lg-pb-30 {
        padding-bottom: 30px !important;
    }

    .lg-pb-40 {
        padding-bottom: 40px !important;
    }

    .lg-pb-50 {
        padding-bottom: 50px !important;
    }

    .lg-pb-60 {
        padding-bottom: 60px !important;
    }

    .lg-pb-70 {
        padding-bottom: 70px !important;
    }

    .lg-pb-80 {
        padding-bottom: 80px !important;
    }

    .lg-pb-90 {
        padding-bottom: 90px !important;
    }

    .lg-pb-100 {
        padding-bottom: 100px !important;
    }

    .lg-pb-110 {
        padding-bottom: 110px !important;
    }

    .lg-pb-120 {
        padding-bottom: 120px !important;
    }

    .lg-pb-130 {
        padding-bottom: 130px !important;
    }

    .lg-pb-140 {
        padding-bottom: 140px !important;
    }

    .lg-pb-150 {
        padding-bottom: 150px !important;
    }

    .lg-pb-200 {
        padding-bottom: 200px !important;
    }

    .lg-mt-10 {
        margin-top: 10px !important;
    }

    .lg-mt-20 {
        margin-top: 20px !important;
    }

    .lg-mt-30 {
        margin-top: 30px !important;
    }

    .lg-mt-40 {
        margin-top: 40px !important;
    }

    .lg-mt-50 {
        margin-top: 50px !important;
    }

    .lg-mt-60 {
        margin-top: 60px !important;
    }

    .lg-mt-70 {
        margin-top: 70px !important;
    }

    .lg-mt-80 {
        margin-top: 80px !important;
    }

    .lg-mt-90 {
        margin-top: 90px !important;
    }

    .lg-mt-100 {
        margin-top: 100px !important;
    }

    .lg-mt-110 {
        margin-top: 110px !important;
    }

    .lg-mt-120 {
        margin-top: 120px !important;
    }

    .lg-mt-130 {
        margin-top: 130px !important;
    }

    .lg-mt-140 {
        margin-top: 140px !important;
    }

    .lg-mt-150 {
        margin-top: 150px !important;
    }

    .lg-mt-200 {
        margin-top: 200px !important;
    }

    .lg-mb-10 {
        margin-bottom: 10px !important;
    }

    .lg-mb-20 {
        margin-bottom: 20px !important;
    }

    .lg-mb-30 {
        margin-bottom: 30px !important;
    }

    .lg-mb-40 {
        margin-bottom: 40px !important;
    }

    .lg-mb-50 {
        margin-bottom: 50px !important;
    }

    .lg-mb-60 {
        margin-bottom: 60px !important;
    }

    .lg-mb-70 {
        margin-bottom: 70px !important;
    }

    .lg-mb-80 {
        margin-bottom: 80px !important;
    }

    .lg-mb-90 {
        margin-bottom: 90px !important;
    }

    .lg-mb-100 {
        margin-bottom: 100px !important;
    }

    .lg-mb-110 {
        margin-bottom: 110px !important;
    }

    .lg-mb-120 {
        margin-bottom: 120px !important;
    }

    .lg-mb-130 {
        margin-bottom: 130px !important;
    }

    .lg-mb-140 {
        margin-bottom: 140px !important;
    }

    .lg-mb-150 {
        margin-bottom: 150px !important;
    }

    .lg-mb-200 {
        margin-bottom: 200px !important;
    }
}

@media (max-width: 991px) {
    .md-p0 {
        padding: 0px !important;
    }

    .md-m0 {
        margin: 0px !important;
    }

    .md-pt-10 {
        padding-top: 10px !important;
    }

    .md-pt-20 {
        padding-top: 20px !important;
    }

    .md-pt-30 {
        padding-top: 30px !important;
    }

    .md-pt-40 {
        padding-top: 40px !important;
    }

    .md-pt-50 {
        padding-top: 50px !important;
    }

    .md-pt-60 {
        padding-top: 60px !important;
    }

    .md-pt-70 {
        padding-top: 70px !important;
    }

    .md-pt-80 {
        padding-top: 80px !important;
    }

    .md-pt-90 {
        padding-top: 90px !important;
    }

    .md-pt-100 {
        padding-top: 100px !important;
    }

    .md-pt-110 {
        padding-top: 110px !important;
    }

    .md-pt-120 {
        padding-top: 120px !important;
    }

    .md-pt-130 {
        padding-top: 130px !important;
    }

    .md-pt-140 {
        padding-top: 140px !important;
    }

    .md-pt-150 {
        padding-top: 150px !important;
    }

    .md-pt-200 {
        padding-top: 200px !important;
    }

    .md-pb-10 {
        padding-bottom: 10px !important;
    }

    .md-pb-20 {
        padding-bottom: 20px !important;
    }

    .md-pb-30 {
        padding-bottom: 30px !important;
    }

    .md-pb-40 {
        padding-bottom: 40px !important;
    }

    .md-pb-50 {
        padding-bottom: 50px !important;
    }

    .md-pb-60 {
        padding-bottom: 60px !important;
    }

    .md-pb-70 {
        padding-bottom: 70px !important;
    }

    .md-pb-80 {
        padding-bottom: 80px !important;
    }

    .md-pb-90 {
        padding-bottom: 90px !important;
    }

    .md-pb-100 {
        padding-bottom: 100px !important;
    }

    .md-pb-110 {
        padding-bottom: 110px !important;
    }

    .md-pb-120 {
        padding-bottom: 120px !important;
    }

    .md-pb-130 {
        padding-bottom: 130px !important;
    }

    .md-pb-140 {
        padding-bottom: 140px !important;
    }

    .md-pb-150 {
        padding-bottom: 150px !important;
    }

    .md-pb-200 {
        padding-bottom: 200px !important;
    }

    .md-mt-10 {
        margin-top: 10px !important;
    }

    .md-mt-20 {
        margin-top: 20px !important;
    }

    .md-mt-30 {
        margin-top: 30px !important;
    }

    .md-mt-40 {
        margin-top: 40px !important;
    }

    .md-mt-50 {
        margin-top: 50px !important;
    }

    .md-mt-60 {
        margin-top: 60px !important;
    }

    .md-mt-70 {
        margin-top: 70px !important;
    }

    .md-mt-80 {
        margin-top: 80px !important;
    }

    .md-mt-90 {
        margin-top: 90px !important;
    }

    .md-mt-100 {
        margin-top: 100px !important;
    }

    .md-mt-110 {
        margin-top: 110px !important;
    }

    .md-mt-120 {
        margin-top: 120px !important;
    }

    .md-mt-130 {
        margin-top: 130px !important;
    }

    .md-mt-140 {
        margin-top: 140px !important;
    }

    .md-mt-150 {
        margin-top: 150px !important;
    }

    .md-mt-200 {
        margin-top: 200px !important;
    }

    .md-mb-10 {
        margin-bottom: 10px !important;
    }

    .md-mb-20 {
        margin-bottom: 20px !important;
    }

    .md-mb-30 {
        margin-bottom: 30px !important;
    }

    .md-mb-40 {
        margin-bottom: 40px !important;
    }

    .md-mb-50 {
        margin-bottom: 50px !important;
    }

    .md-mb-60 {
        margin-bottom: 60px !important;
    }

    .md-mb-70 {
        margin-bottom: 70px !important;
    }

    .md-mb-80 {
        margin-bottom: 80px !important;
    }

    .md-mb-90 {
        margin-bottom: 90px !important;
    }

    .md-mb-100 {
        margin-bottom: 100px !important;
    }

    .md-mb-110 {
        margin-bottom: 110px !important;
    }

    .md-mb-120 {
        margin-bottom: 120px !important;
    }

    .md-mb-130 {
        margin-bottom: 130px !important;
    }

    .md-mb-140 {
        margin-bottom: 140px !important;
    }

    .md-mb-150 {
        margin-bottom: 150px !important;
    }

    .md-mb-200 {
        margin-bottom: 200px !important;
    }
}

@media (max-width: 767px) {
    .sm-p0 {
        padding: 0px !important;
    }

    .sm-m0 {
        margin: 0px !important;
    }

    .sm-pt-10 {
        padding-top: 10px !important;
    }

    .sm-pt-20 {
        padding-top: 20px !important;
    }

    .sm-pt-30 {
        padding-top: 30px !important;
    }

    .sm-pt-40 {
        padding-top: 40px !important;
    }

    .sm-pt-50 {
        padding-top: 50px !important;
    }

    .sm-pt-60 {
        padding-top: 60px !important;
    }

    .sm-pt-70 {
        padding-top: 70px !important;
    }

    .sm-pt-80 {
        padding-top: 80px !important;
    }

    .sm-pt-90 {
        padding-top: 90px !important;
    }

    .sm-pt-100 {
        padding-top: 100px !important;
    }

    .sm-pt-110 {
        padding-top: 110px !important;
    }

    .sm-pt-120 {
        padding-top: 120px !important;
    }

    .sm-pt-130 {
        padding-top: 130px !important;
    }

    .sm-pt-140 {
        padding-top: 140px !important;
    }

    .sm-pt-150 {
        padding-top: 150px !important;
    }

    .sm-pt-200 {
        padding-top: 200px !important;
    }

    .sm-pb-10 {
        padding-bottom: 10px !important;
    }

    .sm-pb-20 {
        padding-bottom: 20px !important;
    }

    .sm-pb-30 {
        padding-bottom: 30px !important;
    }

    .sm-pb-40 {
        padding-bottom: 40px !important;
    }

    .sm-pb-50 {
        padding-bottom: 50px !important;
    }

    .sm-pb-60 {
        padding-bottom: 60px !important;
    }

    .sm-pb-70 {
        padding-bottom: 70px !important;
    }

    .sm-pb-80 {
        padding-bottom: 80px !important;
    }

    .sm-pb-90 {
        padding-bottom: 90px !important;
    }

    .sm-pb-100 {
        padding-bottom: 100px !important;
    }

    .sm-pb-110 {
        padding-bottom: 110px !important;
    }

    .sm-pb-120 {
        padding-bottom: 120px !important;
    }

    .sm-pb-130 {
        padding-bottom: 130px !important;
    }

    .sm-pb-140 {
        padding-bottom: 140px !important;
    }

    .sm-pb-150 {
        padding-bottom: 150px !important;
    }

    .sm-pb-200 {
        padding-bottom: 200px !important;
    }

    .sm-mt-10 {
        margin-top: 10px !important;
    }

    .sm-mt-20 {
        margin-top: 20px !important;
    }

    .sm-mt-30 {
        margin-top: 30px !important;
    }

    .sm-mt-40 {
        margin-top: 40px !important;
    }

    .sm-mt-50 {
        margin-top: 50px !important;
    }

    .sm-mt-60 {
        margin-top: 60px !important;
    }

    .sm-mt-70 {
        margin-top: 70px !important;
    }

    .sm-mt-80 {
        margin-top: 80px !important;
    }

    .sm-mt-90 {
        margin-top: 90px !important;
    }

    .sm-mt-100 {
        margin-top: 100px !important;
    }

    .sm-mt-110 {
        margin-top: 110px !important;
    }

    .sm-mt-120 {
        margin-top: 120px !important;
    }

    .sm-mt-130 {
        margin-top: 130px !important;
    }

    .sm-mt-140 {
        margin-top: 140px !important;
    }

    .sm-mt-150 {
        margin-top: 150px !important;
    }

    .sm-mt-200 {
        margin-top: 200px !important;
    }

    .sm-mb-10 {
        margin-bottom: 10px !important;
    }

    .sm-mb-20 {
        margin-bottom: 20px !important;
    }

    .sm-mb-30 {
        margin-bottom: 30px !important;
    }

    .sm-mb-40 {
        margin-bottom: 40px !important;
    }

    .sm-mb-50 {
        margin-bottom: 50px !important;
    }

    .sm-mb-60 {
        margin-bottom: 60px !important;
    }

    .sm-mb-70 {
        margin-bottom: 70px !important;
    }

    .sm-mb-80 {
        margin-bottom: 80px !important;
    }

    .sm-mb-90 {
        margin-bottom: 90px !important;
    }

    .sm-mb-100 {
        margin-bottom: 100px !important;
    }

    .sm-mb-110 {
        margin-bottom: 110px !important;
    }

    .sm-mb-120 {
        margin-bottom: 120px !important;
    }

    .sm-mb-130 {
        margin-bottom: 130px !important;
    }

    .sm-mb-140 {
        margin-bottom: 140px !important;
    }

    .sm-mb-150 {
        margin-bottom: 150px !important;
    }

    .sm-mb-200 {
        margin-bottom: 200px !important;
    }
}

@media (max-width: 575px) {
    .xs-p0 {
        padding: 0px !important;
    }

    .xs-m0 {
        margin: 0px !important;
    }

    .xs-pt-10 {
        padding-top: 10px !important;
    }

    .xs-pt-20 {
        padding-top: 20px !important;
    }

    .xs-pt-30 {
        padding-top: 30px !important;
    }

    .xs-pt-40 {
        padding-top: 40px !important;
    }

    .xs-pt-50 {
        padding-top: 50px !important;
    }

    .xs-pt-60 {
        padding-top: 60px !important;
    }

    .xs-pt-70 {
        padding-top: 70px !important;
    }

    .xs-pt-80 {
        padding-top: 80px !important;
    }

    .xs-pt-90 {
        padding-top: 90px !important;
    }

    .xs-pt-100 {
        padding-top: 100px !important;
    }

    .xs-pt-110 {
        padding-top: 110px !important;
    }

    .xs-pt-120 {
        padding-top: 120px !important;
    }

    .xs-pt-130 {
        padding-top: 130px !important;
    }

    .xs-pt-140 {
        padding-top: 140px !important;
    }

    .xs-pt-150 {
        padding-top: 150px !important;
    }

    .xs-pt-200 {
        padding-top: 200px !important;
    }

    .xs-pb-10 {
        padding-bottom: 10px !important;
    }

    .xs-pb-20 {
        padding-bottom: 20px !important;
    }

    .xs-pb-30 {
        padding-bottom: 30px !important;
    }

    .xs-pb-40 {
        padding-bottom: 40px !important;
    }

    .xs-pb-50 {
        padding-bottom: 50px !important;
    }

    .xs-pb-60 {
        padding-bottom: 60px !important;
    }

    .xs-pb-70 {
        padding-bottom: 70px !important;
    }

    .xs-pb-80 {
        padding-bottom: 80px !important;
    }

    .xs-pb-90 {
        padding-bottom: 90px !important;
    }

    .xs-pb-100 {
        padding-bottom: 100px !important;
    }

    .xs-pb-110 {
        padding-bottom: 110px !important;
    }

    .xs-pb-120 {
        padding-bottom: 120px !important;
    }

    .xs-pb-130 {
        padding-bottom: 130px !important;
    }

    .xs-pb-140 {
        padding-bottom: 140px !important;
    }

    .xs-pb-150 {
        padding-bottom: 150px !important;
    }

    .xs-pb-200 {
        padding-bottom: 200px !important;
    }

    .xs-mt-10 {
        margin-top: 10px !important;
    }

    .xs-mt-20 {
        margin-top: 20px !important;
    }

    .xs-mt-30 {
        margin-top: 30px !important;
    }

    .xs-mt-40 {
        margin-top: 40px !important;
    }

    .xs-mt-50 {
        margin-top: 50px !important;
    }

    .xs-mt-60 {
        margin-top: 60px !important;
    }

    .xs-mt-70 {
        margin-top: 70px !important;
    }

    .xs-mt-80 {
        margin-top: 80px !important;
    }

    .xs-mt-90 {
        margin-top: 90px !important;
    }

    .xs-mt-100 {
        margin-top: 100px !important;
    }

    .xs-mt-110 {
        margin-top: 110px !important;
    }

    .xs-mt-120 {
        margin-top: 120px !important;
    }

    .xs-mt-130 {
        margin-top: 130px !important;
    }

    .xs-mt-140 {
        margin-top: 140px !important;
    }

    .xs-mt-150 {
        margin-top: 150px !important;
    }

    .xs-mt-200 {
        margin-top: 200px !important;
    }

    .xs-mb-10 {
        margin-bottom: 10px !important;
    }

    .xs-mb-20 {
        margin-bottom: 20px !important;
    }

    .xs-mb-30 {
        margin-bottom: 30px !important;
    }

    .xs-mb-40 {
        margin-bottom: 40px !important;
    }

    .xs-mb-50 {
        margin-bottom: 50px !important;
    }

    .xs-mb-60 {
        margin-bottom: 60px !important;
    }

    .xs-mb-70 {
        margin-bottom: 70px !important;
    }

    .xs-mb-80 {
        margin-bottom: 80px !important;
    }

    .xs-mb-90 {
        margin-bottom: 90px !important;
    }

    .xs-mb-100 {
        margin-bottom: 100px !important;
    }

    .xs-mb-110 {
        margin-bottom: 110px !important;
    }

    .xs-mb-120 {
        margin-bottom: 120px !important;
    }

    .xs-mb-130 {
        margin-bottom: 130px !important;
    }

    .xs-mb-140 {
        margin-bottom: 140px !important;
    }

    .xs-mb-150 {
        margin-bottom: 150px !important;
    }

    .xs-mb-200 {
        margin-bottom: 200px !important;
    }
}

.title-one .upper-title {
    font-size: 16px;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.4);
    display: block;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.title-one .upper-title.color {
    color: rgb(255, 103, 37);
}

.title-one h2.fs-xl {
    font-size: 100px;
    line-height: 1.06em;
}

.title-one h2.fs-lg {
    font-size: 90px;
    line-height: 1.06em;
}

.title-one h2.fs-lg .color {
    color: rgb(255, 103, 37);
}

.title-one span {
    position: relative;
    z-index: 1;
}

.title-one span img {
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.title-one p {
    margin: 32px 0px 0px;
}

.title-one p.mt-xs {
    margin-top: 9px;
}

.title-one h2 i {
    font-style: italic;
    text-decoration: underline 3px;
}

.title-one .star-shape img {
    position: static;
    transform: none;
    display: inline-block;
    max-width: 4%;
}

.title-one em span {
    color: rgb(255, 103, 37);
}

.btn-one {
    background: rgb(0, 0, 0);
    font-weight: 400;
    color: rgb(255, 255, 255);
    padding: 0px 17px;
    min-width: 113px;
    text-align: center;
    line-height: 30px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    font-size: 15px;
}

.btn-one i {
    margin-right: 5px;
}

.btn-one:hover, .btn-one:focus {
    background: rgb(33, 150, 243);
    border-color: rgb(33, 150, 243);
    color: rgb(255, 255, 255);
}

.btn-one.white-vr {
    color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
}

.btn-one.white-vr:hover, .btn-one.white-vr:focus {
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
}

.btn-two {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: rgb(255, 255, 255);
    padding: 5px 19px;
    min-width: 47%;
    text-align: center;
    line-height: 34px;
    border: 1px solid #009e6a;
    background: #009e6a;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.btn-two i {
    font-size: 1.5em;
    margin-left: 15px;
}

.btn-two:hover, .btn-two:focus {
    background: rgb(255, 63, 37);
    color: rgb(255, 255, 255);
}

.btn-two.text-uppercase {
    font-size: 16px;
    letter-spacing: 1px;
}

.btn-three {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: rgb(0, 0, 0);
    transition: 0.3s ease-in-out;
}

.btn-three i {
    font-size: 1.2em;
    margin-left: 5px;
}

.btn-three:hover, .btn-three:focus {
    color: rgb(255, 63, 37);
}

.btn-three:hover span, .btn-three:focus span {
    text-decoration: underline;
}

.btn-four {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(33, 150, 243);
    color: rgb(255, 255, 255);
    font-size: 1.3em;
    transition: 0.3s ease-in-out;
}

.btn-four:hover, .btn-four:focus {
    background: rgb(255, 103, 37);
}

.btn-four.inverse {
    background: rgb(255, 103, 37);
}

.btn-four.inverse:hover, .btn-four.inverse:focus {
    background: rgb(12, 12, 12);
}

.btn-five {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: rgb(255, 255, 255);
    padding: 0px 28px;
    min-width: 150px;
    text-align: center;
    line-height: 55px;
    border-radius: 10px;
    background: rgb(0, 125, 188);
    transition: 0.3s ease-in-out;
}

.btn-five.text-uppercase {
    font-size: 16px;
    letter-spacing: 1px;
}

.btn-five:hover, .btn-five:focus {
    background: rgb(255, 103, 37);
}

.btn-five.sm {
    font-size: 14px;
    padding: 0px 30px;
}

.btn-five.md {
    padding: 0px 26px;
}

.btn-five i {
    font-size: 1.3em;
    margin-left: 12px;
}

.btn-six {
    font-weight: 500;
    color: rgb(255, 255, 255);
    padding: 0px 35px;
    min-width: 160px;
    text-align: center;
    line-height: 55px;
    background: rgb(255, 103, 37);
    border-radius: 40px;
    transition: 0.3s ease-in-out;
}

.btn-six:hover, .btn-six:focus {
    background: rgb(255, 63, 37);
    color: rgb(255, 255, 255);
}

.btn-seven {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: rgb(3, 3, 3);
    padding: 0px 25px;
    min-width: 160px;
    text-align: center;
    line-height: 58px;
    border: 1px solid rgb(0, 0, 0);
    transition: 0.3s ease-in-out;
}

.btn-seven i {
    font-size: 1.3em;
    margin-left: 15px;
}

.btn-seven:hover, .btn-seven:focus {
    background: rgb(255, 63, 37);
    border-color: rgb(255, 63, 37);
    color: rgb(255, 255, 255);
}

.btn-eight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: rgb(3, 3, 3);
    padding: 0px 22px;
    min-width: 160px;
    text-align: center;
    line-height: 51px;
    border: 1px solid rgb(0, 0, 0);
    transition: 0.3s ease-in-out;
}

.btn-eight i {
    font-size: 1.1em;
    margin-left: 12px;
}

.btn-eight.inverse {
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    text-transform: initial;
    font-size: 18px;
    letter-spacing: 0px;
    font-weight: normal;
    background: rgba(0, 0, 0, 0);
}

.btn-eight.inverse i {
    font-size: 1.3em;
    margin-left: 12px;
}

.btn-eight:hover, .btn-eight:focus {
    background: rgb(255, 63, 37);
    border-color: rgb(255, 63, 37);
    color: rgb(255, 255, 255);
}

.btn-eight.sm {
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-nine {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
    padding: 0px 35px;
    min-width: 275px;
    text-align: center;
    line-height: 55px;
    background: #000000;
    transition: 0.3s ease-in-out;
}

.btn-nine:hover, .btn-nine:focus {
    background: rgb(255, 63, 37);
    color: rgb(255, 255, 255);
}

.btn-ten {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
    padding: 0px 22px;
    min-width: 160px;
    text-align: center;
    line-height: 53px;
    border: 1px solid #fff;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

.btn-ten i {
    font-size: 1.3em;
    margin-left: 15px;
}

.btn-ten:hover, .btn-ten:focus {
    background: rgb(255, 63, 37);
    border-color: rgb(255, 63, 37);
    color: rgb(255, 255, 255);
}

.btn-eleven {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: rgb(0, 125, 188);
    position: relative;
    font-size: 16px;
    padding-bottom: 5px;
    transition: 0.3s ease-in-out;
}

.btn-eleven i {
    font-weight: 900;
    font-size: 0.8em;
    margin-left: 2px;
}

.btn-eleven::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 2px;
    width: 97%;
    background: rgb(0, 0, 0);
    transition: 0.3s ease-in-out;
}

.btn-eleven:hover, .btn-eleven:focus {
    color: rgb(255, 63, 37);
}

.btn-eleven:hover::before, .btn-eleven:focus::before {
    background: rgb(255, 63, 37);
}

.btn-eleven.white-vr {
    color: rgb(255, 255, 255);
}

.btn-eleven.white-vr::before {
    background: rgb(255, 255, 255);
}

.btn-eleven.white-vr:hover, .btn-eleven.white-vr:focus {
    color: rgb(255, 63, 37);
}

.btn-eleven.white-vr:hover::before, .btn-eleven.white-vr:focus::before {
    background: rgb(255, 63, 37);
}

.btn-twelve {
    font-weight: 500;
    font-size: 18px;
    color: rgb(3, 3, 3);
    padding: 0px 25px;
    min-width: 170px;
    text-align: center;
    line-height: 48px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.btn-twelve.sm {
    font-size: 16px;
    min-width: 160px;
}

.btn-twelve:hover, .btn-twelve:focus {
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.btn-thirteen {
    width: 70px;
    height: 70px;
    border: 1px solid rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
}

.btn-thirteen:hover, .btn-thirteen:focus {
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.sidenavbtn {
    width: 55px;
    height: 55px;
    border: 1px solid rgb(0, 0, 0);
    font-size: 28px;
}

.sidenavbtn:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.offcanvas.sidebar-nav {
    width: 450px;
    border: none;
    padding: 30px 30px 20px;
    max-height: 100%;
    overflow-y: auto;
}

.offcanvas.sidebar-nav .btn-close {
    box-shadow: none;
}

.offcanvas.sidebar-nav .address-block p a {
    font-size: 1.2em;
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.offcanvas.sidebar-nav .social-icon a {
    font-size: 1.3em;
    margin: 10px 10px 0px;
    transition: 0.2s ease-in-out;
}

.offcanvas.sidebar-nav .social-icon a:hover {
    color: rgb(255, 103, 37);
}

.theme-main-menu {
    position: relative;
    z-index: 999;
    transition: 0.4s ease-in-out;
}

.theme-main-menu .gap-one {
    padding: 5px 37px;
}

.theme-main-menu .gap-two {
    padding: 24px 40px;
}

.theme-main-menu.menu-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0);
}

.theme-main-menu.fixed {
    position: fixed;
    left: 0px;
    right: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(35, 35, 35, 0.1) 0px 13px 35px -12px;
}

.theme-main-menu.fixed .alert-wrapper {
    display: none;
}

.theme-main-menu.fixed .gap-one {
    padding-top: 2px;
    padding-bottom: 2px;
}

.theme-main-menu.fixed .gap-two {
    padding-top: 12px;
    padding-bottom: 12px;
}

.theme-main-menu .navbar-toggler {
    width: 52px;
    height: 50px;
    padding: 0px;
    box-shadow: none;
    position: relative;
    z-index: 99;
    border: none;
    background: rgb(16 14 13 / 71%);
}

.theme-main-menu .navbar-toggler:focus {
    box-shadow: none;
}

.theme-main-menu .navbar-toggler::before, .theme-main-menu .navbar-toggler::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 32px;
    height: 2px;
    pointer-events: none;
    transition: transform 0.25s;
    transform-origin: 50% 50%;
    background: rgb(255, 255, 255);
}

.theme-main-menu .navbar-toggler span {
    position: absolute;
    left: 10px;
    overflow: hidden;
    width: 32px;
    height: 2px;
    margin-top: -1px;
    text-indent: 200%;
    transition: opacity 0.25s;
    background: rgb(255, 255, 255);
}

.theme-main-menu .navbar-toggler::before {
    transform: translate3d(0px, -9px, 0px) scale3d(1, 1, 1);
}

.theme-main-menu .navbar-toggler::after {
    transform: translate3d(0px, 8px, 0px) scale3d(1, 1, 1);
}

.theme-main-menu .navbar-toggler[aria-expanded="true"] span {
    opacity: 0;
}

.theme-main-menu .navbar-toggler[aria-expanded="true"]::before {
    transform: rotate3d(0, 0, 1, 45deg);
}

.theme-main-menu .navbar-toggler[aria-expanded="true"]::after {
    transform: rotate3d(0, 0, 1, -45deg);
}

.theme-main-menu .nav-item .nav-link {
     font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: initial;
    color: rgb(0, 0, 0);
    padding: 10px 0px;
    margin: 0px 11px;
    position: relative;
    transition: 0.2s ease-in-out;
}

.theme-main-menu .nav-item:hover .nav-link {
    color: rgb(255, 103, 37);
}

.theme-main-menu.white-vr .nav-item .nav-link {
    color: rgb(255, 255, 255);
}

.theme-main-menu.white-vr .nav-item:hover .nav-link {
    color: rgb(255, 103, 37);
}

.theme-main-menu.white-vr.fixed {
    background: rgb(0 0 0);
    border: none;
}

.theme-main-menu .dropdown-toggle::after {
    /* content: "ïŠ‚"; */
    font-family: bootstrap-icons;
    border: none;
    vertical-align: -1px;
    margin-left: 3px;
    font-weight: 900;
    font-size: 12px;
}

.theme-main-menu .dashboard-menu .nav-link::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url("../images/shape/shape_79.svg") center center / cover no-repeat;
    margin-left: 5px;
    vertical-align: 2px;
    animation: 2s linear 0s infinite normal none running rotated;
}

.theme-main-menu.menu-style-two:not(.fixed) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-main-menu.menu-style-four {
    background: rgb(255, 255, 255);
}

.theme-main-menu.menu-style-four::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 128px;
    height: 100%;
    border-right: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
}

.theme-main-menu.menu-style-four.fixed::before {
    display: none;
}

.navbar .dropdown-menu .dropdown-item {
    /* text-transform: uppercase; */
    line-height: 30px;
    font-size: 16.5px;
    background: rgba(0, 0, 0, 0);
    position: relative;
    color: rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
    font-weight: 400;
}

.navbar .dropdown-menu .dropdown-item span {
    position: relative;
}

.navbar .dropdown-menu .dropdown-item span::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: rgb(255, 63, 37);
    transform: scale(0, 1);
    transform-origin: 0px 0px;
    transition: 0.2s ease-in-out;
}

.navbar .dropdown-menu .dropdown-item:hover span::before, .navbar .dropdown-menu .dropdown-item.active span::before {
    transform: scale(1);
}

.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item.active {
    color: rgb(255, 103, 37);
}

.theme-main-menu .navbar {
    position: static;
}

.navbar [class*="mega-dropdown"] .dropdown-menu {
    padding: 0px 0px 15px;
    margin: 0px;
    right: 0px;
}

.navbar .mega-dropdown-sm .dropdown-menu {
    min-width: 700px;
    left: -250px;
    padding: 10px;
}

.navbar [class*="mega-dropdown"] .menu-column {
    padding: 5px 0px;
}

.navbar [class*="mega-dropdown"] .menu-column .mega-menu-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    margin: 0px 0px 15px;
    padding-left: 15px;
}

.navbar [class*="mega-dropdown"] .menu-column .mega-menu-title::before {
    content: "";
    position: absolute;
    width: calc(100% - 15px);
    height: 1px;
    background: rgb(0, 0, 0);
    left: 15px;
    bottom: -5px;
}

.theme-main-menu .alert-wrapper {
    background: rgb(69, 58, 52);
    padding: 8px 12px;
}

.theme-main-menu .alert-wrapper a, .theme-main-menu .alert-wrapper span {
    color: rgb(255, 103, 37);
}

.theme-main-menu .login-btn-one {
    color: rgb(0, 0, 0);
}

.theme-main-menu .login-btn-one i {
    font-size: 1.05em;
    margin-right: 10px;
}

.theme-main-menu .login-btn-one a {
    color: rgb(0, 0, 0);
}

.theme-main-menu .login-btn-one a:hover {
    color: rgb(255, 103, 37);
}

.theme-main-menu .login-btn-two {
    width: 60px;
    height: 60px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 1.3em;
}

.theme-main-menu .login-btn-two:hover {
    background: rgb(255, 103, 37);
}

.theme-main-menu .search-btn-one {
    width: 60px;
    height: 60px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 1.3em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-left: -10px;
}

.theme-main-menu .search-btn-one::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    top: 0px;
    left: -50px;
    transition: 0.3s ease-in-out;
}

.theme-main-menu .search-btn-one:hover, .theme-main-menu .search-btn-one:hover::before {
    background: rgb(255, 103, 37);
}

.theme-main-menu .email-text {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.35);
}

.theme-main-menu .email-text a {
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

.theme-main-menu .email-text a:hover {
    color: rgb(255, 103, 37);
}

@media screen and (min-width: 992px) {
    .justify-content-between .navbar {
        float: right;
    }

    .navbar .dropdown-menu {
        font-size: 1em;
        z-index: 5;
        background-color: rgb(255, 255, 255);
        border-radius: 10px;
        display: block;
        right: auto;
        left: 0px;
        padding: 10px 5px;
        border: none;
        top: 100%;
        visibility: hidden;
        transform: translateY(5px);
        opacity: 0;
        min-width: 200px;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 50px 100px;
        margin: 0px;
        transform-origin: 0px 0px;
        transition: 0.2s ease-in;
    }

    .navbar .dropdown-menu::before {
        content: "";
        position: absolute;
        left: 30px;
        top: -17px;
    }

    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: 0px;
        right: auto;
        min-width: 240px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 30px -10px;
        transform: translateY(0px);
    }

    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    .navbar .show.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        padding: 0px;
    }

    .navbar-collapse .logo {
        margin-bottom: 3vh;
        padding-left: 12px;
    }

    .white-vr .navbar-collapse {
        background-color: rgb(255, 255, 255);
    }

    .navbar-collapse {
        position: fixed;
        top: 0px;
        background-color: rgb(255, 255, 255);
        left: 0px;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        clear: both;
        width: 320px;
        max-width: calc(-60px + 100vw);
        z-index: 9999;
        transform: translateX(-100%);
        padding: 16px 0px 20px;
        transition: 0.3s ease-in-out;
        display: block !important;
    }

    .navbar-collapse.show {
        transform: translateX(0px);
        box-shadow: rgba(35, 35, 35, 0.09) 15px 0px 25px;
    }

    .theme-main-menu .navbar .mega-dropdown {
        position: relative;
    }

    .navbar .navbar-nav .nav-link {
        margin: 0px;
        padding: 15px 12px;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
    }

    .white-vr .navbar .navbar-nav .nav-link {
        border-top: 1px dashed rgba(255, 255, 255, 0.15);
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 0px 10px;
        line-height: 40px;
        /* font-size: 1.2em; */
        font-weight: 500 !important;!i;!;
    }

    .navbar .dropdown-menu {
        border-right: none;
        border-bottom: none;
        border-left: none;
        border-image: initial;
        padding: 0px;
        border-radius: 0px;
        margin: 0px;
        background: rgb(251 251 251);
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
    }

    .navbar [class*="mega-dropdown"] .dropdown-menu {
        padding: 0px;
        min-width: 100%;
    }

    .navbar [class*="mega-dropdown"] .menu-column {
        padding: 0px;
    }

    .navbar [class*="mega-dropdown"] .menu-column .mega-menu-title {
        padding-left: 10px;
        margin-top: 15px;
    }

    .navbar [class*="mega-dropdown"] .menu-column .mega-menu-title::before {
        left: 10px;
    }

    .navbar .dropdown-toggle::after {
        position: absolute;
        right: 15px;
        top: calc(50% - 2px);
    }

    .dashboard-menu .nav-link::before {
        right: auto;
        left: 0px;
        top: -2px;
    }
}

.hero-banner-one .hero-heading {
    font-size: 90px;
    line-height: 1.111em;
}

.hero-banner-one .hero-heading span img {
    position: absolute;
    z-index: -1;
    left: 0px;
    bottom: -9%;
    width: 100%;
}

.hero-banner-one .illustration {
    bottom: 0px;
    left: 0px;
}

.hero-banner-two {
    background: linear-gradient(178.61deg, rgb(215, 247, 255) 1.17%, rgb(179, 240, 249) 98.81%);
}

.hero-banner-two .line-bg::before {
    content: "";
    position: absolute;
    inset: 122px 0px 0px;
    background: url("../images/shape/shape_10.svg") center center / cover no-repeat;
    z-index: -1;
}

.hero-banner-two .hero-heading {
    font-size: 120px;
    line-height: 1em;
}

.hero-banner-two .illustration {
    bottom: 0px;
    right: 0px;
    max-width: 57%;
}

.hero-banner-two .video-icon i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    transition: 0.3s ease-in-out;
}

.hero-banner-two .video-icon:hover i, .hero-banner-two .video-icon:focus i {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.hero-banner-two .video-icon span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
}

.hero-banner-two .shape_01 {
    right: 2%;
    top: 18%;
    max-width: 7%;
}

.hero-banner-two .shape_02 {
    right: 24%;
    top: 24%;
    max-width: 8%;
}

.hero-banner-three {
    border-radius: 40px;
    overflow: hidden;
    margin: 126px 40px 0px;
}

.hero-banner-three::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url("../images/assets/texture.png") center center / cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-banner-three::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-banner-three .hero-slider-one {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.hero-banner-three .hero-slider-one .hero-img {
    position: absolute;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-banner-three .hero-slider-one .slick-list, .hero-banner-three .hero-slider-one .slick-track, .hero-banner-three .hero-slider-one .item {
    height: 100%;
}

.hero-banner-three .hero-heading {
    font-size: 120px;
    line-height: 1em;
}

.hero-banner-three .hero-heading span {
    position: relative;
    padding: 0px 8%;
    display: inline-block;
}

.hero-banner-three .hero-heading span img {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 9%;
}

.hero-banner-three .shape_01 {
    left: 0px;
    top: 0px;
    max-width: 5%;
    z-index: 0;
}

.hero-banner-three .shape_02 {
    right: 0px;
    bottom: 0px;
    max-width: 4%;
    z-index: 0;
}

.hero-banner-four {
    padding: 108px 0px 0px 128px;
    border-bottom: 1px solid rgb(0, 0, 0);
}

.hero-banner-four .social-elemnet {
    position: absolute;
    z-index: 9;
    left: 0px;
    top: 40%;
    transform: rotate(-90deg) translate(0px, 0px);
}

.hero-banner-four .social-elemnet li {
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin: 0px 5px;
}

.hero-banner-four .social-elemnet li:hover a {
    color: rgb(255, 103, 37);
}

.hero-banner-four .scroll-bar {
    width: 3px;
    height: 100px;
    background: rgb(0, 0, 0);
    position: absolute;
    bottom: 10%;
    left: 55px;
    transform: translateY(-50%);
    z-index: 9;
}

.hero-banner-four .scroll-bar::before {
    content: "";
    position: absolute;
    height: 36%;
    width: 100%;
    left: 0px;
    top: 0px;
    background: rgb(244, 244, 244);
}

.hero-banner-four .scroll-bar span {
    position: absolute;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    transform: rotate(-90deg);
    top: 137%;
    left: -36px;
    color: rgb(0, 0, 0);
}

.hero-banner-four .main-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    mix-blend-mode: normal;
    z-index: 0;
}

.hero-banner-four .main-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    mix-blend-mode: normal;
    z-index: 0;
}

.hero-banner-four .hero-slider-one {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.hero-banner-four .hero-slider-one .hero-img {
    position: absolute;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-banner-four .hero-slider-one .slick-list, .hero-banner-four .hero-slider-one .slick-track, .hero-banner-four .hero-slider-one .item {
    height: 100%;
}

.hero-banner-four .hero-heading {
    font-size: 130px;
    line-height: 1.0769em;
}

.hero-banner-four .hero-heading span {
    margin-left: 40px;
}

.hero-banner-four .hero-heading span img {
    width: 73px;
    height: 73px;
    border: 6px solid rgb(255, 255, 255);
    border-radius: 50%;
    margin-left: -22px;
}

.hero-banner-five .hero-heading {
    font-size: 130px;
    line-height: 0.953em;
}

.hero-banner-five .rating {
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 18px 0px 8px;
}

.hero-banner-five .illustration {
    width: 67%;
    left: 0px;
    bottom: 0px;
}

.hero-banner-five .shape_01 {
    right: 16%;
    top: 30%;
    max-width: 19%;
    animation: 250s linear 0s infinite normal none running rotated;
}

.hero-banner-five .media-wrapper {
    width: calc(37% + 12px);
    top: 200px;
    right: 0px;
    bottom: -85px;
    position: absolute;
    z-index: -1;
}

.hero-banner-five .media-wrapper .bg {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url("../images/media/img_45.jpg") center center / cover no-repeat;
}

.hero-banner-five .media-wrapper::after {
    content: "";
    position: absolute;
    inset: 95px 95px -65px -65px;
    background: url("../images/shape/shape_53.svg") center center / cover no-repeat;
    z-index: -1;
}

.hero-banner-six {
    background: url("../images/media/img_47.jpg") center top / cover no-repeat;
}

.hero-banner-six::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url("../images/assets/texture_02.png") center center / cover no-repeat;
    mix-blend-mode: overlay;
    opacity: 0.5;
    z-index: -1;
}

.hero-banner-six .hero-heading {
    font-size: 40px;
    line-height: 1.19em;
}

.hero-banner-six .hero-heading span img {
    position: absolute;
    z-index: -1;
    left: 0px;
    bottom: -9%;
    width: 100%;
}

.hero-banner-six .sub-heading {
    font-size: 28px;
}

.hero-banner-six .rating {
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 18px 0px 8px;
}

.hero-banner-six .search-wrapper-one {
    margin-bottom: -40px;
}

.hero-banner-seven {
    height: 800px;
}

.hero-banner-seven .search-wrapper-overlay {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -30px;
}

.hero-banner-seven .search-filter-nav-one .nav-link {
    line-height: 40px;
    border-radius: 30px;
    margin: 0px 10px 15px 0px;
    color: rgb(0, 0, 0);
}

.hero-banner-eight {
    background: url("../images/media/img_59.jpg") center top / cover no-repeat;
}

.hero-banner-eight::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 230px;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.81) 0%, rgba(0, 0, 0, 0.52) 49.49%, rgba(0, 0, 0, 0) 100%);
}

.hero-banner-eight .hero-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1em;
}

.fancy-banner-one {
    background: url("../images/media/img_10.jpg") center center / cover no-repeat fixed;
}

.fancy-banner-one::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    background: linear-gradient(89.93deg, rgba(0, 0, 0, 0.63) 0.33%, rgba(0, 0, 0, 0.51) 45.5%, rgba(0, 0, 0, 0) 99.93%);
}

.fancy-banner-one .property-item {
    margin: 0px 20px 20px 0px;
    border-radius: 20px;
    background: rgb(255, 255, 255);
}

.fancy-banner-one .property-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    bottom: -10px;
    right: -10px;
    z-index: -1;
}

.fancy-banner-one .property-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    bottom: -20px;
    right: -20px;
    z-index: -2;
}

.fancy-banner-one .property-item.rounded-0::after, .fancy-banner-one .property-item.rounded-0::before {
    border-radius: 0px;
}

.fancy-banner-one .property-item .gutter {
    padding: 25px 30px;
}

.fancy-banner-one .property-item .border-right {
    border-right: 1px solid rgb(214, 214, 214);
}

.fancy-banner-one .property-item .tag {
    width: 90px;
    line-height: 27px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12px;
    color: rgb(255, 255, 255);
    text-align: center;
    background: rgb(0, 181, 121);
    border-radius: 25px;
}

.fancy-banner-one .property-item .action-icons {
    margin: 0px -18px;
}

.fancy-banner-one .property-item .action-icons li {
    padding: 0px 18px;
}

.fancy-banner-one .property-item .action-icons li a {
    color: rgb(191, 191, 191);
    font-size: 1.2em;
    transition: 0.2s ease-in-out;
}

.fancy-banner-one .property-item .action-icons li a:hover, .fancy-banner-one .property-item .action-icons li a:focus {
    color: rgb(255, 103, 37);
}

.fancy-banner-one .property-item .price {
    font-size: 40px;
    letter-spacing: -0.8px;
    background: url("../images/shape/shape_04.svg") center center / cover no-repeat;
    padding: 15px 10px;
}

.fancy-banner-one .property-item .feature {
    margin: 25px -5px 18px;
}

.fancy-banner-one .property-item .feature li {
    padding: 0px 5px;
    position: relative;
    width: 33.3333%;
}

.fancy-banner-one .property-item .feature li::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background: rgb(209, 209, 209);
}

.fancy-banner-one .property-item .feature li:last-child::before {
    display: none;
}

.fancy-banner-one .property-item .button-group {
    border-top: 1px solid rgb(214, 214, 214);
    padding-top: 20px;
    padding-bottom: 20px;
}

.fancy-banner-one .property-item .button-group .btn-four {
    width: 42px;
    height: 42px;
}

.fancy-banner-two {
    background: url("../images/media/img_12.jpg") center center / cover no-repeat fixed;
}

.fancy-banner-two::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.fancy-banner-two .form-wrapper {
    max-width: 500px;
}

.fancy-banner-two .form-wrapper form {
    height: 80px;
    position: relative;
}

.fancy-banner-two .form-wrapper form input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    padding: 0px 170px 0px 25px;
    background: rgb(255, 255, 255);
}

.fancy-banner-two .form-wrapper form button {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 10px;
    background: rgb(255, 103, 37);
    width: 160px;
    font-weight: 500;
    font-size: 16px;
    color: rgb(255, 255, 255);
    transition: 0.3s ease-in-out;
}

.fancy-banner-two .form-wrapper form button:hover, .fancy-banner-two .form-wrapper form button:focus {
    background: rgb(255, 63, 37);
}

.fancy-banner-two .form-wrapper a {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.fancy-banner-three .illustration {
    bottom: 0px;
    left: 0px;
    z-index: -1;
}

.fancy-banner-four {
    background: linear-gradient(rgb(226, 245, 250) 0%, rgb(213, 246, 255) 100%);
}

.fancy-banner-four .bg-line {
    background: url("../images/shape/shape_18.svg") center center / cover no-repeat;
}

.fancy-banner-four .illustration {
    bottom: 0px;
    left: 0px;
    max-width: 48%;
}

.fancy-banner-four .screen_01 {
    bottom: 15%;
    left: 34%;
    max-width: 14%;
    box-shadow: rgba(0, 0, 0, 0.07) -10px 30px 50px;
}

.fancy-banner-five {
    background: url("../images/media/img_25.jpg") center center / cover no-repeat fixed;
}

.fancy-banner-five::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
}

.fancy-banner-five .shape_01 {
    bottom: -18%;
    right: 5%;
    max-width: 10%;
    animation: 300s linear 0s infinite normal none running rotated;
}

.fancy-banner-six .bg-wrapper {
    background: rgb(21, 25, 26);
    border-radius: 40px;
    overflow: hidden;
}

.fancy-banner-six .map-wrapper {
    max-width: 1205px;
    padding: 0px 15px;
}

.fancy-banner-six .location-pin {
    position: absolute;
    left: 22%;
    top: 29%;
    padding: 12px;
    z-index: 1;
}

.fancy-banner-six .location-pin .dot-marker {
    width: 20px;
    height: 20px;
    border: 5px solid rgb(255, 255, 255);
    background: rgb(255, 103, 37);
    position: relative;
    animation: 5s linear 0s infinite normal none running rippleTwo;
    cursor: pointer;
}

.fancy-banner-six .location-pin .dot-marker::before, .fancy-banner-six .location-pin .dot-marker::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    animation-duration: inherit;
    animation-timing-function: inherit;
    animation-iteration-count: inherit;
    animation-direction: inherit;
    animation-fill-mode: inherit;
    animation-play-state: inherit;
    animation-name: inherit;
    animation-timeline: inherit;
    animation-range: inherit;
    animation-delay: 1s;
}

.fancy-banner-six .location-pin .dot-marker::after {
    animation-delay: 1.5s;
}

.fancy-banner-six .location-pin .map-info {
    position: absolute;
    width: 295px;
    top: -138px;
    left: -132px;
    background: rgb(255, 255, 255);
    padding: 20px 20px 25px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
}

.fancy-banner-six .location-pin .map-info::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(255, 255, 255);
    transform: rotate(45deg);
    bottom: -8px;
    left: 49%;
    z-index: -1;
}

.fancy-banner-six .location-pin .map-info .flag {
    width: 39px;
    height: 39px;
    border-radius: 50%;
}

.fancy-banner-six .location-pin .map-info .info {
    width: calc(100% - 39px);
    padding-left: 15px;
}

.fancy-banner-six .location-pin .map-info .info h6 {
    font-size: 18px;
}

.fancy-banner-six .location-pin .map-info .info span {
    font-size: 16px;
    line-height: 22px;
    color: rgb(126, 126, 126);
    display: block;
}

.fancy-banner-six .location-pin:hover .map-info {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.fancy-banner-six .location-pin:nth-child(3) {
    left: 27%;
    top: 65%;
}

.fancy-banner-six .location-pin:nth-child(4) {
    left: 61%;
    top: 15%;
}

.fancy-banner-six .location-pin:nth-child(5) {
    left: 55%;
    top: 56%;
}

.fancy-banner-six .location-pin:nth-child(6) {
    left: 70%;
    top: 38%;
}

.fancy-banner-six .location-pin:nth-child(7) {
    left: 86%;
    top: 79%;
}

.fancy-banner-six .country-list {
    max-width: 85.3%;
    margin: 0px auto;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fancy-banner-six .country-list::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -110px;
    width: 110px;
    background: url("../images/shape/shape_41.svg") right center / cover no-repeat;
}

.fancy-banner-six .country-list .list-block {
    padding: 28px 10px 30px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fancy-banner-six .country-list .list-block .title {
    font-size: 24px;
    color: rgb(255, 103, 37);
    margin-bottom: 18px;
}

.fancy-banner-six .country-list .list-block ul li {
    line-height: 40px;
    color: rgba(255, 255, 255, 0.7);
}

.fancy-banner-six .country-list .list-block ul.d-flex li {
    width: 50%;
}

.fancy-banner-six .country-list .list-block:first-child {
    width: 25%;
    padding-left: 0px;
}

.fancy-banner-six .country-list .list-block:nth-child(2) {
    width: 22%;
}

.fancy-banner-six .country-list .list-block:nth-child(3) {
    width: 31%;
}

.fancy-banner-six .country-list .list-block:nth-child(4) {
    width: 22%;
    border-right: none;
}

.fancy-banner-six .text-slide-wrapper {
    max-width: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    bottom: -1%;
}

.fancy-banner-six .text-slide-wrapper .marquee {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: 130s linear 0s infinite normal none running marquee;
}

.fancy-banner-six .text-slide-wrapper .marquee p {
    display: inline-block;
    font-size: 110px;
    color: rgb(21, 25, 26);
    line-height: 1em;
    margin: 0px;
    text-shadow: rgba(255, 255, 255, 0.15) 0px 0px 1px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.fancy-banner-seven .bg-wrapper {
    background: url("../images/media/img_31.jpg") center center / cover no-repeat fixed;
    border-radius: 40px;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 12px;
}

.fancy-banner-seven .bg-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(17, 17, 17, 0.55);
    z-index: -1;
}

.fancy-banner-seven .bg-wrapper h2 {
    font-size: 60px;
    line-height: 0.933em;
}

.fancy-banner-seven .bg-wrapper .shape_01 {
    left: 0px;
    top: 0px;
    max-width: 6%;
}

.fancy-banner-seven .bg-wrapper .shape_02 {
    right: 0px;
    bottom: 0px;
    max-width: 6%;
    mix-blend-mode: overlay;
}

.fancy-banner-eight .bg-wrapper {
    padding: 10px 110px 0px;
}

.fancy-banner-eight .bg-wrapper.border-30 {
    border-radius: 30px;
}

.fancy-banner-eight .media-wrapper {
    padding: 0px 38px;
    margin-bottom: -6px;
}

.fancy-banner-eight .media-wrapper .shape_01 {
    width: 100%;
    bottom: 0px;
    left: 0px;
}

.fancy-banner-eight .shape_02 {
    right: -123px;
    bottom: -5px;
}

.fancy-banner-nine .avatar {
    width: 60px;
    height: 60px;
}

.fancy-banner-nine .text {
    width: calc(100% - 60px);
}

.fancy-banner-nine .text span {
    color: rgba(0, 0, 0, 0.4);
}

.fancy-banner-nine blockquote {
    font-size: 32px;
    line-height: 1.625em;
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin: 0px;
}

.fancy-banner-nine .fact-wrapper {
    border: 1px solid rgb(234, 234, 234);
    border-radius: 20px;
    overflow: hidden;
}

.fancy-banner-nine .fact-wrapper .fact-box {
    width: 25%;
    position: relative;
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 40px 10px;
    border-right: 1px solid rgb(234, 234, 234);
}

.fancy-banner-nine .fact-wrapper .fact-box::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    right: -16px;
    transform: rotate(45deg);
    border-top: 1px solid rgb(234, 234, 234);
    border-right: 1px solid rgb(234, 234, 234);
    z-index: 1;
}

.fancy-banner-nine .fact-wrapper .fact-box .numb {
    font-weight: 500;
    font-size: 36px;
    margin-bottom: -2px;
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(1) {
    background: rgb(255, 255, 255);
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(1)::before {
    background: rgb(255, 255, 255);
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(2) {
    background: rgb(255, 249, 247);
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(2)::before {
    background: rgb(255, 249, 247);
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(3) {
    background: rgb(255, 243, 239);
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(3)::before {
    background: rgb(255, 243, 239);
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(4) {
    background: rgb(255, 233, 226);
    border: none;
}

.fancy-banner-nine .fact-wrapper .fact-box:nth-child(4)::before {
    display: none;
}

.address-banner .icon {
    width: 64px;
    height: 64px;
    background: rgb(0, 0, 0);
}

.address-banner .text {
    width: calc(100% - 64px);
    padding-left: 25px;
}

.address-banner .text p {
    margin-bottom: 3px;
}

.address-banner .text a {
    color: rgb(22 22 22 / 72%);
}

.address-banner .text a:hover {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.address-banner .skew-line::before, .address-banner .skew-line::after {
    content: "";
    position: absolute;
    height: 70px;
    width: 1px;
    transform: rotate(23deg);
    top: 0px;
    left: -100px;
    background: rgb(0, 0, 0);
}

.address-banner .skew-line::after {
    left: auto;
    right: -100px;
}

.inner-banner h3 {
    letter-spacing: -1px;
}

.inner-banner .theme-breadcrumb {
    margin: 0px -3px;
}

.inner-banner .theme-breadcrumb li {
    padding: 0px 3px;
    font-size: 17px;
    color: rgba(49, 49, 49, 0.5);
}

.inner-banner .theme-breadcrumb li a {
    color: rgba(49, 49, 49, 0.5);
    transition: 0.3s ease-in-out;
}

.inner-banner .theme-breadcrumb li a:hover {
    color: rgb(255, 103, 37);
}

.inner-banner .theme-breadcrumb li:last-child {
    color: rgb(0, 0, 0);
}

.inner-banner .theme-breadcrumb.bottom-line {
    padding-bottom: 8px;
}

.inner-banner .theme-breadcrumb.bottom-line::before {
    content: "";
    position: absolute;
    width: calc(100% - 6px);
    left: 3px;
    bottom: 0px;
    right: 3px;
    height: 1px;
    background: rgb(0, 0, 0);
}

.inner-banner-one {
}

.inner-banner-one .illustration {
    bottom: 0px;
    left: 0px;
}

.inner-banner-two {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-banner-two .sub-heading {
    font-size: 28px;
    line-height: 1.785em;
    margin: 0px;
    color: rgb(0, 0, 0);
    padding-left: 80px;
}

.inner-banner-three {
    margin: 126px 40px 0px;
}

.inner-banner-three .bg-wrapper {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 88px 0px 125px;
}

.inner-banner-three .bg-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url("../images/assets/texture.png") center center / cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.inner-banner-three .bg-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.inner-banner-three h2 {
    font-size: 90px;
}

.inner-banner-three .theme-breadcrumb li {
    color: rgb(255, 255, 255);
}

.inner-banner-three .theme-breadcrumb li a {
    color: rgba(255, 255, 255, 0.65);
}

.inner-banner-three .theme-breadcrumb li a:hover {
    color: rgb(255, 103, 37);
}

.inner-banner-three .theme-breadcrumb li:last-child {
    color: rgb(255, 255, 255);
}

.inner-banner-three .theme-breadcrumb.bottom-line::before {
    background: rgb(255, 255, 255);
}

.inner-banner-three .shape_01 {
    left: 0px;
    top: 0px;
    max-width: 5%;
    z-index: 0;
    opacity: 0.5;
}

.inner-banner-three .shape_02 {
    right: 0px;
    bottom: 0px;
    max-width: 4%;
    z-index: 0;
    opacity: 0.7;
}

.block-feature-two .wrapper {
    max-width: 1644px;
    padding: 0px 12px;
    margin: 0px auto;
}

.block-feature-two .block-one {
    background: url("../images/media/img_04.jpg") center center / cover no-repeat;
    border-radius: 30px;
    padding: 60px 70px 55px;
    min-height: 400px;
}

.block-feature-two .block-one .video-icon {
    color: rgb(255, 255, 255);
    font-size: 30px;
    width: 60px;
    height: 60px;
    padding-left: 5px;
    background: rgb(34, 32, 32);
    position: relative;
    animation: 3s linear 0s infinite normal none running ripple;
    transition: 0.3s ease-in-out;
}

.block-feature-two .block-one .video-icon::before, .block-feature-two .block-one .video-icon::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    animation-duration: inherit;
    animation-timing-function: inherit;
    animation-iteration-count: inherit;
    animation-direction: inherit;
    animation-fill-mode: inherit;
    animation-play-state: inherit;
    animation-name: inherit;
    animation-timeline: inherit;
    animation-range: inherit;
    animation-delay: 1s;
}

.block-feature-two .block-one .video-icon::after {
    animation-delay: 3s;
}

.block-feature-two .block-one .video-icon:hover, .block-feature-two .block-one .video-icon:focus {
    background: rgb(255, 63, 37);
}

.block-feature-two .block-one .screen_01 {
    left: 0px;
    bottom: 0px;
    border-radius: 20px;
    max-width: 34%;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 30px 60px;
}

.block-feature-two .block-one .card-box {
    padding: 20px 12px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 15px 30px;
    border-radius: 20px;
    position: absolute;
    right: 0px;
    top: 18%;
    min-width: 260px;
}

.block-feature-two .block-one .card-box p {
    color: rgba(0, 0, 0, 0.5);
}

.block-feature-two .block-two {
    background: url("../images/shape/shape_03.svg") center center / cover no-repeat;
    padding: 30px;
}

.block-feature-two .block-two .bg-wrapper {
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 35px 40px 45px;
}

.block-feature-two .block-two .bg-wrapper h5 {
    font-size: 28px;
}

.block-feature-two .block-two .bg-wrapper .top-line {
    border-top: 1px solid rgb(0, 0, 0);
    margin-top: 60px;
    padding-top: 55px;
}

.block-feature-two .block-two .counter-wrapper {
    border-top: 2px solid rgb(0, 0, 0);
    border-bottom: 2px solid rgb(0, 0, 0);
}

.block-feature-three .slider-arrows li {
    position: absolute;
    left: -27px;
    bottom: 173px;
    z-index: 1;
}

.block-feature-three .slider-arrows li[class*="next"] {
    left: auto;
    right: -27px;
}

.block-feature-four form {
    height: 80px;
    position: relative;
}

.block-feature-four form input {
    width: 100%;
    height: 100%;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 8px;
    padding: 0px 200px 0px 25px;
    color: rgb(0, 0, 0);
}

.block-feature-four form button {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 8px;
    background: rgb(255, 103, 37);
    width: 185px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    transition: 0.3s ease-in-out;
}

.block-feature-four form button:hover, .block-feature-four form button:focus {
    background: rgb(255, 63, 37);
}

.block-feature-four form.border-60 input {
    border-radius: 60px;
    overflow: hidden;
}

.block-feature-four form.border-60 button {
    border-radius: 40px;
}

.block-feature-four .img-gallery {
    padding: 45px 0px 0px 45px;
}

.block-feature-four .img-gallery::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 60px;
    height: 85%;
    background: url("../images/shape/shape_06.svg") center center / cover no-repeat;
    z-index: -1;
}

.block-feature-four .img-gallery .img-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.block-feature-four .img-gallery .card-one {
    position: absolute;
    left: -5%;
    bottom: -10%;
    max-width: 61%;
    min-width: 280px;
    animation: 5s linear 0s infinite normal none running jumpFour;
}

.block-feature-four .img-gallery .card-one img {
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.04) -10px 20px 40px;
}

.block-feature-four .img-gallery .card-one .text {
    position: absolute;
    width: 100%;
    padding: 25px 15px 0px;
}

.block-feature-four .img-gallery .card-one .text h6 {
    letter-spacing: -1px;
}

.block-feature-four .img-gallery .card-one .text h3 {
    font-size: 44px;
    letter-spacing: -1px;
}

.block-feature-five .shape_01 {
    left: 0px;
    bottom: 0px;
    max-width: 18%;
}

.block-feature-five .shape_02 {
    right: 0px;
    bottom: 0px;
    max-width: 17%;
}

.block-feature-seven .rating {
    margin: 0px -4px;
}

.block-feature-seven .rating li {
    padding: 0px 4px;
}

.block-feature-seven .rating li:last-child {
    font-size: 20px;
    letter-spacing: -0.2px;
    color: rgba(0, 0, 0, 0.3);
    margin-left: 15px;
}

.block-feature-seven .rating i {
    color: rgb(255, 103, 37);
}

.block-feature-seven .shape_01 {
    top: -96px;
    right: -110px;
    max-width: 10%;
}

.block-feature-seven .shape_02 {
    bottom: -47%;
    right: 18%;
}

.block-feature-eight .title-one {
    margin-bottom: -40px;
}

.block-feature-eight .media-block .main-img {
    border-radius: 20px;
}

.block-feature-eight .media-block .screen_01 {
    left: -13%;
    bottom: -12%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.06) -10px 30px 50px;
    max-width: 57%;
    z-index: 1;
}

.block-feature-eight .media-block .screen_02 {
    top: -20%;
    right: -3%;
    max-width: 43%;
    z-index: 1;
}

.block-feature-eight .media-block .shape_01 {
    right: 4%;
    bottom: 45%;
    z-index: 1;
    max-width: 29%;
}

.block-feature-eight .media-block .screen_03 {
    box-shadow: rgba(0, 0, 0, 0.06) -10px 30px 50px;
    border-radius: 10px;
}

.block-feature-eight .counter-wrapper {
    border-top: 1px solid rgb(228, 228, 228);
    border-bottom: 1px solid rgb(228, 228, 228);
}

.block-feature-nine.image-bg::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0px;
    top: 0px;
    z-index: -1;
    background: url("../images/media/img_37.jpg") right center / cover no-repeat;
}

.block-feature-nine .shape_01 {
    bottom: 0px;
    left: 0px;
    max-width: 17%;
    opacity: 0.3;
}

.block-feature-nine .shape_02 {
    bottom: 0px;
    right: 0px;
    max-width: 13%;
    opacity: 0.3;
}

.block-feature-ten .border-20 {
    border-radius: 20px;
}

.block-feature-ten .email-form {
    height: 85px;
}

.block-feature-ten .email-form input {
    width: 100%;
    height: 100%;
    border: 2px solid rgb(0, 0, 0);
    padding: 0px 200px 0px 25px;
    color: rgb(0, 0, 0);
}

.block-feature-ten .email-form button {
    position: absolute;
    border-radius: 0px;
    right: 10px;
    bottom: 10px;
    top: 10px;
    width: 185px;
}

.block-feature-ten .email-form.border-60 input {
    border-radius: 60px;
    overflow: hidden;
}

.block-feature-ten .email-form.border-60 button {
    border-radius: 40px;
}

.block-feature-ten .media-gallery {
    padding: 0px 80px 80px 65px;
    margin-right: 25px;
}

.block-feature-ten .media-gallery::before {
    content: "";
    position: absolute;
    inset: 50px 0px 0px 155px;
    z-index: -1;
    background: url("../images/shape/shape_16.svg") center center / cover no-repeat;
}

.block-feature-ten .media-gallery .bg {
    height: 100%;
    min-height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
}

.block-feature-ten .media-gallery .card-style-three {
    position: absolute;
    right: 4%;
    top: 11%;
    z-index: 1;
    width: 35%;
    min-width: 200px;
}

.block-feature-ten .media-gallery .screen_01 {
    position: absolute;
    left: 0px;
    bottom: 5%;
    z-index: 1;
    max-width: 44%;
    box-shadow: rgba(0, 28, 53, 0.06) -20px 30px 50px;
}

.block-feature-ten .media-gallery .screen_02 {
    position: absolute;
    left: 2%;
    bottom: 5%;
    z-index: 1;
    max-width: 37%;
    box-shadow: rgba(0, 28, 53, 0.06) -20px 30px 50px;
}

.block-feature-ten .media-gallery .screen_03 {
    position: absolute;
    right: 4%;
    top: 14%;
    z-index: 1;
    max-width: 51%;
    box-shadow: rgba(25, 42, 70, 0.08) -10px 40px 80px;
}

.block-feature-ten .shape_01 {
    right: 10%;
    bottom: 42%;
    max-width: 18%;
    animation: 250s linear 0s infinite normal none running rotated;
}

.block-feature-twelve .section-btn {
    position: absolute;
    right: 0px;
    top: 25px;
}

.block-feature-twelve .wrapper {
    margin: 0px -12px;
}

.block-feature-twelve .wrapper .location-card-three {
    margin: 30px 12px 0px;
}

.block-feature-thirteen .media-gallery {
    padding: 0px 100px 80px 0px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 50%;
    position: absolute;
}

.block-feature-thirteen .media-gallery::before {
    content: "";
    position: absolute;
    inset: 22% 0px 0px 155px;
    z-index: -1;
    background: url("../images/shape/shape_59.svg") center center / cover no-repeat;
}

.block-feature-thirteen .media-gallery .bg {
    height: 100%;
    min-height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
}

.block-feature-thirteen .media-gallery .card-style-three {
    position: absolute;
    right: 3%;
    top: 8%;
    z-index: 1;
    width: 27%;
    min-width: 200px;
    max-width: 280px;
}

.block-feature-thirteen .media-gallery .screen_01 {
    position: absolute;
    left: 21%;
    bottom: 4%;
    z-index: 1;
    max-width: 35%;
    box-shadow: rgba(0, 28, 53, 0.06) -20px 30px 50px;
}

.block-feature-fourteen {
    background: rgb(20, 20, 20);
}

.block-feature-fourteen .card-bg-wrapper {
    padding: 15px 50px 55px;
    background: url("../images/shape/shape_60.svg") center center / cover no-repeat;
}

.block-feature-fifteen .media-block .bg-img {
    height: 100%;
    min-height: 450px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}

.block-feature-fifteen .media-block .bg-img .screen_01 {
    top: 11%;
    right: -14%;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 30px 60px;
    border-radius: 10px;
    max-width: 48%;
}

.block-feature-sixteen {
    margin: 0px 40px;
    border-radius: 30px;
    overflow: hidden;
}

.block-feature-sixteen .shape_01 {
    right: 0px;
    top: 0px;
    max-width: 20%;
}

.block-feature-sixteen .shape_02 {
    left: 0px;
    bottom: 0px;
    max-width: 20%;
}

.block-feature-seventeen.dark-bg {
    background: rgb(30, 30, 30);
}

.block-feature-seventeen .shape_01 {
    left: 0px;
    bottom: 0px;
    max-width: 18%;
}

.block-feature-seventeen .shape_02 {
    right: 0px;
    bottom: 0px;
    max-width: 17%;
}

.video-banner-one .bg-wrapper {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    border-radius: 30px;
}

.video-banner-one .bg-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.video-banner-one .bg-wrapper .video-icon {
    width: 140px;
    height: 140px;
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
    font-size: 50px;
}

.video-banner-one .bg-wrapper .video-icon:hover {
    background: rgb(0, 0, 0);
}

.partner-section-one p {
    margin: -45px 0px 0px;
    transform: translateY(-85%);
}

.partner-section-one p span {
    color: rgb(255, 103, 37);
}

.partner-section-one .bg-wrapper {
    background: rgb(255, 103, 37);
    padding: 14px 0px;
}

.partner-section-one .slick-track {
    display: flex;
    align-items: center;
    justify-content: end;
}

.partner-section-one .slick-track .slick-slide {
    float: none;
}

.partner-section-one .slick-track .slick-slide img {
    margin: 0px auto;
}

.partner-section-two .bottom-border {
    border-bottom: 1px solid rgb(0, 0, 0);
}

.partner-section-two h6 {
    letter-spacing: -0.5px;
}

.partner-section-two h6 span {
    font-size: 1.333em;
}

.partner-section-two .slick-track {
    display: flex;
    align-items: center;
    justify-content: end;
}

.partner-section-two .slick-track .slick-slide {
    float: none;
}

.partner-section-two .slick-track .slick-slide img {
    margin: 0px auto;
}

.faq-section-one .shape_01 {
    bottom: 0px;
    left: 28%;
    max-width: 13%;
    animation: 300s linear 0s infinite normal none running rotated;
}

.faq-section-two .faq-sidebar {
    background: url("../images/shape/shape_70.svg") center center / cover no-repeat;
    padding: 30px;
}

.faq-section-two .faq-sidebar .bg-wrapper {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 38px 40px;
}

.faq-section-two .faq-sidebar .bg-wrapper ul li a {
    font-size: 24px;
    color: rgb(0, 0, 0);
    margin-bottom: 24px;
}

.faq-section-two .faq-sidebar .bg-wrapper ul li a span {
    padding-left: 5px;
    transition: 0.3s ease-in-out;
}

.faq-section-two .faq-sidebar .bg-wrapper ul li a:hover span {
    color: rgb(255, 103, 37);
}

.faq-section-two .faq-sidebar .bg-wrapper ul li:last-child a {
    margin-bottom: 0px;
}

.faq-section-two .accordion-style-two.no-bg {
    background: none;
}

.faq-section-two .accordion-style-two .accordion-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-section-two .accordion-style-two .accordion-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-section-two .accordion-title {
    font-size: 14px;
    letter-spacing: 1.4px;
    color: rgb(165, 165, 165);
    margin-bottom: 38px;
}

.category-section-one .section-btn {
    position: absolute;
    right: 0px;
    top: 5px;
}

.category-section-one .wrapper ul {
    margin: 0px -10px;
}

.category-section-one .wrapper ul li {
    padding: 0px 10px;
    margin-top: 10px;
}

.category-section-one .wrapper ul li a {
    font-size: 16px;
    padding: 18px 35px;
    border-radius: 60px;
    color: rgb(0, 0, 0);
    background: rgb(244, 244, 244);
}

.category-section-one .wrapper ul li a img {
    height: 22px;
    margin-right: 16px;
    transition: 0.3s ease-in-out;
}

.category-section-one .wrapper ul li a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.category-section-one .wrapper ul li a:hover img.invert {
    filter: invert(100%);
    transform: rotate(360deg);
}

.category-section-one.dark-bg {
    background: rgb(20, 20, 20);
}

.category-section-one.dark-bg .wrapper ul li a {
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgb(255, 255, 255);
}

.category-section-one.dark-bg .wrapper ul li a img {
    filter: invert(100%);
}

.category-section-one.dark-bg .wrapper ul li a:hover {
    border-color: rgb(255, 103, 37);
    color: rgb(255, 103, 37);
}

.category-section-one.grey-bg {
    background: rgb(243, 243, 243);
}

.category-section-one.grey-bg .wrapper ul li a {
    background: rgb(255, 255, 255);
}

.category-section-one.grey-bg .wrapper ul li a:hover {
    background: rgb(0, 0, 0);
}

.category-section-two .section-btn {
    position: absolute;
    right: 0px;
    top: 40px;
}

.category-section-two .wrapper {
    margin: 0px -12px;
}

.category-section-two .wrapper .card-style-seven {
    margin: 30px 12px 0px;
}

.compare-section .action-btns {
    margin: 0px -5px;
}

.compare-section .action-btns li {
    padding: 0px 5px;
}

.compare-section .action-btns li a {
    width: 44px;
    height: 44px;
    border: 1px solid rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 1.1em;
}

.compare-section .action-btns li a:hover, .compare-section .action-btns li a:focus {
    color: rgb(255, 255, 255);
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
}

.compare-section .compare-table {
    background: url("../images/shape/shape_68.svg") center center / cover no-repeat;
    padding: 30px 35px;
}

.compare-section .compare-table .table-bg {
    padding: 55px 45px 60px;
}

.compare-section .compare-table .table-bg table {
    margin: 0px;
}

.compare-section .compare-table .table-bg table thead {
    vertical-align: top;
}

.compare-section .compare-table .table-bg table thead td {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 0px 18px 30px;
    width: 25.3333%;
}

.compare-section .compare-table .table-bg table thead td .listing-card-one .title {
    font-size: 22px;
}

.compare-section .compare-table .table-bg table thead td:first-child {
    width: 21%;
}

.compare-section .compare-table .table-bg table tbody th, .compare-section .compare-table .table-bg table tbody td {
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 24px 18px;
}

.compare-section .compare-table .table-bg table tbody th {
    font-size: 18px;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.compare-section .compare-table .table-bg table tbody td {
    font-size: 17px;
    line-height: 30px;
    color: rgb(0, 0, 0);
}

.error-section {
    min-height: 100vh;
    padding: 250px 0px 70px;
}

.error-section h3 {
    font-size: 82px;
}

.error-section .btn-five {
    border-radius: 40px;
    padding: 0px 40px;
}

.search-wrapper-one.bg {
    background: url("../images/shape/shape_02.svg") center center / cover no-repeat;
    padding: 25px;
}

.search-wrapper-one .bg-wrapper {
    background: rgb(255, 255, 255);
    border-radius: 15px;
    border: 1px solid rgb(237, 237, 237);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 30px 70px;
    padding: 30px 0px;
}

.search-wrapper-one .bg-wrapper.border-layout {
    border: 2px solid rgb(0, 0, 0);
}

.search-wrapper-one .bg-wrapper .search-btn {
    font-size: 16px;
    border-radius: 10px;
    width: 90%;
    margin: 0px auto;
    letter-spacing: 1px;
    line-height: 60px;
    color: rgb(255, 255, 255);
    min-width: 150px;
    background: rgb(40, 40, 40);
}

.search-wrapper-one .bg-wrapper .search-btn:hover, .search-wrapper-one .bg-wrapper .search-btn:focus {
    background: rgb(255, 103, 37);
}

.search-wrapper-one .bg-wrapper .search-btn-two {
    width: 80px;
    height: 70px;
    color: rgb(255, 255, 255);
    font-size: 1.4em;
    background: rgb(255, 103, 37);
}

.search-wrapper-one .bg-wrapper .search-btn-two:hover, .search-wrapper-one .bg-wrapper .search-btn-two:focus {
    background: rgb(0, 0, 0);
}

.search-wrapper-one .bg-wrapper .search-btn-three {
    font-weight: 500;
    height: 60px;
    color: rgb(255, 255, 255);
    padding: 0px 40px;
    background: rgb(255, 103, 37);
    border-radius: 10px;
    margin: 0px auto;
}

.search-wrapper-one .bg-wrapper .search-btn-three:hover, .search-wrapper-one .bg-wrapper .search-btn-three:focus {
    background: rgb(0, 0, 0);
}

.search-wrapper-one .bg-wrapper .search-btn-four {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
    height: 60px;
    color: rgb(255, 255, 255);
    padding: 0px 40px;
    background: rgb(255, 103, 37);
}

.search-wrapper-one .bg-wrapper .search-btn-four i {
    font-size: 1.5em;
    margin-left: 15px;
}

.search-wrapper-one .bg-wrapper .search-btn-four:hover, .search-wrapper-one .bg-wrapper .search-btn-four:focus {
    background: rgb(0, 0, 0);
}

.search-wrapper-one .bg-wrapper .search-modal-btn {
    font-size: 14px;
    letter-spacing: 1px;
    height: 60px;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    padding: 0px 30px;
    background: rgb(255, 255, 255);
}

.search-wrapper-one .bg-wrapper .search-modal-btn span {
    margin-right: 15px;
}

.search-wrapper-one .bg-wrapper .search-modal-btn i {
    font-size: 1.5em;
}

.search-wrapper-one .bg-wrapper .search-modal-btn:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.search-wrapper-one .bg-wrapper .search-modal-btn.sm {
    border: none;
    padding: 0px 30px;
    border-radius: 10px;
}

.search-wrapper-one .bg-wrapper .search-modal-btn.sm i {
    margin: 0px;
}

.search-wrapper-one .bg-wrapper .search-modal-btn.rounded-circle {
    padding: 0px;
    height: 60px;
    width: 60px;
    border: 1px solid rgb(0, 0, 0);
}

.search-wrapper-two .bg-wrapper {
    padding: 45px 35px 35px;
    margin: 0px 15px 15px 0px;
    background: rgb(255, 255, 255);
}

.search-wrapper-two .bg-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: -15px;
    bottom: -15px;
    z-index: -1;
    background: rgba(255, 255, 255, 0.2);
}

.search-wrapper-two .input-box-one, .search-wrapper-two .input-box-one .label, .search-wrapper-two .input-box-one .type-input, .search-wrapper-two .input-box-one .nice-select {
    padding-left: 0px;
    padding-right: 0px;
}

.search-wrapper-three {
    border-top: 1px solid rgb(228, 228, 228);
    border-bottom: 1px solid rgb(228, 228, 228);
    padding: 45px 10px;
}

.search-wrapper-three .search-modal-btn {
    font-size: 14px;
    letter-spacing: 1px;
    height: 60px;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    padding: 0px 30px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
}

.search-wrapper-three .search-modal-btn i {
    font-size: 1.5em;
}

.search-wrapper-three .search-modal-btn:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.search-wrapper-three .search-modal-btn.sm {
    border: none;
    padding: 0px 30px;
    border-radius: 10px;
}

.search-wrapper-three .search-modal-btn.sm i {
    margin: 0px;
}

.search-wrapper-three .search-modal-btn.rounded-circle {
    padding: 0px;
    height: 60px;
    width: 60px;
    border: 1px solid rgb(0, 0, 0);
}

.search-wrapper-four {
    max-width: 540px;
}

.search-wrapper-four .nav-tabs {
    margin: 0px -45px;
}

.search-wrapper-four .nav-tabs .nav-link {
    font-weight: 500;
    font-size: 18px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0);
    border-radius: 0px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    margin: 0px 45px;
    padding: 0px;
}

.search-wrapper-four .nav-tabs .nav-link.active {
    border-bottom-color: rgb(255, 255, 255);
}

.search-wrapper-four form input {
    width: 100%;
    height: 66px;
    background: rgb(255, 255, 255);
    border-radius: 100px;
    border: none;
    padding: 0px 80px 0px 35px;
    font-size: 20px;
}

.search-wrapper-four form button {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    top: 6px;
    right: 15px;
}

.search-wrapper-four form button:hover {
    background: rgb(255, 103, 37);
}

.dark-bg .input-box-one .label {
    color: rgba(255, 255, 255, 0.55);
}

.dark-bg .input-box-one .nice-select {
    background: rgba(0, 0, 0, 0);
    color: rgb(255, 255, 255);
}

.dark-bg .input-box-one .nice-select::after {
    border-bottom-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
}

.dark-bg .input-box-one.border-left {
    border-right-color: rgba(255, 255, 255, 0.18);
}

.dark-bg .input-box-one .nice-select .list {
    background: rgb(0, 0, 0);
    border-radius: 0px;
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-bg .input-box-one .nice-select .list .option {
    color: rgba(255, 255, 255, 0.65);
}

.dark-bg .input-box-one .nice-select .list .option:hover, .dark-bg .input-box-one .nice-select .list .option.focus, .dark-bg .input-box-one .nice-select .list .option.selected.focus {
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.1);
}

.dark-bg.search-wrapper-three .search-modal-btn {
    border: 1px solid rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    color: rgb(255, 255, 255);
}

.dark-bg.search-wrapper-three .search-modal-btn:hover {
    background: rgb(255, 63, 37);
    border-color: rgb(255, 63, 37);
}

.search-filter-nav-one .nav-link {
    width: 87px;
    line-height: 42px;
    padding: 0px;
    background: rgb(255, 255, 255);
    border: 0px;
    border-radius: 0px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin: 0px 2px 1px 0px;
    transition: 0.2s ease-in-out;
}

.search-filter-nav-one .nav-link.active {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.search-filter-nav-two {
    background: rgb(255, 255, 255);
    position: relative;
}

.search-filter-nav-two::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 100%;
    right: -10px;
    top: 0px;
    background: rgb(255, 255, 255);
    transform: skew(25deg);
    z-index: -1;
}

.search-filter-nav-two .nav-link {
    width: 104px;
    line-height: 40px;
    padding: 0px 0px 0px 16px;
    background: rgba(0, 0, 0, 0);
    border: 0px;
    border-radius: 0px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin: 0px;
    position: relative;
    z-index: 1;
    transition: 0.2s ease-in-out;
}

.search-filter-nav-two .nav-link::before {
    content: "";
    position: absolute;
    width: calc(100% - 1px);
    height: 100%;
    left: 9px;
    top: 0px;
    background: rgb(164, 170, 177);
    transform: skew(25deg);
    z-index: -1;
}

.search-filter-nav-two .nav-link:not(.active):first-child::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 20px;
    z-index: -1;
    background: rgb(164, 170, 177);
}

.search-filter-nav-two .nav-link.active {
    color: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0);
}

.search-filter-nav-two .nav-link.active::before {
    background: rgba(0, 0, 0, 0);
}

.nice-select.location::after {
    content: "ï¨";
    font-family: bootstrap-icons;
    width: auto;
    border: none;
    margin: 0px;
    top: 0px;
    transform: none !important;
}

.input-box-one {
    position: relative;
    padding: 3px 15px;
}

.input-box-one.border-left {
    border-right: 1px solid rgb(238, 236, 236);
}

.input-box-one.bottom-border {
    border-bottom: 1px solid rgb(0, 0, 0);
    padding-bottom: 13px;
}

.input-box-one .label {
    padding: 0px 15px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.input-box-one .label2 {
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 11px;
}

.input-box-one .nice-select {
    padding: 0px 15px;
    font-weight: 500;
    font-size: 18px;
    color: rgb(0, 0, 0);
}

.input-box-one .nice-select .option {
    font-weight: normal;
    font-size: 15px;
    padding-left: 15px;
}

.input-box-one .nice-select .list {
    border-radius: 10px;
    padding: 5px 0px;
}

.input-box-one .nice-select.box-style {
    border: 1px solid rgb(0, 0, 0);
    height: 50px;
    line-height: 50px;
    border-radius: 0px;
    font-size: 16px;
    padding: 0px 16px !important;
}

.input-box-one .nice-select.box-style .list {
    border-radius: 0px;
    border: 1px solid rgb(0, 0, 0);
}

.input-box-one .nice-select.box-style .option {
    line-height: 35px;
}

.input-box-one .nice-select.box-style::after {
    right: 12px;
}

.input-box-one .type-input {
    width: 100%;
    border: 0px;
    padding: 0px 15px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    height: 35px;
}

.input-box-one .type-input::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

.input-box-one .type-input.box-style {
    border: 1px solid rgb(0, 0, 0);
    height: 50px;
    font-size: 16px;
    padding: 0px 16px !important;
}

.input-box-two .label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.48);
    margin-bottom: 8px;
}

.input-box-two .type-input {
    width: 100%;
    height: 60px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    color: rgb(0, 0, 0);
    padding: 0px 20px;
}

.input-box-two .type-input::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

.input-box-two .nice-select {
    height: 60px;
    line-height: 58px;
    font-size: 18px;
    border: 1px solid rgb(0, 0, 0);
    padding: 0px 20px;
    border-radius: 10px;
}

.input-box-two .nice-select .list li {
    line-height: 36px;
    font-size: 0.85em;
}

.input-box-two textarea {
    width: 100%;
    max-width: 100%;
    height: 140px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    color: rgb(0, 0, 0);
    padding: 20px;
}

.input-box-two textarea::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

.input-box-three .label {
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 0px;
    font-weight: 500;
}

.input-box-three .type-input {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(63, 81, 181);
    border-radius: 10px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    padding: 0px 15px;
}

.input-box-three .type-input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.input-box-three textarea {
    width: 100%;
    max-width: 100%;
    height: 157px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    padding: 10px 15px;
    line-height: 27px;
}

.input-box-three textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.advance-search-panel.dot-bg {
    /* background: url("../images/shape/shape_64.svg") center center / cover no-repeat; */
    padding: 30px;
}

.advance-search-panel .main-bg {
    padding: 30px 40px 40px;
    border: 1px solid rgb(63, 81, 181);
    border-radius: 20px;
    background: rgb(255, 255, 255);
}

.advance-search-panel .main-bg.grey-bg {
    background: rgb(248, 248, 248);
    border: none;
    border-radius: 0px;
    padding: 30px 40px 40px;
}

.advance-search-panel .main-bg .input-box-one {
    padding: 0px 0px 10px;
    border-bottom: 1px solid rgb(0, 0, 0);
}

.advance-search-panel .main-bg .input-box-one .label, .advance-search-panel .main-bg .input-box-one .nice-select, .advance-search-panel .main-bg .input-box-one .type-input {
    padding: 0px;
}

.advance-search-panel .main-bg .block-title {
    font-size: 15px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.advance-search-panel .main-bg .filter-input {
    margin: 0px -10px;
}

.advance-search-panel .main-bg .filter-input li {
    margin: 0px 10px 19px;
    position: relative;
    width: calc(50% - 20px);
}

.advance-search-panel .main-bg .filter-input label {
    display: block;
    position: relative;
    font-size: 16px;
    letter-spacing: -0.16px;
    padding-left: 24px;
    transition: 0.1s ease-in-out;
}

.advance-search-panel .main-bg .filter-input label::before {
    content: "";
    width: 15px;
    height: 15px;
    line-height: 13px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
    font-size: 14px;
    text-align: center;
    position: absolute;
    left: 0px;
    top: 4px;
    font-family: bootstrap-icons;
    transition: 0.1s ease-in-out;
}

.advance-search-panel .main-bg .filter-input input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0px;
    cursor: pointer;
}

.advance-search-panel .main-bg .filter-input input[type="checkbox"]:checked + label::before {
    content: "ï˜³";
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
    border-color: rgb(255, 103, 37);
}

.advance-search-panel .main-bg .price-ranger {
    position: relative;
}

.advance-search-panel .main-bg .price-ranger .price-input {
    width: 100%;
    margin: 0px 0px 20px;
}

.advance-search-panel .main-bg .price-ranger .price-input .currency {
    font-size: 12px;
    color: rgb(0, 0, 0);
}

.advance-search-panel .main-bg .price-ranger .price-input input {
    width: 100%;
    max-width: 125px;
    height: 35px;
    outline: none;
    font-size: 15px;
    text-align: center;
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.advance-search-panel .main-bg .price-ranger .price-input .divider-line {
    width: 26px;
    height: 1px;
    background: rgb(0, 0, 0);
    margin: 0px 10px;
}

.advance-search-panel .main-bg .price-ranger .price-input.style-two input {
    width: 70px;
    height: auto;
    background: rgba(0, 0, 0, 0);
    border: none;
    text-align: left;
}

.advance-search-panel .main-bg .price-ranger .price-input.style-two .field {
    padding-left: 10px;
}

.advance-search-panel .main-bg .price-ranger .price-input.style-two .field::before {
    content: "$";
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 15px;
    color: rgb(0, 0, 0);
}

.advance-search-panel .main-bg .price-ranger input[type="number"]::-webkit-outer-spin-button, .advance-search-panel .main-bg .price-ranger input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
}

.advance-search-panel .main-bg .price-ranger .slider {
    height: 3px;
    position: relative;
    background: rgb(239, 239, 239);
    border-radius: 9px;
}

.advance-search-panel .main-bg .price-ranger .slider .progress {
    height: 100%;
    left: 2.5%;
    right: 65%;
    position: absolute;
    border-radius: 7px;
    background: rgb(0, 0, 0);
}

.advance-search-panel .main-bg .price-ranger .range-input {
    position: relative;
}

.advance-search-panel .main-bg .price-ranger .range-input input {
    position: absolute;
    width: 100%;
    height: 4px;
    top: -4px;
    background: none;
    pointer-events: none;
    appearance: none;
}

.advance-search-panel .main-bg .price-ranger input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(0, 0, 0);
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
}

.advance-search-panel .main-bg .sqf-ranger input {
    width: calc(50% - 33px);
    height: 45px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 7px;
    text-align: center;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.advance-search-panel .main-bg .sqf-ranger .divider {
    width: 26px;
    height: 1px;
    background: rgb(0, 0, 0);
    margin: 0px 20px;
}

.advance-search-panel .main-bg .apply-search {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    letter-spacing: 1px;
    height: 65px;
    color: rgb(255, 255, 255);
    padding: 0px 40px;
    border-radius: 10px;
    background: rgb(255, 103, 37);
}

.advance-search-panel .main-bg .apply-search i {
    font-size: 1.3em;
    margin-right: 12px;
}

.advance-search-panel .main-bg .apply-search:hover, .advance-search-panel .main-bg .apply-search:focus {
    background: rgb(0, 0, 0);
}

.advance-search-panel .main-bg .form-widget a {
    display: inline-flex;
    align-items: center;
    color: rgb(0, 0, 0);
}

.advance-search-panel .main-bg .form-widget a i {
    margin-right: 8px;
}

.advance-search-panel .main-bg .form-widget a span {
    color: rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
}

.advance-search-panel .main-bg .form-widget a:hover, .advance-search-panel .main-bg .form-widget a:focus {
    color: rgb(255, 103, 37);
}

.advance-search-panel .main-bg .form-widget a:hover span, .advance-search-panel .main-bg .form-widget a:focus span {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.listing-type-filter {
    border-top: 1px solid rgb(228, 228, 228);
    border-bottom: 1px solid rgb(228, 228, 228);
    padding: 45px 40px 55px;
}

.listing-type-filter ul {
    margin: 0px -10px;
}

.listing-type-filter ul li {
    padding: 0px 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.listing-type-filter ul li a {
    line-height: 43px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 40px;
    padding: 0px 35px;
    color: rgb(0, 0, 0);
    transition: 0.3s ease-in-out;
}

.listing-type-filter ul li a:hover, .listing-type-filter ul li a.active {
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.counter-block-one .main-count {
    font-size: 58px;
}

.counter-block-two .main-count {
    font-size: 120px;
    line-height: initial;
    color: rgb(255, 103, 37);
    margin-bottom: -20px;
}

.counter-block-two .main-count.sm {
    font-size: 100px;
}

.counter-block-two p {
    color: rgba(255, 255, 255, 0.7);
}

.counter-block-two.dark .main-count {
    color: rgb(0, 0, 0);
}

.counter-block-two.dark p {
    color: rgba(0, 0, 0, 0.7);
}

.list-style-one li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 22px;
}

.list-style-one li::before {
    content: "ï€Œ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0px;
    top: 4px;
    font-size: 0.85em;
}

.list-style-two li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 22px;
    font-weight: 500;
    letter-spacing: -0.18px;
    color: rgb(0, 0, 0);
}

.list-style-two li::before {
    content: "ï€Œ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0px;
    top: 1px;
    font-size: 1em;
}

.accordion-style-one {
    background: rgb(255, 255, 255);
    padding: 10px 35px;
}

.accordion-style-one .accordion-item {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 1px solid rgb(0, 0, 0);
    border-radius: 0px;
}

.accordion-style-one .accordion-item:first-child {
    border-top: none;
}

.accordion-style-one .accordion-item .accordion-button {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.55em;
    padding: 23px 0px;
    background: rgba(0, 0, 0, 0);
    border-radius: 0px;
    box-shadow: none;
    color: rgb(0, 0, 0);
}

.accordion-style-one .accordion-item .accordion-button:not(.collapsed) {
    padding-bottom: 12px;
}

.accordion-style-one .accordion-item .accordion-button:not(.collapsed)::after {
    content: "-";
    line-height: 24px;
}

.accordion-style-one .accordion-item .accordion-button::after {
    content: "+";
    font-weight: 300;
    font-size: 25px;
    width: 30px;
    height: 30px;
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
    text-align: center;
    line-height: 30px;
    transform: none;
}

.accordion-style-one .accordion-item .accordion-body {
    padding: 0px 35px 25px 0px;
}

.accordion-style-one .accordion-item .accordion-body p {
    margin: 0px;
}

.accordion-style-one.top-bottom-line .accordion-item:first-child {
    border-top: 1px solid rgb(0, 0, 0);
}

.accordion-style-one.top-bottom-line .accordion-item:last-child {
    border-bottom: 1px solid rgb(0, 0, 0);
}

.accordion-style-two {
    background: url("../images/shape/shape_28.svg") center center / cover no-repeat;
    padding: 40px 45px;
}

.accordion-style-two .accordion {
    background: rgb(255, 255, 255);
    padding: 0px 40px;
}

.accordion-style-two .accordion-item {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    /* border-top: 1px solid rgba(0, 0, 0, 0.08); */
    border-radius: 0px;
}

.accordion-style-two .accordion-item:first-child {
    border-top: none;
}

.accordion-style-two .accordion-item .accordion-button {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.55em;
    padding: 32px 0px;
    background: rgba(0, 0, 0, 0);
    border-radius: 0px;
    box-shadow: none;
    color: rgb(0, 0, 0);
}

.accordion-style-two .accordion-item .accordion-button:not(.collapsed) {
    padding-bottom: 23px;
}

.accordion-style-two .accordion-item .accordion-button:not(.collapsed)::after {
    content: "-";
    line-height: 24px;
}

.accordion-style-two .accordion-item .accordion-button::after {
    content: "+";
    font-weight: 400;
    font-size: 28px;
    color: rgb(0, 0, 0);
    transform: none;
    width: auto;
    height: auto;
    background: none;
}

.accordion-style-two .accordion-item .accordion-body {
    padding: 0px 35px 38px 0px;
}

.accordion-style-two .accordion-item .accordion-body > p {
    margin: 0px;
}

.accordion-style-three .accordion {
    background: rgba(0, 0, 0, 0);
    padding: 0px;
}

.accordion-style-three .accordion-item {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgb(13, 13, 13);
    border-radius: 0px;
    background: rgba(0, 0, 0, 0);
}

.accordion-style-three .accordion-item:first-child {
    border-top: none;
}

.accordion-style-three .accordion-item .accordion-button {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.55em;
    padding: 22px 0px;
    background: rgba(0, 0, 0, 0);
    border-radius: 0px;
    box-shadow: none;
    color: rgb(0, 0, 0);
}

.accordion-style-three .accordion-item .accordion-button:not(.collapsed)::after {
    content: "-";
    line-height: 24px;
}

.accordion-style-three .accordion-item .accordion-button::after {
    content: "+";
    font-weight: 400;
    font-size: 28px;
    color: rgb(0, 0, 0);
    transform: none;
    width: auto;
    height: auto;
    background: none;
}

.accordion-style-three .accordion-item .accordion-body {
    padding: 0px 35px 38px 0px;
}

.accordion-style-three .accordion-item .accordion-body p {
    margin: 0px;
    color: rgba(0, 0, 0, 0.7);
}

.slick-arrow-one li {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    text-align: center;
    background: rgb(255 255 255 / 44%);
    cursor: pointer;
    color: rgb(0, 0, 0);
    font-size: 1.35em;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.06) 5px 10px 20px;
}

.slick-arrow-one li:hover, .slick-arrow-one li:focus {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.slick-arrow-two {
    margin-left: -2px;
    margin-right: -2px;
}

.slick-arrow-two li {
    cursor: pointer;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: rgb(0, 0, 0);
    text-align: center;
    line-height: 57px;
    font-size: 24px;
    margin: 0px 2px;
    transition: 0.2s ease-in-out;
}

.slick-arrow-two li:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.pagination-one {
    margin: 0px -1px;
}

.pagination-one li {
    padding: 0px 1px;
}

.pagination-one li a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 17px;
    color: rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
}

.pagination-one li a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.pagination-one li.active a {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.pagination-one li:last-child a {
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0);
    color: rgb(0, 0, 0);
}

.pagination-one.square a {
    border-radius: 0px;
}

.pagination-two {
    border-top: 1px solid rgb(231, 231, 231);
    border-bottom: 1px solid rgb(231, 231, 231);
    border-left: 1px solid rgb(231, 231, 231);
    border-image: initial;
    border-radius: 10px;
    border-right: none;
}

.pagination-two li {
    font-size: 17px;
    text-align: center;
    line-height: 40px;
}

.pagination-two li span {
    display: block;
    width: 50px;
    height: 40px;
    border-right: 1px solid rgb(228, 228, 228);
}

.pagination-two li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) rgb(228, 228, 228) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    border-image: initial;
    transition: 0.2s ease-in-out;
}

.pagination-two li a:hover {
    background: rgba(255, 103, 37, 0.15);
    border-color: rgb(255, 103, 37);
}

.pagination-two li.active a {
    background: rgba(255, 103, 37, 0.15);
    border-color: rgb(255, 103, 37);
}

.pagination-two li:first-child a {
    border-radius: 10px 0px 0px 10px;
}

.pagination-two li:last-child a {
    border-radius: 0px 10px 10px 0px;
}

#searchModal .modal-dialog {
    background: rgba(0, 0, 0, 0.7);
}

#searchModal .modal-dialog .modal-content {
    background: rgba(0, 0, 0, 0);
    padding: 15px;
    height: auto;
}

#searchModal .modal-dialog form {
    width: 100%;
    max-width: 1000px;
    height: 80px;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

#searchModal .modal-dialog form input {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: rgb(255, 255, 255);
    padding: 0px 80px 0px 25px;
}

#searchModal .modal-dialog form button {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 10px;
    background: rgb(255, 103, 37);
    width: 70px;
    font-weight: 500;
    font-size: 25px;
    color: rgb(255, 255, 255);
    transition: 0.3s ease-in-out;
}

#searchModal .modal-dialog form button:hover, #searchModal .modal-dialog form button:focus {
    background: rgb(255, 63, 37);
}

#advanceFilterModal .modal-dialog {
    width: 100%;
    max-width: 100%;
}

#advanceFilterModal .btn-close {
    box-shadow: none;
    background: none;
    font-size: 25px;
    color: rgb(0, 0, 0);
    transition: 0.3s ease-in-out;
}

#advanceFilterModal .btn-close:hover {
    color: rgb(255, 103, 37);
}

#google-map-area {
    width: 100%;
    min-height: 500px;
}

#google-map-area .google-map-home {
    height: 100%;
}

.card-style-one .fs-text {
    letter-spacing: 0.16px;
    color: rgba(0, 0, 0, 0.4);
}

.card-style-one h5 {
    letter-spacing: -0.5px;
}

.card-style-one.arrow::before, .card-style-one.arrow::after {
    content: url("../images/icon/icon_10.svg");
    position: absolute;
    top: 88px;
    left: -90px;
}

.card-style-one.arrow::after {
    left: auto;
    right: -72px;
}

.card-style-two h4 {
    font-size: 28px;
}

.card-style-two .content {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    padding: 40px 15px 0px;
}

.card-style-two .content .btn {
    font-size: 12px;
    letter-spacing: 0.36px;
    width: 112px;
    line-height: 30px;
    border: none;
    border-radius: 0px;
    background: rgb(255, 255, 255);
    padding: 0px;
}

.card-style-two .content .btn-line {
    display: inline-block;
    line-height: 28px;
    font-size: 12px;
    letter-spacing: 0.12px;
    padding: 0px 18px;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
}

.card-style-two .content .btn-four {
    width: 80px;
    height: 80px;
    font-size: 1.5em;
    opacity: 0;
}

.card-style-two:hover .btn {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.card-style-two:hover img {
    transform: scale3d(1.1, 1.1, 1);
}

.card-style-two:hover .btn-four {
    opacity: 1;
}

.card-style-three {
    background: url("../images/shape/shape_20.svg") center center / cover no-repeat;
    padding: 20px;
}

.card-style-three .bg-wrapper {
    background: rgb(255, 255, 255);
    padding: 25px 15px;
}

.card-style-three.border-20 {
    border-radius: 20px;
}

.card-style-three.border-20 .bg-wrapper {
    border-radius: 20px;
}

.card-style-four .icon {
    width: 52px;
    height: 52px;
    border: 2px solid rgb(0, 0, 0);
}

.card-style-four .icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0px;
    left: 6px;
    z-index: -1;
    background: rgb(255, 235, 220);
    transition: 0.2s ease-in-out;
}

.card-style-four .icon.style-two {
    border-color: rgb(255, 103, 37);
}

.card-style-five {
    padding: 50px 60px 70px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(225, 225, 225);
    border-radius: 30px;
}

.card-style-five .icon {
    width: 115px;
}

.card-style-five:hover {
    background: rgb(250, 250, 250);
}

.card-style-six {
    padding: 40px 52px 50px;
    background: rgb(255, 255, 255);
}

.card-style-six .icon {
    width: 55px;
    height: 55px;
    background: rgb(0, 0, 0);
}

.card-style-six h5 {
    font-size: 20px;
    letter-spacing: 0.2px;
}

.card-style-six:hover .icon {
    background: rgb(255, 103, 37);
}

.card-style-seven {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 338px;
    height: 338px;
}

.card-style-seven::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}

.card-style-seven::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
    transform: scale(0.5);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.card-style-seven:hover .title h4 {
    text-decoration: underline;
    transform: translateY(-10px);
}

.card-style-seven:hover::after {
    transform: scale(1);
    opacity: 1;
}

.card-style-eight .icon {
    width: 100px;
}

.card-style-eight .text {
    width: calc(100% - 100px);
    padding-left: 35px;
}

.card-style-eight .text h5 {
    letter-spacing: -0.5px;
    margin-bottom: 17px;
}

.card-style-eight .text p {
    margin: 0px;
    color: rgba(255, 255, 255, 0.6);
}

.card-style-nine {
    background: rgb(245, 245, 245);
    padding: 55px 45px 35px;
}

.card-style-nine .tag {
    font-size: 14px;
    line-height: 29px;
    padding: 0px 12px;
    left: 0px;
    top: 15px;
    z-index: 1;
}

.card-style-nine .logo-wrapper {
    height: 130px;
}

.card-style-nine .logo-wrapper img {
    max-height: 100%;
}

.card-style-nine .agency-name {
    font-size: 24px;
    margin-bottom: 12px;
}

.card-style-nine .rating {
    margin: 0px -2px;
}

.card-style-nine .rating li {
    padding: 0px 2px;
    font-size: 13px;
}

.card-style-nine .rating li:last-child {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 5px;
}

.card-style-nine .rating i {
    color: rgb(255, 204, 74);
}

.card-style-nine p {
    font-size: 17px;
    margin: 30px 0px 45px;
}

.card-style-nine .btn-eight {
    line-height: 58px;
}

.card-style-ten {
    background: rgb(255, 255, 255);
    padding: 38px 45px 45px;
    border-radius: 20px;
}

.card-style-ten .icon {
    width: 55px;
    height: 55px;
    background: rgb(0, 0, 0);
}

.card-style-ten h6 {
    font-size: 20px;
    letter-spacing: 0.2px;
    margin: 35px 0px 18px;
}

.card-style-ten p {
    margin-bottom: 40px;
}

.card-style-ten:hover .icon {
    background: rgb(255, 103, 37);
}

.card-style-eleven .icon {
    height: 80px;
}

.card-style-eleven .icon img {
    max-height: 100%;
}

.card-style-eleven h5 {
    font-size: 22px;
}

.card-style-twelve h6 {
    letter-spacing: 1.5px;
    margin: 30px 0px 15px;
}

.card-style-twelve .icon {
    width: 80px;
    height: 80px;
    background: rgb(33, 33, 33);
}

.card-style-twelve:hover .icon {
    background: rgb(255, 103, 37);
}

.card-style-twelve p {
    line-height: 1.636em;
}

.location-card-one {
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    padding: 15px 15px 20px;
}

.location-card-one::before {
    content: "";
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    mix-blend-mode: luminosity;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.location-card-one:hover .content {
    transform: translateY(-20px);
}

.location-card-two {
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 300px;
    padding: 10px;
}

.location-card-two::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.location-card-two h5 {
    font-size: 44px;
    transition: 0.4s ease-in-out;
}

.location-card-two:hover h5 {
    transform: translateY(-20px);
    text-decoration: underline;
}

.location-card-two:hover::before {
    background: rgba(0, 0, 0, 0.35);
}

.location-card-three .image-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 338px;
    height: 338px;
}

.location-card-three .image-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
    transform: scale(0.5);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.location-card-three:hover .image-bg::after {
    opacity: 1;
    transform: scale(1);
}

.property-listing-one .section-btn {
    position: absolute;
    right: 0px;
    top: 68px;
}

.property-listing-two::before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 43%;
    left: 0px;
    background: url("../images/shape/shape_16.svg") center center / cover no-repeat;
    z-index: -1;
}

.property-listing-two .section-btn {
    position: absolute;
    right: 0px;
    top: 65px;
}

.property-listing-two .shape_01 {
    left: 6%;
    bottom: -8.6%;
    max-width: 7%;
    animation: 280s linear 0s infinite normal none running rotated;
}

.property-listing-three .section-btn {
    position: absolute;
    right: 0px;
    top: 68px;
}

.property-listing-four .section-btn {
    position: absolute;
    right: 17px;
    top: 75px;
}

.property-listing-four .slick-arrow-two {
    position: absolute;
    right: 0px;
    top: 65px;
}

.property-listing-four .shape_01 {
    right: 0px;
    top: 0px;
    max-width: 19%;
}

.property-listing-four .shape_02 {
    left: 0px;
    bottom: 0px;
    max-width: 18%;
}

.property-listing-five .section-btn {
    position: absolute;
    right: 0px;
    top: 85px;
}

.property-listing-eight .listing-type-filter {
    padding: 28px 40px 38px;
}

.listing-header-filter .nice-select {
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    line-height: 33px;
    border-radius: 30px;
    padding: 0px 18px;
    font-size: 15px;
    letter-spacing: -0.15px;
    min-width: 130px;
}

.listing-header-filter .nice-select::after {
    right: 12px;
}

.listing-header-filter .nice-select.rounded-0 {
    padding-left: 10px;
}

.listing-header-filter .layout-change {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 33px;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

.listing-header-filter .layout-change:hover, .listing-header-filter .layout-change:focus {
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.listing-card-one {
    background: rgb(216 210 210 / 12%);
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.listing-card-one.border-layout {
    border: 1px solid rgb(243, 243, 243);
}

.listing-card-one.border-20, .listing-card-one .border-20 {
    border-radius: 20px;
}

.listing-card-one.border-25, .listing-card-one .border-25 {
    border-radius: 25px;
}

.listing-card-one.border-30, .listing-card-one .border-30 {
    border-radius: 30px;
}

.listing-card-one.p-15, .listing-card-one .p-15 {
    padding: 3px;
}

.listing-card-one.p-25, .listing-card-one .p-25 {
    padding: 15px 25px;
}

.listing-card-one .img-gallery {
    overflow: hidden;
}

.listing-card-one .img-gallery .carousel-indicators {
    opacity: 0;
    margin-bottom: 12px;
    transition: 0.3s ease-in-out;
}

.listing-card-one .img-gallery .tag {
    width: 104px;
    line-height: 27px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12px;
    color: rgb(255, 255, 255);
    text-align: center;
    background: rgb(255, 103, 37);
    position: absolute;
    left: 17px;
    top: 17px;
    z-index: 1;
}

.listing-card-one .img-gallery .tag.sale {
    background: rgb(0, 181, 121);
}

.listing-card-one .img-gallery .fav-btn {
    font-size: 22px;
    color: rgb(255, 255, 255);
    position: absolute;
    right: 17px;
    top: 17px;
    z-index: 1;
}

.listing-card-one .img-gallery .fav-btn:hover {
    color: rgb(255, 103, 37);
}

.listing-card-one .title {
    font-size: 17px;
    font-weight: 450;
    /* color: rgb(0, 0, 0); */
}

.listing-card-one .address {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
    margin: 2px 0px 6px;
}

.listing-card-one .feature {
    margin: 0px -3px;
}

.listing-card-one .feature li {
    padding: 0px 0px;
    margin-top: 5px;
}

.listing-card-one .pl-footer {
    /* margin-top: 13px; */
    padding: 8px 0px;
}

.listing-card-one .pl-footer.top-border {
    border-top: 1px dashed rgb(199, 199, 199);
}

.listing-card-one .pl-footer.bottom-border {
    padding: 16px 0px;
    border-bottom: 1px dashed rgb(199, 199, 199);
}

.listing-card-one .price {
    font-size: 23px;
}

.listing-card-one .price sub {
    font-size: 20px;
    font-weight: normal;
    bottom: 0px;
}

.listing-card-one .action-icons {
    margin: 0px -10px;
}

.listing-card-one .action-icons li {
    padding: 0px 10px;
}

.listing-card-one .action-icons li a {
    color: rgb(255, 255, 255);
    font-size: 1em;
    transition: 0.2s ease-in-out;
}

.listing-card-one .action-icons li a:hover, .listing-card-one .action-icons li a:focus {
    color: rgb(255, 103, 37);
}

.listing-card-one .img-slider-btn {
    position: absolute;
    left: 15px;
    bottom: 15px;
    line-height: 28px;
    padding: 0px 10px;
    border-radius: 30px;
    font-size: 12px;
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}

.listing-card-one .img-slider-btn:hover {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.listing-card-one .img-slider-btn a {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.listing-card-one:hover {
    box-shadow: rgb(0 0 0 / 15%) 0px 4px 4px;
}

.listing-card-one:hover .carousel-indicators {
    opacity: 1;
}

.listing-card-one:hover .title {
    color: rgb(255, 103, 37);
}

.listing-card-one:hover .img-slider-btn {
    opacity: 1;
    visibility: visible;
}

.listing-card-one.style-two:hover {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 30px 60px;
}

.listing-card-one.style-two .tag {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    left: 0px;
}

.listing-card-one.style-two .price {
    font-size: 32px;
}

.listing-card-one.style-three:hover {
    box-shadow: rgba(0, 45, 70, 0.03) 0px 30px 50px;
}

.listing-card-one.style-three .img-gallery .btn-four {
    bottom: 15px;
    right: 15px;
}

.listing-card-one.style-three .pl-footer {
    padding-bottom: 12px;
}

.listing-card-two {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
    height: 380px;
    padding: 30px 30px 35px;
}

.listing-card-two::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    background: linear-gradient(179.64deg, rgba(0, 0, 0, 0) 0.81%, rgba(0, 0, 0, 0.65) 99.69%);
    border-radius: 30px;
}

.listing-card-two .tag {
    width: 95px;
    line-height: 28px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 12px;
    letter-spacing: 0.12px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 17px;
}

.listing-card-three {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
    min-height: 450px;
    padding: 30px 50px 50px;
}

.listing-card-three::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    background: linear-gradient(179.64deg, rgba(0, 0, 0, 0) 0.81%, rgba(0, 0, 0, 0.65) 99.69%);
    border-radius: 30px;
}

.listing-card-three .tag {
    width: 95px;
    line-height: 28px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 12px;
    letter-spacing: 0.12px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 17px;
}

.listing-card-three .wrapper {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
}

.listing-card-three .wrapper .property-name {
    background: rgb(22, 22, 22);
    width: 40%;
    padding: 25px 32px 40px;
}

.listing-card-three .wrapper .property-name h5 {
    font-size: 28px;
    line-height: 1.428em;
}

.listing-card-three .wrapper .property-info {
    width: 60%;
    padding: 30px 25px 30px 50px;
}

.listing-card-three .wrapper .property-info .feature {
    margin: 0px -10px;
}

.listing-card-three .wrapper .property-info .feature li {
    padding: 0px 10px;
    position: relative;
    margin-bottom: 15px;
}

.listing-card-three .wrapper .property-info .feature li::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 38px;
    background: rgb(209, 209, 209);
    top: 50%;
    transform: translateY(-50%);
    right: -50%;
}

.listing-card-three .wrapper .property-info .feature li:last-child::before {
    display: none;
}

.listing-card-three .wrapper .property-info .feature li span {
    font-size: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    display: block;
}

.listing-card-three .wrapper .property-info .action-icons {
    margin: 0px -15px;
}

.listing-card-three .wrapper .property-info .action-icons li {
    padding: 0px 15px;
}

.listing-card-three .wrapper .property-info .action-icons li a {
    color: rgb(191, 191, 191);
    font-size: 1.2em;
    transition: 0.2s ease-in-out;
}

.listing-card-three .wrapper .property-info .action-icons li a:hover, .listing-card-three .wrapper .property-info .action-icons li a:focus {
    color: rgb(255, 103, 37);
}

.listing-card-three .wrapper .property-info .btn-ten {
    line-height: 48px;
}

.listing-card-four {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    height: 620px;
}

.listing-card-four::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    height: 70%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
    z-index: -1;
}

.listing-card-four .tag {
    width: 60px;
    line-height: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12px;
    color: rgb(0, 0, 0);
    text-align: center;
    background: rgb(255, 255, 255);
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 1;
}

.listing-card-four .property-info {
    transform: translateY(92px);
}

.listing-card-four .property-info .title {
    font-size: 24px;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
}

.listing-card-four .property-info .address {
    color: rgb(255, 255, 255);
}

.listing-card-four .property-info .pl-footer {
    border-top: 1px solid rgb(230, 230, 230);
    margin-top: 17px;
    padding: 15px 0px;
    opacity: 0;
    visibility: hidden;
}

.listing-card-four .property-info .pl-footer .feature {
    margin: 0px -5px;
}

.listing-card-four .property-info .pl-footer .feature li {
    padding: 0px 5px 10px;
}

.listing-card-four .property-info .pl-footer .feature li strong {
    display: block;
    margin-bottom: -3px;
}

.listing-card-four:hover .property-info {
    background: rgb(255, 255, 255);
    padding: 13px 20px 0px;
    transform: translateY(0px);
}

.listing-card-four:hover .property-info .title {
    color: rgb(0, 0, 0);
    font-size: 26px;
    margin-bottom: 5px;
}

.listing-card-four:hover .property-info .title:hover {
    color: rgb(255, 103, 37);
}

.listing-card-four:hover .property-info .address {
    color: rgba(0, 0, 0, 0.7);
}

.listing-card-four:hover .property-info .pl-footer {
    opacity: 1;
    visibility: visible;
}

.listing-card-five {
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 380px;
    padding: 38px 38px 30px;
}

.listing-card-five .tag {
    width: 95px;
    line-height: 28px;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 12px;
    letter-spacing: 0.12px;
    border: 1px solid rgb(0, 0, 0);
    margin-bottom: 17px;
}

.listing-card-five h4 {
    max-width: 250px;
}

.listing-card-five .btn-four {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 70px;
    height: 70px;
}

.listing-card-six {
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    min-height: 450px;
    padding: 38px 55px 30px;
}

.listing-card-six .tag {
    width: 95px;
    line-height: 28px;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 12px;
    letter-spacing: 0.12px;
    border: 1px solid rgb(0, 0, 0);
    margin-bottom: 17px;
}

.listing-card-six h4 {
    font-size: 44px;
    line-height: 1.3636em;
    max-width: 500px;
}

.listing-card-six .btn-four {
    position: absolute;
    right: 55px;
    top: 45px;
    width: 120px;
    height: 120px;
    font-size: 38px;
}

.listing-card-seven {
    background: rgb(248, 249, 250);
}

.listing-card-seven.border-20, .listing-card-seven .border-20 {
    border-radius: 20px;
    border: 1px solid;
}

.listing-card-seven.p-20, .listing-card-seven .p-20 {
    padding: 20px;
}

.listing-card-seven .layout-one .img-gallery {
    width: 326px;
}

.listing-card-seven .layout-one .property-info {
    width: calc(100% - 326px);
    padding: 20px 35px 18px 37px;
}

.listing-card-seven .layout-two .img-gallery {
    width: 410px;
}

.listing-card-seven .layout-two .property-info {
    width: calc(100% - 410px);
    padding: 32px 60px 18px 66px;
}

.listing-card-seven .layout-two .property-info .action-icons.on-top {
    right: 70px;
    top: 35px;
}

.listing-card-seven .img-gallery {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.listing-card-seven .img-gallery .tag {
    width: 104px;
    line-height: 27px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12px;
    color: rgb(255, 255, 255);
    text-align: center;
    background: rgb(255, 103, 37);
    position: absolute;
    left: 17px;
    top: 17px;
    z-index: 1;
}

.listing-card-seven .img-gallery .tag.sale {
    background: rgb(0, 181, 121);
}

.listing-card-seven .img-gallery .fav-btn {
    font-size: 22px;
    color: rgb(255, 255, 255);
    position: absolute;
    right: 17px;
    top: 17px;
    z-index: 1;
}

.listing-card-seven .img-gallery .fav-btn:hover {
    color: rgb(255, 103, 37);
}

.listing-card-seven .img-slider-btn {
    position: absolute;
    left: 15px;
    bottom: 15px;
    line-height: 28px;
    padding: 0px 10px;
    border-radius: 30px;
    font-size: 12px;
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}

.listing-card-seven .img-slider-btn:hover {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.listing-card-seven .img-slider-btn a {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.listing-card-seven .property-info {
    position: relative;
    z-index: 1;
}

.listing-card-seven .property-info .tag {
    width: 90px;
    line-height: 27px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12px;
    color: rgb(0, 0, 0);
    text-align: center;
    background: rgb(214, 246, 235);
}

.listing-card-seven .property-info .tag.sale {
    background: rgb(252, 230, 220);
}

.listing-card-seven .property-info .title {
    font-size: 19px;
    /* color: rgb(0, 0, 0); */
    font-weight: 450;
}

.listing-card-seven .property-info .feature {
    /* border-top: 1px solid rgb(0, 0, 0); */
    /* border-bottom: 1px solid rgb(0, 0, 0); */
}

.listing-card-seven .property-info .feature ul {
    margin: 0px 0px;
}

.listing-card-seven .property-info .feature ul li {
    margin: 0px -8px 0px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
}

.listing-card-seven .property-info .feature ul li strong {
    font-weight: 500;
    color: rgb(0, 0, 0);
    display: block;
    font-size: 20px;
}

.listing-card-seven .property-info .feature ul li::before {
    /* content: ""; */
    position: absolute;
    height: 38px;
    width: 1px;
    transform: rotate(14deg);
    top: 0px;
    left: -47px;
    background: rgb(0, 0, 0);
}

.listing-card-seven .property-info .feature ul li:first-child::before {
    display: none;
}

.listing-card-seven .property-info .price {
    font-size: 20px;
    letter-spacing: -0.72px;
}

.listing-card-seven .property-info .price.sm {
    font-size: 32px;
}

.listing-card-seven .property-info .price sub {
    font-size: 24px;
    font-weight: normal;
    bottom: 0px;
}

.listing-card-seven .property-info .action-icons {
    margin: 0px -15px;
}

.listing-card-seven .property-info .action-icons li {
    padding: 0px 15px;
}

.listing-card-seven .property-info .action-icons li a {
    color: rgb(0, 0, 0);
    font-size: 1.1em;
    transition: 0.2s ease-in-out;
}

.listing-card-seven .property-info .action-icons li a:hover, .listing-card-seven .property-info .action-icons li a:focus {
    color: rgb(255, 103, 37);
}

.listing-card-seven .property-info .action-icons.on-top {
    position: absolute;
    right: 35px;
    top: 23px;
}

.listing-card-seven:hover .title {
    color: rgb(255, 103, 37);
}

.listing-card-seven:hover .img-slider-btn {
    opacity: 1;
    visibility: visible;
}

.listing-card-seven.grey-bg {
    background: rgb(244, 244, 244);
}

.theme-details-one .border-20 {
    border-radius: 20px;
}

.theme-details-one .border-15 {
    border-radius: 15px;
}

.theme-details-one .border-10 {
    border-radius: 10px;
}

.theme-details-one .p-40 {
    padding: 40px;
}

.theme-details-one .p-30 {
    padding: 30px;
}

.theme-details-one .p-20 {
    padding: 20px;
}

.theme-details-one .p-15 {
    padding: 15px;
}

.theme-details-one .shadow4 {
    box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 4px;
}

.theme-details-one .bottom-line-dark {
    /* border-bottom: 1px solid rgb(0, 0, 0); */
}

.theme-details-one .info-pack-one {
    background: rgb(249, 249, 249);
}

.theme-details-one .info-pack-one .media {
    height: 100%;
    min-height: 400px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.theme-details-one .info-pack-one .tag {
    font-size: 14px;
    line-height: 29px;
    padding: 0px 12px;
    left: 0px;
    top: 15px;
    z-index: 1;
}

.theme-details-one .info-pack-one .designation {
    color: rgb(255, 103, 37);
}

.theme-details-one .info-pack-one table {
    background: rgba(0, 0, 0, 0);
    margin: 28px 0px 38px;
}

.theme-details-one .info-pack-one table td {
    background: rgba(0, 0, 0, 0);
    border: none;
    padding: 11px 0px;
    color: rgba(0, 0, 0, 0.5);
}

.theme-details-one .info-pack-one table td:last-child {
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.theme-details-one .info-pack-one .social-icon a {
    font-size: 25px;
    margin-right: 25px;
}

.theme-details-one .info-pack-one .social-icon a:hover {
    color: rgb(255, 103, 37);
}

.theme-details-one .video-wrapper {
    max-width: 100%;
    margin: 0px auto;
    max-height: 900px;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.theme-details-one .video-wrapper video {
    display: block;
    margin: 0px auto;
}

.theme-details-one .list-type {
    font-size: 12px;
    letter-spacing: 0.12px;
    color: rgb(255, 255, 255);
    width: 90px;
    line-height: 26px;
    border: 1px solid rgb(0, 0, 0);
    background: rgb(0, 0, 0);
    text-align: center;
}

.theme-details-one .price {
    font-size: 48px;
}

.theme-details-one .est-price {
    color: rgba(0, 0, 0, 0.5);
}

.theme-details-one .action-btns {
    margin: 0px -5px;
}

.theme-details-one .action-btns li {
    padding: 0px 5px;
}

.theme-details-one .action-btns li a {
    width: 50px;
    height: 50px;
    border: 1px solid rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 1.1em;
}

.theme-details-one .action-btns li a:hover, .theme-details-one .action-btns li a:focus {
    color: rgb(255, 255, 255);
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
}

.theme-details-one .media-gallery-grid {
    padding: 0px 40px;
}

.theme-details-one .media-gallery-grid .media-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: block;
}

.theme-details-one .media-gallery-grid .media-bg.sm {
    height: 250px;
    border: 1px solid;
    border-radius: 10px;
}

.theme-details-one .media-gallery-grid .media-bg.lg {
    height: 560px;
}

.theme-details-one .media-gallery-grid .media-bg.xs {
    height: 170px;
}

.theme-details-one .media-gallery .carousel .carousel-indicators {
    display: block;
    margin: 0px;
}

.theme-details-one .media-gallery .carousel .carousel-indicators button {
    text-indent: 0px;
    margin: 0px 0px 25px;
    width: 100%;
    height: auto;
    border: none;
    opacity: 1;
}

.theme-details-one .media-gallery .carousel .carousel-indicators button:last-child {
    margin-bottom: 0px;
}

.theme-details-one .media-gallery .carousel .carousel-control-next, .theme-details-one .media-gallery .carousel .carousel-control-prev {
    width: 60px;
    height: 60px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    opacity: 1;
    color: rgb(0, 0, 0);
    font-size: 25px;
    top: 30px;
    transition: 0.3s ease-in-out;
}

.theme-details-one .media-gallery .carousel .carousel-control-next:hover, .theme-details-one .media-gallery .carousel .carousel-control-prev:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.theme-details-one .media-gallery .carousel .carousel-control-prev {
    left: 30px;
}

.theme-details-one .media-gallery .carousel .carousel-control-next {
    left: 105px;
}

.theme-details-one .media-gallery .style-two .carousel-indicators button {
    text-indent: 0px;
    margin: 0px 25px 0px 0px;
    width: 190px;
    height: auto;
    border: none;
    opacity: 1;
}

.theme-details-one .media-gallery .style-two .carousel-indicators button:last-child {
    margin-bottom: 0px;
}

.theme-details-one .media-gallery .style-two .img-fancy-btn {
    inset: auto auto 35px 35px;
}

.theme-details-one .media-gallery .style-two .carousel-control-next, .theme-details-one .media-gallery .style-two .carousel-control-prev {
    position: static;
    margin: 0px 10px;
    border: 1px solid rgb(0, 0, 0);
}

.theme-details-one .media-gallery .style-two .carousel-arrow {
    position: absolute;
    bottom: 50px;
    right: 40px;
    z-index: 3;
}

.theme-details-one .media-gallery .style-two .theme-sidebar-one {
    position: absolute;
    z-index: 1;
    top: 60px;
    right: 40px;
    bottom: 60px;
    width: 380px;
}

.theme-details-one .media-gallery .slick-list {
    overflow: visible;
}

.theme-details-one .media-gallery .slider-arrows {
    position: absolute;
    top: calc(50% - 37px);
    width: 100%;
    left: 0px;
    z-index: 1;
}

.theme-details-one .media-gallery .slider-arrows li {
    width: 75px;
    height: 75px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    line-height: 75px;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.theme-details-one .media-gallery .slider-arrows li:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.theme-details-one .img-fancy-btn {
    position: absolute;
    right: 25px;
    top: 35px;
    background: rgb(255, 255, 255);
    line-height: 50px;
    padding: 0px 25px;
    z-index: 2;
    transition: 0.2s ease-in-out;
}

.theme-details-one .img-fancy-btn:hover {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.theme-details-one .img-fancy-btn a {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.theme-details-one .sub-title-one {
    font-size: 28px;
}

.theme-details-one .property-feature-list ul {
    margin: 0px -10px;
}

.theme-details-one .property-feature-list ul li {
    width: 12%;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
}

.theme-details-one .property-feature-list ul li .icon {
    height: 61px;
    margin-bottom: 15px;
}

.theme-details-one .property-feature-list ul li::before {
    /* content: ""; */
    position: absolute;
    height: 72px;
    width: 1px;
    transform: rotate(17deg) translateY(-50%);
    top: 50%;
    left: -25%;
    background: rgba(0, 0, 0, 0.22);
}

.theme-details-one .property-feature-list ul li:first-child::before {
    display: none;
}

.theme-details-one .property-feature-list .dark-bg {
    background: rgb(0, 0, 0);
}

.theme-details-one .property-feature-list .dark-bg.m-inverse {
    margin-top: -70px;
}

.theme-details-one .property-feature-list .dark-bg ul li .icon.sm {
    height: 24px;
}

.theme-details-one .property-feature-list .dark-bg ul li::before {
    background: rgba(255, 255, 255, 0.25);
}

.theme-details-one .accordion-style-two {
    background: none;
    padding: 0px;
}

.theme-details-one .accordion-style-two .accordion {
    padding: 0px;
}

.theme-details-one .accordion-style-two .accordion .accordion-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-details-one .accordion-style-two .accordion .accordion-item:last-child {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
}

.theme-details-one .accordion-style-two .accordion .accordion-button {
    padding: 20px 0px;
    font-size: 22px;
}

.theme-details-one .accordion-style-two .accordion .accordion-button::after {
    width: 32px;
    height: 32px;
    font-weight: 300;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.theme-details-one .accordion-style-two .accordion .accordion-button:not(.collapsed)::after {
    line-height: 26px;
}

.theme-details-one .accordion-style-two .accordion .accordion-body {
    padding: 8px 15px 15px 0px;
}

.theme-details-one .accordion-style-two.grey-bg .accordion-item {
    background: rgb(242, 242, 242);
    padding: 0px 30px;
    margin-bottom: 10px;
    border: none !important;
}

.theme-details-one .accordion-style-two.full-accordion .accordion-item {
    /* border-top: 1px solid rgb(0, 0, 0); */
}

.theme-details-one .accordion-style-two.full-accordion .accordion-item:first-child {
    border-top: 1px solid rgb(0, 0, 0);
}

.theme-details-one .accordion-style-two.full-accordion .accordion-item:last-child {
    /* border-bottom: 1px solid rgb(0, 0, 0); */
}

.theme-details-one .accordion-style-two.full-accordion .accordion-button {
    font-size: 20px;
    padding: 4px 0px;
}

.theme-details-one .feature-list-two li {
    width: 42%;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.theme-details-one .feature-list-two li span:nth-child(2) {
    text-align: right;
}

.theme-details-one .list-style-two li {
    width: 22%;
}

.theme-details-one .property-video-tour .image-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.theme-details-one .property-video-tour .video-icon {
    width: 110px;
    height: 110px;
    font-size: 48px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.theme-details-one .property-video-tour .video-icon:hover {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.theme-details-one .property-floor-plan .bg-dot {
    background: url("../images/shape/shape_66.svg") center center / cover no-repeat;
}

.theme-details-one .property-floor-plan .carousel-indicators {
    margin: 0px;
    inset: -90px -35px auto auto;
}

.theme-details-one .property-floor-plan .carousel-indicators button {
    width: 10px;
    height: 10px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    opacity: 1;
    margin: 0px 5px;
}

.theme-details-one .property-floor-plan .carousel-indicators button.active {
    background: rgb(0, 0, 0);
}

.theme-details-one .property-floor-plan .accordion {
    background: rgba(0, 0, 0, 0);
    padding: 0px;
}

.theme-details-one .property-floor-plan .accordion-item {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgb(13, 13, 13);
    border-radius: 0px;
    background: rgba(0, 0, 0, 0);
}

.theme-details-one .property-floor-plan .accordion-item:first-child {
    border-top: 1px solid rgb(13, 13, 13);
}

.theme-details-one .property-floor-plan .accordion-item .accordion-button {
    font-size: 20px;
    line-height: 1.55em;
    padding: 28px 0px 28px 50px;
    background: rgba(0, 0, 0, 0);
    border-radius: 0px;
    box-shadow: none;
    color: rgb(0, 0, 0);
}

.theme-details-one .property-floor-plan .accordion-item .accordion-button ul li {
    display: flex;
    color: rgb(0, 0, 0);
    font-size: 17px;
    margin-left: 20px;
}

.theme-details-one .property-floor-plan .accordion-item .accordion-button ul li img {
    width: 18px;
    margin-right: 5px;
}

.theme-details-one .property-floor-plan .accordion-item .accordion-button:not(.collapsed)::after {
    content: "-";
    font-size: 30px;
    line-height: 24px;
}

.theme-details-one .property-floor-plan .accordion-item .accordion-button::after {
    content: "+";
    position: absolute;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    width: 28px;
    height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    transform: none;
    left: 0px;
    top: calc(50% - 14px);
}

.theme-details-one .property-floor-plan .accordion-item .accordion-body {
    padding: 0px 0px 38px;
}

.theme-details-one .property-floor-plan .accordion-item .accordion-body p {
    margin: 0px;
    color: rgba(0, 0, 0, 0.7);
}

.theme-details-one .nearby-list-item li {
    width: 26%;
    font-size: 17px;
    letter-spacing: -0.17px;
    margin-bottom: 25px;
}

.theme-details-one .nearby-list-item li span {
    float: right;
}

.theme-details-one .listing-card-one .img-gallery .tag {
    font-size: 11px;
    line-height: 23px;
    width: 80px;
}

.theme-details-one .listing-card-one .title {
    font-size: 22px;
    margin-bottom: 3px;
    letter-spacing: -0.22px;
}

.theme-details-one .listing-card-one .price {
    font-size: 22px;
    letter-spacing: -0.24px;
}

.theme-details-one .listing-card-one .action-icons li a {
    font-size: 17px;
}

.theme-details-one .similar-property .slick-dots {
    position: absolute;
    margin: 0px;
    padding: 0px;
    right: 15px;
    top: -60px;
}

.theme-details-one .similar-property .slick-dots li button {
    width: 12px;
    height: 12px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
}

.theme-details-one .similar-property .slick-dots .slick-active button {
    background: rgb(0, 0, 0);
}

.theme-details-one .property-score .icon {
    width: 63px;
    border: 1px solid;
    border-radius: 20%;
}

.theme-details-one .property-score .text {
    width: calc(100% - 45px);
    padding-left: 11px;
}

.theme-details-one .property-score .text h6 {
    font-size: 20px;
}

.theme-details-one .property-score .text p {
    color: rgba(0, 0, 0, 0.4);
}

.theme-details-one .property-location .map-banner {
    height: 485px;
}

.theme-details-one .review-panel-one .show .review.hide {
    display: flex;
}

.theme-details-one .review-panel-one .review {
    border-bottom: 1px solid rgb(237, 237, 237);
    padding: 45px 0px 25px;
    display: flex;
}

.theme-details-one .review-panel-one .review.hide {
    display: none;
}

.theme-details-one .review-panel-one .review .avatar {
    width: 60px;
    height: 60px;
}

.theme-details-one .review-panel-one .review .text {
    width: calc(100% - 60px);
    padding-left: 25px;
}

.theme-details-one .review-panel-one .review .text .name {
    font-size: 20px;
}

.theme-details-one .review-panel-one .review .text .time {
    color: rgba(0, 0, 0, 0.5);
}

.theme-details-one .review-panel-one .review .text .rating li:not(:first-child) {
    color: rgb(255, 204, 74);
    font-size: 13px;
    margin-left: 5px;
}

.theme-details-one .review-panel-one .review .text .rating li:first-child {
    font-size: 15px;
}

.theme-details-one .review-panel-one .review .text .review-help-btn a {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    transition: 0.2s ease-in-out;
}

.theme-details-one .review-panel-one .review .text .review-help-btn a i {
    margin-right: 5px;
}

.theme-details-one .review-panel-one .review .text .review-help-btn a:hover {
    color: rgb(0, 0, 0);
}

.theme-details-one .review-panel-one .review .text .review-gallery {
    margin: 0px -6px;
}

.theme-details-one .review-panel-one .review .text .review-gallery li {
    padding: 10px 6px 0px;
}

.theme-details-one .review-panel-one .review .text .review-gallery li img {
    width: 100px;
    height: 100px;
}

.theme-details-one .review-panel-one .review .text .review-gallery li .more-img {
    background: rgb(0, 0, 0);
}

.theme-details-one .review-panel-one .review .text .review-gallery li .more-img img {
    opacity: 0.4;
}

.theme-details-one .review-panel-one .review .text .review-gallery li .more-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.theme-details-one .review-panel-one .review .text .review-gallery li .more-img span {
    position: absolute;
    font-size: 24px;
    color: rgb(255, 255, 255);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.theme-details-one .review-panel-one .load-more-review {
    background: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    line-height: 60px;
    text-align: center;
    padding: 0px 30px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
}

.theme-details-one .review-panel-one .load-more-review i {
    font-size: 1.5em;
    vertical-align: middle;
}

.theme-details-one .review-panel-one .load-more-review.inverse {
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
}

.theme-details-one .review-panel-one .load-more-review.inverse:hover {
    color: rgb(255, 255, 255);
}

.theme-details-one .review-panel-one .load-more-review:hover {
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
}

.theme-details-one .review-panel-one .nice-select {
    width: 126px;
    line-height: 33px;
    height: 35px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: -0.15px;
}

.theme-details-one .review-form .bg-dot {
    background: url("../images/shape/shape_66.svg") center center / cover no-repeat;
}

.theme-details-one .agent-property-listing .filter-nav-one .isotop-menu-wrapper {
    margin: 0px -6px;
}

.theme-details-one .agent-property-listing .filter-nav-one .isotop-menu-wrapper li {
    border-radius: 0px;
    border: 1px solid rgb(0, 0, 0);
    font-size: 14px;
    padding: 0px 18px;
    margin: 0px 6px 10px;
}

.theme-details-one .agent-property-listing .filter-nav-one .isotop-menu-wrapper li.is-checked {
    border-color: rgb(255, 103, 37);
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.theme-sidebar-one.dot-bg {
    background: url("../images/shape/shape_65.svg") center center / cover no-repeat;
}

.theme-sidebar-one .btn-nine {
    font-size: 14px;
}

.theme-sidebar-one .agent-info .avatar {
    width: 100px;
    height: 100px;
}

.theme-sidebar-one .agent-info .name {
    font-size: 20px;
    letter-spacing: -0.2px;
}

.theme-sidebar-one .agent-info .social-icon {
    margin: 0px -12px;
}

.theme-sidebar-one .agent-info .social-icon li {
    padding: 0px 12px;
}

.theme-sidebar-one .agent-info .social-icon li a {
    font-size: 20px;
    color: rgb(58, 56, 80);
    transition: 0.3s ease-in-out;
}

.theme-sidebar-one .agent-info .social-icon li a:hover {
    color: rgb(255, 103, 37);
}

.theme-sidebar-one .agent-info .divider-line {
    border-top: 1px solid rgb(0, 0, 0);
}

.theme-sidebar-one .agent-info .divider-line li {
    font-size: 16px;
    padding-top: 22px;
}

.theme-sidebar-one .agent-info .divider-line li span {
    float: right;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.theme-sidebar-one .agent-info .divider-line li span:hover a {
    text-decoration: underline;
}

.theme-sidebar-one .feature-listing .listing-card-one .btn-four {
    width: 35px;
    height: 35px;
    font-size: 1em;
}

.theme-sidebar-one .feature-listing .carousel-indicators {
    margin: 0px;
    inset: -58px -3px auto auto;
}

.theme-sidebar-one .feature-listing .carousel-indicators button {
    width: 8px;
    height: 8px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    opacity: 1;
    margin: 0px 3px;
}

.theme-sidebar-one .feature-listing .carousel-indicators button.active {
    background: rgb(0, 0, 0);
}

.theme-sidebar-one .agent-finder .input-box-one {
    padding: 0px 0px 10px;
    border-bottom: 1px solid rgb(0, 0, 0);
}

.theme-sidebar-one .agent-finder .input-box-one .label, .theme-sidebar-one .agent-finder .input-box-one .nice-select, .theme-sidebar-one .agent-finder .input-box-one .type-input {
    padding: 0px;
}

.agent-section-one::before, .agent-section-one::after {
    position: absolute;
    width: calc(50% - 65px);
    height: 2px;
    background: rgb(0, 0, 0);
    bottom: 0px;
    left: 0px;
}

.agent-section-one::after {
    left: auto;
    right: 0px;
}

.agent-section-one .wrapper::before {
    content: "";
    position: absolute;
    left: -40px;
    right: -40px;
    top: -35px;
    height: 45%;
    z-index: -1;
    background-size: cover;
}

.agent-section-one .section-btn {
    position: absolute;
    right: 0px;
    top: 62px;
}

.agent-section-one .slick-dots {
    margin: 25px 0px 0px;
    display: flex;
    justify-content: center;
    padding: 0px;
}

.agent-section-one .slick-dots button {
    background: rgb(40, 40, 40);
}

.agent-card-one .img {
    overflow: hidden;
    margin-bottom: 35px;
}

.agent-card-one .img.border-20 {
    border-radius: 20px;
}

.agent-card-one h6 {
    margin-bottom: 8px;
}

.agent-card-one a {
    color: rgb(157, 157, 157);
}

.agent-card-one:hover .img img {
    transform: scale3d(1.1, 1.1, 1);
}

.agent-card-two .tag {
    font-size: 14px;
    line-height: 29px;
    padding: 0px 12px;
    left: 0px;
    top: 15px;
    z-index: 1;
}

.agent-card-two .designation {
    color: rgb(157, 157, 157);
}

.agent-card-two:hover .agent-img {
    transform: scale3d(1.1, 1.1, 1) rotate(0deg);
    opacity: 0.8;
}

.agent-card-two:hover .name a {
    text-decoration: underline;
}

.pricing-nav-one .nav {
    border: 2px solid rgb(255, 103, 37);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-nav-one .nav .nav-link {
    width: 160px;
    height: 50px;
    font-weight: 500;
    font-size: 17px;
    color: rgb(255, 103, 37);
    background: rgba(0, 0, 0, 0);
    padding: 0px;
    margin: 0px;
    border: 0px;
    border-radius: 0px;
}

.pricing-nav-one .nav .nav-link.active {
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.pricing-section-one .discount-text {
    font-size: 16px;
    color: rgb(255, 103, 37);
}

.pricing-section-one .dot-bg-wrapper {
    background: url("../images/shape/shape_67.svg") center center / cover no-repeat;
    padding: 55px;
}

.pricing-section-one .main-bg {
    border: 1px solid rgb(0, 0, 0);
    border-radius: 20px;
    background: rgb(255, 255, 255);
    overflow: hidden;
}

.pricing-section-one .pr-column-wrapper {
    width: 24%;
    border-left: 1px solid rgb(0, 0, 0);
}

.pricing-section-one .pr-column-wrapper .pr-header {
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 30px 15px 15px;
    height: 230px;
}

.pricing-section-one .pr-column-wrapper .pr-header .plan {
    font-size: 13px;
    letter-spacing: 1px;
    background: rgb(255, 255, 255);
    line-height: 26px;
    padding: 0px 20px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 18px;
    display: inline-block;
}

.pricing-section-one .pr-column-wrapper .pr-header .price {
    font-size: 52px;
    color: rgb(0, 0, 0);
    display: block;
    margin: 20px 0px 8px;
}

.pricing-section-one .pr-column-wrapper ul li {
    margin: 40px 0px;
}

.pricing-section-one .pr-column-wrapper ul li span {
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
}

.pricing-section-one .pr-column-wrapper ul li .icon {
    width: 38px;
    height: 38px;
    font-size: 22px;
    color: rgb(0, 0, 0);
    margin: 0px auto;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0);
}

.pricing-section-one .pr-column-wrapper ul li .icon.available {
    color: rgb(255, 103, 37);
}

.pricing-section-one .pr-column-wrapper ul li:first-child {
    margin-top: 22px;
}

.pricing-section-one .pr-column-wrapper ul li:last-child {
    margin-bottom: 35px;
}

.pricing-section-one .pr-column-wrapper .pr-footer {
    border-top: 1px solid rgb(0, 0, 0);
    padding: 40px 15px 50px;
}

.pricing-section-one .pr-column-wrapper.active {
    background: rgb(255, 248, 244);
}

.pricing-section-one .pr-column-wrapper.active .icon {
    border-color: rgb(0, 0, 0);
}

.pricing-section-one .pr-column-wrapper.active .icon.available {
    border-color: rgb(255, 103, 37);
}

.pricing-section-one .pr-column-wrapper.active .btn-twelve {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.pricing-section-one .left-panel {
    position: absolute;
    width: 28%;
    left: 0px;
    top: 229px;
    bottom: 140px;
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
}

.pricing-section-one .left-panel li {
    font-size: 17px;
    font-weight: 500;
    padding: 29px 10px 25px 35px;
    color: rgb(0, 0, 0);
}

.pricing-section-two .pr-column-wrapper {
    border: 1px solid rgb(0, 0, 0);
    padding: 0px 25px 45px;
}

.pricing-section-two .pr-column-wrapper .pr-header {
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 30px 0px;
}

.pricing-section-two .pr-column-wrapper .pr-header .plan {
    font-size: 24px;
    letter-spacing: 1px;
}

.pricing-section-two .pr-column-wrapper .pr-header .price {
    font-size: 72px;
    color: rgb(0, 0, 0);
    display: block;
    margin: 20px 0px 8px;
}

.pricing-section-two .pr-column-wrapper .pr-header p {
    color: rgba(0, 0, 0, 0.5);
}

.pricing-section-two .pr-column-wrapper ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 24px;
    text-align: left;
    color: rgb(0, 0, 0);
}

.pricing-section-two .pr-column-wrapper ul li::before {
    content: "ï€Œ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0px;
    top: 2px;
    font-size: 1em;
}

.pricing-section-two .pr-column-wrapper ul li.disable {
    color: rgb(185, 185, 185);
}

.pricing-section-two .pr-column-wrapper ul li.disable::before {
    content: "ï€";
}

.pricing-section-two .pr-column-wrapper.active {
    background: rgb(243, 243, 243);
    border-color: rgb(243, 243, 243);
}

.pricing-section-two .pr-column-wrapper.active .btn-twelve {
    background: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.pricing-section-two .pr-column-wrapper.active .btn-twelve:hover {
    background: rgb(255, 103, 37);
    border-color: rgb(255, 103, 37);
}

.service-details .service-post .btn-line {
    display: inline-block;
    line-height: 28px;
    font-size: 12px;
    letter-spacing: 0.12px;
    padding: 0px 18px;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    margin-bottom: 18px;
}

.service-details .service-post .img-gallery img {
    border-radius: 20px;
}

.service-details .service-post h4 {
    font-size: 48px;
}

.service-details .service-post .feature-wrapper {
    background: url("../images/shape/shape_77.svg") center center / cover no-repeat;
    padding: 20px;
}

.service-details .service-post .feature-wrapper .bg-wrapper {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 15px 30px 30px;
}

.service-details .service-sidebar .service-category {
    background: url("../images/shape/shape_78.svg") center center / cover no-repeat;
    padding: 36px;
    border-radius: 20px;
}

.service-details .service-sidebar .service-category ul {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 20px;
    padding: 0px 30px;
}

.service-details .service-sidebar .service-category ul a {
    padding: 26px 0px;
    color: rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    display: block;
    position: relative;
    z-index: 1;
}

.service-details .service-sidebar .service-category ul a::after {
    content: "ï„¸";
    font-family: bootstrap-icons;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    float: right;
    margin-left: 10px;
    transition: 0.3s ease-in-out;
}

.service-details .service-sidebar .service-category ul a:hover::after, .service-details .service-sidebar .service-category ul a.active::after {
    background: rgb(255, 200, 177);
    transform: rotate(180deg);
}

.service-details .service-sidebar .service-category ul a.active {
    font-weight: 500;
}

.service-details .service-sidebar .service-category ul li:last-child a {
    border: none;
}

.service-details .service-sidebar .contact-banner {
    background: rgb(36, 36, 36);
    padding: 45px 15px;
    border-radius: 20px;
}

.grid-1column {
    margin: 0px -25px;
}

.grid-1column .grid-sizer, .grid-1column .isotop-item {
    width: 100%;
    padding: 0px 25px;
}

.grid-2column {
    margin: 0px -25px;
}

.grid-2column .grid-sizer, .grid-2column .isotop-item {
    width: 50%;
    padding: 0px 25px;
}

.grid-3column {
    margin: 0px -25px;
}

.grid-3column .grid-sizer, .grid-3column .isotop-item {
    width: 33.3333%;
    padding: 0px 25px;
}

.filter-nav-one .isotop-menu-wrapper {
    margin: 0px -14px;
}

.filter-nav-one .isotop-menu-wrapper li {
    margin: 0px 14px 10px;
    line-height: 33px;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 7px;
    text-transform: uppercase;
    padding: 0px 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.filter-nav-one .isotop-menu-wrapper li.is-checked {
    border-color: rgb(0, 0, 0);
}

.filter-nav-one.style-two li.is-checked {
    border-color: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.filter-nav-one.border-line {
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 30px 0px 20px;
}

.filter-nav-one .social-icon li:first-child {
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

.filter-nav-one .social-icon a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    border: 1px solid rgb(0, 0, 0);
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin: 0px 0px 10px 15px;
    transition: 0.2s ease-in-out;
}

.filter-nav-one .social-icon a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.project-block-one .image-wrapper {
    border-radius: 30px;
}

.project-block-one .image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.45);
    transform: scale(0.5);
    opacity: 0;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.project-block-one .btn-four {
    position: absolute;
    width: 98px;
    height: 98px;
    font-size: 38px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
}

.project-block-one:hover .image-wrapper::before {
    transform: scale(1, 1);
    opacity: 1;
}

.project-block-one:hover .btn-four {
    opacity: 1;
}

.project-block-two .image-wrapper {
    background: rgb(0, 0, 0);
}

.project-block-two .image-wrapper .tag {
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 25px;
    color: rgb(0, 0, 0);
    background: rgb(255, 249, 249);
    padding: 0px 14px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.project-block-two .caption {
    padding: 45px 0px 35px;
    border-bottom: 1px solid rgb(0, 0, 0);
}

.project-block-two .caption .date {
    font-size: 17px;
    color: rgb(255, 103, 37);
    padding-left: 40px;
    margin-bottom: 10px;
}

.project-block-two .caption .date::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 1px;
    left: 0px;
    top: 12px;
    background: rgb(255, 103, 37);
}

.project-block-two:hover .image-wrapper img {
    transform: scale3d(1.1, 1.1, 1);
    opacity: 0.8;
}

.project-block-two h4:hover {
    text-decoration: underline;
}

.project-block-three .image-wrapper {
    background: rgb(0, 0, 0);
    margin: 0px 16px 0px 0px;
}

.project-block-three .caption .tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 23px;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    padding: 0px 10px;
    margin-bottom: 10px;
}

.project-block-three .caption .btn-thirteen {
    width: 120px;
    height: 120px;
    font-size: 55px;
}

.project-block-three:hover .image-wrapper img {
    transform: scale3d(1.1, 1.1, 1);
    opacity: 0.8;
}

.project-block-three h3 a {
    text-transform: capitalize;
    width: 85%;
}

.project-block-three h3 a:hover {
    text-decoration: underline;
}

.project-details-one .image-wrapper {
    margin: 0px 16px 40px 0px;
}

.project-details-one .details-text .tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 23px;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    padding: 0px 10px;
    margin-bottom: 10px;
}

.project-details-one .details-text .project-info-outline {
    background: url("../images/shape/shape_63.svg") center center / cover no-repeat;
    padding: 40px;
}

.project-details-one .details-text .project-info-outline .main-bg {
    background: rgb(255, 255, 255);
    padding: 25px 50px 15px;
}

.project-details-one .details-text .project-info-outline .main-bg li {
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 40px 50px 40px 60px;
}

.project-details-one .details-text .project-info-outline .main-bg li:last-child {
    border-bottom: none;
}

.project-details-one .details-text .project-info-outline .main-bg li .icon {
    position: absolute;
    left: 0px;
}

.project-details-one .details-text .project-info-outline .main-bg li strong {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    display: block;
    margin-bottom: 5px;
}

.project-details-one .details-text .project-info-outline .main-bg li span {
    font-size: 16px;
    display: block;
    color: rgba(0, 0, 0, 0.5);
}

.project-details-one .details-text .project-info-outline .main-bg li .num {
    font-size: 36px;
    color: rgba(0, 0, 0, 0.15);
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.project-details-one .details-text .social-icon li:first-child {
    color: rgba(0, 0, 0, 0.4);
}

.project-details-one .details-text .social-icon a {
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin: 0px 0px 0px 18px;
    transition: 0.2s ease-in-out;
}

.project-details-one .details-text .social-icon a:hover {
    color: rgb(255, 103, 37);
}

.project-details-one .page-pagination {
    border-top: 1px solid rgb(0, 0, 0);
}

.project-details-one .page-pagination .page-title .img {
    width: 80px;
}

.project-details-one .page-pagination .page-title span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.28px;
    display: block;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.feedback-section-one::before, .feedback-section-one::after {
    content: "";
    position: absolute;
    width: calc(50% - 65px);
    height: 2px;
    /* background: rgb(0, 0, 0); */
    bottom: 0px;
    left: 0px;
}

.feedback-section-one::after {
    left: auto;
    right: 0px;
}

.feedback-section-one .main-content {
    max-width: 1760px;
    padding: 0px 12px;
}

.feedback-section-one .slick-dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0px;
    padding: 0px;
}

.feedback-section-one .slick-dots button {
    background: rgb(40, 40, 40);
}

.feedback-block-one .avatar {
    width: 60px;
    height: 60px;
}

.feedback-block-one blockquote {
    font-size: 21px;
    line-height: 1.555em;
    color: rgb(0, 0, 0);
    margin: 0px;
}

.feedback-section-two {
    background: rgb(13, 26, 28);
}

.feedback-section-two .bg-wrapper {
    background: url("../images/shape/shape_13.svg") center center / cover no-repeat;
    padding: 50px;
}

.feedback-section-two .main-content {
    padding: 155px 50px 190px;
}

.feedback-section-two .main-content::before, .feedback-section-two .main-content::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
    top: 0px;
    z-index: -1;
    left: 44%;
}

.feedback-section-two .main-content::before {
    left: 94%;
}

.feedback-section-two .shape_01 {
    right: 6%;
    bottom: 16%;
    max-width: 11%;
    animation: 250s linear 0s infinite normal none running rotated;
}

.feedback-section-two .shape_02 {
    right: 22%;
    bottom: 26%;
    max-width: 7%;
}

.feedback-block-two blockquote {
    font-size: 74px;
    line-height: 1.1486em;
    margin: 0px;
    color: rgb(0, 0, 0);
}

.feedback-block-two blockquote span {
    font-style: italic;
    color: rgb(255, 103, 37);
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
}

.feedback-block-two .avatar {
    width: 60px;
    height: 60px;
}

.feedback-section-three {
    background: rgb(13, 26, 28);
}

.feedback-section-three .bg-line {
    background: url("../images/shape/shape_23.svg") center center / cover no-repeat;
}

.feedback-section-three .bg-line .shape_01 {
    left: 1%;
    bottom: 23%;
    max-width: 7%;
}

.feedback-section-three .bg-line .shape_02 {
    left: 20%;
    bottom: 17%;
    max-width: 23%;
}

.feedback-section-three .feedback-bg-wrapper {
    background: url("../images/shape/shape_24.svg") center center / cover no-repeat;
    padding: 50px 0px 0px 68px;
}

.feedback-section-three .feedback-bg-wrapper::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: -32px;
    right: 140px;
    background: rgb(255, 103, 37);
}

.feedback-section-three .feedback-bg-wrapper .icon {
    width: 60px;
    height: 60px;
    background: rgb(255, 103, 37);
}

.feedback-section-three .feedback-bg-wrapper .rating-box {
    position: absolute;
    z-index: 1;
    right: -13%;
    top: -12%;
    text-align: center;
    max-width: 26%;
}

.feedback-section-three .feedback-bg-wrapper .rating-box img {
    animation: 50s linear 0s infinite normal none running rotated;
}

.feedback-section-three .feedback-bg-wrapper .rating-box .rate {
    color: rgb(0, 0, 0);
    font-size: 24px;
    line-height: 1.08em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feedback-section-three .feedback-bg-wrapper .rating-box .rate span {
    font-weight: normal;
    font-size: 0.66em;
}

.feedback-section-three .slick-dots {
    position: absolute;
    left: 15px;
    bottom: 70px;
    margin: 0px;
    padding: 0px;
}

.feedback-section-three .slick-dots button {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    margin-right: 3px;
}

.feedback-section-three .slick-dots .slick-active button {
    background: rgb(255, 255, 255);
}

.feedback-block-three {
    position: relative;
}

.feedback-block-three blockquote {
    font-size: 44px;
    line-height: 1.613em;
    color: rgb(255, 255, 255);
    margin: 54px 40px 34px 0px;
}

.feedback-block-three blockquote span {
    color: rgb(255, 103, 37);
}

.feedback-block-three .avatar {
    width: 140px;
    height: 150px;
}

.feedback-section-four .section-btn {
    position: absolute;
    right: 160px;
    top: 75px;
}

.feedback-section-four .slick-arrow-two {
    position: absolute;
    right: 0px;
    top: 65px;
}

.feedback-section-four .shape_01 {
    right: 0px;
    top: -1%;
    max-width: 49%;
}

.feedback-section-four .shape_02 {
    left: 0px;
    bottom: 0px;
    max-width: 16%;
}

.feedback-block-four {
    padding: 35px 45px 45px;
    border: 1px solid rgb(233, 233, 233);
    background: rgb(255, 255, 255);
    border-radius: 20px;
    position: relative;
    transition: 0.2s ease-in-out;
}

.feedback-block-four .avatar {
    width: 60px;
    height: 60px;
}

.feedback-block-four blockquote {
    font-size: 16px;
    line-height: 1em;
    color: rgb(0, 0, 0);
    margin: 11px 0px 10px;
}

.feedback-block-four .rating li {
    color: rgb(255, 204, 74);
    margin-right: 4px;
}

.feedback-block-four .icon {
    position: absolute;
    right: 45px;
    bottom: 30px;
}

.slick-center .feedback-block-four {
    background: rgb(245, 245, 245);
    border-color: rgb(245, 245, 245);
}

.feedback-section-five .bg-wrapper::before {
    content: "";
    position: absolute;
    width: 50%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background: url("../images/media/img_43.jpg") center center / cover no-repeat;
}

.feedback-section-five .bg-wrapper::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: url("../images/shape/shape_49.svg") center center / cover no-repeat;
    right: -35px;
    bottom: -35px;
    width: 49%;
    height: 56%;
}

.feedback-section-five .content-wrapper {
    max-width: 790px;
    padding: 0px 70px;
}

.feedback-section-five .content-wrapper .icon {
    width: 62px;
    height: 62px;
    background: rgb(255, 103, 37);
}

.feedback-section-five .content-wrapper .slick-dots {
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 15px;
    bottom: 18px;
}

.feedback-section-five .content-wrapper .slick-dots li button {
    width: 10px;
    height: 10px;
    border: 1px solid rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0);
}

.feedback-section-five .content-wrapper .slick-dots li.slick-active button {
    background: rgb(0, 0, 0);
}

.feedback-section-five .rating-wrapper {
    position: absolute;
    z-index: 1;
    background: rgb(255, 255, 255);
    padding: 11px 32px 23px;
    bottom: 30px;
    right: 30px;
}

.feedback-block-five blockquote {
    padding: 24px 0px 38px;
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    font-size: 47px;
    line-height: 1.499em;
    color: rgb(0, 0, 0);
    font-style: italic;
    margin-bottom: 40px;
}

.feedback-block-five blockquote span {
    color: rgb(255, 103, 37);
}

.feedback-block-five .avatar {
    width: 60px;
    height: 60px;
}

.feedback-section-six .slick-slider {
    margin: 0px -30px;
}

.feedback-section-six .slick-slider .slick-slide {
    margin: 0px 30px;
}

.feedback-section-six .slick-dots {
    margin: 75px 0px 0px;
    padding: 0px;
    justify-content: center;
}

.feedback-section-six .slick-dots button {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.15);
}

.feedback-section-six .slick-dots .slick-active button {
    background: rgb(0, 0, 0);
}

.feedback-section-six .shape_01 {
    bottom: 0px;
    left: 0px;
    max-width: 19%;
    opacity: 0.3;
}

.feedback-section-six .shape_02 {
    bottom: 0px;
    right: 0px;
    max-width: 15%;
    opacity: 0.3;
}

.feedback-section-six .slider-left {
    width: 110vw;
    transform: translateX(-12vw);
}

.feedback-section-six .slider-right {
    width: 110vw;
    transform: translateX(2vw);
}

.feedback-block-six {
    padding: 50px 60px;
    background: rgb(255, 255, 255);
}

.feedback-block-six .rating li {
    font-size: 20px;
    color: rgb(255, 204, 74);
    margin-right: 5px;
}

.feedback-block-six blockquote {
    font-size: 32px;
    line-height: 1.718em;
    color: rgb(0, 0, 0);
    margin: 30px 0px 50px;
}

.feedback-block-six .avatar {
    width: 60px;
    height: 60px;
}

.feedback-section-seven .content-wrapper {
    padding: 30px 45px 30px 90px;
    border-left: 1px solid rgb(0, 0, 0);
}

.feedback-section-seven .content-wrapper::before, .feedback-section-seven .content-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 122px;
    top: 0px;
    left: 0px;
    background: url("../images/shape/shape_61.svg") center top / cover no-repeat;
    z-index: -1;
}

.feedback-section-seven .content-wrapper::after {
    top: auto;
    bottom: 0px;
}

.feedback-section-seven .content-wrapper .icon {
    width: 70px;
    height: 70px;
    background: rgb(255, 103, 37);
}

.feedback-section-seven .content-wrapper .feedback-block-five blockquote {
    border: none;
    margin-bottom: 30px;
}

.feedback-section-seven .content-wrapper .slick-dots {
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 15px;
    bottom: 24px;
}

.feedback-section-seven .content-wrapper .slick-dots li button {
    width: 10px;
    height: 10px;
    border: 1px solid rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0);
}

.feedback-section-seven .content-wrapper .slick-dots li.slick-active button {
    background: rgb(0, 0, 0);
}

.feedback-section-seven .content-wrapper .rating-box {
    position: absolute;
    z-index: 1;
    right: -13%;
    top: -12%;
    text-align: center;
    max-width: 26%;
}

.feedback-section-seven .content-wrapper .rating-box img {
    animation: 50s linear 0s infinite normal none running rotated;
}

.feedback-section-seven .content-wrapper .rating-box .rate {
    color: rgb(0, 0, 0);
    font-size: 24px;
    line-height: 1.08em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feedback-section-seven .content-wrapper .rating-box .rate span {
    font-weight: normal;
    font-size: 0.66em;
}

.feedback-section-seven .rating-box {
    position: absolute;
    z-index: 1;
    left: 22%;
    bottom: 13%;
    text-align: center;
    max-width: 16%;
}

.feedback-section-seven .rating-box img {
    animation: 50s linear 0s infinite normal none running rotated;
}

.feedback-section-seven .rating-box .rate {
    color: rgb(255, 255, 255);
    font-size: 24px;
    line-height: 1.08em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feedback-section-seven .rating-box .rate span {
    font-weight: normal;
    font-size: 0.66em;
}

.blog-filter-nav .isotop-menu-wrapper {
    margin: 0px -10px;
}

.blog-filter-nav .isotop-menu-wrapper li {
    margin: 0px 10px 10px;
    line-height: 41px;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 40px;
    padding: 0px 23px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.blog-filter-nav .isotop-menu-wrapper li.is-checked {
    border-color: rgb(255, 103, 37);
    background: rgb(255, 103, 37);
    color: rgb(255, 255, 255);
}

.blog-section-one .section-btn {
    position: absolute;
    right: 0px;
    top: 80px;
}

.blog-section-two .section-btn {
    position: absolute;
    right: 0px;
    top: 30px;
}

.blog-meta-one {
    background: rgb(255, 255, 255);
}

.blog-meta-one .post-data {
    border-bottom: 1px solid rgb(227, 227, 227);
    padding: 32px 0px;
}

.blog-meta-one .post-data .blog-title {
    width: 68%;
}

.blog-meta-one .post-data .blog-title h4 {
    font-size: 28px;
    line-height: 1.5em;
}

.blog-meta-one .post-data .blog-title:hover h4 {
    text-decoration: underline;
}

.blog-meta-one .post-data .read-btn {
    font-size: 30px;
    width: 65px;
    height: 65px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.blog-meta-one .post-data .read-btn:hover {
    background: rgb(255, 103, 37);
}

.blog-meta-one .post-data .post-info {
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.blog-meta-one .post-data .post-info a {
    color: rgb(0, 0, 0);
}

.blog-meta-one .post-data .post-info a:hover {
    text-decoration: underline;
}

.blog-meta-one .post-img {
    height: 430px;
    padding: 15px 0px 0px 15px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-meta-one .post-img .date {
    line-height: 30px;
    font-size: 15px;
    padding: 0px 12px;
    text-transform: uppercase;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.blog-meta-one .post-img.border-25 {
    border-radius: 25px;
    overflow: hidden;
}

.blog-meta-one .post-img.border-25 .date {
    border-radius: 20px;
}

.blog-meta-two {
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(0, 0, 0);
}

.blog-meta-two .post-data {
    padding: 32px 0px;
}

.blog-meta-two .post-data .blog-title {
    width: calc(100% - 70px);
}

.blog-meta-two .post-data .blog-title h4 {
    font-size: 28px;
    line-height: 1.5em;
}

.blog-meta-two .post-data .blog-title:hover h4 {
    text-decoration: underline;
}

.blog-meta-two .post-data .post-info {
    margin-bottom: 4px;
    color: rgba(0, 0, 0, 0.5);
}

.blog-meta-two .post-data .post-info a {
    color: rgb(0, 0, 0);
}

.blog-meta-two .post-data .post-info a:hover {
    text-decoration: underline;
}

.blog-meta-two .post-img {
    height: 345px;
    padding: 20px 0px 0px 30px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-meta-two .date {
    line-height: 25px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    width: 75px;
    text-align: center;
    text-transform: uppercase;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.blog-meta-two .hover-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgb(243, 243, 243);
    z-index: 1;
    padding: 20px 30px 0px;
    opacity: 0;
    visibility: hidden;
}

.blog-meta-two .hover-content .post-data {
    margin-top: 50px;
}

.blog-meta-two .hover-content .post-data .blog-title {
    width: 100%;
}

.blog-meta-two .hover-content .post-data .blog-title h4 {
    font-size: 36px;
    line-height: 1.444em;
}

.blog-meta-two .hover-content .post-data .post-info {
    margin-bottom: 15px;
}

.blog-meta-two .hover-content .btn-four {
    width: 49px;
    height: 49px;
    font-size: 27px;
    position: absolute;
    right: 35px;
    bottom: 40px;
}

.blog-meta-two:hover {
    border-color: rgb(243, 243, 243);
}

.blog-meta-two:hover .hover-content {
    opacity: 1;
    visibility: visible;
}

.blog-meta-three {
    background: rgb(255, 255, 255);
}

.blog-meta-three .post-data {
    padding: 32px 0px 0px;
}

.blog-meta-three .post-data.bg-grey {
    background: rgb(245, 245, 245);
    padding: 50px;
}

.blog-meta-three .post-data .blog-title h4 {
    font-size: 32px;
    line-height: 1.5em;
    margin-bottom: 24px;
}

.blog-meta-three .post-data .blog-title:hover h4 {
    text-decoration: underline;
}

.blog-meta-three .post-data p {
    margin-bottom: 32px;
}

.blog-meta-three .post-data .post-info {
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.5);
}

.blog-meta-three .post-data .post-info a {
    color: rgb(0, 0, 0);
}

.blog-meta-three .post-data .post-info a:hover {
    text-decoration: underline;
}

.blog-meta-three .date {
    line-height: 30px;
    font-size: 14px;
    padding: 0px 22px;
    text-transform: uppercase;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.blog-meta-three .post-img {
    height: 490px;
    padding: 25px 0px 0px 25px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-sidebar.dot-bg {
    background: url("../images/shape/shape_69.svg") center center / cover no-repeat;
    padding: 30px;
}

.blog-sidebar .bg-wrapper {
    padding: 30px;
}

.blog-sidebar h5 {
    font-size: 24px;
}

.blog-sidebar .search-form form {
    height: 70px;
}

.blog-sidebar .search-form form input {
    width: 100%;
    height: 100%;
    padding: 0px 65px 0px 20px;
    font-size: 17px;
    border: none;
}

.blog-sidebar .search-form form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 60px;
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

.blog-sidebar .search-form form button:hover {
    color: rgb(255, 103, 37);
}

.blog-sidebar .categories li a {
    color: rgb(0, 0, 0);
    font-size: 16px;
    margin-bottom: 13px;
    transition: 0.2s ease-in-out;
}

.blog-sidebar .categories li a:hover {
    text-decoration: underline;
    color: rgb(255, 103, 37);
}

.blog-sidebar .recent-news .news-block img {
    width: 70px;
}

.blog-sidebar .recent-news .news-block .post {
    width: calc(100% - 70px);
}

.blog-sidebar .recent-news .news-block .post .title {
    font-size: 18px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    line-height: 1.44em;
    letter-spacing: -0.18px;
}

.blog-sidebar .recent-news .news-block .post .title:hover {
    text-decoration: underline;
}

.blog-sidebar .recent-news .news-block .post .date {
    font-size: 15px;
    color: rgb(162, 162, 162);
}

.blog-sidebar .keyword ul {
    margin: 0px -5px;
}

.blog-sidebar .keyword ul li {
    margin: 15px 5px 0px;
}

.blog-sidebar .keyword ul li a {
    line-height: 33px;
    padding: 0px 22px;
    font-size: 14px;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
}

.blog-sidebar .keyword ul li a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.blog-details .blog-post-meta .post-info {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.5);
}

.blog-details .blog-post-meta .post-info a {
    color: rgb(0, 0, 0);
}

.blog-details .blog-post-meta .post-info a:hover {
    text-decoration: underline;
}

.blog-details .blog-post-meta .date {
    line-height: 30px;
    font-size: 14px;
    padding: 0px 22px;
    text-transform: uppercase;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.blog-details .blog-post-meta .post-img {
    height: 490px;
    padding: 25px 0px 0px 25px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-details .blog-post-meta .post-data p {
    margin-bottom: 30px;
    line-height: 2em;
    text-align: justify;
}

.blog-details .blog-post-meta .post-data .quote-wrapper {
    text-align: center;
    background: rgb(243, 243, 243);
    margin: 55px 0px 50px;
    padding: 40px 15px 45px;
}

.blog-details .blog-post-meta .post-data .quote-wrapper .icon {
    width: 55px;
    height: 55px;
    background: rgb(0, 0, 0);
}

.blog-details .blog-post-meta .post-data .quote-wrapper h4 {
    font-size: 42px;
    font-weight: normal;
    line-height: 1.547em;
    margin: 18px 0px 27px;
}

.blog-details .blog-post-meta .post-data .quote-wrapper h6 {
    font-size: 20px;
}

.blog-details .blog-post-meta .post-data .quote-wrapper h6 span {
    font-weight: normal;
    color: rgba(0, 0, 0, 0.5);
}

.blog-details .blog-post-meta .post-data h5 {
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-details .blog-post-meta .post-data .list-item {
    padding: 10px 0px 15px;
}

.blog-details .blog-post-meta .post-data .list-item li {
    font-size: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    position: relative;
    padding-left: 33px;
    margin-bottom: 25px;
}

.blog-details .blog-post-meta .post-data .list-item li::after {
    content: "ï€Œ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0px;
    top: 2px;
    font-size: 1em;
}

.blog-details .blog-post-meta .post-data .img-meta {
    padding: 15px 0px 18px;
}

.blog-details .blog-post-meta .post-data .img-caption {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.blog-details .blog-post-meta .bottom-widget {
    padding: 0px 0px 22px;
    border-bottom: 1px solid rgb(0, 0, 0);
}

.blog-details .blog-post-meta .bottom-widget .tags li:first-child {
    color: rgba(0, 0, 0, 0.4);
    margin-right: 7px;
}

.blog-details .blog-post-meta .bottom-widget .tags a {
    color: rgb(0, 0, 0);
    margin-right: 5px;
    transition: 0.2s ease-in-out;
}

.blog-details .blog-post-meta .bottom-widget .tags a:hover {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.blog-details .blog-post-meta .bottom-widget .share-icon li:first-child {
    color: rgba(0, 0, 0, 0.4);
}

.blog-details .blog-post-meta .bottom-widget .share-icon a {
    color: rgb(0, 0, 0);
    font-size: 22px;
    margin-left: 22px;
    transition: 0.2s ease-in-out;
}

.blog-details .blog-post-meta .bottom-widget .share-icon a:hover {
    color: rgb(255, 103, 37);
}

.blog-details .blog-inner-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.blog-details .blog-comment-area {
    margin: 75px 0px;
}

.blog-details .blog-comment-area .comment {
    margin: 0px 0px 20px;
}

.blog-details .blog-comment-area .comment .reply-comment {
    margin: 45px 0px 30px;
}

.blog-details .blog-comment-area .comment .user-avatar {
    width: 60px;
    height: 60px;
}

.blog-details .blog-comment-area .comment .comment-text {
    width: calc(100% - 60px);
    padding-left: 25px;
    position: relative;
}

.blog-details .blog-comment-area .comment .comment-text .name {
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin-bottom: 5px;
}

.blog-details .blog-comment-area .comment .comment-text .date {
    font-size: 15px;
    color: rgb(173, 173, 173);
}

.blog-details .blog-comment-area .comment .comment-text p {
    font-size: 17px;
    line-height: 30px;
    margin: 13px 0px 0px;
}

.blog-details .blog-comment-area .comment .comment-text .reply-btn {
    font-size: 13px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: center;
    width: 65px;
    line-height: 25px;
    background: rgb(0, 0, 0);
    border-radius: 3px;
    position: absolute;
    right: 0px;
    top: 5px;
}

.blog-details .blog-comment-area .comment .comment-text .reply-btn:hover {
    background: rgb(255, 103, 37);
}

.blog-details .blog-comment-form {
    background: rgb(243, 243, 243);
    padding: 60px;
}

.blog-details .blog-comment-form p a {
    color: rgb(0, 0, 0);
}

.blog-details .blog-comment-form form label {
    font-size: 14px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.5);
    display: block;
    padding-bottom: 10px;
}

.blog-details .blog-comment-form form input {
    display: block;
    font-size: 18px;
    width: 100%;
    height: 60px;
    border: none;
    padding: 0px 25px;
    background: rgb(255, 255, 255);
}

.blog-details .blog-comment-form form textarea {
    display: block;
    font-size: 17px;
    width: 100%;
    max-width: 100%;
    height: 145px;
    border: none;
    padding: 20px 25px;
    background: rgb(255, 255, 255);
}

.contact-map-banner {
    height: 100%;
    min-height: 450px;
}

.contact-us .form-style-one {
    max-width: 818px;
    padding: 34px 0px 44px 59px;
}

.form-style-one h3 {
    font-size: 48px;
    margin-bottom: 20px;
}

.form-style-one .input-group-meta {
    position: relative;
}

.form-style-one .input-group-meta label {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.form-style-one .input-group-meta input, .form-style-one .input-group-meta textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 8px;
    background: rgb(255, 255, 255);
    font-size: 17px;
    color: rgb(0, 0, 0);
}

.form-style-one .input-group-meta input {
    height: 52px;
    padding: 0px 20px;
}

.form-style-one .input-group-meta textarea {
    height: 117px;
    padding: 15px 20px;
}

.form-style-one .btn-four {
    font-weight: 500;
    line-height: 60px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
}

#contact-form .help-block {
    position: absolute;
    left: 0px;
    bottom: -18px;
    font-size: 13px;
    line-height: 20px;
    color: rgb(255, 77, 68);
}

#contact-form .help-block ul {
    margin: 0px;
}

.footer-one .footer-intro {
    background: url("../images/shape/shape_09.svg") center center / cover no-repeat;
    padding: 30px;
}

.footer-one .footer-intro .bg-wrapper {
    background: rgb(255, 255, 255);
    padding: 50px 30px;
}

.footer-one .footer-intro h6 {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
}

.footer-one .footer-intro .email {
    color: rgb(0, 0, 0);
    letter-spacing: -1px;
}

.footer-one .footer-intro .email:hover {
    color: rgb(255, 103, 37);
}

.footer-one .footer-intro .social-icon {
    margin: 0px -4px;
}

.footer-one .footer-intro .social-icon li {
    padding: 0px 4px;
}

.footer-one .footer-intro .social-icon li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    font-size: 1.1em;
    transition: 0.3s ease-in-out;
}

.footer-one .footer-intro .social-icon li a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.footer-one .footer-title {
    font-size: 24px;
    margin-bottom: 25px;
}

.footer-one .footer-nav {
    width: 33.333%;
    padding-left: 50px;
    padding-right: 50px;
    border-right: 1px solid rgb(0, 0, 0);
}

.footer-one .footer-nav:last-child {
    border-right: none;
}

.footer-one .footer-nav .footer-nav-link a {
    line-height: 44px;
    color: rgba(0, 0, 0, 0.7);
    transition: 0.2s ease-in-out;
}

.footer-one .footer-nav .footer-nav-link a:hover {
    color: rgb(255, 103, 37);
}

.footer-one.dark-bg {
    background: rgb(13, 26, 28);
    color: rgba(255, 255, 255, 0.6);
}

.footer-one.dark-bg .shape_02 {
    bottom: 7%;
    left: 61%;
}

.footer-one.dark-bg .footer-intro {
    background: url("../images/shape/shape_31.svg") center center / cover no-repeat;
}

.footer-one.dark-bg .footer-intro .shape_01 {
    bottom: 9%;
    right: 11%;
    max-width: 18%;
    animation: 200s linear 0s infinite normal none running rotated;
}

.footer-one.dark-bg .footer-intro .bg-wrapper {
    background: rgba(0, 0, 0, 0);
}

.footer-one.dark-bg .footer-intro h6 {
    color: rgba(255, 255, 255, 0.4);
}

.footer-one.dark-bg .footer-intro .email {
    color: rgb(255, 255, 255);
    font-size: 36px;
    letter-spacing: 0px;
}

.footer-one.dark-bg .footer-intro .email:hover {
    color: rgb(255, 103, 37);
}

.footer-one.dark-bg .footer-intro .social-icon li a {
    width: auto;
    height: auto;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 15px;
}

.footer-one.dark-bg .footer-intro .social-icon li a:hover {
    color: rgb(255, 255, 255);
}

.footer-one.dark-bg .footer-nav {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-one.dark-bg .footer-nav .footer-nav-link a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-one.dark-bg .footer-nav .footer-nav-link a:hover {
    color: rgb(255, 103, 37);
}

.footer-two .bg-wrapper {
    border-top: 1px solid rgb(226, 226, 226);
    border-bottom: 1px solid rgb(226, 226, 226);
}

.footer-two .news-letter-area {
    position: absolute;
    right: 0px;
    width: calc(75% - 6rem);
    top: 60px;
}

.footer-two .news-letter-area h2 {
    font-size: 44px;
}

.footer-two .news-letter-area .form-wrapper {
    max-width: 495px;
}

.footer-two .news-letter-area .form-wrapper form {
    height: 75px;
    position: relative;
}

.footer-two .news-letter-area .form-wrapper form input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    padding: 0px 80px 0px 25px;
    background: rgb(243, 243, 243);
}

.footer-two .news-letter-area .form-wrapper form button {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 10px;
    background: rgb(0, 0, 0);
    width: 60px;
    font-weight: 500;
    font-size: 25px;
    color: rgb(255, 255, 255);
    transition: 0.3s ease-in-out;
}

.footer-two .news-letter-area .form-wrapper form button:hover, .footer-two .news-letter-area .form-wrapper form button:focus {
    background: rgb(255, 63, 37);
}

.footer-two .footer-intro {
    border-right: 1px solid rgb(226, 226, 226);
}

.footer-two .footer-intro .contact-info {
    border-top: 1px solid rgb(226, 226, 226);
    border-bottom: 1px solid rgb(226, 226, 226);
    padding: 20px 0px 15px;
    margin-bottom: 60px;
}

.footer-two .footer-intro .contact-info li {
    margin: 20px 0px;
}

.footer-two .footer-intro .contact-info a {
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-left: 22px;
    transition: 0.3s ease-in-out;
}

.footer-two .footer-intro .contact-info a:hover {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.footer-two .footer-intro .social-icon {
    margin: 0px -4px;
}

.footer-two .footer-intro .social-icon li {
    padding: 0px 4px;
}

.footer-two .footer-intro .social-icon li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 1.1em;
    transition: 0.3s ease-in-out;
}

.footer-two .footer-intro .social-icon li a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.footer-two .footer-intro .shape_01 {
    right: 15%;
    bottom: 6%;
    max-width: 20%;
    animation: 90s linear 0s infinite normal none running rotated;
}

.footer-two .footer-title {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgb(237, 98, 67) !important;
}

.footer-two .footer-nav-link a {
    line-height: 35px;
    color: rgba(255, 255, 255, 0.86);
    transition: 0.2s ease-in-out;
}

.footer-two .footer-nav-link a:hover {
    color: rgb(255, 103, 37);
}

.footer-two .bottom-footer {
    padding: 40px 0px 25px;
}

.footer-two .bottom-footer p {
    font-size: 16px;
}

.footer-two .bottom-footer .bottom-nav {
    margin: 0px -12px 15px;
}

.footer-two .bottom-footer .bottom-nav a {
    font-size: 16px;
    font-weight: 500;
    margin: 0px 12px;
    color: rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
}

.footer-two .bottom-footer .bottom-nav a:hover {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.footer-three {
    padding-top: 100px;
}

.footer-three .social-icon a {
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin-right: 35px;
    transition: 0.2s ease-in-out;
}

.footer-three .social-icon a:hover {
    color: rgb(255, 103, 37);
}

.footer-three .footer-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-three .footer-nav-link a {
    color: rgba(0, 0, 0, 0.7);
    line-height: 44px;
    transition: 0.2s ease-in-out;
}

.footer-three .footer-nav-link a:hover {
    color: rgb(255, 103, 37);
}

.footer-three .newsletter-form {
    height: 60px;
}

.footer-three .newsletter-form input {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(0, 0, 0);
    padding: 0px 90px 0px 15px;
    font-size: 16px;
}

.footer-three .newsletter-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 75px;
    background: rgb(0, 0, 0);
}

.footer-three .newsletter-form button:hover {
    background: rgb(255, 103, 37);
}

.footer-three .bottom-footer {
    border-top: 1px solid rgb(0, 0, 0);
    margin-top: 45px;
    padding: 30px 0px 15px;
}

.footer-three .bottom-footer .bottom-nav {
    margin: 0px -12px 15px;
}

.footer-three .bottom-footer .bottom-nav a {
    font-size: 16px;
    font-weight: 500;
    margin: 0px 12px;
    color: rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
}

.footer-three .bottom-footer .bottom-nav a:hover {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.footer-four {
    padding: 120px 0px 150px;
    overflow: hidden;
}

.footer-four .email {
    font-size: 28px;
    color: rgb(0, 0, 0);
}

.footer-four .email:hover {
    color: rgb(255, 103, 37);
}

.footer-four .social-icon a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    border: 1px solid rgb(0, 0, 0);
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin-right: 16px;
    transition: 0.2s ease-in-out;
}

.footer-four .social-icon a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.footer-four .footer-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-four .footer-nav-link a {
    color: rgba(0, 0, 0, 0.7);
    line-height: 44px;
    transition: 0.2s ease-in-out;
}

.footer-four .footer-nav-link a:hover {
    color: rgb(255, 103, 37);
}

.footer-four .bottom-footer {
    border-top: 1px solid rgb(0, 0, 0);
    margin-top: 7px;
    padding: 26px 0px;
}

.footer-four .shape_01 {
    width: 100%;
    left: 0px;
    bottom: 0px;
}

.footer-four.dark-bg {
    padding: 0px 0px 0px;
    background: rgb(20, 20, 20);
    color: rgba(255, 255, 255, 0.6);
}

.footer-four.dark-bg .news-letter-area h2 {
    font-size: 44px;
}

.footer-four.dark-bg .news-letter-area .line-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 70px;
    margin-bottom: 85px;
}

.footer-four.dark-bg .news-letter-area .form-wrapper {
    max-width: 500px;
}

.footer-four.dark-bg .news-letter-area .form-wrapper form {
    height: 80px;
    position: relative;
}

.footer-four.dark-bg .news-letter-area .form-wrapper form input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    padding: 0px 170px 0px 25px;
    background: rgb(255, 255, 255);
}

.footer-four.dark-bg .news-letter-area .form-wrapper form button {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 10px;
    background: rgb(255, 103, 37);
    width: 160px;
    font-weight: 500;
    font-size: 16px;
    color: rgb(255, 255, 255);
    transition: 0.3s ease-in-out;
}

.footer-four.dark-bg .news-letter-area .form-wrapper form button:hover, .footer-four.dark-bg .news-letter-area .form-wrapper form button:focus {
    background: rgb(255, 63, 37);
}

.footer-four.dark-bg .news-letter-area .form-wrapper a {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.footer-four.dark-bg .social-icon a {
    border: none;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.09);
}

.footer-four.dark-bg .social-icon a:hover {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.footer-four.dark-bg .footer-nav-link a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-four.dark-bg .footer-nav-link a:hover {
    color: rgb(255, 103, 37);
}

.footer-four.dark-bg .bottom-footer {
    padding: 9px 0px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.modal .modal-dialog {
    height: auto;
}

.modal .modal-dialog .modal-content {
    margin: 40px auto;
    background: #f9f9f9;
}

.user-data-form {
    background: rgb(255, 255, 255);
    margin: 0px auto;
    max-width: 584px;
    padding: 50px 15px 40px;
    border-radius: 20px !important;
}

.user-data-form h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.user-data-form p a {
    color: rgb(255, 103, 37);
}

.user-data-form p a:hover {
    text-decoration: underline;
}

.user-data-form .form-wrapper {
    max-width: 537px;
}

.user-data-form .form-wrapper .input-group-meta input {
    width: 100%;
    height: 49px;
    font-size: 16px;
    border: 1px solid rgba(37, 64, 53, 0.06);
    border-radius: 8px;
    /* padding: 0px 52px 0px 20px; */
    color: rgb(0, 0, 0);
    /* background: rgba(0, 0, 0, 0.04); */
}

.user-data-form .form-wrapper .input-group-meta label {
    font-size: 16px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.user-data-form .form-wrapper .input-group-meta .placeholder_icon {
    position: absolute;
    height: 55px;
    top: 30px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    text-align: center;
    z-index: 1;
    color: rgba(0, 0, 0, 0.45);
    font-size: 17px;
}

.user-data-form .form-wrapper .input-group-meta .placeholder_icon img {
    position: relative;
    top: 50%;
    margin: 0px auto;
    transform: translateY(-50%);
}

.user-data-form .form-wrapper .input-group-meta .placeholder_icon span {
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block;
    position: relative;
}

.user-data-form .form-wrapper .input-group-meta .placeholder_icon span::before {
    content: "";
    width: 2px;
    height: 26px;
    background: rgb(0, 0, 0);
    position: absolute;
    top: 15px;
    left: 24px;
    transform: rotate(45deg);
    z-index: 5;
    transition: 0.2s ease-in-out;
}

.user-data-form .form-wrapper .input-group-meta .placeholder_icon span.eye-slash::before {
    opacity: 0;
}

.user-data-form .agreement-checkbox label {
    position: relative;
    font-size: 14px;
    font-weight: normal;
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding-left: 22px;
    transition: 0.1s ease-in-out;
}

.user-data-form .agreement-checkbox label a {
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

.user-data-form .agreement-checkbox input[type="checkbox"] {
    display: none;
}

.user-data-form .agreement-checkbox label::before {
    content: "";
    width: 14px;
    height: 14px;
    line-height: 11px;
    border-radius: 2px;
    border: 2px solid rgb(179, 179, 179);
    font-size: 10px;
    text-align: center;
    position: absolute;
    left: 0px;
    top: 4px;
    transition: 0.1s ease-in-out;
}

.user-data-form .agreement-checkbox input[type="checkbox"]:checked + label::before {
    content: "ï€Œ";
    font-family: "Font Awesome 6 Pro";
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
}

.user-data-form .agreement-checkbox a {
    position: relative;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.user-data-form .agreement-checkbox a:hover {
    text-decoration: underline;
    color: rgb(255, 103, 37);
}

.user-data-form .line {
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.user-data-form .social-use-btn {
    font-size: 16px;
    color: rgb(0, 0, 0);
    height: 55px;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 7px;
}

.user-data-form .social-use-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.user-data-form .social-use-btn img {
    width: 20px;
}

.user-data-form .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    box-shadow: none;
    z-index: 1;
    background: #fff;
}

.user-data-form .nav {
    background: rgb(255, 248, 244);
    border-radius: 40px;
    border: 1px solid rgb(255, 103, 37);
}

.user-data-form .nav .nav-item {
    width: 50%;
}

.user-data-form .nav .nav-item .nav-link {
    font-weight: 500;
    display: block;
    width: 100%;
    border: none;
    color: rgb(0, 0, 0);
    margin: 0px;
    padding: 13px 5px;
}

.user-data-form .nav .nav-item .nav-link.active {
    color: rgb(255, 103, 37);
    background: rgb(255, 255, 255);
}

.user-data-form .nav .nav-item:first-child .nav-link {
    border-radius: 40px 0px 0px 40px;
    border-right: 1px solid rgb(255, 103, 37);
}

.user-data-form .nav .nav-item:last-child .nav-link {
    border-radius: 0px 40px 40px 0px;
}

.dash-aside-navbar {
    position: fixed;
    z-index: 1000;
    left: 0px;
    top: 0px;
    bottom: 0px;
    min-height: 100vh;
    overflow-y: auto;
    width: 320px;
    background: rgb(255, 255, 255);
    padding: 30px 0px;
}

.dash-aside-navbar::-webkit-scrollbar {
    width: 5px;
}

.dash-aside-navbar::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

.dash-aside-navbar::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255);
    border-radius: 0px;
}

.dash-aside-navbar .plr {
    padding-left: 30px;
    padding-right: 30px;
}

.dash-aside-navbar .bottom-line {
    border-bottom: 1px solid rgb(233, 233, 233);
}

.dash-aside-navbar .dasboard-main-nav li a {
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    padding: 13px 5px 13px 20px;
    border-radius: 10px;
    transition: 0.25s ease-in-out;
}

.dash-aside-navbar .dasboard-main-nav li a span {
    padding-left: 15px;
}

.dash-aside-navbar .dasboard-main-nav li a:hover {
    text-decoration: underline;
}

.dash-aside-navbar .dasboard-main-nav li a.active {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.dash-aside-navbar .dasboard-main-nav li a img {
    max-width: 20px;
}

.dash-aside-navbar .dasboard-main-nav li .nav-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    padding-left: 50px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.dash-aside-navbar .profile-complete-status {
    margin: 30px 0px 20px;
}

.dash-aside-navbar .profile-complete-status .progress-value {
    font-size: 16px;
    letter-spacing: -0.16px;
    color: rgb(0, 0, 0);
}

.dash-aside-navbar .profile-complete-status .progress-line {
    height: 5px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 9px 0px 3px;
}

.dash-aside-navbar .profile-complete-status .progress-line .inner-line {
    position: absolute;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgb(255, 103, 37);
}

.dash-aside-navbar .profile-complete-status p {
    font-size: 11px;
    font-weight: 500;
    margin: 0px;
    color: rgba(36, 64, 52, 0.5);
}

.dash-aside-navbar .logout-btn {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.16px;
    color: rgb(0, 0, 0);
    transition: 0.25s ease-in-out;
}

.dash-aside-navbar .logout-btn .icon {
    width: 42px;
    height: 42px;
    background: rgb(0, 0, 0);
}

.dash-aside-navbar .logout-btn span {
    padding-left: 10px;
}

.dash-aside-navbar .logout-btn:hover {
    color: rgb(255, 63, 37);
}

.dash-aside-navbar .logout-btn:hover .icon {
    background: rgb(255, 63, 37);
}

.dash-aside-navbar .close-btn {
    font-size: 28px;
    color: rgb(0, 0, 0);
}

.dash-aside-navbar .close-btn:hover {
    color: rgb(255, 103, 37);
}

.dashboard-body {
    min-height: 100vh;
    background: rgb(249, 243, 239);
    margin-left: 320px;
    padding: 180px 45px 50px;
}

.dashboard-body .plr {
    padding-left: 30px;
    padding-right: 30px;
}

.dashboard-body .border-15 {
    border-radius: 15px;
}

.dashboard-body .border-20 {
    border-radius: 20px;
}

.dashboard-body .border-30 {
    border-radius: 30px;
}

.dashboard-body .card-box {
    padding: 45px 60px 50px;
}

.dashboard-body .main-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.dashboard-body .dash-title-two {
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 0px;
}

.dashboard-body .dash-title-three {
    font-size: 24px;
    margin: 0px 0px 30px;
}

.dashboard-body .dash-btn-one {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.15px;
    color: rgb(255, 255, 255);
    border-radius: 7px;
    line-height: 40px;
    padding: 0px 15px;
    min-width: 135px;
    text-align: center;
    background: rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
}

.dashboard-body .dash-btn-one i {
    font-size: 1.5em;
    font-weight: bold;
    vertical-align: -3px;
    margin-right: 2px;
}

.dashboard-body .dash-btn-one:hover {
    background: rgb(255, 103, 37);
}

.dashboard-body .dash-btn-one input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.dashboard-body .dash-btn-two {
    font-weight: 500;
    color: rgb(255, 255, 255);
    min-width: 125px;
    font-size: 16px;
    text-align: center;
    padding: 0px 25px;
    line-height: 45px;
    border-radius: 10px;
    background: rgb(255, 103, 37);
}

.dashboard-body .dash-btn-two:hover {
    background: rgb(0, 0, 0);
}

.dashboard-body .dash-cancel-btn {
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.dashboard-body .dash-cancel-btn:hover {
    color: rgb(255, 63, 37);
}

.dashboard-body .dashboard-header {
    position: fixed;
    top: 0px;
    right: 45px;
    left: 365px;
    background: rgb(249, 243, 239);
    padding: 30px 0px;
    z-index: 999;
}

.dashboard-body .dashboard-header .search-form {
    position: relative;
    height: 55px;
    width: 318px;
}

.dashboard-body .dashboard-header .search-form input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 30px;
    padding: 0px 45px 0px 20px;
    background: rgba(0, 0, 0, 0);
}

.dashboard-body .dashboard-header .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    border-radius: 0px 30px 30px 0px;
}

.dashboard-body .dashboard-header .user-data .user-avatar {
    width: 65px;
    height: 65px;
    border: 5px solid rgb(255, 255, 255);
}

.dashboard-body .dashboard-header .user-data .user-avatar img {
    border-radius: 50%;
}

.dashboard-body .dashboard-header .user-data .user-avatar::after {
    display: none;
}

.dashboard-body .dashboard-header .user-data .user-avatar.online::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgb(41, 210, 89);
    border: 3px solid rgb(255, 255, 255);
    right: -6px;
    bottom: 3px;
    z-index: 1;
}

.dashboard-body .dashboard-header .user-data .user-name-data .dropdown-menu {
    width: 220px;
    border: none;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
    padding: 12px 0px;
}

.dashboard-body .dashboard-header .user-data .user-name-data .dropdown-menu::before {
    content: url("../dashboard/images/icon/icon_42.svg");
    position: absolute;
    right: 23px;
    top: -17px;
}

.dashboard-body .dashboard-header .user-data .user-name-data .dropdown-menu .dropdown-item {
    text-transform: capitalize;
    line-height: 45px;
    padding: 0px 5px 0px 20px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0);
    position: relative;
    letter-spacing: -0.1px;
    transition: 0.2s ease-in-out;
}

.dashboard-body .dashboard-header .user-data .user-name-data .dropdown-menu .dropdown-item i {
    font-weight: 700;
    font-size: 1.1em;
}

.dashboard-body .dashboard-header .user-data .user-name-data .dropdown-menu .dropdown-item:hover {
    color: rgb(255, 103, 37);
    background: rgba(0, 0, 0, 0.01);
}

.dashboard-body .dashboard-header .user-data .user-name-data .dropdown-menu .dropdown-item img {
    width: 19px;
}

.dashboard-body .dashboard-header .user-data .user-name {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: rgb(255, 103, 37);
    margin: 15px 0px 45px;
}

.dashboard-body .dashboard-header .user-data .user-name::after {
    vertical-align: 3px;
}

.dashboard-body .dashboard-header .profile-notification .noti-btn {
    height: 45px;
    position: relative;
}

.dashboard-body .dashboard-header .profile-notification .noti-btn::after {
    display: none;
}

.dashboard-body .dashboard-header .profile-notification .noti-btn .badge-pill {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(255, 39, 48);
    top: 4px;
    right: -7px;
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu {
    width: 325px;
    border: none;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 50px 100px;
    padding: 25px 18px 30px 22px;
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li {
    position: relative;
    padding-right: 10px;
    cursor: pointer;
    margin-top: 20px;
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgb(216, 216, 216);
    border-radius: 50%;
    right: 0px;
    top: 5px;
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li.unread::before {
    background: rgb(255, 39, 48);
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li h6 {
    font-size: 15px;
    margin-bottom: 3px;
    color: rgba(0, 0, 0, 0.5);
    width: 85%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li.unread h6 {
    color: rgb(0, 0, 0);
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li .time {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li:hover h6 {
    text-decoration: underline;
}

.dashboard-body .dashboard-header .job-post-btn {
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-align: center;
    width: 135px;
    line-height: 45px;
    border-radius: 50px;
    background: rgb(255, 103, 37);
}

.dashboard-body .dashboard-header .job-post-btn:hover {
    background: rgb(255, 63, 37);
    color: rgb(255, 103, 37);
}

.dashboard-body .dashboard-header .dash-mobile-nav-toggler {
    width: 44px;
    height: 38px;
    padding: 0px;
    box-shadow: none;
    position: relative;
    z-index: 99;
    border: none;
    border-radius: 5px;
}

.dashboard-body .dashboard-header .dash-mobile-nav-toggler:focus {
    box-shadow: none;
}

.dashboard-body .dashboard-header .dash-mobile-nav-toggler::before, .dashboard-body .dashboard-header .dash-mobile-nav-toggler::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 26px;
    height: 2px;
    pointer-events: none;
    transition: transform 0.25s;
    transform-origin: 50% 50%;
    background: rgb(255, 103, 37);
}

.dashboard-body .dashboard-header .dash-mobile-nav-toggler span {
    position: absolute;
    left: 0px;
    overflow: hidden;
    width: 26px;
    height: 2px;
    margin-top: -1px;
    text-indent: 200%;
    transition: opacity 0.25s;
    background: rgb(255, 103, 37);
}

.dashboard-body .dashboard-header .dash-mobile-nav-toggler::before {
    transform: translate3d(0px, -9px, 0px) scale3d(1, 1, 1);
}

.dashboard-body .dashboard-header .dash-mobile-nav-toggler::after {
    transform: translate3d(0px, 8px, 0px) scale3d(1, 1, 1);
}

.dashboard-body .dash-card-one {
    padding: 35px 30px 15px;
    z-index: 1;
}

.dashboard-body .dash-card-one::before {
    content: "";
    position: absolute;
    height: 95px;
    width: 1px;
    transform: rotate(20deg);
    top: 25%;
    left: -12px;
    background: rgba(0, 0, 0, 0.13);
}

.dashboard-body .dash-card-one.skew-none::before {
    display: none;
}

.dashboard-body .dash-card-one .icon {
    width: 65px;
    height: 65px;
    background: rgb(0, 0, 0);
}

.dashboard-body .dash-card-one .value {
    font-size: 42px;
    letter-spacing: -0.42px;
    color: rgb(0, 0, 0);
}

.dashboard-body .dash-card-one span {
    font-size: 17px;
    letter-spacing: -0.17px;
    color: rgba(0, 0, 0, 0.5);
}

.dashboard-body .user-activity-chart .job-list {
    padding: 25px 20px;
    max-width: 700px;
    margin: 0px auto;
}

.dashboard-body .user-activity-chart .short-filter .nice-select {
    min-width: auto;
    width: 126px;
    height: 35px;
    line-height: 33px;
    border: 1px solid rgb(63, 99, 77);
    border-radius: 30px;
    font-size: 15px;
}

.dashboard-body .user-activity-chart .short-filter .nice-select::after {
    right: 12px;
}

.dashboard-body .user-activity-chart .short-filter .nice-select .option {
    line-height: 32px;
    font-size: 0.9em;
}

.dashboard-body .user-activity-chart .short-filter .nice-select .current {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 80%;
}

.dashboard-body .recent-job-tab .wrapper {
    padding: 0px 25px 8px 30px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list {
    position: relative;
    padding-right: 25px;
    margin: 40px 0px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list:first-child {
    margin-top: 30px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .logo {
    width: 40px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title {
    width: calc(100% - 40px);
    padding-left: 22px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title h6 a {
    font-size: 16px;
    color: rgb(255, 103, 37);
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.2s ease-in-out;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title h6 a:hover {
    text-decoration: underline;
    color: rgb(250, 241, 236);
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title .meta {
    font-size: 14px;
    color: rgba(36, 64, 52, 0.5);
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action {
    position: absolute;
    top: 0px;
    right: 0px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .dropdown-menu {
    min-width: 120px;
    border: none;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 30px 60px;
    padding: 10px 0px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .dropdown-menu .dropdown-item {
    font-weight: 500;
    font-size: 13px;
    padding: 5px 15px;
    margin: 4px 0px;
    color: rgba(0, 0, 0, 0.55);
    background: rgb(255, 255, 255);
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .dropdown-menu li:last-child .dropdown-item {
    color: rgb(255, 91, 91);
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn {
    padding: 8px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span {
    display: block;
    position: relative;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(43, 43, 43, 0.35);
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span::before, .dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span::after {
    content: "";
    position: absolute;
    top: 0px;
    left: -7px;
    margin: 0px;
    padding: 0px;
    width: 4px;
    height: 4px;
    border: none;
    border-radius: 50%;
    background: rgba(43, 43, 43, 0.35);
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span::after {
    left: auto;
    right: -7px;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn::after {
    display: none;
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn:hover span {
    background: rgb(255, 248, 244);
}

.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn:hover span::before, .dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn:hover span::after {
    background: rgb(255, 248, 244);
}

.dashboard-body .user-avatar-setting .user-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
}

.dashboard-body .user-avatar-setting .upload-btn {
    font-size: 15px;
    letter-spacing: -0.15px;
    font-weight: 500;
    width: 175px;
    line-height: 40px;
    height: 42px;
    text-align: center;
    border-radius: 7px;
    color: rgb(255, 103, 37);
    border: 1px solid rgb(255, 103, 37);
    cursor: pointer;
}

.dashboard-body .user-avatar-setting .upload-btn:hover {
    background: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.dashboard-body .user-avatar-setting .upload-btn input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.dashboard-body .user-avatar-setting .delete-btn {
    font-size: 15px;
    letter-spacing: -0.15px;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.dashboard-body .user-avatar-setting .delete-btn:hover {
    color: rgb(255, 91, 91);
}

.dashboard-body .dash-input-wrapper label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

.dashboard-body .dash-input-wrapper .alert-text {
    font-size: 14px;
    letter-spacing: -0.14px;
    color: rgba(0, 0, 0, 0.5);
}

.dashboard-body .dash-input-wrapper input {
    width: 100%;
    height: 55px;
    letter-spacing: -0.16px;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 8px;
    padding: 0px 20px;
    font-size: 16px;
}

.dashboard-body .dash-input-wrapper textarea {
    border: 1px solid rgb(229, 229, 229);
    border-radius: 8px;
    padding: 15px 20px;
    max-width: 100%;
    width: 100%;
    resize: none;
    font-size: 16px;
}

.dashboard-body .dash-input-wrapper textarea.size-lg {
    height: 230px;
    max-height: 200px;
}

.dashboard-body .dash-input-wrapper .nice-select {
    height: 55px;
    line-height: 55px;
    letter-spacing: -0.16px;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 7px;
    padding: 0px 25px 0px 20px;
    font-size: 16px;
}

.dashboard-body .dash-input-wrapper .nice-select .option {
    line-height: 38px;
}

.dashboard-body .dash-input-wrapper .map-frame {
    height: 290px;
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-body .dash-input-wrapper .location-pin {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 60px;
    opacity: 0.18;
}

.dashboard-body .dash-input-wrapper .location-pin:hover {
    opacity: 1;
}

.dashboard-body .dash-input-wrapper .attached-file {
    height: 60px;
    width: 100%;
    border-radius: 10px;
    background: rgb(237, 242, 247);
    padding: 0px 20px;
}

.dashboard-body .dash-input-wrapper .attached-file span {
    font-size: 14px;
}

.dashboard-body .dash-input-wrapper .attached-file .remove-btn {
    font-size: 22px;
    font-weight: 700;
    color: rgb(0, 0, 0);
}

.dashboard-body .dash-input-wrapper .attached-file .remove-btn:hover {
    color: rgb(255, 91, 91);
}

.dashboard-body .dash-input-wrapper .skills-wrapper {
    padding: 15px 20px 10px;
    background: rgb(247, 247, 247);
    border-radius: 15px;
}

.dashboard-body .dash-input-wrapper .skills-wrapper ul {
    margin: 0px -5px;
}

.dashboard-body .dash-input-wrapper .skills-wrapper ul li {
    padding: 0px 5px 15px;
}

.dashboard-body .dash-input-wrapper .skills-wrapper ul li.is_tag button {
    font-size: 15px;
    color: rgb(250, 241, 236);
    line-height: 42px;
    padding: 0px 40px 0px 22px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.035) 0px 15px 30px;
    border-radius: 30px;
    position: relative;
}

.dashboard-body .dash-input-wrapper .skills-wrapper ul li.is_tag button i {
    position: absolute;
    font-size: 20px;
    right: 10px;
    top: 0px;
}

.dashboard-body .dash-input-wrapper .skills-wrapper ul li.is_tag button i:hover {
    color: rgb(255, 91, 91);
}

.dashboard-body .dash-input-wrapper .skills-wrapper ul li.more_tag button {
    font-size: 21px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgb(255, 63, 37);
}

.dashboard-body .dash-input-wrapper .info-text {
    font-size: 14px;
}

.dashboard-body .dash-input-wrapper .info-text p {
    color: rgba(0, 0, 0, 0.5);
}

.dashboard-body .dash-input-wrapper .info-text p a {
    color: rgb(255, 103, 37);
}

.dashboard-body .dash-input-wrapper .info-text p a:hover {
    text-decoration: underline;
}

.dashboard-body .dash-input-wrapper .info-text .chng-pass {
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.dashboard-body .remove-portfolio-item {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 22px;
    color: rgb(0, 0, 0);
}

.dashboard-body .remove-portfolio-item:hover {
    background: rgb(255, 255, 255);
}

.dashboard-body .short-filter .nice-select {
    min-width: 125px;
    height: 35px;
    line-height: 33px;
    font-size: 15px;
    padding: 0px 15px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 30px;
}

.dashboard-body .short-filter .nice-select::after {
    right: 14px;
}

.dashboard-body .short-filter .nice-select .list {
    padding: 0px;
}

.dashboard-body .short-filter .nice-select .option {
    font-size: 1em;
}

.dashboard-body .property-list-table {
    margin: 0px;
}

.dashboard-body .property-list-table th {
    border: 0px;
    padding: 13px 15px;
    font-size: 13px;
    font-weight: normal;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
    letter-spacing: 1px;
}

.dashboard-body .property-list-table th:first-child {
    border-radius: 7px 0px 0px 7px;
}

.dashboard-body .property-list-table th:last-child {
    border-radius: 0px 7px 7px 0px;
    text-align: right;
}

.dashboard-body .property-list-table td {
    font-size: 16px;
    vertical-align: middle;
    box-shadow: none;
    padding: 34px 15px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dashboard-body .property-list-table td:nth-child(1) {
    padding-left: 0px;
}

.dashboard-body .property-list-table td:hover .property-name {
    color: rgb(255, 103, 37);
}

.dashboard-body .property-list-table td .p-img {
    width: 105px;
    border-radius: 15px;
}

.dashboard-body .property-list-table td .address {
    font-size: 15px;
    margin: 10px 0px;
    color: rgba(0, 0, 0, 0.5);
}

.dashboard-body .property-list-table td .price {
    font-size: 18px;
}

.dashboard-body .property-list-table td .price sub {
    font-size: 0.9em;
    font-weight: normal;
    bottom: 0px;
}

.dashboard-body .property-list-table td .property-status {
    display: inline-block;
    line-height: 35px;
    border-radius: 40px;
    font-size: 15px;
    padding: 0px 25px;
    color: rgb(41, 165, 76);
    background: rgb(208, 243, 218);
}

.dashboard-body .property-list-table td .property-status.pending {
    background: rgb(254, 233, 233);
    color: rgb(208, 103, 103);
}

.dashboard-body .property-list-table td .property-status.processing {
    background: rgb(249, 238, 200);
    color: rgb(181, 163, 103);
}

.dashboard-body .property-list-table tbody tr:last-child td {
    border: none;
}

.dashboard-body .saved-search-table {
    margin: 0px;
}

.dashboard-body .saved-search-table th {
    border: 0px;
    padding: 13px 25px;
    font-size: 13px;
    font-weight: normal;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
    letter-spacing: 1px;
}

.dashboard-body .saved-search-table th:first-child {
    border-radius: 7px 0px 0px 7px;
}

.dashboard-body .saved-search-table th:last-child {
    border-radius: 0px 7px 7px 0px;
    text-align: right;
}

.dashboard-body .saved-search-table td {
    font-size: 16px;
    vertical-align: middle;
    box-shadow: none;
    padding: 30px 25px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dashboard-body .saved-search-table td .property-name {
    font-size: 18px;
    letter-spacing: -0.18px;
}

.dashboard-body .saved-search-table td .property-name:hover {
    color: rgb(255, 103, 37);
}

.dashboard-body .saved-search-table td .btns-group a {
    font-size: 19px;
    color: rgb(0, 0, 0);
    margin-left: 22px;
    transition: 0.2s ease-in-out;
}

.dashboard-body .saved-search-table td .btns-group a:hover {
    color: rgb(255, 63, 37);
}

.dashboard-body .saved-search-table td .btns-group a:first-child:hover {
    color: rgb(93, 195, 120);
}

.dashboard-body .saved-search-table tbody tr:last-child td {
    border: none;
}

.dashboard-body .filter-input {
    margin: 0px -10px;
}

.dashboard-body .filter-input li {
    margin: 25px 10px 0px;
    position: relative;
    width: calc(20% - 20px);
}

.dashboard-body .filter-input label {
    display: block;
    position: relative;
    font-size: 16px;
    padding-left: 24px;
    color: rgb(0, 0, 0);
    transition: 0.1s ease-in-out;
}

.dashboard-body .filter-input label::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 3px;
    line-height: 12px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    left: 0px;
    top: 4px;
    font-family: bootstrap-icons;
    transition: 0.1s ease-in-out;
}

.dashboard-body .filter-input input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0px;
    cursor: pointer;
}

.dashboard-body .filter-input input[type="checkbox"]:checked + label::before {
    content: "ï˜³";
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
}

.dashboard-body .action-dots .dropdown-menu {
    min-width: 140px;
    border: 1px solid rgb(241, 241, 241);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 30px 60px;
    padding: 10px 0px;
}

.dashboard-body .action-dots .dropdown-menu .dropdown-item {
    padding: 0px 15px;
    line-height: 34px;
    font-size: 14px;
    color: rgb(106, 106, 106);
    background: rgb(255, 255, 255);
}

.dashboard-body .action-dots .dropdown-menu .dropdown-item img {
    display: inline-block;
    vertical-align: -1px;
    margin-right: 5px;
}

.dashboard-body .action-dots .dropdown-menu .dropdown-item:hover {
    color: rgb(0, 0, 0);
}

.dashboard-body .action-dots .dropdown-menu li:last-child .dropdown-item:hover {
    color: rgb(255, 91, 91);
}

.dashboard-body .action-dots .action-btn {
    padding: 8px;
}

.dashboard-body .action-dots .action-btn span {
    display: block;
    position: relative;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(43, 43, 43, 0.35);
}

.dashboard-body .action-dots .action-btn span::before, .dashboard-body .action-dots .action-btn span::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    width: 4px;
    height: 4px;
    border: none;
    border-radius: 50%;
    background: rgba(43, 43, 43, 0.35);
}

.dashboard-body .action-dots .action-btn span::after {
    top: auto;
    bottom: -7px;
}

.dashboard-body .action-dots .action-btn::after {
    display: none;
}

.dashboard-body .action-dots .action-btn:hover span {
    background: rgb(255, 103, 37);
}

.dashboard-body .action-dots .action-btn:hover span::before, .dashboard-body .action-dots .action-btn:hover span::after {
    background: rgb(255, 103, 37);
}

.dashboard-body .new-message-compose {
    width: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 28px;
    color: rgb(255, 255, 255);
    background: rgb(255, 103, 37);
}

.dashboard-body .message-pagination a {
    color: rgb(0, 0, 0);
}

.dashboard-body .message-pagination span {
    color: rgb(0, 0, 0);
    font-size: 14px;
    margin: 0px 8px;
}

.dashboard-body .message-wrapper .message-sidebar {
    border-right: 1px solid rgb(227, 225, 225);
    max-height: 1000px;
    overflow-y: auto;
}

.dashboard-body .message-wrapper .message-sidebar .page-title {
    font-size: 18px;
    color: rgb(0, 0, 0);
}

.dashboard-body .message-wrapper .message-sidebar .action-btn span::before, .dashboard-body .message-wrapper .message-sidebar .action-btn span::after {
    top: 0px;
    left: -7px;
}

.dashboard-body .message-wrapper .message-sidebar .action-btn span::after {
    left: auto;
    right: -7px;
}

.dashboard-body .message-wrapper .message-sidebar .search-form {
    height: 50px;
    border-radius: 30px;
    position: relative;
}

.dashboard-body .message-wrapper .message-sidebar .search-form input {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgb(227, 227, 227);
    padding: 0px 50px 0px 15px;
    font-size: 15px;
}

.dashboard-body .message-wrapper .message-sidebar .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    border-radius: 30px 0px 0px 30px;
}

.dashboard-body .message-wrapper .message-sidebar .message_filter button {
    font-size: 15px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    line-height: 28px;
    border-radius: 30px;
    padding: 0px 12px;
    margin: 0px 2px;
    position: relative;
}

.dashboard-body .message-wrapper .message-sidebar .message_filter button span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 10px;
}

.dashboard-body .message-wrapper .message-sidebar .message_filter button.active {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.dashboard-body .message-wrapper .message-sidebar .message_filter button.active span {
    opacity: 0;
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item {
    border-top: 1px solid rgb(243, 243, 243);
    padding-top: 28px;
    padding-bottom: 28px;
    cursor: pointer;
    position: relative;
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item.selected {
    background: rgb(249, 243, 239);
    border-left: 4px solid rgb(0, 0, 0);
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item.selected .email-short-preview .file {
    background: rgb(255, 255, 255);
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item.read .email-short-preview::before {
    background: rgb(255, 69, 69);
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item.primary .email-short-preview::before {
    background: rgb(82, 193, 255);
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview {
    padding-left: 24px;
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 7px;
    background: rgb(59, 218, 132);
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .sender-name {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .date {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .mail-sub {
    font-weight: 500;
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin: 7px 0px 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .mail-text {
    font-size: 15px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .file {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: -0.3px;
    color: rgba(0, 0, 0, 0.5);
    background: rgb(240, 245, 243);
}

.dashboard-body .message-wrapper .open-email-container .divider {
    border-bottom: 1px solid rgb(238, 238, 238);
}

.dashboard-body .message-wrapper .open-email-container .email-header {
    padding-top: 30px;
    padding-bottom: 30px;
}

.dashboard-body .message-wrapper .open-email-container .email-header .logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.dashboard-body .message-wrapper .open-email-container .email-header .sender-name {
    font-size: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-bottom: -4px;
}

.dashboard-body .message-wrapper .open-email-container .email-header .sender-email {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.4);
}

.dashboard-body .message-wrapper .open-email-container .email-header .time {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
}

.dashboard-body .message-wrapper .open-email-container .email-body {
    padding-top: 35px;
    padding-bottom: 15px;
    font-size: 15px;
}

.dashboard-body .message-wrapper .open-email-container .email-body h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.dashboard-body .message-wrapper .open-email-container .email-body p a {
    color: rgb(0, 0, 0);
}

.dashboard-body .message-wrapper .open-email-container .email-footer {
    padding-top: 20px;
}

.dashboard-body .message-wrapper .open-email-container .email-footer .attachments h6 {
    font-size: 15px;
}

.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .all-download {
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 103, 37);
}

.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file {
    padding: 9px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-right: 15px;
}

.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file:hover {
    background: rgba(250, 241, 236, 0.03);
}

.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file .icon {
    width: 37px;
    height: 37px;
    background: rgb(241, 241, 241);
}

.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file .file-name {
    font-size: 15px;
    letter-spacing: -0.3px;
    color: rgb(0, 0, 0);
}

.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file .file-size {
    font-size: 13px;
    letter-spacing: -0.3px;
    color: rgba(0, 0, 0, 0.4);
}

.dashboard-body .candidate-profile-card {
    overflow: visible;
}

.dashboard-body .membership-plan-wrapper {
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0);
}

.dashboard-body .membership-plan-wrapper .column {
    padding: 38px 40px;
}

.dashboard-body .membership-plan-wrapper .column.border-left {
    border-left: 1px solid rgb(0, 0, 0);
}

.dashboard-body .membership-plan-wrapper h4 {
    font-size: 20px;
    color: rgb(0, 0, 0);
}

.dashboard-body .membership-plan-wrapper p {
    letter-spacing: -0.17px;
    line-height: 30px;
    margin: 0px;
}

.dashboard-body .membership-plan-wrapper h3 {
    font-size: 58px;
}

.dashboard-body .membership-plan-wrapper h6 {
    font-size: 18px;
}

.dashboard-body .membership-plan-wrapper .text1 {
    font-size: 14px;
    letter-spacing: -0.14px;
    margin: -4px 0px 22px;
}

.dashboard-body .membership-plan-wrapper .text1 span {
    color: rgb(0, 0, 0);
}

.dashboard-body .membership-plan-wrapper .cancel-plan {
    font-size: 15px;
    font-weight: 500;
    color: rgb(255, 103, 37);
    text-decoration: underline;
}

.dashboard-body .membership-plan-wrapper .cancel-plan:hover {
    color: rgb(255, 39, 48);
}

.compose-new-email-container {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: rgb(255, 255, 255);
}

.compose-new-email-container .new-email-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.compose-new-email-container .new-email-header .btn-group {
    position: absolute;
    top: 6px;
    right: 10px;
    z-index: 1;
}

.compose-new-email-container .new-email-header .btn-group a {
    font-size: 15px;
    padding: 2px;
    color: rgb(0, 0, 0);
    margin-left: 8px;
}

.compose-new-email-container .new-email-header .btn-group a[aria-expanded="true"] {
    text-decoration: underline;
}

.compose-new-email-container .new-email-header .input-group {
    padding: 10px 0px;
    font-size: 14px;
    color: rgb(0, 0, 0);
}

.compose-new-email-container .new-email-header .input-group input {
    border: none;
    padding: 0px 15px 0px 0px;
}

.compose-new-email-container .compose-body textarea {
    width: 100%;
    max-width: 100%;
    height: 125px;
    max-height: 125px;
    border: none;
    font-size: 15px;
    padding: 15px 22px;
}

.compose-new-email-container .compose-email-footer {
    padding: 15px 22px;
}

.compose-new-email-container .compose-email-footer .insert-file {
    position: relative;
    cursor: pointer;
}

.compose-new-email-container .compose-email-footer .insert-file input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.compose-new-email-container .reply-btn {
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    min-width: 90px;
    text-align: center;
    padding: 0px 15px;
    line-height: 35px;
    border-radius: 10px;
    background: rgb(0, 0, 0);
}

.compose-new-email-container .reply-btn:hover {
    background: rgb(255, 103, 37);
}

.compose-mail-offcanvas {
    right: 55px;
    bottom: 0px;
    max-width: 700px;
    background: rgb(255, 255, 255);
    padding: 50px 15px 15px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: none;
}

.compose-mail-offcanvas.show {
    display: block;
}

.compose-mail-offcanvas .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: none;
}

.remove-account-popup {
    background: rgb(255, 255, 255);
    margin: 0px auto;
    max-width: 630px;
    padding: 50px 20px;
    border-radius: 10px !important;
}

.remove-account-popup h2 {
    font-size: 36px;
    color: rgb(0, 0, 0);
    margin: 20px 0px;
}

.remove-account-popup .confirm-btn {
    width: 80px;
    line-height: 40px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background: rgb(255, 103, 37);
}

.remove-account-popup .confirm-btn:hover {
    background: rgb(255, 91, 91);
}

.remove-account-popup .btn-close {
    background: none;
    border-radius: 0px;
    width: auto;
    height: auto;
    padding: 0px;
    font-size: 16px;
    color: rgb(0, 0, 0);
    opacity: 1;
    box-shadow: none;
}

@keyframes ripple {
    0% {
        box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 0px 0.1rem;
    }

    100% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 3rem;
    }
}

@keyframes rippleTwo {
    0% {
        box-shadow: rgba(255, 103, 37, 0.15) 0px 0px 0px 0.1rem;
    }

    100% {
        box-shadow: rgba(255, 103, 37, 0.15) 0px 0px 0px 0.8rem;
    }
}

@keyframes marquee {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    100% {
        transform: translate3d(-50%, 0px, 0px);
    }
}

@keyframes skewwrap {
    0% {
        transform: skewX(5deg);
    }

    50% {
        transform: skewX(0deg);
    }

    100% {
        transform: skewX(-5deg);
    }
}

@keyframes jump {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    40% {
        transform: translate3d(0px, 50%, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpTwo {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    40% {
        transform: translate3d(0px, 20px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpThree {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    40% {
        transform: translate3d(0px, -20px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpFour {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    50% {
        transform: translate3d(0px, -10px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpFive {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    50% {
        transform: translate3d(0px, 10px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes prXOne {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes prXTwo {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes rotated {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotatedTwo {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotatedHalf {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes rotatedHalfTwo {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes scale-right {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(20%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

@keyframes hvr-ripple-out {
    0% {
        inset: -5px;
    }

    50% {
        inset: -15px;
        opacity: 0.8;
    }

    100% {
        inset: -5px;
        opacity: 1;
    }
}

@keyframes hvr-ripple-out-two {
    0% {
        inset: 0px;
    }

    100% {
        inset: -30px;
        opacity: 0;
    }
}

@keyframes scale-up-one {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scale-up-two {
    0% {
        transform: scale(0.5);
    }

    40% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(0.5);
    }
}

@keyframes scale-up-three {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.hinge {
    animation-duration: 2s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0px);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    animation-name: bounce;
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation-name: pulse;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0px);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

.shake {
    animation-name: shake;
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.swing {
    transform-origin: center top;
    animation-name: swing;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.tada {
    animation-name: tada;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        transform: translateX(0%);
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0px);
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0px);
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(-30px);
    }

    80% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bounceInUp {
    animation-name: bounceInUp;
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.bounceOut {
    animation-name: bounceOut;
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0px);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0px);
    }

    20% {
        opacity: 1;
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0px);
    }

    20% {
        opacity: 1;
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0px);
    }

    20% {
        opacity: 1;
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    animation-name: bounceOutUp;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes flip {
    0% {
        transform: perspective(400px) translateZ(0px) rotateY(0deg) scale(1);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) translateZ(0px) rotateY(360deg) scale(0.95);
        animation-timing-function: ease-in;
    }

    100% {
        transform: perspective(400px) translateZ(0px) rotateY(360deg) scale(1);
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip;
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY;
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        transform-origin: center center;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(150px);
    }

    100% {
        transform: translateY(0px);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    100% {
        transform: translateY(0px);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }

    100% {
        transform: translateX(0px);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }

    100% {
        transform: translateX(0px);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    animation-name: slideOutUp;
}

@keyframes hinge {
    0% {
        transform: rotate(0deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        transform: rotate(80deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }

    40% {
        transform: rotate(60deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }

    80% {
        transform: rotate(60deg) translateY(0px);
        opacity: 1;
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }

    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    animation-name: hinge;
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    animation-name: rollIn;
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    animation-name: rollOut;
}

@keyframes jump {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    40% {
        transform: translate3d(0px, 50%, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpTwo {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    40% {
        transform: translate3d(0px, 20px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpThree {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    40% {
        transform: translate3d(0px, -20px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpFour {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    50% {
        transform: translate3d(0px, -10px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes jumpFive {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    50% {
        transform: translate3d(0px, 10px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes prXOne {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes prXTwo {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes rotated {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotatedTwo {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotatedHalf {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes rotatedHalfTwo {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes scale-right {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(20%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

@keyframes hvr-ripple-out {
    0% {
        inset: -5px;
    }

    50% {
        inset: -15px;
        opacity: 0.8;
    }

    100% {
        inset: -5px;
        opacity: 1;
    }
}

@keyframes hvr-ripple-out-two {
    0% {
        inset: 0px;
    }

    100% {
        inset: -30px;
        opacity: 0;
    }
}

@keyframes scale-up-one {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scale-up-two {
    0% {
        transform: scale(0.5);
    }

    40% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(0.5);
    }
}

@keyframes scale-up-three {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

.nice-select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 0.9em;
    height: 35px;
    line-height: 35px;
    outline: none;
    padding-left: 10px;
    padding-right: 18px;
    text-transform: capitalize;
    position: relative;
    transition: 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
    text-align: left !important;
}

.nice-select::after {
    border-bottom: 1px solid rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0);
    content: "";
    display: block;
    height: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: 0.15s ease-in-out;
    width: 7px;
}

.nice-select.open::after {
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0px);
}

.nice-select.disabled {
    border-color: rgb(237, 237, 237);
    color: rgb(153, 153, 153);
    pointer-events: none;
}

.nice-select.disabled::after {
    border-color: rgb(204, 204, 204);
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0px !important;
    right: 0px !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0px;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small::after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: rgb(255, 255, 255);
    border-radius: 0px 0px 5px 5px;
    box-shadow: rgba(35, 35, 35, 0.1) 0px 13px 35px -12px;
    box-sizing: border-box;
    opacity: 0;
    overflow-y: auto;
    max-height: 250px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5px 0px 15px;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    transform-origin: 50% 0px;
    transform: scale(0.75) translateY(-21px);
    transition: 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .option {
    font-size: 0.95em;
    cursor: pointer;
    font-weight: 400;
    margin-top: 5px;
    list-style: none;
    outline: none;
    padding: 0px 10px;
    text-align: left;
    transition: 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    color: rgb(255, 103, 37);
    background: rgba(255, 103, 37, 0.03);
}

.nice-select .option.disabled {
    background-color: rgba(0, 0, 0, 0);
    color: rgb(153, 153, 153);
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

:root {
    --f-spinner-width: 36px;
    --f-spinner-height: 36px;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75;
}

.f-spinner {
    margin: auto;
    padding: 0px;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height);
}

.f-spinner svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: 2s linear 0s infinite normal none running f-spinner-rotate;
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none;
}

.f-spinner svg :first-child {
    stroke: var(--f-spinner-color-1);
}

.f-spinner svg :last-child {
    stroke: var(--f-spinner-color-2);
    animation: 2s ease-in-out 0s infinite normal none running f-spinner-dash;
}

@keyframes f-spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.f-throwOutUp {
    animation: 0.175s ease-out 0s 1 normal both running f-throwOutUp;
}

.f-throwOutDown {
    animation: 0.175s ease-out 0s 1 normal both running f-throwOutDown;
}

@keyframes f-throwOutUp {
    100% {
        transform: translate3d(0px, -150px, 0px);
        opacity: 0;
    }
}

@keyframes f-throwOutDown {
    100% {
        transform: translate3d(0px, 150px, 0px);
        opacity: 0;
    }
}

.f-zoomInUp {
    animation: var(--f-transition-duration, 0.2s) ease-out .1s both f-zoomInUp;
}

.f-zoomOutDown {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
    0% {
        transform: scale(0.975) translate3d(0px, 16px, 0px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translate3d(0px, 0px, 0px);
        opacity: 1;
    }
}

@keyframes f-zoomOutDown {
    100% {
        transform: scale(0.975) translate3d(0px, 16px, 0px);
        opacity: 0;
    }
}

.f-fadeIn {
    animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
    z-index: 2;
}

.f-fadeOut {
    animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
    z-index: 1;
}

@keyframes f-fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-fadeOut {
    100% {
        opacity: 0;
    }
}

.f-fadeSlowIn {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
    z-index: 2;
}

.f-fadeSlowOut {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
    z-index: 1;
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-fadeSlowOut {
    100% {
        opacity: 0;
    }
}

.f-fadeFastIn {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
    z-index: 2;
}

.f-fadeFastOut {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;
    z-index: 2;
}

@keyframes f-fadeFastIn {
    0% {
        opacity: 0.75;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-fadeFastOut {
    100% {
        opacity: 0;
    }
}

.f-crossfadeIn {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
    z-index: 2;
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;
    z-index: 1;
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-crossfadeOut {
    100% {
        opacity: 0;
    }
}

.f-slideIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes f-slideInNext {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes f-slideOutNext {
    100% {
        transform: translateX(-100%);
    }
}

@keyframes f-slideOutPrev {
    100% {
        transform: translateX(100%);
    }
}

.f-classicIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
    z-index: 2;
}

.f-classicIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
    z-index: 2;
}

.f-classicOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
    z-index: 1;
}

.f-classicOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
    z-index: 1;
}

@keyframes f-classicInNext {
    0% {
        transform: translateX(-75px);
        opacity: 0;
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
        opacity: 1;
    }
}

@keyframes f-classicInPrev {
    0% {
        transform: translateX(75px);
        opacity: 0;
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
        opacity: 1;
    }
}

@keyframes f-classicOutNext {
    100% {
        transform: translateX(-75px);
        opacity: 0;
    }
}

@keyframes f-classicOutPrev {
    100% {
        transform: translateX(75px);
        opacity: 0;
    }
}

:root {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0px;
    padding: 0px;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition);
}

@media (hover: hover) {
    .f-button:hover:not([disabled]) {
        color: var(--f-button-hover-color);
        background-color: var(--f-button-hover-bg);
    }
}

.f-button:active:not([disabled]) {
    background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
    outline: none;
}

.f-button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
    width: var(--f-button-svg-width);
    height: var(--f-button-svg-height);
    fill: var(--f-button-svg-fill);
    stroke: currentcolor;
    stroke-width: var(--f-button-svg-stroke-width);
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.15s;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none;
}

.f-button[disabled] {
    cursor: default;
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
    position: absolute;
    z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
    top: 50%;
    transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
    transform: rotate(90deg);
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto;
}

html.with-fancybox body {
    touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
    overscroll-behavior-y: none;
    overflow: hidden !important;
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, 0.98);
    --fancybox-slide-gap: 10px;
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-color-1: rgba(255, 255, 255, 0.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    inset: 0px;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    color: rgb(248, 248, 248);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: visible;
    z-index: var(--fancybox-zIndex, 1050);
    outline: none;
    transform-origin: left top;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container ::before, .fancybox__container ::after {
    box-sizing: inherit;
}

.fancybox__container::backdrop {
    background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
    position: fixed;
    inset: 0px;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity;
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1 1 0%;
    min-height: 0px;
    z-index: 10;
    overflow: clip visible;
}

.fancybox__viewport {
    width: 100%;
    height: 100%;
}

.fancybox__viewport.is-draggable {
    cursor: grab;
}

.fancybox__viewport.is-dragging {
    cursor: grabbing;
}

.fancybox__track {
    display: flex;
    margin: 0px auto;
    height: 100%;
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: 4px;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translate3d(0px, 0px, 0px);
    backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
    overflow: hidden;
}

.fancybox__slide.has-image {
    overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
    overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
    content: "";
    flex: 0 0 0px;
    margin: auto;
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0px;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0px;
    z-index: 20;
}

.is-loading .fancybox__content {
    opacity: 0;
}

.is-draggable .fancybox__content {
    cursor: grab;
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out;
}

.is-dragging .fancybox__content {
    cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
    cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
    padding: 0px;
    background: center center / contain no-repeat rgba(0, 0, 0, 0);
    min-height: 1px;
    transition: none;
    transform: translate3d(0px, 0px, 0px);
    backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
    visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
    filter: blur(0px);
    will-change: transform, width, height;
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0px;
    object-fit: contain;
    user-select: none;
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0px;
    padding: 14px 0px 4px;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
    opacity: 0;
    visibility: hidden;
}

.is-compact .fancybox__caption {
    padding-bottom: 0px;
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0px;
    right: 8px;
    z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 4px;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
    position: absolute;
    top: -38px;
    right: 0px;
    opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
    visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
    visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
    opacity: 1;
}

.fancybox__footer {
    padding: 0px;
    margin: 0px;
    position: relative;
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 24px;
    opacity: var(--fancybox-opacity, 1);
    transition: 0.25s;
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 20;
    background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-active-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.6);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-svg-filter: none;
    top: 5px;
    right: 5px;
}

.fancybox__nav {
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, 0.3);
    --f-button-active-bg: rgba(24, 24, 27, 0.5);
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 26px;
    --f-button-svg-height: 26px;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
    --f-button-svg-disabled-opacity: 0.65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button::before {
    position: absolute;
    content: "";
    inset: -30px -20px;
    z-index: 1;
}

.is-idle .fancybox__nav {
    animation: 0.15s ease-out 0s 1 normal both running f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: 0.15s ease-out 0s 1 normal both running f-fadeOut;
}

.fancybox__slide > .f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
    z-index: 30;
    cursor: pointer;
}

.fancybox-protected {
    position: absolute;
    inset: 0px;
    z-index: 40;
    user-select: none;
}

.fancybox-ghost {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    min-height: 0px;
    object-fit: contain;
    z-index: 40;
    user-select: none;
    pointer-events: none;
}

.fancybox-focus-guard {
    outline: none;
    opacity: 0;
    position: fixed;
    pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0;
}

.fancybox__container.is-animated[aria-hidden="false"] > :not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden="false"] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden="false"] .fancybox__slide > :not(.fancybox__content) {
    animation: 0.25s ease 0.1s 1 normal backwards running f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop {
    animation: 0.35s ease 0s 1 normal backwards running f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden="true"] > :not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden="true"] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden="true"] .fancybox__slide > :not(.fancybox__content) {
    animation: 0.15s ease 0s 1 normal forwards running f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden="true"] .fancybox__backdrop {
    animation: 0.35s ease 0s 1 normal forwards running f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
    width: 100%;
    height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content, .fancybox__container:not(.is-compact) .has-map .fancybox__content, .fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
    width: calc(100% - 120px);
    height: 90%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
    padding: 0px;
    background: rgba(24, 24, 27, 0.9);
    color: rgb(255, 255, 255);
}

.has-map .fancybox__content {
    background: rgb(229, 227, 223);
}

.fancybox__html5video, .fancybox__iframe {
    border: 0px;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
    border: 0px !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0px !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.f-carousel__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 2px;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 20px;
    --f-thumb-clip-width: 46px;
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0px;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    perspective: 1000px;
    transform: translateZ(0px);
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-image: linear-gradient(rgb(235, 239, 242), rgb(226, 232, 240));
    z-index: -1;
}

.f-thumbs .f-spinner svg {
    display: none;
}

.f-thumbs.is-vertical {
    height: 100%;
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.f-thumbs__track {
    display: flex;
    will-change: transform;
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    width: var(--f-thumb-width);
    min-width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer;
}

.f-thumbs__slide.is-loading img {
    opacity: 0;
}

.is-classic .f-thumbs__viewport {
    height: 100%;
}

.is-modern .f-thumbs__track {
    width: max-content;
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: calc(var(--left, 0)*1px);
    width: calc(100% - var(--width, 0)*1px);
    cursor: pointer;
}

.is-modern .f-thumbs__slide {
    --clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );
    transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
    transition: none;
    pointer-events: none;
}

.is-modern .f-thumbs__slide > * {
    clip-path: var(--clip-path);
}

.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within {
    filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern.in-touch .f-thumbs__slide {
    filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
    transition: 0.33s;
}

.is-modern.is-resting .f-thumbs__slide > * {
    transition: 0.33s;
}

.f-thumbs__slide__button {
    appearance: none;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    border: 0px;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity 0.2s;
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none;
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    inset: 0px;
    height: auto;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: 0.2s ease-out 0s 1 normal none running f-fadeIn;
    z-index: 10;
}

.f-thumbs__slide__img {
    position: absolute;
    overflow: hidden;
    inset: 0px;
    width: 100%;
    height: 100%;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
    margin: 0px auto;
    padding: 8px 0px 12px;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    margin: auto 0px;
    padding: 0px 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-border-radius: 2px;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 20px;
    --f-thumb-clip-width: 46px;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 64px;
    --f-thumb-clip-width: 32px;
    --f-thumb-height: 48px;
    --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
    max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
    transition: none !important;
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, 0.65);
    --f-button-hover-bg: rgba(70, 70, 73, 0.65);
    --f-button-active-bg: rgba(90, 90, 93, 0.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
    pointer-events: none;
    z-index: 20;
}

.fancybox__toolbar :focus-visible {
    z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: 0.15s ease-out 0s 1 normal both running f-fadeOut;
}

.fancybox__toolbar__column {
    display: flex;
    flex-flow: wrap;
    align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
    flex-grow: 1;
    flex-basis: 0px;
}

.fancybox__toolbar__column.is-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.fancybox__infobar {
    padding: 0px 5px;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none;
}

.fancybox__infobar span {
    padding: 0px 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
    position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex;
}

.f-progress {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 3px;
    transform: scaleX(0);
    transform-origin: 0px center;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0px -15px;
}

.slick-dots {
    list-style-type: none;
    display: flex;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    text-indent: -50000px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0px 5px;
    background: rgb(228, 228, 228);
    transition: 0.3s ease-in-out;
}

.slick-dots .slick-active button {
    background: rgb(255, 103, 37);
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
}

.slick-list:focus {
    outline: none !important;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    transform: translate3d(0px, 0px, 0px);
}

.slick-track {
    position: relative;
    top: 0px;
    left: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track::before, .slick-track::after {
    display: table;
    content: "";
}

.slick-track::after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    margin: 0px 15px;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0);
}

.slick-arrow.slick-hidden {
    display: none;
}

.paika-video {
    position: absolute;
    background: rgb(255, 11, 25);
    padding: 10px 24px;
}

@media screen and (min-device-width: 281px) and (max-device-width: 768px) {
    .theme-main-menu.white-vr .nav-item .nav-link {
        color: rgb(51, 51, 51) !important;
    }
    .pt-60 {
    padding-top: 31px;
     }
}

.paika-justify p {
    text-align: justify;
}

.paika-justify li::before {
    /* content: "ï€Œ"; */
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0px;
    top: 4px;
    font-size: 0.85em;
    border: 2px solid;
    border-radius: 32%;
}

.paika-ul li {
    margin-bottom: 6px;
    line-height: 1.5;
    padding: 0;
    list-style: none;
    background-image: url(../check-mark.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
}



.paika-justify li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 11px;
    /* font-size: 19px; */
}
.paika-icon{
    width: 68%;
}

.paika-icon2{
    width: 60%;
}
.paika-font-icon{
    font-size:10px
}
.paika-font-16{
    font-size: 16px;
}


.suggestion-item {
    padding: 11px;
}
.service-post{
    text-align: justify;
}
.agency-overview{
    text-align: justify;
}
.paika-redius{
 
        border-radius: 40px;
}

.blinking {
    animation: blinker 1.5s linear infinite;
    color: #ff3f25;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
