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

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

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

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

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

@font-face {
    src: url('../fonts/VisbyMedium.otf');
    font-family: 'VisbyMedium';
}

@font-face {
    src: url('../fonts/VisbyRegular.otf');
    font-family: 'VisbyRegular';
}

@font-face {
    src: url('../fonts/VisbySemibold.otf');
    font-family: 'VisbySemibold';
}

.aos-init {
    transition: 0.3s;
}

.wow,
.animated {
    animation-duration: 2s !important;
}

html {
    width: 100%;
}

body {
    color: #000;
    background: #fff;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

p,
li {
    font-size: 16px;
    line-height: 35px;
    font-family: 'Poppins-Regular';
}

a,
a:hover {
    font-size: 18px;
    text-decoration: none;
    color: unset;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    line-height: normal;
}

.row {
    align-items: center;
}

section {
    width: 100%;
    float: left;
    padding: 50px 0;
    position: relative;
    background: #F6F6F6;
    overflow: hidden;
}

img {
    width: 100%;
}

/* button */
.common-btn a {
    display: inline-block;
    color: #000;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 18px;
    padding: 3px 3px 3px 20px;
    border-radius: 50px;
    line-height: normal;
    font-family: 'Poppins-Regular';

}

.common-btn a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -2;
    border: 2px solid transparent;
}

.common-btn a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #CAA05C;
    color: #000;
    transition: all 0.3s;
    z-index: -1;
}

.common-btn a:hover {
    color: #fff;
    border: 2px solid #FFF;
}

.common-btn a:hover:before {
    width: 100%;
}


.common-btn a i {
    color: #fff;
    background: #CAA05C;
    padding: 16px 17px;
    border-radius: 50px;
    transform: rotate(-50deg);
    margin-left: 10px;
}

.common-btn a:hover i {
    transform: unset;
    margin-left: 20px;
    transition: all 0.3s;
    background: #fff;
    color: #CAA05C;
}


/* Navigation */
.mainsite-header nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    bottom: auto;
    justify-content: space-between;
    margin-top: 20px;
}

.mainsite-header nav .logo {
    width: 150px;
    height: auto;
}

.mainsite-header nav .links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
    padding: 0 !important;
}

.mainsite-header nav .links li {
    list-style: none;
}

/* Underline Effect Only for Text Links */
header.mainsite-header.clearHeader {
    margin-top: -3%;
}

.mainsite-header nav .links a:not(:has(img)) {
    display: block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    position: relative;
    font-family: 'VisbyMedium';
}

header.mainsite-header.clearHeader.darkHeader nav {
    background: #fff;
    margin: 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 15%);
}


/* Hover Effect for Text Links */
.mainsite-header nav .links a:not(:has(img))::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #43B317;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.mainsite-header .dropdown-parent span::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 55%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}



.mainsite-header .dropdown-parent:hover span::before {
    transform: rotate(180deg);
    top: -10%;
}

.mainsite-header nav .links a span {
    position: relative;
}

.mainsite-header .dropdown-parent .dropdown a::after {
    display: none;
}

.mainsite-header nav .links a img {
    width: 40px;
    height: 40px;
}

.mainsite-header .links li {
    position: relative;
    margin: 0 10px;
}

.mainsite-header .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    color: #000;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.mainsite-header .dropdown-parent:hover .dropdown {
    display: block;
}

header.mainsite-header img {
    width: 80%;
}

.mainsite-header nav .links a span {
    position: relative;
}

.mainsite-header.darkHeader nav .links a:not(:has(img)),
.mainsite-header.darkHeader .dropdown-parent span::before {
    color: #000;
}

.mainsite-header nav .dropdown li a {
    color: #000;
}

.mainsite-header .contact_us a {
    font-size: 18px;
    letter-spacing: 0px;
    text-align: center;
    background: #CAA05C;
    color: #fff;
    padding: 15px 25px;
    font-family: 'VisbyMedium';
}

/* Mobile specific styles */
.mainsite-header #nav-toggle {
    display: none;
}

.mainsite-header nav .icon-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.mainsite-header nav .icon-burger .line {
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 3px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}


/* footer */


/* main css */
.splitting .char {
    animation: slide-in .1s cubic-bezier(.5, 0, .5, 1) both;
    animation-delay: calc(.25s + (120ms * var(--char-index)));
}

@keyframes slide-in {
    from {
        transform: translateX(-3em) translateY(-1.5em) rotate(-135deg) scale(0.5);
        opacity: 0;
    }
}

.banner_section .banner_top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    color: #fff;
    margin-bottom: 130px;
}

section.p-0.banner_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #0000007a;
}

.banner_section .banner_mainrow {
    display: flex;
    gap: 20px;
    align-items: center;
}

.banner_section .banner_cont {
    width: 78%;
}

.banner_section .banner_imgs {
    width: 22%;
}


.banner_section .banner_cont h1 {
    font-family: 'Poppins-SemiBold';
    font-weight: 600;
    line-height: 68px;
    letter-spacing: 0px;
    color: #fff;
}

.banner_section .banner_cont h1 span {
    color: #CAA05C;
}

.banner_section .banner_cont p {
    font-family: 'Poppins-Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin: 30px 0;
}

.banner_section .banner_cont .banner_contlft {
    width: 70%;
    margin-right: 10px;
}

.banner_section .banner_cont .banner_cont_img {
    width: 30%;
    margin-top: -50px;
}


/* 11-09-25 */

.estimation_sec .design_cost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.design_cost .estimate_img {
    width: 40%;
    text-align: center;
}


section.estimation_sec {
    background: #CAA05C;
    color: #fff;
}

