/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #131741;
}

html::-webkit-scrollbar-thumb {
    background-color: #E78368;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

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

body {
    font-size: 16px;
    font-family: Inter Regular;
    font-weight: 400;
    color: #000000;
}

a,
a:hover,
a:focus {
    color: #ffffff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.container-fluid {
    padding: 0 40px;
}
.fixed-btn {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0px;
    z-index: 9999;
}


.call {
    width: 55px;
    height: 55px;
    background-color: #E78368;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 6px;

}

.enq-btn {
    font-weight: 400;
    text-align: center;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border-radius: 8px;
    background: #1A1F51;
    position: relative;
    color: #fff;
    padding-left: 0;
    margin-bottom: 6px;
    padding-top: 16px;

    &:hover,
    &:focus {
        background: #272D6D;
        color: #fff;
    }

    span {
        background: #272D6D;
        width: 55px;
        height: 41px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 9px;
    }
}

.call-wp {
    position: fixed;
    bottom: 10%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.enq-btn:hover::after,
.enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}

.call:hover,
.fw:hover {
    transform: scale(1.1);
}

.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-style: normal;
    font-size: 14px;
    font-style: normal;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #E78368;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
/* .left .logo::after{
    content: '';
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.60);
    filter: blur(35.5px);
    position: absolute;
    inset: -25% -10%;
    z-index: -1;
} */
.right {
    padding: 30px;
    text-align: left;
    background: #131741;
    .primary-btn{
        border: 0;
        cursor: pointer;
        &:hover {
            background: #fff;
            color: #E78368;
        }
    }
    label,.title{
        color: #fff;
    }
}





/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

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

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

p {
color: #474747;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 155.556%;
}
.dec{
    color: #171717;
text-align: center;
font-family: Inter Medium;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 29px;
margin-bottom: 22px;
}
.title {
    color: #000;
    text-align: center;
    font-family: Inter SemiBold;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 11px;
}
.section-title {
    color: #362830;
    font-family: Mulish SemiBold;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 16px;
}

.small-line {
    width: 79px;
    height: 2px;
    background: #000;
    display: inline-block;
    margin-left: 15px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.primary-btn {
border-radius: 8px;
background: #E78368;
border: 1px solid #E78368;
padding: 18px 24px;
display: inline-block;
color: #FFF;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 13px;
font-family: Inter SemiBold;
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
position: relative;
overflow: hidden;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
overflow: hidden;
}

.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    right: -100%;
    background: #131741;
    z-index: -1;
    transition: all .35s;
    transform: rotate(45deg) scale(2.4);
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    right: 0;
}

.primary-btn:hover,.primary-btn:focus {
    color: #ffffff;
}



.secondary-btn {
    background: #131741;
    border-color: #131741;

}
.secondary-btn:before,
.secondary-btn:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    left: -100%;
    background: #E78368;
    z-index: -1;
    transition: all .35s;
    transform: rotate(50deg) scale(2) translateY(18px);
}

.secondary-btn:hover:before,
.secondary-btn:hover:after {
    left: 0;
}
.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: #FF722B;
}

form .btn-group {
    justify-content: center;
}

