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

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

html {
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

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;
}

img {
    max-width: 100%;
}

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;
}

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

i {
    font-family: FontAwesome !important;
    font-style: normal;
}

i::before {
    font-family: FontAwesome !important;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: 0 0 50px 0;
}

.heading p {
    width: 60%;
    margin: 0 auto;
}

.slicknav_nav a:hover {
    background: #d6b48f;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/***** 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
}


/***** 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;
}

.sec {
    padding: 80px 0;
}

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

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

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

/* Buttons Css Starts */

.theme1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 40px;
    border: 1px solid #fff;
    background-color: #0000;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover {
    border: 1px solid #0000;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    transform: translate(-50%, -50%);
    width: 0;
    border-radius: 100px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 0;
    background-color: #d6b48f;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    position: relative;
    font-size: 13px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #fff;
    z-index: 9;
}













.theme2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 40px;
    border: 1px solid #000;
    background-color: #0000;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover {
    border: 1px solid #0000;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    transform: translate(-50%, -50%);
    width: 0;
    border-radius: 100px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 0;
    background-color: #d6b48f;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
    position: relative;
    font-size: 13px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #000;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}





















/* Buttons Css Ends */

.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-family: "Cormorant", serif;
    font-size: 93px;
    line-height: 110px;
    color: #fff;
    font-weight: 200;
    margin: 0;
    text-transform: uppercase;
}

h2 {
    font-family: "Cormorant", serif;
    font-size: 75px;
    line-height: 80px;
    color: #000;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
}