.estimate_cont h3 {
    font-family: 'Poppins-SemiBold';
}

.estimate_img .common-btn a {
    color: #CAA05C;
    font-size: 20px;
}

.estimate_img .common-btn a:hover {
    color: #fff;
}

.estimate_cont p {
    font-family: 'Poppins-Regular';
}

/* who we are */

section .safetop_main {
    padding: 70px 0 30px;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 2;
}

section .safetop_main .safetop_lft {
    width: 30%;
    position: relative;
}

section.safe_project .safetop_lft::before {
    position: absolute;
    content: '';
    border-top: 2px solid #d9d9d991;
    width: 110%;
    top: -10%;
    border-image: unset;
}
.how_wework p.common-btn {
    text-align: center;
}

section.safe_project .safetop_lft::after {
    position: absolute;
    content: '';
    border-right: 2px solid #d9d9d991;
    height: 80%;
    top: -22%;
    right: 10%;
    border-image: unset;
}

.safetop_main .safetop_lft p {
    margin-top: 10px;
}

.safetop_main .safetop_ryt {
    width: 70%;
}

.safetop_main .safetop_ryt h2 {
    font-family: 'Poppins-SemiBold';
    width: 100%;
    font-size: 55px;
    Line-height: 60px;
}

.safetop_main .safetop_ryt h2 span {
    color: #CAA05C;
}

.safetop_ryt h4 {
    font-family: 'Poppins-Regular';
    font-size: 18px;
    color: #000;
    line-height: 22.8px;
    margin-top: 18px;
    font-weight: 600;
}

.video_sec {
    padding: 30px 0;
}
.safetop_main .safetop_ryt p {
    font-family: 'Poppins-Regular';
    width: 75%;
    font-size: 15px;
    color: #848484;
    line-height: 22.8px;
    margin-top: 30px;

}

.safetop_main .safetop_lft p span {
    font-family: 'Poppins-Regular';
    font-size: 14px;
    line-height: 29.8px;
    letter-spacing: 0px;
    text-transform: capitalize;
    border: 1px solid #D9D9D9;
    padding: 3px 10px;
    border-radius: 40px;
}

.safetop_main .safetop_lft p span i {
    color: #CAA05C;
    font-size: 6px;
    margin-right: 3px;
    transform: translateY(-2px);
}



/* top sectiom */

section.safe_project::before {
    position: absolute;
    content: '';
    background-image: url(../img/sec2_bg.png);
    background-repeat: no-repeat;
    background-position: top right;
    width: 60%;
    height: 60%;
    z-index: 1;
    background-size: 100% 100%;
    right: -8%;
    top: 0;
}

section.safe_project {
    overflow: hidden;
}

.current_lft h5 {
    font-size: 20px;
    font-family: 'Poppins-SemiBold';
}

.safe_project .project_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.safe_project .project_list .item {
    background: #fff;
}

.safe_project .project_list .item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
}

.safe_project .project_list .item p {
    color: #848484;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1.7px solid #000;
    font-size: 14px;
}

.project_list .item .current_img img {
    width: 78%;
}

/* motive section */
section.motation_sec {
    background-image: url(../img/motive_banner.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}


/* .motation_sec .motation_topsec {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
} */

.motive_lft .safetop_lft p span {
    font-family: 'Poppins-Regular';
    font-size: 14px;
    line-height: 29.8px;
    letter-spacing: 0px;
    text-transform: capitalize;
    border: 1px solid #fff;
    padding: 3px 10px;
    border-radius: 40px;
}

.motive_lft .safetop_lft p span i {
    color: #CAA05C;
    font-size: 6px;
    margin-right: 3px;
    transform: translateY(-3px);
}

.motive_lft h2 {
    font-family: 'Poppins-SemiBold';
    width: 100%;
    font-size: 55px;
    Line-height: 60px;
    margin: 30px 0;
}


.motive_lft h2 span {
    color: #CAA05C;
}

.motive_lft p {
    line-height: 32px;
    font-size: 16px;
    width: 95%;
    letter-spacing: 0px;
    margin-bottom: 25px;
    font-family: 'Poppins-Regular';
}

.motive_lft p.common-btn a:after {
    background-color: transparent;
}

.motive_lft p.common-btn a {
    border: 1.5px solid #fff;
    color: #fff;
    padding: 4px 4px 4px 20px;
}

/*  */

.safetop_main .safetop_lft::before {
    position: absolute;
    content: '';
    border: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(117, 117, 117, 0.685374) 19.23%, rgba(115, 115, 115, 0.7) 60.23%, rgba(217, 217, 217, 0) 100%) 1;
    width: 110%;
    top: -10%;
}

.safetop_main .safetop_lft::after {
    position: absolute;
    content: '';
    border: 1px solid transparent;
    border-image: linear-gradient(0deg, rgba(217, 217, 217, 0) 0%, rgba(117, 117, 117, 0.685374) 19.23%, rgba(115, 115, 115, 0.7) 60.23%, rgba(217, 217, 217, 0) 100%) 1;
    height: 140%;
    top: -40%;
    right: 10%;
}


section.how_wework::before {
    position: absolute;
    content: '';
    background-image: url(../img/work_bg.png);
    background-repeat: no-repeat;
    background-position: top right;
    width: 30%;
    height: 60%;
    z-index: 1;
    background-size: 100% 100%;
    right: 0%;
    top: 0;
}

.we_workslide .item {
    background: #FFFFFF;
    padding: 10px 10px 60px;
    border-radius: 22px;
    box-shadow: 4px 4px 34px 0px #00000005;
    position: relative;
}

.we_workslide .item img {
    border-radius: 16px;
}

.we_workslide .item .item_cont {
    padding: 15px;
}

