@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #7c7c7c;
    --themeColor: #b66e0a;
    --themeColor2: #191919;
    --headingColor: #161a1d;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--textColor);
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--headingColor);
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

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

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

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

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

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


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

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

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

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

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

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 70px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'TrajanPro-Regular';
}

h2 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'TrajanPro-Regular';
}

h3 {
    font-size: 30px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'TrajanPro-Regular';
}

h4 {
    font-size: 25px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'TrajanPro-Regular';
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'TrajanPro-Regular';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 850px;
}

.theme-btn-1 {
    display: block;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    padding: 15px 40px;
    color: var(--white);
    border-radius: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    border: 1px solid var(--themeColor);
}

.theme-btn-1:hover {
    transition: ease-in-out;
    color: var(--themeColor);
    transition-duration: 0.5s;
    background-color: var(--white);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

/* Loader styles */

.preloader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    --size: 70px;
    width: var(--size);
    height: var(--size);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.loader span {
    width: 100%;
    height: 100%;
    background-color: var(--themeColor);
    animation: keyframes-blink 0.6s alternate infinite linear;
}

.loader span:nth-child(1) {
    animation-delay: 0ms;
}

.loader span:nth-child(2) {
    animation-delay: 200ms;
}

.loader span:nth-child(3) {
    animation-delay: 300ms;
}

.loader span:nth-child(4) {
    animation-delay: 400ms;
}

.loader span:nth-child(5) {
    animation-delay: 500ms;
}

.loader span:nth-child(6) {
    animation-delay: 600ms;
}

@keyframes keyframes-blink {
    0% {
        opacity: 0.3;
        transform: scale(0.5) rotate(5deg);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}



/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--headingColor);
}

.menuSec ul li a::before {
    left: 0;
    width: 0px;
    height: 2px;
    content: '';
    bottom: 10px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--themeColor);
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}


.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #0000007a;
    left: 0;
    width: 230px;
    backdrop-filter: blur(3px);
    text-align: left;
    top: 38px
}

.menuSec li>ul>li>a {
    border: none;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    line-height: 20px;
    color: var(--white) !important;
    padding: 13px 20px !important
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0
}

.menuSec li ul li a:hover {
    color: var(--themeColor) !important;
    background-color: var(--white)
}

.menuSec ul:after,
.menuSec ul:before {
    content: " ";
    display: none
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0;
    width: 270px
}

.menuSection {
    padding: 10px 4%;
}

.menuSection .row {
    align-items: center;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-btn .theme-btn-1 {
    padding: 15px 20px;
}


/*header css start */


/*banner css start */

.main_slider {
    padding: 40px 4% 0px;
}

.banner_text p {
    padding-left: 15px;
}

.banner_text ul li h2 {
    padding-left: 15px;
    border-left: 1px solid #d1d1d1;
}

.banner_text ul {
    columns: 2;
    margin-bottom: 20px;
}

.banner_text ul li img {
    height: 60px;
    width: 130px;
    object-fit: cover;
    border-radius: 50px;
}

.banner_text ul li h2 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
    color: var(--textColor);
}

.search-form-wrapper {
    padding: 15px;
    max-width: 900px;
    margin: 25px 0px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 7px 24px 0px rgba(0, 0, 0, 0.16);
}