.form-group {
    margin-bottom: 10px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
header {
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
    background: #FFF;
}
.topbar{
    background: #131741;
    text-align: center;
    padding: 6px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    &:after{
        content: '';
        position: absolute;
        content: "";
        width: 30%;
        height: 100%;
        left: 0;
        background: #E78368;
        z-index: -1;
        transition: all .35s;
        transform: rotate(19deg) scale(12);
    }
    p{
        color: #fff;
        margin: 0;
text-align: center;
font-family: Inter SemiBold;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: ease-in-out .4s;

}
.logo{

}

.social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social a{
    border: 1px solid #3D3D3D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    stroke-width: 1px;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.social a:hover{
    transform: scale(1.2);
    background-color: #131741;
    border-color: #131741;
    img{
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(31deg) brightness(104%) contrast(103%);
    }
}
.mobile-menu{
    display: none;
}

/************************************* Home Page **************************************/

.banner {
    overflow: hidden;
    position: relative;
    &:after{
        content: '';
        /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.23) 100%); */
        position: absolute;
        inset: 0;
    }

    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-content{
        position: relative;
        z-index: 1;
        width: 80%;
        text-align: center;
        background: #0000002b;
        padding: 35px;
        background: radial-gradient(#00000082, transparent);
        backdrop-filter: blur(1px);
    h1{
        color: #FFF;
text-align: center;
font-family: Mulish Regular;
font-size: 72px;
font-style: normal;
font-weight: 400;
line-height: 80px;
text-shadow: 0px 0px 12px #848484;

    }
    p{
    color: #FFF;
    text-align: center;
    font-family: Inter SemiBold;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 159.091% ;
    margin-bottom: 19px;
    width: 78%;
    margin-inline: auto;
    }
}
}
.btn-group {
    display: flex;
    gap: 25px;
}
/************************************
 Service
************************************/
.service-item {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    height: 100%;
    transition: all .5s;
	position:relative;
	padding-bottom: 78px;
    &:hover{
        transform: scale(1.04);
    }
	.btn-group{
		position: absolute;
        bottom: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
	}
    .title {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    p {
        line-height: 140.556%;
    }
    
}
.img-box {
    overflow: hidden;
}
.service-content {
    text-align: center;
    padding: 10px;
}
/************************************
   About
************************************/
.about {
    border-radius: 14px;
    background: #FFEFEB;
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        background-image: url(../img/about-vector.webp);
        background-repeat: no-repeat;
        position: absolute;
        right: 0;
        bottom: 10px;
        width: 279px;
        height: 118px;
        z-index: -1;
    }
}
.about-img{
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &::after{
        content: '';
        border-radius: 14px;
        border: 2px solid #FFF;
        position: absolute;
        inset: 5px;
        bottom: 10px;
    }
}
/************************************
  Why Choose
************************************/
.why-choose{
    background-image: url(../img/why-choose-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        background-image: url(../img/wc-vector.webp);
        background-repeat: no-repeat;
        position: absolute;
        right: 0;
        bottom: 17px;
        width: 176px;
        height: 111px;
        z-index: -1;
    }
    .section-title,.dec,p,h3{
        color: #fff;
    }
    h3{
        color: #FFF;
text-align: center;
font-family: Inter SemiBold;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 29px;
margin-bottom: 6px;
    }
    .col-lg-3:hover{
        .icon img{
            transform: rotateY(180deg);
        }
    }
}
.mb-60{
    margin-bottom: 60px;
}
.icon {
    position: relative;
    margin-bottom: 12px;
    display: inline-block;
    z-index: 1;
    transition: all .5s;
    span{
        height: 84px;
        display: flex;
        align-items: end;
    }
    &::after{
        content: '';
        width: 52px;
        height: 52px;
        background: #2E3367;
        position: absolute;
        border-radius: 50%;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
}
/************************************
   Gallery
************************************/
.gallery-item{
width: 100%;
height: 353px;
border-radius: 14px;
overflow: hidden;
position: relative;
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

span{
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: rgba(5, 5, 5, 0.404);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(.9);
    opacity: 0;
    transition: all .5s;
    font-size: 50px;
    font-weight: lighter;
}
&:hover{
    span{
        opacity: 1;
        transform: scale(1);
    }
}
}

/************************************
  Home Interior
************************************/
.home-interior {
    position: relative;
    background: #131741;
    z-index: 1;
    &::after{
        content: '';
        background-image: url(../img/about-vector.webp);
        background-repeat: no-repeat;
        position: absolute;
        right: 0;
        bottom: 10px;
        width: 279px;
        height: 118px;
        z-index: -1;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(31deg) brightness(104%) contrast(103%);
    }
    .row .col-lg-6:last-child{
        padding: 2%;
        padding-right: 15%;
        padding-top: 0;
        padding-bottom: 110px;
    }
    .section-title{
        color: #fff;
        margin-bottom: 17px;
        line-height: 125%;
    }
    .secondary-btn{
        background-color: #fff;
        border-color: #fff;
        color: #000;
        img{
            filter: brightness(0) saturate(100%)
        }
    }
    .top-vector {
        margin-bottom: -20px;
    }
}
.left-img{
    margin-bottom: -4px;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
}
.mb-30{
    margin-bottom: 30px;
}
/*******************************
Faq 
*******************************/
.faq{
    background: #F7F6F7;
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-radius: 8px;
border: 1px solid #E3E3E3;
background: #FFF;
position: relative;
}

.accordion__item:hover {
    transform: translateY(-5px)
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 10px 16px;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #171717;
    font-family: Inter Medium;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 145%;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
}

  
.accordion__title::after {
    content: '+';
    position: absolute;
    width: 19px;
    height: 11px;
    right: 16px;
    top: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    content: '-';
}


.accordion__item .accordion__content {
    padding: 16px;
    margin-bottom: 0;
    display: none;
    padding-top: 0;
    p{
        line-height: 166.667%;
        margin-bottom: 0;
    }
}

.testi-box {
    border-radius: 16px;
    border: 1px solid #D7D7D7;
    background: rgba(0, 0, 0, 0.20);
    box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.11);
    display: block;
    overflow: hidden;
    position: relative;
    &:hover{
        .play-icon{
            img{
                transform: scale(1.2);
            }
        }
    }
    .play-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        background: rgba(0, 0, 0, 0.20);
    }
}
.testi-slider{
    .slick-list{
        margin: 0 -10px;
    }
    .slick-slide{
        margin: 0 10px;
    }
}
.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 5px;
    border-radius: 10px;
    background: #DBDBDB;
    &::before{
        display: none;
    }
}
.slick-dots li.slick-active button 
{
    background: #707070;
}
.slick-dots li {
    width: 10px;
    height: 10px;
}
.slick-dots {
    bottom: -50px;
}