.we_workslide .item .item_cont h3 {
    line-height: 31.8px;
    letter-spacing: 0px;
    font-family: 'Poppins-SemiBold';
    font-size: 22px;
}

.we_workslide .item .item_cont p {
    letter-spacing: 0px;
    color: #BABABA;
    font-family: 'Poppins-Regular';
}

.we_workslide .item h5 {
    position: absolute;
    bottom: 5%;
    right: 6%;
    font-family: 'Poppins-SemiBold';
    font-size: 60px;
    line-height: 31.8px;
    letter-spacing: -3px;
    vertical-align: middle;
    color: #E3E3E8;
}

.we_workslide button i {
    border: 1px solid #CAA05C;
    color: #CAA05C;
    padding: 20px;
    margin-right: 20px;
    font-size: 20px;
}

.we_workslide button:hover i {
    border: 1px solid #CAA05C;
    background: #CAA05C;
    color: #fff;
}

.we_workslide .owl-nav {
    position: absolute;
    top: -5%;
}

section .we_workslide {
    padding-top: 60px;
}

.talk_wework p.common-btn a {
    border: 1px solid #000;
    padding: 5px 5px 5px 20px;
}

/* Completed Porject */
section.completed_project {
    background: #fff;
}


section.completed_project::before {
    position: absolute;
    content: '';
    background-image: url(../img/mordern_bg1.png);
    background-repeat: no-repeat;
    background-position: top right;
    width: 22%;
    height: 35%;
    z-index: 1;
    background-size: 100% 100%;
    left: 0%;
    top: 8%;
}

section.completed_project::after {
    position: absolute;
    content: '';
    background-image: url(../img/mordern_bg2.png);
    background-repeat: no-repeat;
    background-position: top right;
    width: 30%;
    height: 35%;
    z-index: 1;
    background-size: 100% 100%;
    right: 0%;
    top: 10%;
}

.completed_slider .item img {
    border-radius: 0px;
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 400px;
}

.completed_slider .item .item_project {
    padding: 20px 0;
    width: 50%;
}


.completed_slider .item .item_project p {
    letter-spacing: 0px;
    color: #BABABA;
    font-family: 'Poppins-Regular';
    font-size: 15px;
    padding: 10px 0;
}

.completed_slider .item .item_project h3 {
    line-height: 31.8px;
    letter-spacing: 0px;
    font-family: 'Poppins-SemiBold';
    font-size: 20px;
}

.completed_slider .item .item_project h5 {
    line-height: 27.8px;
    letter-spacing: 0px;
    font-family: 'Poppins-Regular';
    font-size: 15px;
    color: #848484;
}
.completed_slider .item {
    display: flex;
    gap: 20px;
    background: #F6F6F6;
    padding: 20px;
}
/* Services */
.faq-section .faqs-container {
    overflow: hidden;
    border-radius: 5px;
    margin-top: 10px;
}

section.client_says::before {
    position: absolute;
    content: '';
    background-image: url(../img/mordern_bg1.png);
    background-repeat: no-repeat;
    background-position: top right;
    width: 22%;
    height: 35%;
    z-index: 1;
    background-size: 100% 100%;
    left: 0%;
    top: 8%;
}


.faqrow-main:last-child {
    border-bottom: 0px;
}

.faq-section .faq-singular:first-child {
    margin-top: 2px;
}

.faq-section .faq-singular:last-child {
    border-bottom: 1px solid #00000008;
    margin-bottom: 2px;
}

.faq-section .faq-singular:hover {
    background: #fff;
}

.faq-section .faq-singular {
    position: relative;
    border: 1px solid #00000008;
    padding: 20px 40px 20px 20px;
    width: 100%;
    border-bottom: 0;
}

.faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 10px;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Poppins-SemiBold';
}