/* --- Flex Layout for the Form --- */
.search-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.search-col {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.form-control-custom {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    color: var(--textColor);
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    background-color: #f2f2f2;
    -moz-appearance: none;
    appearance: none;
}

.form-control-custom::placeholder {
    color: var(--textColor);
}

/* --- Custom Icon Overlays --- */
.icon-overlay {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 14px;
}

/* --- Search Button Styling --- */
.btn-search {
    background-color: var(--themeColor);
    color: var(--white);
    border: none;
    border-radius: 10px;
    height: 55px;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s active;
}

.btn-search:hover {
    background-color: #9c620d;
}

.btn-search:active {
    transform: scale(0.98);
}

/* Responsive handling for the button column */
.btn-col {
    display: flex;
    flex: 0 0 150px;
    align-items: center;
    justify-content: flex-end;
}

.banner_img {
    margin-top: 25px;
}

.banner_img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/*banner css end*/

/* about-sec */

.about-sec {
    padding: 100px 0px;
}

.about-img {
    width: 100%;
    height: 550px;
    display: flex;
    min-height: 100%;
    position: relative;
    align-items: flex-end;
    border-radius: 15px;
    justify-content: center;
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-img img {
    height: 90%;
    width: 100%;
    object-fit: contain;
    object-position: bottom;
}

.about-text {
    gap: 15px;
    display: flex;
    min-height: 100%;
    padding: 40px 0px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-text ul li .tel-no {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-text ul li .tel-no i {
    font-size: 50px;
    color: var(--themeColor);
    font-family: FontAwesome;
}

.about-text ul li .tel-no h4 {
    font-weight: 600;
}

.about-text ul li .tel-no h4 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 3px;
    font-family: 'Poppins';
}

/* about-sec */

/* service-sec */

.service-sec {
    padding: 0px 0px 0px;
}

.service-box {
    overflow: hidden;
    border-radius: 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    border: 1px solid #c6c6c6;
    background-color: var(--white);
    box-shadow: 0px 47px 103px 0px rgba(0, 0, 0, 0.06);
}

.service-text {
    padding: 30px;
}

.service-text h4 {
    margin-bottom: 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-text p {
    color: #676767;
    margin-bottom: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-img {
    width: 100%;
    height: 300px;
    display: block;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-box:hover {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-text h4 {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-text p {
    transition: ease-in;
    transition-duration: 0.5s;
    color: var(--white);
}

.service-box:hover .service-text .theme-btn-1 {
    transition: ease-in;
    color: var(--themeColor);
    transition-duration: 0.5s;
    background-color: var(--white);
}

/* service-sec */

/* understand sec */

.understand-sec {
    padding: 100px 0;
}

.understand-cards-container {
    display: flex;
    gap: 10px;
    position: relative;
    align-items: center;
    padding-right: 20px;
    justify-content: center;
    flex-direction: column;
}

.action-card {
    gap: 20px;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    margin-bottom: 25px;
    background: var(--white);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(51, 51, 51, 0.15);
}

.action-card {
    flex: 1;
    transition: all .4s ease;
    transform: scale(1);
}

.action-card .theme-btn-1 {
    height: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.action-card:hover .theme-btn-1 {
    height: 60px;
    padding: 15px 40px;
}

.understand-cards-container:hover .action-card {
    transform: scale(.9);
}

/* scale the active one bigger */
.understand-cards-container .action-card:hover {
    transform: scale(1.04);
    z-index: 2;
}

.action-card.second {
    margin-left: -10px;
    /* Overlap effect from image */
    width: calc(100% + 30px);
}

.card-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: var(--headingColor);
    font-weight: 700;
}

.card-content p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.btn-blue-action {
    background-color: var(--themeColor);
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

/* Text Content (Right Side) */
.understand-text h2 {
    font-size: 52px;
    line-height: 1.1;
    color: var(--headingColor);
    font-weight: 800;
    margin-bottom: 25px;
    max-width: 500px;
}

.understand-text .subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
    display: block;
}

/* Avatar Group */
.avatar-group-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
}

.avatar-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    margin-right: -15px;
    /* Overlap */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-property-link {
    color: var(--themeColor);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}



/* understand sec */

/* featured-sec */

.featured-sec {
    padding: 100px 0px;
    position: relative;
    background-image: url(../images/product-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.featured-sec::before {
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.9;
    position: absolute;
    background-color: var(--themeColor2);
}

.featured-sec .row {
    position: relative;
}

.featured-heading {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.featured-heading>div {
    max-width: 650px;
}

.featured-heading h2 {
    color: var(--white);
}

.featured-heading p {
    opacity: 0.8;
    color: var(--white);
}

.featured-heading .theme-btn-1 {
    border-radius: 50px;
    color: var(--headingColor);
    background-color: var(--white);
}

.featured-box {
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--white);
}

.featured-text {
    padding: 25px;
}

.featured-img {
    width: 100%;
    height: 250px;
    display: block;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text p {
    margin-bottom: 10px;
}

.featured-text h6 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'TrajanPro-Regular';
    justify-content: space-between;
}

.featured-text h6 span {
    font-family: 'Poppins';
    color: var(--textColor);
}

.featured-text ul {
    display: flex;
    margin: 0px -25px;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
}

.featured-text ul li {
    width: 33.33%;
    padding: 15px 25px;
    border-right: 1px solid #d3d3d3;
}

.featured-text ul li h5 {
    font-size: 14px;
    font-family: 'Poppins';
}

.featured-text ul li h5 i {
    color: var(--themeColor);
}

.featured-text ul li:last-child {
    border-right: none;
}

.featured-text a {
    font-weight: 600;
    color: var(--black);
    text-decoration: underline;
}








/* featured-sec */

/* why-choose-sec */

.why-choose-sec {
    padding: 100px 0px;
}

.why-choose-text {
    padding: 20px 0px;
}

.why-choose-text h2 {
    margin-bottom: 5px;
}

.why-choose-text p {
    margin-bottom: 20px;
}

.why-choose-text ul li h5 {
    font-size: 25px;
    font-weight: 500;
}

.why-choose-text ul li i {
    font-size: 50px;
    color: var(--themeColor);
}

.why-choose-text ul li {
    gap: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: first baseline;
}

.why-choose-text a {
    font-size: var(--black);
    text-decoration: underline;
}

.why-choose-img {
    width: 100%;
    height: 400px;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.why-choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





/* why-choose-sec */

/* review-sec */


.review-sec {
    padding: 0px 0px 100px;
}

.reviewSlider .slick-prev,
.reviewSlider .slick-next {
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
}

.reviewSlider .slick-prev::before,
.reviewSlider .slick-next::before {
    content: '\f060';
    font-size: 25px;
    transition: ease-in-out;
    color: var(--themeColor);
    transition-duration: 0.5s;
    font-family: 'fontAwesome';
}

.reviewSlider .slick-next::before {
    transform: rotate(180deg);
}

.reviewSlider .slick-next {
    right: -70px;
}

.reviewSlider .slick-prev {
    left: -70px;
}

.reviewSlider .slick-prev:hover::before,
.reviewSlider .slick-next:hover::before {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.reviewSlider .slick-prev:hover,
.reviewSlider .slick-next:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.reviewSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.review-box {
    padding: 30px;
    margin-top: 50px;
    border-radius: 10px;
    border: 1px solid #ededed;
    background-color: var(--white);
}

.review-box:hover {
    background-color: var(--themeColor);
}

.review-box:hover * {
    color: var(--white);
}

.review-star i {
    color: #ff9f1a;
}

.review-img {
    top: -25px;
    width: 90px;
    height: 90px;
    margin-top: -50px;
    border-radius: 50%;
    position: relative;
}

.review-box:hover .review-img::before {
    opacity: 1;
}

.review-img::before {
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    border: 10px solid var(--white);
}

.review-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-text {
    height: 100px;
    overflow-y: scroll;
    margin-bottom: 15px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.review-text::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.review-text::-webkit-scrollbar-thumb {
    background-color: var(--white);
    outline: 1px solid var(--white);
    border-radius: 100px;
}

.review-text::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 10px var(--headingColor);
}

.review-box:hover .review-text {
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.review-box ul {
    display: flex;
    padding-top: 10px;
    align-items: center;
    border-top: 1px solid #ededed;
    justify-content: space-between;
}



/* review-sec */

/*footer start*/

footer {
    padding-top: 80px;
    background-color: var(--themeColor2);
}

.ft-logo img {
    margin-bottom: 20px;
}

.ft-logo p {
    width: 89%;
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 30px;
    color: var(--white);
}

.ft-logo form input {
    width: 100%;
    padding: 10px;
    border: unset;
    color: var(--white);
    padding-left: unset;
    background-color: unset;
    border-bottom: 1px solid var(--white);
}

.ft-logo form input::placeholder {
    color: var(--white);
}

.inp {
    position: relative;
}

.inp button {
    right: 0;
    top: -15px;
    width: 50px;
    height: 50px;
    display: flex;
    border: unset;
    font-size: 20px;
    border-radius: 50%;
    position: absolute;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor);
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.quick-links ul li a {
    font-size: 14px;
    opacity: 0.6;
    color: var(--white);
    font-family: 'Poppins';
    line-height: 33px;
}

.quick-links ul li a:hover {
    opacity: 1;
}

.follow ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: unset;
}

.follow ul li a i {
    opacity: 0.6;
    font-size: 25px;
    color: var(--white);
}

.follow ul li a i:hover {
    opacity: 1;
}

.quick-links ul li p {
    font-size: 14px;
    color: #fff;
    margin-top: 12px;
}

.quick-links ul li p span {
    display: block;
}

.quick-links.tw {
    padding-left: 20px;
}

.quick-links.th {
    padding-left: 27%;
}

.follow {
    padding-left: 37%;
}

.ft-bot {
    margin: 30px 0px 0px 0px;
    padding: 20px 0px;
    border-top: 1px solid #fff;
}

.ft-bot p {
    font-size: 14px;
    text-align: center;
    color: var(--white);
}

.ft-bot ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin: unset;
}

.ft-bot ul li a {
    font-size: 14px;
    color: #fff;
}

.ft-bot .row {
    align-items: center;
}

.quick-links ul li {
    padding-bottom: 10px;
}

a.btn-1:hover {
    transition: 1s;
    background-color: unset;
    color: #000;
    border: 1px solid #000;
}

.baner-txt a.btn-1:hover {
    color: #000;
    background-color: #fff;
    border: unset;
}

/*footer end*/

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}



/*Media Query End*/