h3 {
    font-family: "Cormorant", serif;
    font-size: 30px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: "Cormorant", serif;
    font-size: 24px;
    line-height: 29px;
    color: #000;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

h5 {
    font-family: "Cormorant", serif;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: "Cormorant", serif;
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

p {
    color: #000000b0;
    font-size: 13px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

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

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

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

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

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


/*header css start */
header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

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

.menuSec {
    padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 40px;*/
}

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

.menu-box li ul {
    display: none;
}

.menu-box ul li a {
    position: relative;
    text-decoration: none;
    padding: 0 10px;
    font-size: 0.75vw;
    line-height: 20px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    z-index: 0;
    transition: ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
}


.menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #d6b48f;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    background-color: #d6b48f;
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::after {
    height: 100%;
    transition: ease-out;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
}

.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menu-box li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menu-box li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menu-box li>ul>li,
.menu-box li>ul>li>a {
    display: block;
    margin: 0;
}

.menu-box li>ul>li>a:before,
.menu-box li>ul>li>a:after {
    display: none;
}

.menu-box li:hover li {
    float: none;
}

.menu-box li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menu-box ul ul ul {
    left: 100%;
    top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

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


/*header css start */

/*banner css start */

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

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-item {
    height: 100vh;
}

.carousel-indicators [data-bs-target] {
    position: relative;
    /* box-sizing: content-box; */
    /* flex: 0 1 auto; */
    width: 13px;
    height: 13px;
    /* padding: 0; */
    margin: 0 20px !important;
    /* text-indent: -999px; */
    background-color: #0000;
    cursor: pointer;
    background-image: url('../images/banner-dot.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    /* background-clip: padding-box; */
    border: 0;
    /* border-top: 10px solid transparent; */
    /* border-bottom: 10px solid transparent; */
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 100px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgb(0 0 0 / 56%);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators {
    margin-bottom: 3rem;
}

.carousel-indicators .active {
    position: relative;
}

.carousel-indicators .active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 40px;
    width: 40px;
    border: 1px solid #fff;
    border-radius: 100px;
}

.banner_text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.banner_text p {
    color: #fff;
    width: 78%;
    margin: 0 auto;
}

.banner-socials {
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.banner-socials ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 9999;
    position: relative;
}

.banner-socials ul li:nth-child(2) {
    position: relative;
}

.banner-socials ul li:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -28px;
    width: 70%;
    border-bottom: 1px solid #fff;
}

.banner-socials ul li:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -28px;
    width: 70%;
    border-bottom: 1px solid #fff;
}

.banner-socials ul li h6 {
    position: relative;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-family: 'Montserrat';
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
    transition: ease-in;
    transition-duration: 0.5s;
}


.banner-socials ul li h6::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    border: 1px solid #fff;
    height: 0;
    width: 0;
    border-radius: 100px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner-socials ul li h6:hover::before {
    height: 100%;
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-socials ul li h6:hover {
    color: #d6b48f;
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner-numbers ul {
    position: absolute;
    top: 25%;
    right: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 50%;
    width: 2%;
    z-index: 9;
}

.banner-numbers ul::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 25%;
    width: 100%;
    background-image: url('../images/banner-numbers-ex1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner-numbers ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 25%;
    width: 100%;
    background-image: url('../images/banner-numbers-ex2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner-numbers ul li span {
    font-size: 13px;
    line-height: 25px;
    color: #fff;
    font-family: 'Montserrat';
    cursor: pointer;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-numbers ul li span:hover {
    color: #d6b48f;
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner-numbers ul li.active span {
    font-size: 17px;
    line-height: 25px;
}

/*banner css Ends*/

/*Inner Banner Css Starts*/

section.inner-banner .carousel-item {
    height: 600px;
}

section.inner-banner .carousel-caption {
    background: rgb(0 0 0 / 51%);
}

/*Inner Banner Css Ends*/

/*Portfolio Sec Css Starts*/

section.portfolio-sec {
    position: relative;
    padding: 100px 0;
}

section.portfolio-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 49%;
    background-color: #f4f0ed;
    z-index: -1;
}

.portfolio-heading {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
    flex-direction: column;
    margin: 0 0 50px 0;
}

.portfolio2-card-main {
    width: 100%;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.portfolio-card-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 50px;
}

.portfolio-card-img {
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.portfolio-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    transition: ease-out;
    transition-duration: 0.5s;
}

.portfolio-card:hover .portfolio-card-img img {
    scale: 1.2;
    transition: ease-in;
    transition-duration: 0.5s;
}


.portfolio-card-img img.portfolio1 {
    height: 650px;
}

.portfolio2-card .portfolio-card-img {
    width: 100%;
}

.portfolio-card-img img.portfolio2 {
    height: 500px;
    width: 100%;
    object-position: 0 0;
}

.portfolio-card-img img.portfolio3 {
    height: 500px;
    width: 50%;
    object-position: 89% 0;
}

.portfolio-card-img img.portfolio4 {
    height: 650px;
    object-position: 0 0;
}

.portfolio-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.portfolio-card-txt h6 {
    font-size: 16px;
    line-height: 25px;
    color: #000;
}

.portfolio-card-txt h4 {
    position: relative;
    font-size: 31px;
    line-height: 40px;
    color: #000;
    transition: ease-in;
    transition-duration: 0.5s;
}

.portfolio-card-txt h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #000;
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.portfolio-card-txt h4:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

/*Portfolio Sec Css Ends*/

/*Video Sec Css Starts*/

section.video-sec {
    position: relative;
}

section.video-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #f4f0ed;
}

section.video-sec::after {
    content: '';
    position: absolute;
    top: -3%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1.6px;
    height: 8%;
    background-color: #d6b48f;
}

.video-box {
    position: relative;
}

.video-box-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
    filter: grayscale(1) brightness(0.6);
}

.video-box-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    width: 200px;
    overflow: hidden;
}

.video-box-play a {
    position: relative;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border: 1px solid #ffffffa1;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.video-box-play a:hover {
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.video-box-play a::Before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background-color: #d6b48fa1;
    border-radius: 100px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.video-box-play a:hover::Before {
    height: 100%;
    width: 100%;
    border-radius: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.video-box-play a i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    z-index: 9;
}

.video-box-play a h6 {
    font-size: 13px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    z-index: 9;
}

.video-counter {
    position: relative;
    padding: 50px 20px;
}

.counter-txt .counter {
    font-size: 113px;
    line-height: 120px;
    font-family: 'Cormorant';
    color: #393939;
    opacity: 0.1;
}

.video-counter p {
    position: absolute;
    top: 50%;
    left: 0;
    width: 70%;
}

/*Video Sec Css Ends*/

/*Team Sec Css Starts*/

.team-img {
    width: 100%;
    height: 444px;
}

.team-box h4 {
    font-size: 21px;
    line-height: 25px;
}

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

.team-slider .slick-slide {
    opacity: 1;
    margin: 0 10px 0;
    transition: margin 0.3s ease;
}

.team-slider-contorl {
    display: flex;
    margin: 50px 0px 25px;
    align-items: center;
    justify-content: center;
}

.team-btn {
    gap: 25px;
    width: 50%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.team-btn button {
    border: none;
    background-color: transparent;
}

.team-number {
    width: 500px;
    position: relative;
}

.team-number .slide_counter h2 {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    height: 100%;
    gap: 190px;
    font-size: 25px;
    font-weight: 400;
    align-items: center;
    justify-content: space-between;
}

.team-number .progress {
    display: block;
    width: 80%;
    height: 1px;
    border-radius: 10px;
    overflow: hidden;
    bottom: 0%;
    background-color: #ffffff4b;
    background-image: linear-gradient(to right, #080e28, #ffffff4b);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size 0.4s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
}

.team-slider .slick-team {
    height: 455px;
}

.team-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 40px;
}

.team-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
}

/*Team Sec Css Ends*/

/*Quote Sec Css Starts*/

section.quote-sec {
    position: relative;
    background-image: url('../images/quote-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.quote-heading * {
    color: #fff;
}

.quote-heading {
    position: relative;
    z-index: 9;
    margin: 0;
}

/*Quote Sec Css Ends*/

/*Insta Sec Css Starts*/

.insta-card-img {
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.insta-card-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    margin: 0 auto;
    border-radius: 100px;
    background-color: #d6b48f87;
    transition: ease-out;
    transition-duration: 0.5s;
}

.insta-card-img:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.insta-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 100%;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.insta-card-img:hover i {
    font-size: 60px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.insta-card-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.insta_slider .slick-active {
    opacity: 1;
}

.insta_slider .slick-slide {
    margin: 0px 5px;
}

/*Insta Sec Css Ends*/


/* footer start */
.footer-links.footer-links-contact li {
    margin: 20px 0;
    gap: 20px;
    display: flex;
    align-items: center;
}

.footer-links.footer-links-contact li a {
    color: #8c8c8a;
    /* font-family: 'Montserrat'; */
    transition: ease-in;
    transition-duration: 0.5s;
}

.footer-links.footer-links-contact li a:hover {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}


.footer-links.footer-links-contact li i {
    color: white;
}

footer {
    background: #282828;
    padding-top: 5%;
    border-top: 1px solid #1f1f1f;
}

.ftr_logo a img {
    width: 80%;
    margin-bottom: 10px;
}

footer .row {
    align-items: center;
}

.ftr-right-bar .row {
    align-items: start;
}


.bar {
    display: block;
    margin: 0 0 10px 0;
    color: #000000;
    padding: 0 0 20px 0;
    position: relative;
    font-size: 24px;
    text-transform: uppercase;
    /* font-family: 'BlenderPro'; */
}

.ftr_logo {
    padding: 67px 40px;
    border-top: 1px solid #474744;
    border-left: 1px solid #474744;
}

.ftr_box {
    position: relative;
    z-index: 2;
    padding: 20px 20px 40px 30px;
    height: 281px;
    margin: 0 0 0 12px;
}

.ftr_box::before {
    position: absolute;
    height: 80%;
    width: 1px;
    content: '';
    background-color: #474744;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.ftr_box1::after {
    position: absolute;
    height: 100%;
    width: 1px;
    content: '';
    background-color: #474744;
    bottom: 0;
    right: 11px;
}

.ftr_logo p {
    width: 100%;
    margin: 15px 0;
    color: #8c8c8a;
    text-transform: capitalize;
    font-size: 12px;
    line-height: 20px;
}

.ftr_logo h5 {
    color: #fff;
}

ul.footer_social {
    display: flex;
    align-items: center;
    gap: 15px;
}

ul.footer_social li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #8c8c8a;
    transition: 0.3s ease-in-out;
}

ul.footer_social li a:hover i {
    transition: 0.3s ease-in-out;
    color: #000;
}

ul.footer_social li a:hover {
    transition: 0.3s ease-in-out;
    background-color: #fff;
}

ul.footer_social li a i {
    color: #fff;
    font-size: 12px;
    color: #8c8c8a;
    transition: 0.3s ease-in-out;
}

ul.services a {
    font-size: 14px;
    margin: 0 0 25px 0;
    transition: 0.3s ease-in-out;
}

ul.services {
    column-count: 2;
}

.ftr_box a {
    font-size: 13px;
    /* font-family: 'Montserrat'; */
    color: #8c8c8a;
    display: block;
    width: fit-content;
    margin: 15px 0;
}

.footer-links.footer-links-contact ul li img {
    object-fit: scale-down;
    width: auto;
}

.copy_right .container {
    margin: 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #474744;
    color: #8c8c8a;
    margin: 0 auto;
    text-align: center;
}

.banner_main_box::before {
    position: absolute;
    width: 37%;
    height: 220px;
    right: -20%;
    bottom: 0;
    content: '';
    background: #d12128;
}

ul.our-happy-box-ul img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 7px 4px #00000029;
}



.ftr-right-bar {
    position: relative;
    z-index: 6;
}

.ftr-right-bar::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    content: '';
    z-index: 2;
    background-color: #fff;
}

.footer-links.footer-links-contact a {
    margin: 0px 0;
}


ul.services a:hover {
    color: #fff;
    padding: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

ul.quick a {
    transition: 0.3s ease-in-out;
}

ul.quick a:hover {
    color: #fff;
    padding: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

.footer-links.footer-links-contact ul li {
    display: flex;
    gap: 9px;
    align-items: start;
    margin-bottom: 32px;
}

.copy-text-btm {
    text-align: start;
}

.copy-btm-img {
    text-align: end;
}

.copy-text-btm p {
    color: #8c8c8a;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    text-align: center;
}

.copy-text-btm p a {
    position: relative;
    color: #8c8c8a;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    text-align: center;
    transition: ease-in;
    transition-duration: 0.5s;
}

.copy-text-btm p a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    width: 0;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.copy-text-btm p a:hover {
    color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.copy-text-btm p a:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

/* footer end */

/* About Us Page Starts */

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

.about-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.about-bottom {
    margin: 30px 0 0 0;
}

.about-txt img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: -130px 0;
}

/* About Us Page Ends */


/*Portfolio Page Css Starts*/

section.inner-portfolio .portfolio-card {
    margin: 20px 0;
}

section.inner-portfolio::before {
    display: none;
}

/*Portfolio Page Css Ends*/

/*Contact Us Page Css Starts*/

.contact-form form {
  position: relative;
}

.contact-form .form-group {
  position: relative;
}

.contact-form .form-group::after {
  content: '';
  height: 53px;
  width: 10px;
  position: absolute;
  left: 45px;
  top: 3px;
  background-size: 10px 50px;
  background-image: url(../images/contact-input-bef.png);
  background-repeat: no-repeat;
}

.contact-form form input.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 65px;
  border: 1px solid #c6c6c6;
  line-height: 0;
  box-shadow: none;
  color: black;
  font-weight: 400;
  background-color: transparent;
  margin-top: 20px;
  display: flex;
}

.contact-form form input.form-control::placeholder {
  color: #909091;
}

.contact-main-sec .them-btn-1:hover {
  background-color: #00006d;
  transition: 0.3s all;

}

.contact-form form textarea.form-control {
  font-size: 15px;
  padding-left: 65px;
  padding-top: 13px;
  border: 1px solid #c6c6c6;
  letter-spacing: 0;
  box-shadow: none;
  resize: none;
  background-color: transparent;
  margin-top: 20px;
  color: #000000;
  border-radius: 5px;
}

.contact-form .email {
  padding: 0;
}

.contact-form h4 {
  font-size: 62px;
  line-height: 70px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.contact-form form textarea.form-control::placeholder {
  color: #909091;
}

.contact-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #909091;
}

.contact-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(18, 28, 42, 0.55);
}

.contact-form :-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(18, 28, 42, 0.55);
}

.contact-form :-moz-placeholder {
  /* Firefox 18- */
  color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border: 1px solid #d6b48f;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  color: #d6b48f;
}

.cicle-icon img {
  margin: 0 auto;

}

.contact-info {
  background: transparent;
  width: 100%;
  display: inline-block;
  padding: 14px;
  margin-bottom: 10px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin-bottom: 10px;
  border: 1px solid #c6c6c6;
  border-radius: 5px;
}


.contact-main-sec h4 {
  font-size: 34px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}

.contact-main-sec p span {
  display: block;
}

.contact-main-sec p {
  font-size: 16px;
  color: #000;
  margin-bottom: -5%;
}

.contact-main-sec h2 {
  margin: 0;
  font-size: 20px;
  color: #646464;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}

.contact_text {
  padding-top: 0px;
}

.contact_text p {
  font-size: 16px;
  line-height: 25px;
  color: #8b8b8b;
  padding-top: 0px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}

.contact_text p a {
  font-size: 16px;
  color: #8b8b8b;
  text-decoration: none;
  transition: 0.5s ease-in-out;
  margin-top: 3px;
  display: block;
  text-transform: capitalize;
}


.mailt {
  padding-left: 30px;
}

.contact_text a:hover {
  color: #8b8b8b;
}

.contact_text p a.email-text {
  font-size: 15px;
  color: #8b8b8b;
}

.contact_text p a.email-text:hover {
  color: #8b8b8b;
}

.contact-us {
  padding: 6% 0;
}

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

.contact-head h2 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
}

.lg-btn {
  width: 100%;
}

.cp {
  font-size: 17px;
  line-height: 27px;
}

.contact_heading {
  margin-bottom: 30px;
}

.contact_heading h2 {
  font-size: 45px;
  color: #000000;
  font-weight: bolder;
}

.contact-side-bar {
  padding-top: 40px;
}

.contact-main-sec {
    padding: 200px 0 100px;
    background-image: url(https://cmscustom-staginglink2.com/timeless-look/wp/wp-content/uploads/2025/08/contact-back.webp);
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgb(56 55 52 / 54%);
    background-position: top;
    animation: bgZoom 10s ease-in-out infinite;
}
 .form-box form {
    /* background: rgb(255 255 255 / 92%); */
    padding: 40px;
    margin: 0 auto;
  }

  .form-box label {
    display: block;
    font-size: 17px;
    margin-bottom: 7px;
    color: #000;
  }

 .form-box input, textarea, select {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 1rem;
    background: transparent;
    color: #333;
  }

  .form-box input:focus, textarea:focus, select:focus {
    outline: none;
    border-bottom: 1.5px solid #007BFF;
  }

  .form-box textarea {
    resize: vertical;
    min-height: 80px;
  }

 .form-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background: transparent; */
    padding-right: 25px;
    appearance: auto;
  }

  .form-box select::-ms-expand {
    display: none;
  }

  .select-wrapper {
    position: relative;
  }

  .select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #555;
    pointer-events: none;
  }

  .checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 10px;
  }

  .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
  }

  .form-box button {
    border: 1px solid #000 !important;
    width: 100%;
    padding: 12px;
    background-color: #007bff00;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 30px;
  }

  .form-box button:hover {
    background-color: #0056b3;
  }