.faq-singular .faq-question:before {
    position: absolute;
    color: #000;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: all .5s;
    border-radius: 50px;
    padding: 4px 10px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.faq-singular.active .faq-question:before {
    transform: translateY(-50%) rotate(180deg) scale(1.3);
    padding: 0px 7px;
    font-size: 20px;
}

.faqs-container .faq-answer {
    display: none;
    padding: 20px 0px 20px 30px;
    color: #848484;
    font-family: 'Poppins-Regular';
}

.client_knowsryt .faq-singular {
    border-bottom: 1px solid #A2A2A2;
    padding: 20px 10px;
}

.client_knowsryt .faq-singular .faq-question:before {
    font-size: 20px;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: translateY(-50%) rotate(-45deg);
    background: transparent;
    color: #000;
    padding: 10px 12px;
    right: 0;
}

.client_knowsryt .faq-singular.active .faq-question:before {
    transform: translateY(-50%) rotate(0deg) scale(1.3);
    background: #CAA05C;
    color: #fff;
    font-size: 14px;
    padding: 2px 12px;
}

.client_knowsryt h2.faq-question {
    line-height: 31.8px;
    letter-spacing: 0px;
    font-family: 'Poppins-SemiBold';
    font-size: 25px;
}

.client_knowsryt h2.faq-question span {
    font-family: 'Poppins-SemiBold';
    font-size: 18px;
    margin-right: 20px;
    color: #848484;
}

.client_knowsryt .faq-singular.active h2.faq-question span,
.client_knowsryt .faq-singular.active h2.faq-question {
    color: #CAA05C;
}

.client_knowsryt .faq-singular .faq-answer {
    font-family: 'Poppins-Regular';
    font-size: 15px;
    color: #848484;
    line-height: 27.8px;
    padding-bottom: 0;
}

.client_knows .client_knowslft {
    position: relative;
}

.client_knows .client_knowslft p {
    position: absolute;
    background: #00000063;
    color: #fff;
    backdrop-filter: blur(11px);
    padding: 20px;
    width: 90%;
    left: 0;
    right: 0;
    bottom: 4%;
    margin: auto;
    border-radius: 10px;
    font-family: 'Poppins-Regular';
}

.client_knows .client_knowslft img {
    border-radius: 20px;
}

/* testmonials */
section.testmonials_sec {
    background: #fff;
}

.testmonial_cont .star_rating {
    width: 35%;
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.testmonial_cont .star_rating h3 {
    font-family: 'Poppins-SemiBold';
    font-size: 55px;
    Line-height: 60px;
}

.testmonial_cont .star_rating .starts {
    background: #CAA05C;
    text-align: center;
    padding: 0px 14px 3px;
    line-height: normal;
    border-radius: 40px;
    color: #fff;
    font-size: 12px;
}

.testmonial_cont .star_rating .starts i {
    font-size: 10px;
    line-height: normal;
}

.testmonial_cont .star_rating .subcont_rev p {
    letter-spacing: 0px;
    color: #848484;
    font-family: 'Poppins-Regular';
    font-size: 14px;
    padding: 3px 0;
}

.testmonial_cont .review_subtext {
    width: 65%;
}

.testmonial_cont .review_subtext p {
    letter-spacing: 0px;
    color: #848484;
    font-family: 'Poppins-Regular';
    font-size: 14px;
}

.testmonial_cont .testmonial_slide p {
    font-family: 'Poppins-SemiBold';
    font-style: Italic;
    font-size: 20px;
    margin: 20px 0;
    letter-spacing: 0px;
    color: #333333;
    line-height: 40px;
}

.testmonial_cont .testmonial_slide .item img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.testmonial_slide .client_detail h4 {
    font-family: 'Poppins-SemiBold';
    font-size: 20px;
}

.testmonial_slide .client_detail h6 {
    color: #848484;
    font-family: 'Poppins-Regular';
    font-size: 16px;
}

.testmonial_row .testmonial_img img {
    border-radius: 20px;
}

.testmonial_row .owl-nav i {
    border: 1px solid #CAA05C;
    color: #CAA05C;
    padding: 20px;
    margin-right: 20px;
    font-size: 20px;
}

.testmonial_row .owl-nav i:hover {
    background: #CAA05C;
    color: #fff;
}

.testmonial_row .owl-nav {
    display: flex;
    justify-content: right;
}

/* trust and transparency */

section.trust_tepansparency {
    background: #fff;
}

.trust_hipoditem .item_trustcont h3 {
    font-family: 'Poppins-Medium';
    font-size: 25px;
}

.trust_hipoditem .item_trustcont p {
    font-family: 'Poppins-Regular';
    font-size: 15px;
    color: #848484;
    margin: 10px 0 0;
}

.trust_hipoditem .item_trustcont {
    background: #F6F6F6;
    padding: 30px;
}

.trust_tepansparency .trust_hipodmain {
    position: relative;
}

.trust_tepansparency .trust_hipodmain h4.trust_vs {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust_tepansparency .trust_hipodmain h4.trust_vs span {
    background: #CAA05C;
    color: #fff;
    padding: 20px 28px;
    border-radius: 52px;
    line-height: normal;
    font-family: 'Poppins-Regular';
    font-size: 35px;
    position: relative;
    z-index: 2;
}

.trust_tepansparency .trust_hipod.row {
    position: relative;
    z-index: 2;
}

/* Get in Touch */

section.get-intouch {
    background-image: url(../img/start_ready.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

.patner_getmain h2 {
    font-family: 'Poppins-SemiBold';
    line-height: 40px;
    letter-spacing: 0%;
}

.patner_getmain p {
    font-family: 'Poppins-Regular';
    font-size: 16px;
    margin: 10px 0 0;
    width: 80%;
}

.get_incont .get_contact {
    margin-top: 40px;
}

.patner_getmain .get_inform h3 {
    font-family: 'Poppins-SemiBold';
    font-size: 30px;
}

.patner_getmain .get_inform p {
    margin: 0;
}

.patner_getmain .get_contact h3 {
    color: #CAA05C;
    font-family: 'VisbySemibold';
    font-size: 25px;
}

.patner_getmain .get_contact p {
    display: flex;
    gap: 10px;
}

.patner_getmain .get_contact p img {
    width: 22px;
}

.patner_getmain .get_inform {
    background: #CAA05C;
    padding: 30px;
    border-radius: 30px;
}

.patner_getmain .get_inform form input,
.patner_getmain .get_inform form textarea {
    width: 100%;
    margin-bottom: 10px;
    background: transparent;
    border: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 30px 5px 10px;
    font-family: 'Poppins-Regular';
}

.patner_getmain .get_inform form textarea {
    height: 100px;
}

.get_inform form p {
    width: 100%;
}

.patner_getmain .get_inform form input::placeholder,
.patner_getmain .get_inform form textarea::placeholder {
    color: #fff;
}

form input:focus-visible,
form textarea:focus-visible {
    overflow: unset;
    outline: unset;
}


.form-group small {
    display: none;
    color: red;
    font-size: 0.85rem;
    margin-top: 4px;
}
select.wpcf7-form-control.wpcf7-select.project {
    width: 100%;
    padding: 11px 20px;
    border-radius: 0;
    border: 1px solid #00000073;
    font-family: 'VisbyMedium';
    margin-bottom: 15px;
    border-radius: 3px;
}
/* Placeholder (first option) when nothing is selected */
select.project:invalid {
    color: #ccc !important;
}

/* Actual selected text after choosing an option */
select.project {
    color: #000 !important;
}

/* Dropdown list options */
select.project option {
    color: #000;
}

/* Placeholder option inside dropdown */
select.project option[value=""] {
    color: #ccc;
}
.get-intouch select.project {
    background: transparent;
    border: 0 !important;
    color: #fff !important;
    border-bottom: 1px solid #fff !important;
    padding: 10px 5px !important;
}
.get-intouch select option {
    background: #CAA05C;
    color: #fff !important;
    border: none !important;
}
/* Show error when .show-error class is applied */
.form-group input.invalid {
    border-color: red;
}

.form-group.show-error small {
    display: block;
}

.patner_getmain .get_inform .vs-btn.style7 {
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    border: 0;
    font-family: 'Poppins-Regular';
    font-size: 20px;
    background: #fff;
    color: #000;
}

/* footer */
footer.hipod_footer {
    width: 100%;
    float: left;
    padding: 50px 0 30px;
    position: relative;
    border-bottom: 1px solid #A8A9A9;
}

.footer_main .footer_item img {
    width: 100px;
    margin-bottom: 40px;
}

.footer_main .col-lg-4.footer_item p {
    width: 80%;
    margin: 0;
}

.hipod_footer .footer_main {
    align-items: start;
    text-align: left;
}

.footer_main .footer_item h4 {
    font-family: 'VisbySemibold';
    font-size: 20px;
    margin-bottom: 40px;
}

.footer_main .footer_item p a {
    font-family: 'Poppins-Regular';
    font-size: 15px;
    color: #5C5E5E;
}

.footer_main .footer_item p {
    margin-bottom: 20px;
	color: #000;
}

section.last_cpoyryt .copy_ryt {
    display: flex;
    justify-content: space-between;
}

section.last_cpoyryt .copy_ryt>div {
    display: flex;
    gap: 10px;
}

.last_cpoyryt .copy_ryt a {
    font-family: 'Poppins-Regular';
    font-size: 15px;
    color: #5C5E5E;
}

.last_cpoyryt .copy_ryt p {
    font-family: 'Poppins-Regular';
    font-size: 15px;
    color: #5C5E5E;
}

.completed_slider .owl-dots, .workcompleted_slider .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
        margin-top: 10px;
}

.completed_slider .owl-dots .owl-dot, .workcompleted_slider .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.completed_slider .owl-dots .owl-dot span, .workcompleted_slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    border-radius: 50%;
    transition: opacity 200ms ease;
}

.completed_slider .owl-dots .owl-dot.active span, .workcompleted_slider .owl-dots .owl-dot.active span {
    background: #869791;
}

section.sketch_sec {
    display: none;
    position: fixed;
    bottom: 0;
    padding: 10px 0 6px;
    backdrop-filter: blur(64px);
    background: #00000047;
    z-index: 3;
    color: #fff;
    width: 90%;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 5px 5px 0 0;
}

.sketch_sec .button-wrapper {
    position: relative;
}

section.sketch_sec .sketch_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sketch_sec .sketch_main h2 {
    font-family: 'Poppins-SemiBold';
    line-height: 40px;
    font-size: 23px;
}

.sketch_sec .button-wrapper span.label img {
    width: 18px;
}

.sketch_sec .uplode_sketch {
    width: 20%;
    text-align: center;
}

.sketch_sec .button-wrapper span.label {
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 100%;
    background: #FFFFFF;
    cursor: pointer;
    color: #CAA05C;
    font-size: 18px;
    padding: 12px 25px;
    font-family: 'Poppins-Medium';
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
}

.sketch_sec #upload {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

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

#loader_hipod img {
    width: 120px;
    height: auto;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
} */

/*#loader_hipod {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #CAA05C;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    overflow: hidden;*/
/*    z-index: 9999;*/
/*    perspective: 1200px;*/
/*    flex-direction: column;*/
/*}*/

/*.show-logo.close .door {*/
/*    background: #fff !important;*/
/*}*/

/* Doors */
/*#loader_hipod .door {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    width: 50%;*/
/*    height: 100%;*/
/*    background: #000;*/
/*    transition: transform 2s ease-in-out;*/
/*}*/

/*#loader_hipod .door.left {*/
/*    left: 0;*/
/*    transform-origin: left center;*/
/*}*/

/*#loader_hipod .door.right {*/
/*    right: 0;*/
/*    transform-origin: right center;*/
/*}*/

/* Logo (hidden by default) */
/*#loader_hipod .logo {*/
/*    display: none;*/
/*    z-index: 2;*/
    /* keep above doors */
/*}*/

/*#loader_hipod .logo img {*/
/*    width: 300px;*/
/*    height: auto;*/
/*    opacity: 0;*/
/*    transform: scale(0.8);*/
/*    transition: opacity 1s ease, transform 1s ease;*/
/*    animation: pulse 1.5s infinite;*/
/*}*/

/*#loader_hipod.show-logo .logo {*/
/*    display: block;*/
/*}*/

/*#loader_hipod.show-logo .logo img {*/
/*    opacity: 1;*/
/*    transform: scale(1);*/
/*}*/

/* Door animations */
/*#loader_hipod.open .door.left {*/
/*    transform: rotateY(-100deg);*/
/*}*/

/*#loader_hipod.open .door.right {*/
/*    transform: rotateY(100deg);*/
/*}*/

/*#loader_hipod.close .door.left {*/
/*    transform: rotateY(0deg);*/
/*}*/

/*#loader_hipod.close .door.right {*/
/*    transform: rotateY(0deg);*/
/*}*/

/*@keyframes pulse {*/
/*    0% {*/
/*        transform: scale(0.9);*/
/*        opacity: 0.7;*/
/*    }*/

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

/*    100% {*/
/*        transform: scale(0.9);*/
/*        opacity: 0.7;*/
/*    }*/
/*}*/

#loader_hipod {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #CAA05C;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    perspective: 1200px;
    flex-direction: column;
}

.show-logo.close .door {
    background: #fff !important;
}

/* Doors */
#loader_hipod .door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000;
    transition: transform 2s ease-in-out;
}