.request-quote {
    position: relative;
    padding-top: 80px;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section-title{
        line-height: 100%;
        margin-bottom: 27px;
    }

}
/******************************/

footer {
    width: 100%;
    padding-top: 45px;
}

.footer-box {
    padding-right: 4%;
    .logo{
        margin-bottom: 14px;
    }
    p{
        margin-bottom: 18px;
    }
}

.footer-logo {
    margin-bottom: 25px;
}

footer p {
    color: #141414;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 31px;
}

.footer-title {
    color: #0D0D0D;
    font-size: 22px;
    font-style: normal;
    font-family: Inter SemiBold;
    font-weight: 600;
    line-height: 21px;
    position: relative;
    margin-bottom: 32px;
    &::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 42px;
        height: 2px;
        background: #131741;
        border-radius: 10px;
    }
}
.contact-info p{
    position: relative;
    padding-left: 30px;
    img{
        position: absolute;
        left: 0;
        top: 5px;
    }
}
footer ul li a,
footer p a {
    color: #141414;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 31px;
}

footer p a:hover, footer p a:focus,
.contact-info .list-item:hover a {
    color: #E78368;
}
.contact-info{
    padding-right: 14%;
}

.copyright {
    border-top: 1px solid #56464F;
    padding-block: 17px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 29px;
    p{
        margin: 0;
    }
}
.copyright a {
    color: #E78368;
    text-decoration: underline;
}


footer{
    background: #F4F5F8;
    .form-control{
        padding: 11px 8px;
        border-radius: 4px;
        border: 1px solid #999;
        color: #1C1C1C;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 11px;
        background-color: transparent;
        &::placeholder{
            color: #000;
        }
    }
    .secondary-btn{
        border-radius: 4px;
        font-size: 14px;
        padding: 11px 8px;
        width: 100%;
        text-align: center;
        &:hover{
            background-color: #E78368;
            border-color: #E78368;
        }
    }
}
textarea{
    font-family: Inter Regular;
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .home-interior {
        .row .col-lg-6:last-child {
            padding: 2%;
            padding-right: 7%;
            padding-top: 0;
            padding-bottom: 110px;
        }
    }
    .gallery-item {
        height: 338px;
    } 
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
header{
    .logo {
        width: 290px;
    }
}
.sec-gap {
    padding: 40px 0;
}
.primary-btn {
    padding: 15px 22px;
    font-size: 16px;
}   
.topbar {
    p {
        font-size: 14px;
    }
}
.banner {
    & .banner-content {
        h1 {
            font-size: 60px;
        }
        p {
            font-size: 18px;
            width: 80%;
        }
    }
}
.enq-btn {
    span {
        width: 50px;
}
}
.section-title {
    font-size: 42px;
}
.dec {
    font-size: 17px;
    line-height: 24px;
}
.service-item {
	    padding-bottom: 60px;
    .title {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 6px;
    }
}
p {
    font-size: 16px;
}
.why-choose {
    padding-bottom: 6%;
    h3 {
        font-size: 18px;
    }
}
.mb-60 {
    margin-bottom: 40px;
}
.gallery-item {
    height: 290px;
}
.accordion__item .accordion__title {
    font-size: 18px;
}
.popup .popup__content {
    width: 70%;
}
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
    .banner {
        & .banner-content {
            h1 {
                font-size: 48px;
            }
            p {
                font-size: 15px;
                width: 80%;
            }
        }
    }
    .section-title {
        font-size: 32px;
        margin-bottom: 8px;
    }
    .dec {
        font-size: 15px;
        line-height: 23px;
    }
    .service-item {
        .title {
            font-size: 15px;
            line-height: 15px;
            margin-bottom: 6px;
        }
    }
    p {
        font-size: 14px;
    }
    .primary-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    .why-choose {
        h3 {
            font-size: 15px;
        }
    }
    .gallery-item {
        height: 230px;
    }
    .home-interior {
        .top-vector {
            margin-bottom: -14px;
            width: 47%;
        }
        .row .col-lg-6:last-child {
            padding: 2%;
            padding-right: 4%;
            padding-top: 0;
            padding-bottom: 110px;
        }
        &::after {
            background-size: 170px;
            background-position: right;
        }
    }
    .about {
        &::after {
            background-size: 170px;
            background-position: right;
        }
    }
    .popup .popup__content {
        width: 90%;
    }
}