.contact-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-check label {
    margin: 0;
}

.form-box {
    /* background: rgba(255,255,255,0.65); */
    width: 70%;
    margin: 0 auto;
    background: rgb(255 255 255 / 49%);
    box-shadow: rgb(0 0 0 / 6%) 0px 4px 30px;
    backdrop-filter: blur(10.8px);
    border: 4px solid rgba(255, 255, 255, 0.16);
    position: relative;
    padding: 80px 20px;
}
.contact-main-sec .them-btn-1 {
  margin-top: 20px;
  border: none;
  padding: 12px 20px;
  background-color: #ff0000;
  color: white;
  border-radius: 25px;
}

.b-img img {
  border-radius: 20px;
}

.contact-form .form-group i {
  position: absolute;
  top: 20px;
  left: 13px;
  font-size: 20px;
  color: #000000;
}

.contact-form {
  margin-top: 23px;
}

.contact-form button {
  margin-top: 3%;
}

button.theme_btn img {
  width: 30%;
}

/*Contact Us Page Css Ends*/


/*Get A Quote Start*/


.get-a-quote-input input,
.get-a-quote-input select {
    width: 100%;
    height: 60px;
    border: 1px solid #6a6d7075;
    border-radius: 5px;
    padding: 0 20px;
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 19px;
}