#loader_hipod .door.left {
    left: 0;
    transform-origin: left center;
}

#loader_hipod .door.right {
    right: 0;
    transform-origin: right center;
}

/* Logo (hidden by default) */
#loader_hipod .logo {
    display: none;
    z-index: 2;
}

#loader_hipod .logo img {
    width: 300px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
    animation: pulse 1.5s infinite;
}

#loader_hipod.show-logo .logo {
    display: block;
}

#loader_hipod.show-logo .logo img {
    opacity: 1;
    transform: scale(1);
}

/* Door animations */
#loader_hipod.open .door.left {
    transform: rotateY(-100deg);
}

#loader_hipod.open .door.right {
    transform: rotateY(100deg);
}

#loader_hipod.close .door.left {
    transform: rotateY(0deg);
}

#loader_hipod.close .door.right {
    transform: rotateY(0deg);
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

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

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}


section.estimate_tool {
    padding: 10rem 0 3rem;
}


.estimate_tool .wrap {
    margin: 0;
}

.book-constmain form input {
    width: 100%;
    padding: 11px 20px;
    border-radius: 0;
    border: 1px solid #00000073;
    font-family: 'VisbyMedium';
    margin-bottom: 15px;
    border-radius: 3px;
}

.book-constmain form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 11px 20px;
    border-radius: 0;
    height: 100px;
    border: 1px solid #00000073;
    font-family: 'VisbyMedium';
    border-radius: 3px;
}