@media (max-width: 991.98px) {
    header {
        .logo {
            width: 220px;
        }
    }
    .topbar {
        p {
            font-size: 12px;
        }
        &:after {
            transform: rotate(19deg) scale(5);
        }
    
    }
    .banner {
        & .banner-content {
            h1 {
                font-size: 35px;
                line-height: 160%;
            }
            p {
                font-size: 14px;
                width: 80%;
            }
        }
    }
    .gallery-item {
        height: 180px;
    }
    .home-interior {
        text-align: center;
        .top-vector {
            margin-bottom: -14px;
            width: 26%;
        }
        .btn-group{
            justify-content: center;
        }
    }
    .about {
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    footer {
        text-align: center;
        .social{
            justify-content: center;
        }
    }
    .footer-title {
        &::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }
    .popup .popup__content {
        width: 70%;
    }
	.service-item {
    padding-bottom: 55px;
}
}

@media (max-width: 575.98px) {
   header{
    .flex-box{
        .primary-btn:first-child{
            display: none;
        }
    }
   }
   .popup .popup__content {
    width: 90%;
}
.left .logo {
    width: 60%;
}
.right {
    padding: 14px;
}
.title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 6px;
}
label {
    font-size: 14px;
    margin-bottom: 2px;
}
.form-control {
    font-size: 14px;
    padding: 7px 8px;
}
.form-group {
    margin-bottom: 6px;
}
.topbar {
    padding: 2px;
    p {
        font-size: 11px;
    }
    &:after {
        transform: rotate(30deg) scale(4);
    }
}
header {
    .logo {
        width: 180px;
    }
}
.primary-btn {
    padding: 10px 12px;
    font-size: 13px;
    img{
        width: 14px;
        height: auto;
    }
}
.banner {
    & .banner-content {
        width: 100%;
        padding: 2%;
        h1 {
            font-size: 24px;
            line-height: 160%;
        }
        p {
            font-size: 13px;
            width: 90%;
            margin-bottom: 10px;
        }
    }
    .banner {
        height: 250px;
        object-fit: cover;
    }
}
.section-title {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 100%;
}
.dec {
    font-size: 13px;
    line-height: 20px;
}
.sec-gap {
    padding: 30px 0;
}
.service-item {
    .title {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 6px;
    }
}
.service-item {
    border-radius: 8px;
    p {
        line-height: 136.556%;
        font-size: 13px;
    }
    .primary-btn {
        padding: 10px 10px;
        font-size: 12px;
        border-radius: 6px;
    }
}
.about {
    &::after {
        background-size: 80px;
        background-position: right;
        bottom: -15px;
    }
}
.why-choose {
    h3 {
        font-size: 15px;
        line-height: 120%;
    }
}
.gallery .row{
    div:nth-child(5){
        order: 6;
    }
}
.why-choose {
    &::after {
        bottom: -25px;
        background-size: 80px;
        background-position: right;
    }
}
.btn-group {
 gap: 8px;
}
.slick-dots {
    bottom: -35px;
}
.accordion__item .accordion__title {
    font-size: 14px;
    line-height: 17px;
}
.accordion__item {
    margin: 6px auto;
}
footer p {
    font-size: 14px;
    line-height: 20px;
}
footer ul li a, footer p a {
    font-size: 14px;
    line-height: 20px;
}
.footer-title {
    font-size: 16px;
}
.copyright {
    justify-content: center;
}
.fixed-btn{
    right: 1px;
}
.call-wp{
    width: 40px;
    right: 4px;
    gap: 4px;
}
.call {
    width: 40px;
    height: 40px;
    padding: 12px;
}
.enq-btn {
    span {
        width: 40px;
    }
}
.vertical {
    font-size: 13px;
}
	    .service-item {
        padding-bottom: 40px;
    }
}