.get-a-quote-input select {
    cursor: pointer;
}

.get-a-quote-input-iocn i {
    font-size: 20px;
    background: linear-gradient(180deg, #d6b48f 30%, #c0a17f 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-a-quote-input-iocn {
    position: absolute;
    right: 25px;
}

.get-a-quote-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.paga-link ul li:last-child a {
    color: #cb1a22;
}

.get-a-quote-input input::placeholder {
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 19px;
}

.get-a-quote-textarea textarea {
    width: 100%;
    height: 230px;
    border: 1px solid #6a6d7075;
    border-radius: 5px;
    padding: 20px 50px 20px 20px;
    resize: none;
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 19px;
}

.get-a-quote-textarea textarea::placeholder {
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 19px;
}

.get-a-quote-textarea {
    position: relative;
}

.get-a-quote-textarea-icon {
    position: absolute;
}

.get-a-quote-textarea-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.get-a-quote-textarea-icon i {
    /* font-size: 20px; */
    /* color: #000; */
    background: linear-gradient(180deg, #d6b48f 30%, #c0a17f 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-a-quote-button {
    margin-top: 50px;
    text-align: center;
}

.get-a-quote-button a {
    width: 13%;
    margin: 0 auto;
}

.inner-f {
    margin: 0;
    padding: 0;
}

.footer-bg .footer-sec:after {
    height: 100%;
}

/*Get A Quote Ends*/

/*Work With Me Starts*/

.work-with-me-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.work-with-me-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.work-with-me-bottom {
    margin: 50px 0 0 0;
}

/*Work With Me Ends*/

/*Policy Page Starts*/

.policy-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.policy-txt ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    width: 80%;
    list-style-type: disc;
    padding: 0 0 0 50px;
    margin: 20px 0;
}


/*Policy Page Ends*/

/*Media Query Starts*/
@media only screen and (min-width: 3501px) and (max-width: 4000px) {
   
header .container {
    max-width: 2500px;
}
}
@media only screen and (min-width: 2901px) and (max-width: 3500px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1800px;
}
header .container {
    max-width: 2000px;
}
}
@media only screen and (min-width: 1921px) and (max-width: 2900px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1600px;
}
}
@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {

    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    /* Home css Ends */




}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {


    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    /* Home css Ends */


}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {


    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    /* Home css Ends */


}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {


    /* Fonts css Starts */

    h1 {
        font-size: 70px;
        line-height: 75px;
    }

    h2 {
        font-size: 55px;
        line-height: 60px;
    }

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */



    /* Home css Starts */

    /*.menu-box ul {*/
    /*    gap: 20px;*/
    /*}*/

    /* Home css Ends */


}

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


    .sec {
        padding: 60px 0;
    }


    /* Fonts css Starts */

    h1 {
        font-size: 70px;
        line-height: 75px;
    }

    h2 {
        font-size: 50px;
        line-height: 55px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    header {
        position: relative;
        background: linear-gradient(57deg, rgb(214 180 143 / 92%) 0%, rgb(199 126 49 / 67%) 100%);
    }

    /*.menu-box ul {*/
    /*    gap: 30px;*/
    /*}*/

    .menu-box ul li a {
        padding: 0 2px;
        font-size: 10px;
    }

    .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .banner_text {
        width: 100%;
        gap: 10px;
    }

    section.main_slider .carousel-item {
        height: 700px;
    }

    .banner-socials {
        bottom: 15%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .banner-socials ul li h6 {
        height: 30px;
        width: 30px;
    }

    .carousel-indicators {
        margin-bottom: 2rem;
    }

    .carousel-indicators [data-bs-target] {
        height: 10px;
        width: 10px;
    }

    .carousel-indicators .active::before {
        height: 30px;
        width: 30px;
    }

    .banner-numbers ul {
        top: 20%;
        right: 1%;
        gap: 20px;
        height: 2%;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    section.portfolio-sec {
        padding: 40px 0;
    }

    .portfolio-heading {
        gap: 10px;
        margin: 0 0 40px 0;
    }

    .portfolio-card-img img {
        height: 400px !important;
        width: 100% !important;
        object-position: 0 0;
    }

    .portfolio-card {
        gap: 10px;
        margin: 20px 0;
    }

    .portfolio-card-txt h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .portfolio-card-box {
        gap: 20px;
    }

    .portfolio-card-main {
        width: 100%;
    }

    .portfolio-card-img {
        width: 100%;
    }

    .video-box-img img {
        height: 500px;
    }

    .video-box-play {
        height: 150px;
        width: 150px;
    }

    .video-box-play a h6 {
        font-size: 12px;
        line-height: 20px;
    }

    section.video-sec::after {
        display: none;
    }

    .video-counter {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .video-counter p {
        margin: 0 auto;
        right: 0;
    }

    .counter-txt .counter {
        font-size: 90px;
        line-height: 95px;
    }

    .team-box {
        gap: 10px;
    }

    section.quote-sec {
        padding: 40px 0;
    }

    .ftr_logo {
        padding: 49px 40px;
    }

    /* Home css Ends */


}

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


    .sec {
        padding: 50px 0;
    }

    .heading {
        margin: 0 0 40px 0;
    }

    .heading p {
        width: 100%;
    }

    /* Fonts css Starts */

    h1 {
        font-size: 60px;
        line-height: 65px;
    }

    h2 {
        font-size: 50px;
        line-height: 55px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    /* Fonts css Ends */



    /* Buttons css Starts */

    .theme1,
    .theme2 {
        padding: 0 30px;
    }

    /* Buttons css Ends */




    /* Home css Starts */

    header {
        position: relative;
        background: linear-gradient(57deg, rgb(214 180 143 / 92%) 0%, rgb(199 126 49 / 67%) 100%);
    }

    .menu-box ul {
        gap: 5px;
    }

    .menu-box ul li a {
        padding: 0 2px;
        font-size: 10px;
    }

    .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .banner_text {
        width: 100%;
        gap: 10px;
    }

    section.main_slider .carousel-item {
        height: 600px;
    }

    .banner-socials {
        bottom: 15%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .banner-socials ul li h6 {
        height: 30px;
        width: 30px;
    }

    .carousel-indicators {
        margin-bottom: 2rem;
    }

    .carousel-indicators [data-bs-target] {
        height: 10px;
        width: 10px;
    }

    .carousel-indicators .active::before {
        height: 30px;
        width: 30px;
    }

    .banner-numbers ul {
        top: 20%;
        right: 1%;
        gap: 20px;
        height: 2%;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    section.portfolio-sec {
        padding: 40px 0;
    }

    .portfolio-heading {
        gap: 10px;
        margin: 0 0 40px 0;
    }

    .portfolio-card-img img {
        height: 400px !important;
        width: 100% !important;
        object-position: 0 0;
    }

    .portfolio-card {
        gap: 10px;
        margin: 20px 0;
    }

    .portfolio-card-txt h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .portfolio-card-box {
        gap: 20px;
    }

    .portfolio-card-main {
        width: 100%;
    }

    .portfolio-card-img {
        width: 100%;
    }

    .video-box-img img {
        height: 300px;
    }

    .video-box-play {
        height: 150px;
        width: 150px;
    }

    .video-box-play a h6 {
        font-size: 12px;
        line-height: 20px;
    }

    section.video-sec::after {
        display: none;
    }

    .video-counter {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .video-counter p {
        margin: 0 auto;
        right: 0;
    }

    .counter-txt .counter {
        font-size: 90px;
        line-height: 95px;
    }

    .team-box {
        gap: 10px;
    }

    section.quote-sec {
        padding: 40px 0;
    }

    .ftr_logo {
        padding: 20px;
        border-left: none;
    }

    .ftr_box::before {
        height: 1px;
        width: 100%;
        top: 0;
    }

    .ftr_box1::after {
        display: none;
    }

    .ftr_box {
        padding: 20px;
        height: 100%;
    }

    .ftr-right-bar::before {
        display: none;
    }

    .bar {
        color: #fff;
        margin: 0 0 20px 0;
        padding: 0;
    }

    ul.services {
        column-count: 1;
    }

    ul.services a {
        margin: 10px 0;
    }

    .ftr_logo a img {
        width: 40%;
    }

    /* Home css Ends */


}

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

    .sec {
        padding: 40px 0;
    }

    .heading {
        margin: 0 0 30px 0;
    }

    .heading p {
        width: 100%;
    }

    /* Fonts css Starts */

    h1 {
        font-size: 40px;
        line-height: 45px;
    }

    h2 {
        font-size: 40px;
        line-height: 45px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    /* Fonts css Ends */



    /* Buttons css Starts */

    .theme1,
    .theme2 {
        padding: 0 20px;
    }

    .theme1 span.theme1-txt,
    .theme2 span.theme2-txt {
        font-size: 12px;
        line-height: 20px;
    }

    /* Buttons css Ends */




    /* Home css Starts */

    header {
        position: relative;
        background: linear-gradient(57deg, rgb(214 180 143 / 92%) 0%, rgb(199 126 49 / 67%) 100%);
    }

    .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .header-btn {
        justify-content: center;
    }

    .banner_text {
        width: 100%;
        gap: 10px;
    }

    .banner_text p {
        width: 100%;
    }

    section.main_slider .carousel-item {
        height: 600px;
    }

    .banner-socials {
        bottom: 15%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .banner-socials ul li h6 {
        height: 30px;
        width: 30px;
    }

    .carousel-indicators {
        margin-bottom: 2rem;
    }

    .carousel-indicators [data-bs-target] {
        height: 10px;
        width: 10px;
    }

    .carousel-indicators .active::before {
        height: 30px;
        width: 30px;
    }

    .banner-numbers ul {
        top: 20%;
        right: 1%;
        gap: 20px;
        height: 2%;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    section.portfolio-sec {
        padding: 40px 0;
    }

    .portfolio-heading {
        gap: 10px;
        margin: 0 0 40px 0;
    }

    .portfolio-card-img img {
        height: 400px !important;
        width: 100% !important;
        object-position: 0 0;
    }

    .portfolio-card {
        gap: 10px;
        margin: 20px 0;
    }

    .portfolio-card-txt h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .portfolio-card-box {
        gap: 20px;
    }

    .portfolio-card-main {
        width: 100%;
    }

    .portfolio-card-img {
        width: 100%;
    }

    .video-box-img img {
        height: 300px;
    }

    .video-box-play {
        height: 150px;
        width: 150px;
    }

    .video-box-play a h6 {
        font-size: 12px;
        line-height: 20px;
    }

    section.video-sec::after {
        display: none;
    }

    .video-counter {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .video-counter p {
        margin: 0 auto;
        right: 0;
    }

    .counter-txt .counter {
        font-size: 90px;
        line-height: 95px;
    }

    .team-box {
        gap: 10px;
    }

    section.quote-sec {
        padding: 40px 0;
    }

    .ftr_logo {
        padding: 20px;
        border-left: none;
    }

    .ftr_box::before {
        height: 1px;
        width: 100%;
        top: 0;
    }

    .ftr_box1::after {
        display: none;
    }

    .ftr_box {
        padding: 20px;
        height: 100%;
    }

    .ftr-right-bar::before {
        display: none;
    }

    .bar {
        color: #fff;
        margin: 0 0 20px 0;
        padding: 0;
    }

    ul.services {
        column-count: 1;
    }

    ul.services a {
        margin: 10px 0;
    }

    .ftr_logo a img {
        width: 60%;
    }

    /* Home css Ends */

}

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

    .sec {
        padding: 20px 0;
    }

    .heading {
        margin: 0 0 20px 0;
    }

    .heading p {
        width: 100%;
    }

    /* Fonts css Starts */

    h1 {
        font-size: 30px;
        line-height: 35px;
    }

    h2 {
        font-size: 40px;
        line-height: 45px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    /* Fonts css Ends */



    /* Buttons css Starts */

    .theme1,
    .theme2 {
        padding: 0 20px;
    }

    .theme1 span.theme1-txt,
    .theme2 span.theme2-txt {
        font-size: 12px;
        line-height: 20px;
    }

    /* Buttons css Ends */




    /* Home css Starts */

    header {
        position: relative;
        background: linear-gradient(57deg, rgb(214 180 143 / 92%) 0%, rgb(199 126 49 / 67%) 100%);
    }

    .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .header-btn {
        justify-content: center;
    }

    .banner_text {
        width: 100%;
        gap: 10px;
    }

    .banner_text p {
        width: 100%;
    }

    section.main_slider .carousel-item {
        height: 600px;
    }

    .banner-socials {
        bottom: 15%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .banner-socials ul li h6 {
        height: 30px;
        width: 30px;
    }

    .carousel-indicators {
        margin-bottom: 2rem;
    }

    .carousel-indicators [data-bs-target] {
        height: 10px;
        width: 10px;
    }

    .carousel-indicators .active::before {
        height: 30px;
        width: 30px;
    }

    .banner-numbers ul {
        top: 20%;
        right: 1%;
        gap: 20px;
        height: 2%;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    section.portfolio-sec {
        padding: 20px 0;
    }

    .portfolio-heading {
        gap: 10px;
        margin: 0 0 20px 0;
    }

    .portfolio-card-img img {
        height: 400px !important;
        width: 100% !important;
    }

    .portfolio-card {
        gap: 10px;
        margin: 20px 0;
    }

    .portfolio-card-txt h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .portfolio-card-box {
        gap: 20px;
    }

    .video-box-img img {
        height: 300px;
        object-position: -150px 0;
    }

    .video-box-play {
        height: 150px;
        width: 150px;
    }

    .video-box-play a h6 {
        font-size: 12px;
        line-height: 20px;
    }

    section.video-sec::after {
        display: none;
    }

    .video-counter {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .video-counter p {
        margin: 0 auto;
        right: 0;
    }

    .counter-txt .counter {
        font-size: 90px;
        line-height: 95px;
    }

    .team-box {
        gap: 10px;
    }

    section.quote-sec {
        padding: 40px 0;
    }

    .ftr_logo {
        padding: 20px;
    }

    .ftr_box {
        padding: 20px;
        height: 100%;
    }

    .ftr-right-bar::before {
        display: none;
    }

    .bar {
        font-size: 20px;
        line-height: 25px;
        color: #fff;
        margin: 0 0 20px 0;
        padding: 0;
    }

    ul.services {
        column-count: 1;
    }

    ul.services a {
        margin: 10px 0;
    }

    /* Home css Ends */


}


/*Media Query End*/


[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
}
.form-box input[type="checkbox"] {
    width: auto;
    margin: 0;
}

 .potfolio-banner {
      display: flex;
      height: 85vh;
      width: 100%;
      position: relative;
      background-image: url('https://cmscustom-staginglink2.com/timeless-look/wp/wp-content/uploads/2025/08/catchmotionstudio-102.jpg');
    }
     .banner-left {
      width: 30%;
      background: rgb(255 255 255 / 72%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 2;
      padding-left: 2rem;
    }

    .banner-left small {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .banner-left h2 {
      font-size: 2rem;
      font-weight: 400;
      cursor: pointer;
      transition: color 0.3s;
    }

    .banner-left h2:hover {
      color: #c49a6c;
    }

    /* Right Panel (Fixed Backgrounds) */
    .banner-right {
      width: 70%;
      height: 85vh;
      position: relative;
      overflow: hidden;
    }

    .banner-right .bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    .banner-right .bg.active {
      opacity: 1;
    }

    .banner-left {
      position: relative;
      z-index: 10;
    }
    
    section.testimonial .row {
    align-items: center;
}

.top-head {
    margin-bottom: 40px;
}

.testi-box ul {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
}

.testi-box {
    padding: 20px;
    background: #fff;
    width: 100%;
    z-index: 99;
    position: relative;
    border-radius: 7px;
    box-shadow: 0 0 10px #00000024;
}

.testi-slider .slick-dots {
    bottom: -40px;
}

.testi-box ul li span {
    width: 190px;
    display: block;
    border-radius: 5px;
}

.testi-box ul li span img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.testi-box ul li i {
    color: #f9ae0e;
    margin-bottom: 10px;
}

.testi-img img {
    width: 100%;
}
section.testimonial {
    /* padding-top: 80px; */
    background-image: url(https://cmscustom-staginglink2.com/timeless-look/wp/wp-content/uploads/2025/08/testimonial-back.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}
section.testimonial .row {
    justify-content: center;
}

.testi-slider {
    width: 100%;
}

.testi-slider .slick-dots li button {
    background: #bec6bd;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.testi-slider .slick-dots li button:before {
    display: none;
}

.testi-slider .slick-dots li {
    width: auto;
    height: auto;
}


.testi-slider .slick-dots li.slick-active button {
    width: 40px;
    height: 10px;
    border-radius: 10px;
    background: #d6b48f;
    opacity: 1;
}

.testi-slider .slick-dots li.slick-active {
    opacity: 1;
}
.testi-box ul li {
    list-style: none;
}
.testi-slider .slick-slide {
    margin: 20px 20px;
}
section.portfolio-sec.inner-portfolio.sec {
    background-image: url(https://cmscustom-staginglink2.com/timeless-look/wp/wp-content/uploads/2025/08/portfolio-back-1.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}
section.projects.pt-8.pb-8::before {
    position: absolute;
    content: '';
    background: #00000078;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
section.projects.pt-8.pb-8 {
    background-image: url(https://cmscustom-staginglink2.com/timeless-look/wp/wp-content/uploads/2025/08/project-back-new.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.innerproject-sec.pt-8.pb-8 {
    padding-top: 210px !important;
}
.inner-portfolio.sec {
    padding-top: 170px !important;
    position: relative;
    z-index: 1;
}
section.portfolio-sec.inner-portfolio.sec::after {
    position: absolute;
    content: '';
    background: #00000054;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
@keyframes bgZoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 120%; /* Zoom in */
  }
  100% {
    background-size: 100%; /* Zoom out */
  }
}
section.portfolio-sec.inner-portfolio.sec h2 {
    color: #000;
}

section.portfolio-sec.inner-portfolio.sec h4 {
    color: #000;
}

section.portfolio-sec.inner-portfolio.sec h6 {
    color: #000;
}
.port-main-img {
    margin-bottom: 18px;
}
.portfol-img2 img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}
.port-main-img portfol-img1 a img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

section.portfolio-sec.inner-portfolio.sec.new-ban-chng-port {
    background: #fff;
}



section.portfolio-sec.inner-portfolio.sec.new-ban-chng-port::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 57%;
    background-color: #f4f0ed;
    z-index: -1;
}
section.portfolio-sec.inner-portfolio.sec.new-ban-chng-port h6{
    color:#000;
}
section.portfolio-sec.inner-portfolio.sec.new-ban-chng-port h4{
    color:#000;
}
img.img-fluid.main-banner-img.portfolio-mainban-img {
    object-position: top;
}

.gallery-card a i {
    position: absolute;
    top: 41%;
    border: 1px solid #000;
    padding: 18px 10px;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    text-align: center;
    font-size: 20px;
    height: 60px;
    color: #000;
    background: #000;
    color: #fff;
}
.gallery-card {
    position: relative;
}