.book-constmain .modal-header h3 {
    text-align: center;
    margin: auto;
    font-size: 25px;
    width: 100%;
    font-family: 'VisbySemibold';
}

.book-constmain .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.book-constmain form .from-btn input {
    background: #CAA05C;
    padding: 16px 37px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
    border: none;
    width: 100%;
    margin: 0;
}

.book-constmain .modal-header button {
    position: absolute;
    right: 2%;
    top: 3%;
    
}

button.btn.book_popbtn {
    border-radius: 3px 3px 0 0;
    font-size: 18px;
    letter-spacing: 0px;
    text-align: center;
    background: #CAA05C;
    color: #fff;
    padding: 8px 25px;
    font-family: 'VisbyMedium';
    position: fixed;
    top: 50%;
    z-index: 1;
    right: 0;
    transform: rotate(-90deg) translateY(6.8rem);
    border: 1px solid;
}

button.btn.book_popbtn:active {
    background: #CAA05C;
    color: #fff;
}

.whatsapp_btn a img {
    width: 30px;
}

.whatsapp_btn a {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.whatsapp_btn {
    position: fixed;
    display: none;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: #21D366;
    color: #fff;
    z-index: 2;
}

.whatsapp_btn a p {
    font-size: 14px;
    font-family: 'VisbySemibold';
}

/* new Section */
.work_new_section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}
.work_new_section .work_new_sub {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}
.number_work p {
    font-family: 'Poppins-SemiBold';
    width: 100%;
    font-size: 45px;
    Line-height: 45px;
    margin-bottom: 10px;
}
.work_new-conent h4 {
    color: #CAA05C;
    line-height: 31.8px;
    letter-spacing: 0px;
    font-family: 'Poppins-SemiBold';
    font-size: 20px;
    margin-bottom: 10px;
}
.work_new-conent p {
    font-family: 'Poppins-Regular';
    font-size: 15px;
    color: #848484;
    line-height: 22.8px;
    margin-top: 20px;
}
.estimate_cont {
    width: 75%;
}
.design_cost .estimate_img {
        width: 25%;
    }
    .project_list .item {
    width: 100%;
}

.page-template-home-php ul.links.d-none {
    display: flex !important;
}

.video_sec video {
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
}

.workcompleted_slider .item {
    background: #fff;
    padding: 20px;
    height: 350px;
    border-radius: 5px;
}

.workcompleted_slider .owl-dots {
    display: none;
}

.workcompleted_slider .owl-nav button {
    position: absolute;
    top: 50%;
}

.workcompleted_slider .owl-nav button i {
    background: #CAA05C;
    color: #fff;
    padding: 14px 15px;
    border-radius: 50px;
}

.workcompleted_slider .owl-nav .owl-prev {
    left: -5%;
}

.workcompleted_slider .owl-nav .owl-next {
    right: -5%;
}

.how_wework .workcompleted_slider {
    width: 90%;
    margin: auto;
}
/* responsive */
@media screen and (max-width: 2500px) {}

@media screen and (max-width: 1700px) {}


@media screen and (max-width: 1400px) {}


@media screen and (max-width: 1300px) {
    .mainsite-header nav {
    padding: 20px 1%;
    }
    .current_lft h5 {
        font-size: 17px;
        font-family: 'Poppins-SemiBold';
    }
    .workcompleted_slider .item {
        height: 360px;
    }
}

@media screen and (max-width: 1200px) {
    .design_cost .estimate_img {
        width: 52%;
    }
    .mainsite-header nav .links a:not(:has(img)) {
    font-size: 14px;
    }

    .safetop_main .safetop_ryt p {
        font-family: 'Poppins-Regular';
        width: 100%;
    }
    .mainsite-header .links li {
    margin: 0px;
}

    .safetop_main .safetop_ryt h2 {
        font-family: 'Poppins-SemiBold';
        width: 100%;
        font-size: 50px;
    }

    .patner_getmain .get_inform h3 {
        font-size: 25px;
    }

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

    .motive_lft p {
        line-height: normal;
    }

    .sketch_sec .uplode_sketch {
        width: 30%;
    }

    .banner_section .banner_top {
        margin-bottom: 50px;
    }

    .banner_section .banner_cont h1 {
        line-height: 58px;
        font-size: 40px;
    }
}


@media screen and (max-width: 1100px) {
    .mainsite-header nav .links a:not(:has(img)) {
        font-size: 15px;
        position: relative;
    }

    .testmonial_cont .testmonial_slide p {
        font-size: 17px;
        line-height: 30px;
    }

    .testmonial_cont .star_rating h3 {
        font-size: 45px;
        Line-height: 60px;
    }
}
@media screen and (max-width: 1024px) {
    .completed_slider .item {
    flex-direction: column;
}
.completed_slider .item img {
    width: 100%;
}
.completed_slider .item .item_project {
    width: 100%;
}
}

@media screen and (max-width: 992px) {
    .workcompleted_slider .owl-nav{
        display: none;
    }
    
    .workcompleted_slider .owl-dots {
        display: block;
    }
    .how_wework .workcompleted_slider {
        width: 100%;
        margin: auto;
    }
    .workcompleted_slider .owl-nav button i {
        background: #CAA05C;
        color: #fff;
        padding: 8px 9px;
        border-radius: 50px;
        font-size: 14px;
    }
    .work_new_section {
        grid-template-columns: 1fr 1fr; 
    }
    
    .mainsite-header nav {
        padding: 20px 3%;
    }
    .estimate_cont {
        width: 100%;
    }
    .design_cost .estimate_img {
        width: 100%;
    }
    
    #loader_hipod .logo img  {
        width: 200px;
    }
    section.sketch_sec {
        display: none;
    }

    .banner_section video {
        height: 550px;
        object-fit: cover;
    }

    .mainsite-header nav .links li.contac_inner {
        position: absolute;
        bottom: 3%;
        background: #CAA05C;
        text-align: center;
        padding: 10px;

    }

    .mainsite-header nav .links li.contac_inner a {
        color: #fff !important;
    }
    
    section.estimate_tool {
        padding: 50px 0;
    }

    .mainsite-header nav {
        justify-content: space-between;
        margin-top: 0;
        background: #fff;
    }

    .mainsite-header nav .links {
        position: fixed;
        z-index: 9;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 100%;
        flex-direction: column;
        background-color: #fff;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.5s ease-in-out;
        overflow: hidden;
        height: 0;
    }

    .mainsite-header nav .links a:not(:has(img)) {
        color: #000000;
    }

    .mainsite-header nav .links {
        gap: 0px;
        padding-left: 0;
    }

    .mainsite-header nav .icon-burger {
        display: flex;
    }

    nav .icon-burger .line {
        width: 30px;
    }

    .mainsite-header #nav-toggle:checked~.links {
        height: 92%;
        top: 4rem;
        padding: 30px 0 !important;
    }

    .mainsite-header .links li .dropdown li {
        padding: 0;
    }

    .mainsite-header .dropdown-parent span::before {
        right: -20px;
        color: #000;
        transition: all 0.3s;
    }

    .mainsite-header .dropdown-parent:hover span::before {
        top: -0.4rem;
    }

    /* Animate burger icon */
    .mainsite-header #nav-toggle:checked~.icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }

    .mainsite-header #nav-toggle:checked~.icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }

    .mainsite-header #nav-toggle:checked~.icon-burger .line:nth-child(2) {
        opacity: 0;
    }

    .element-number span {
        font-size: 65px;
    }

    section.counter-main {
        margin: 0px;
    }

    .mainsite-header #nav-toggle:checked~.links {
        display: flex;
    }

    .mainsite-header .dropdown {
        display: none;
        position: relative;
        top: 0%;
        width: 100%;
        left: -2%;
        background: #fff;
        color: #000;
        list-style: none;
        padding: 10px 0;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }

    .mainsite-header .links li {
        width: 100%;
        padding-left: 10px;
    }

    /* main css */
    .banner_section .banner_imgs {
        display: none;
    }

    .banner_section .banner_top {
        margin-bottom: 0;
        align-items: center;
        justify-content: center;
    }

    .banner_section .banner_cont,
    .banner_section .banner_cont .banner_contlft {
        width: 100%;
    }

    header.mainsite-header.clearHeader {
        margin-bottom: 4rem;
    }

    .banner_section .banner_cont .banner_cont_img {
        margin: 0;
    }

    .banner_section .banner_cont .d-flex {
        align-items: center;
    }

    section.banner_section img {
        height: 600px;
        object-fit: cover;
    }

    section.banner_section .banner_cont_img {
        display: none;
    }

    .estimation_sec .design_cost {
        flex-wrap: wrap;
    }

    .design_cost .estimate_img {
        width: 100%;
    }

    section.estimation_sec {
        padding: 20px 0;
    }

    section .safetop_main {
        padding: 0;
        flex-wrap: wrap;
    }

    section .safetop_main>div {
        width: 100% !important;
    }

    section.safe_project .safetop_lft::before,
    section.safe_project .safetop_lft::after,
    .safetop_main .safetop_lft::before,
    .safetop_main .safetop_lft::after {
        display: none;
    }

    .safe_project .project_list {
        margin-top: 30px;
    }

    .safe_project .project_list .item {
        padding: 30px 20px;
    }

    section.safe_project::before {
        height: 40%;
    }

    .we_workslide .owl-nav {
        position: absolute;
        top: 3%;
        right: 0;
    }

    section.completed_project::before {
        display: none;
    }

    section.completed_project::after {
        top: 0;
    }

    .client_knows.row,
    .testmonial_row.row {
        margin-top: 30px;
        gap: 30px;
    }

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

    .trust_tepansparency .trust_hipod.row,
    .patner_getmain.row {
        margin-top: 30px;
        gap: 30px;
    }

    .hipod_footer .footer_main {
        display: flex;
        flex-wrap: wrap;
    }

    .hipod_footer .col-lg-2.footer_item {
        width: 50%;
        margin-top: 30px;
    }

    section.motation_sec {
        background: #000;
    }

    .trust_tepansparency .trust_hipodmain h4.trust_vs span {
        padding: 12px 17px;
        font-size: 20px;
    }

    section.client_says::before {
        height: 10%;
    }

    section.how_wework::before {
        height: 30%;
    }

    section.safe_project::before {
        height: 20%;
    }

    section.completed_project::after {
        height: 40%;
    }

}



@media screen and (max-width: 767px) {
    .workcompleted_slider .item {
        height: auto;
    }
    
    .safe_project .project_list {
    grid-template-columns: 1fr;
}
    .work_new_section {
    grid-template-columns: 1fr;
    }
    .work_new_section .work_new_sub {
    padding: 20px;
}

    .we_workslide .owl-item {
        margin-top: 20px !important;
    }

    .we_workslide .owl-stage-outer {
        margin: 30px 0;
    }

    .we_workslide .owl-nav {
        top: 5%;
    }
}

@media screen and (max-width: 600px) {

    /* footer */
    .whatsapp_btn {
        display: block;
        position: unset;
        width: 50%;
    }
    
    .mobile_btmfix {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 3;
    }

    button.btn.book_popbtn {
        border-radius: 0;
        font-size: 14px;
        padding: 5px;
        transform: unset;
        border: 0;
        width: 50%;
        position: unset;
        line-height: normal;
    }
    /* footer */
    .banner_section .banner_cont h1 {
        line-height: 48px;
        font-size: 35px;
    }

    .common-btn a {
        font-size: 15px;
    }


    .safetop_main .safetop_ryt h2,
    .motive_lft h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .estimate_cont h3 {
        line-height: 40px;
        font-size: 28px;
    }

    .safetop_main .safetop_ryt p {
        margin-top: 10px;
    }

    .client_knows .client_knowslft p {
        font-size: 13px;
        padding: 15px;
    }

    .testmonial_cont .d-flex.gap-3 {
        flex-wrap: wrap;
    }

    .testmonial_cont .review_subtext,
    .testmonial_cont .star_rating {
        width: 100%;
    }

    .faq-singular .faq-question {
        font-size: 18px;
    }

    .client_knowsryt h2.faq-question span {
        margin-right: 8px;
    }

    .faqs-container .faq-answer {
        padding: 0 10px;
    }



}

@media screen and (max-width: 500px) {
    .safe_project .project_list .item {
        width: 100%;
        padding: 30px 20px;
        border-radius: 10px;
    }

    .motive_lft p,
    .estimate_cont p {
        font-size: 15px;
    }

    .estimate_img .common-btn a {
        font-size: 15px;
    }

    .client_knowsryt h2.faq-question {
        font-size: 18px;
        padding-left: 0;
    }

    .client_knowsryt .faq-singular.active .faq-question:before {
        font-size: 12px;
        padding: 0px 11px;
    }

    .patner_getmain .get_inform {
        border-radius: 10px;
        padding: 30px 20px;
        width: 90%;
        margin: auto;
    }

    .hipod_footer .col-lg-2.footer_item {
        width: 100%;
        margin-top: 20px;
    }

    .footer_main .footer_item h4 {
        margin-bottom: 12px;
    }

    .footer_main .footer_item p,
    .footer_main .footer_item img {
        margin-bottom: 10px;
    }

    section.last_cpoyryt .copy_ryt {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 10px;
    }

    .last_cpoyryt .copy_ryt a,
    .last_cpoyryt .copy_ryt p {
        font-size: 14px;
    }

    .patner_getmain p {
        width: 100%;
        font-size: 15px;
    }

    .patner_getmain p a {
        font-size: 15px;
    }

    .trust_hipoditem .item_trustcont {
        background: #F6F6F6;
        padding: 10px;
    }

    .trust_hipoditem .item_trustcont h3 {
        font-size: 20px;
    }

    .faq-section .faq-singular {
        padding: 10px 40px 10px 10px;
    }

    .testmonial_row .owl-nav {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .we_workslide .owl-item,
    .completed_slider .owl-item {
        margin-top: 20px !important;
    }

    .we_workslide button i,
    .testmonial_row .owl-nav i {
        padding: 15px;
        font-size: 15px;
    }

    section.how_wework::before {
        height: 10%;
    }

    section.safe_project::before {
        height: 10%;
    }

    section.completed_project::after {
        height: 20%;
    }




}

@media screen and (max-width: 450px) {

    .safetop_main .safetop_ryt h2,
    .motive_lft h2 {
        font-size: 27px;
        line-height: 40px;
    }

    .estimate_cont h3 {
        line-height: 40px;
        font-size: 25px;
    }

    .motive_lft p,
    .estimate_cont p {
        font-size: 14px;
    }

    .banner_section .banner_cont h1 {
        line-height: 40px;
        font-size: 30px;
    }

    .banner_section .banner_cont p {
        font-size: 15px;
        line-height: 22px;
    }
}

@media screen and (max-width: 375px) {
    .copy-sec .copy-lft a {
        font-size: 10px;
    }
}