/* ===============================
   CSS RESET
   =============================== */

.hiddenText {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    pointer-events:none;
    opacity:0;
    z-index:-1;
}

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
}

/* Core body defaults */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #f1f1f1;
    color: #43454b;
}

/* Remove list styles */
ul,
ol {
    list-style: none;
}

/* Remove link underline */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

/* Images responsive by default */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Form elements inherit font */
input,
button,
textarea,
select {
    font: inherit;
}

/* Button reset */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove textarea resize horizontally */
textarea {
    resize: vertical;
}

/* Improve media defaults */
iframe {
    border: 0;
}

/* Headings consistent */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* Paragraph readability */
p {
    line-height: 1.6;
}

/* Prevent overflow */
body {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3c;
    border-radius: 10px;
}

.page-center {
    max-width: 1800px;
    margin: 0 auto;
    width: 96%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url('../img/arrow.svg');
    background-repeat: no-repeat;
    background-position: top 50% right 15px;
}

.btn {
    padding: 14px;
    background: #1f2937;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    display: inline-block;
}

.btn:hover {
    background: #111827;
}

a.btn.btn-transparency {
    background-color: rgba(255, 255, 255, 0.7);
    color: #633b00;
}

a.btn.btn-transparency:hover {
    background-color: rgba(255, 255, 255, 1);
}

.row {
    display: flex;
    gap: 15px;
}

.col.col-6 {
    width: 50%;
}

.col.col-4 {
    width: 40%;
}

.col.col-8 {
    width: 60%;
}

.loaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.loaderWrapper.active {
    display: flex;
}

.loader {
    width: fit-content;
    font-size: 40px;
    font-family: system-ui, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #0000;
    -webkit-text-stroke: 1px #000;
    background:
        linear-gradient(-60deg, #0000 45%, #000 0 55%, #0000 0) 0/300% 100% no-repeat text;
    animation: l3 2s linear infinite;
}

.loader:before {
    content: "Loading";
}

@keyframes l3 {
    0% {
        background-position: 100%
    }
}

/* ===============================
   Header
   =============================== */

.header-menu-burger {
    display: none;
}

.header-container {
    padding: 15px 0;
    background: #fff;
}

.header-containerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper a {
    display: block;
}

.logo-wrapper a img {
    width: 130px;
}

.header-menu {
    padding: 0 30px;
}

.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 20px;
}

.header-menu ul li a:hover {
    color: #2196F3;
}

/* ===============================
   Body
   =============================== */

.custom-section {
    padding: 50px 0;
    background-color: #fff;
}

.align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div#section1 {
    padding: 0;
}

.form-container {
    width: 450px;
    background: #f2f2f3;
    border-radius: 14px;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

.form-container .step-count {
    text-align: right;
    color: #888;
    font-size: 13px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.form-container h3 {
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 5px;
}

.form-container h3 span {
    font-weight: 700;
}

.form-container p {
    color: #777;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-container .phone {
    display: flex;
}

.form-container .phone select {
    width: 80px;
    margin-right: 8px;
}

.form-container textarea {
    height: 80px;
    resize: none;
}


.form-container .form-step-upper button.btn,
.form-container .form-step-lower button.btn {
    display: block;
    width: 100%;
}

.form-container .form-step-upper,
.form-container .form-step-lower {
    display: none;
    animation: slide 0.4s;
}

.form-container .form-step-upper.active,
.form-container .form-step-lower.active {
    display: block;
}

@keyframes slide {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.form-container .success {
    text-align: center;
}

.form-container .success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    margin: 20px auto;
}

button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    padding: 20px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
    z-index: 9;
    transition: all 0.3s;
}

.cardSliderWrapper button.slick-arrow {
    color: #4b1200;
}

button.slick-arrow:hover {
    opacity: 1;
}

button.slick-prev.slick-arrow {
    left: 0;
}

button.slick-next.slick-arrow {
    right: 0;
}

#sliderWithForm ul.slick-dots {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
    padding: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#sliderWithForm ul.slick-dots li button {
    display: none;
}

#sliderWithForm ul.slick-dots li {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0px 0px 4px #8f8f8f inset;
    position: relative;
    cursor: pointer;
}

#sliderWithForm ul.slick-dots li.slick-active:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #8f8f8f;
    border-radius: 100%;
    width: 10px;
    height: 10px;
}

div#sliderWithForm .slick-slide img {
    border-radius: 30px;
}

.sliderItem {
    display: block !important;
}

.sliderWithForm {
    position: relative;
}

.sliderForm {
    position: absolute;
    bottom: -130px;
    left: 10%;
    z-index: 9;
}

div#section2 {
    padding-top: 150px;
}

div#section2 .page-center {
    padding: 0 100px;
    text-align: center;
}

.custom-section h2 {
    font-size: 65px;
    margin-bottom: 20px;
}

.custom-section p {
    font-size: 25px;
}

.cardSliderWrapper {
    padding: 50px;
    background: #ecebea;
    border-radius: 30px;
}

.cardSliderItem {
    padding: 0 25px;
}

.cardSliderItemInner {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #e1dddc;
}

.cardSlider {
    width: 100%
}

.cardSliderContent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cardSlider .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cardSlider button.slick-prev.slick-arrow {
    left: -45px;
}

.cardSlider button.slick-next.slick-arrow {
    right: -45px;
}

.cardSliderContent h3 {
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    text-shadow: 0px 0px 2px #000;
}

div#section4 h4 {
    text-align: center;
    font-size: 35px;
    font-weight: 200;
    margin-bottom: 70px;
}

div#section4 h4 span.bold {
    font-weight: bold;
    color: #1f2937;
}

.iconWithlabelWrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.iconWithlabelWrapper:not(:last-child) {
    margin-bottom: 70px;
}

.iconWithlabelItem {
    background: #f2f2f3;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    padding: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.iconWithlabelItem_icon img {
    display: block;
    margin: auto;
    height: 70px;
    width: 70px;
    object-fit: contain;
}

.iconWithlabelItem_title {
    font-size: 22px;
    font-weight: 500;
}

.iconWithlabelItem_icon {
    padding: 30px 0;
    font-size: 50px;
    font-weight: 200;
}

.imageWithTitleWrapper {
    padding-bottom: 55.55%;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
    border-radius: 30px;
    z-index: 2;
}

.imageWithTitleWrapper .imageWithTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    background: rgba(255, 255, 255);
    padding: 10px 50px;
    font-size: 50px;
    border-radius: 10px;
    white-space: nowrap;
}

div#section5 {
    position: relative;
    padding-bottom: 100px;
}

div#section5:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    z-index: 1;
    background: #cdc4be;
}

div#section6 {
    padding: 150px 0;
}

.imgWithTwoCol:not(:last-child) {
    margin-bottom: 150px;
}

.imgWithTwoCol {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.imgWithTwoCol .imgCol {
    width: 40%;
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;
}

.imgWithTwoCol[data-align="right"] {
    flex-direction: row-reverse;
}

.imgWithTwoCol .imgCol img {
    width: 100%;
}

.imgWithTwoCol .contentCol {
    width: 60%;
}

div#section7 {
    text-align: center;
    background: #f3f3f4;
    padding: 100px 0;
}

.customSliderItem {
    position: relative;
}

.customSliderItem .customSliderItemLabel {
    position: absolute;
    bottom: 5%;
    right: 5%;
    padding: 15px 50px;
    border-radius: 10px;
    text-transform: capitalize;
    background-color: rgba(255, 255, 255, 0.7);
    color: #633b00;
    font-size: 24px;
}

.customSliderItem.firstItem .customSliderItemLabel {
    bottom: auto;
    right: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
}

div#customSliderArea img {
    border-radius: 30px;
}
div#section9 .col.col-6 {
    display: flex;
    align-items: center;
}
div#section9 h2 {
    text-align: center;
    margin-bottom: 100px;
}

div#section9 .col.col-6 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.stepsWrapper {
    position: relative;
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.stepItem {
    position: relative;
    padding-left: 200px;
}

.stepItem .stepTitle {
    position: absolute;
    top: 0;
    left: 100px;
    background: #eeedeb;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 14px;
}

.stepItem .stepTitle:before {
    content: "";
    display: block;
    height: 2px;
    width: 90px;
    position: absolute;
    right: calc(100% - 0px);
    background: #b5aaa7;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.stepItem .stepDetails {
    padding: 0 30px;
}

.stepItem .stepDetails h5 {
    font-size: 26px;
}

.stepItem .stepDetails p {
    font-size: 16px;
}

.stepsWrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    left: 110px;
    width: 2px;
    height: calc(100% - 20px);
    background: #b8adaa;
}

.stepItem:last-child:before {
    content: "";
    display: block;
    width: 10px;
    height: calc(100% - 22px);
    position: absolute;
    background: #ffffff;
    top: 22px;
    left: 6px;
    z-index: 2;
}

div#section10 {
    background: #ecebea;
}

.formWithBG {
    border-radius: 30px;
    padding: 100px 100px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.formWithBG[data-align="left"] {
    justify-content: flex-start;
}

.formWithBG[data-align="right"] {
    justify-content: flex-end;
}

.banner {
    padding: 80px 0;
    background: #cdc4be;
}

.banner h2 {
    font-size: 70px;
    font-weight: 400;
    text-align: center;
}

h2.sectionTitle {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

div#about_section1 .col {
    padding: 50px;
}

div#about_section1 .col.col-4 img.directorImg {
    border-radius: 30px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

div#about_section1 .col h5 {
    font-size: 50px;
    font-weight: 500;
}

div#about_section1 .col h6 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 50px;
}

div#about_section1 .col p {
    margin-bottom: 20px;
}

.teamWrapper {
    padding: 50px;
}

.teamWrapper .teamImg img {
    display: block;
    width: auto;
    border-radius: 30px;
    margin: auto;
}

.teamWrapper .teamContent {
    text-align: center;
    padding-top: 20px;
}

.teamWrapper .teamContent h5 {
    font-size: 30px;
    font-weight: 500;
}

.teamWrapper .teamContent p {
    font-size: 20px;
}

h3.sectionTitle {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 40px;
    padding: 0 15px;
}

div#about_section3 h3.sectionTitle strong {
    font-size: 150%;
}

div#about_section3 img {
    width: 100%;
}

div#about_section3 {
    padding-bottom: 0;
}

div#about_section1 .row[data-align="right"] {
    flex-direction: row-reverse;
}

.page-content+.page-content {
    margin-top: 50px;
}

.page-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.page-content p {
    font-size: 16px !important;
    margin-bottom: 10px;
}

.page-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.contact-map {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-map {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px;
}

.contact-mapInner {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 55.55%;
}

.contact-details {
    padding: 50px;
}

.contact-details p {
    margin-bottom: 30px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.review-card p {
    font-size: 15px !important;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.review-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.review-rating {
    font-size: 18px;
    letter-spacing: 3px;
    color: #f5a623;
}

img.fillTheImage {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.pl-50 {
    padding-left: 50px;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-image {
    width: 35%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.service-image:after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 55.55%;
}


.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
}

.service-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 30px;
    margin-bottom: 0px;
}

.service-content h5 {
    font-size: 16px;
    font-weight: 500;
    color: #777;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px !important;
    line-height: 1.7;
    color: #444;
}

.service-card:hover img {
    transform: scale(1.05);

}

/* ===============================
   Footer
   =============================== */

.footer-wrapper {
    background: #fff;
}

.footer-upper {
    display: flex;
    padding: 50px 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.footer-lower {
    padding: 30px 0;
    border-top: 1px solid #cfcfcf;
}

.footer-logo img {
    width: 250px;
}

.footer-social ul {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.footer-social ul img {
    width: 40px;
}

.footer-upper h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-contact {
    max-width: 420px;
}

span.footer-icon {
    flex-shrink: 0;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.footer-quick-links ul li a:hover {
    color: #2196F3;
}



@media (max-width:1400px) {
    .custom-section h2 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .custom-section p {
        font-size: 20px;
    }

    .btn {
        font-size: 14px;
    }

    .cardSliderContent h3 {
        font-size: 22px;
    }

    .stepsWrapper {
        padding-left: 50px;
    }

    .stepsWrapper:before {
        left: 60px;
    }

    .stepItem .stepTitle {
        left: 50px;
    }

    .stepItem .stepTitle:before {
        width: 40px;
    }

    .stepItem {
        padding-left: 150px;
    }

    .customSliderItem .customSliderItemLabel {
        font-size: 20px;
    }

    .banner h2 {
        font-size: 50px;
    }

    div#about_section1 .col {
        padding: 25px;
    }

    div#about_section1 .col h5 {
        font-size: 40px;
    }

    div#about_section1 .col h6 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .teamWrapper {
        padding: 25px;
    }

    .teamWrapper .teamContent h5 {
        font-size: 26px;
    }

    .teamWrapper .teamContent p {
        font-size: 16px;
    }

    h3.sectionTitle {
        margin-bottom: 30px;
        font-size: 30px;
    }

    .contact-map {
        padding: 20px;
    }

    .contact-details {
        padding: 20px;
    }

    .page-content+.page-content {
        margin-top: 40px;
    }

    .pl-50 {
        padding-left: 30px;
    }
}

@media (max-width:1100px) and (min-width:768px) {
    .sliderForm {
        bottom: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    div#sliderWithForm .slick-slide img {
        height: 550px;
        object-fit: cover;
        filter: blur(5px);
        width: 100%;
    }
}

@media (max-width:1100px) {
    .custom-section h2 {
        font-size: 38px;
    }

    .custom-section p {
        font-size: 16px;
    }

    div#section2 {
        padding-top: 50px;
    }

    .custom-section {
        padding: 30px 0;
    }

    div#section2 .page-center {
        padding: 0 40px;
    }

    .iconWithlabelWrapper:not(:last-child) {
        margin-bottom: 30px;
    }

    .iconWithlabelItem {
        width: 100%;
        height:auto;
    }

    .iconWithlabelWrapper {
        flex-direction: column;
        gap: 30px;
    }

    div#section4 h4 {
        margin-bottom: 60px;
        font-size: 30px;
    }

    .imageWithTitleWrapper .imageWithTitle {
        font-size: 30px;
    }

    div#section6 {
        padding: 50px 0;
    }

    .imgWithTwoCol:not(:last-child) {
        margin-bottom: 50px;
    }

    .imgWithTwoCol,
    .imgWithTwoCol[data-align="right"] {
        flex-direction: column;
        gap: 10px;
    }

    .imgWithTwoCol .imgCol {
        width: 100%;
    }

    .imgWithTwoCol .contentCol {
        width: 100%;
    }

    div#section7 {
        padding: 50px 0;
    }

    .formWithBG {
        justify-content: center !important;
        padding: 50px 20px;
    }

    .footer-upper {
        padding: 30px 0;
        flex-wrap: wrap;
    }

    .footer-upper>div {
        flex: 0 0 calc(50% - 20px);
    }

    .footer-upper>div:first-child {
        flex: 0 0 100%;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-social ul {
        max-width: 250px;
        margin: 0 auto;
    }

    .stepsWrapper {
        padding-left: 0;
    }

    .stepsWrapper {
        gap: 50px;
    }

    .stepsWrapper:before {
        left: 10px;
    }

    .stepItem .stepTitle {
        left: 30px;
    }

    .stepItem .stepTitle:before {
        width: 20px;
    }

    .stepItem {
        padding-left: 120px;
    }

    div#section9 h2 {
        margin-bottom: 60px;
    }

    .stepItem .stepDetails h5 {
        font-size: 24px;
    }

    .stepItem .stepDetails p {
        font-size: 14px;
    }

    .customSliderItem .customSliderItemLabel {
        font-size: 16px;
        padding: 10px 30px;
    }

    .banner h2 {
        font-size: 40px;
    }

    .banner {
        padding: 50px 0;
    }

    div#about_section1 .col {
        padding: 10px;
    }

    div#about_section1 .col h5 {
        font-size: 30px;
    }

    div#about_section1 .col h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .teamWrapper .teamContent h5 {
        font-size: 20px;
    }

    .teamWrapper .teamContent p {
        font-size: 14px;
    }

    h3.sectionTitle {
        font-size: 24px;
    }

    .contact-map {
        padding: 10px;
    }

    .contact-details {
        padding: 10px;
    }

    .page-content+.page-content {
        margin-top: 30px;
    }

    .pl-50 {
        padding-left: 15px;
    }
}

@media (max-width:767px) {
    .page-center {
        width: 100%;
        padding: 0 20px;
    }

    div#section2 {
        padding-top: 30px;
    }

    .custom-section h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .custom-section p {
        font-size: 16px;
    }

    .sliderForm {
        position: static;
        margin-top: 20px;
    }

    .form-container {
        border-radius: 30px;
        width: 100%;
        padding: 30px;
    }

    .custom-section {
        padding: 20px 0;
    }

    div#section4 h4 {
        margin-bottom: 40px;
    }

    div#section5 {
        padding-bottom: 20px;
    }

    div#section6 {
        padding: 20px 0;
    }

    .formWithBG {
        padding: 20px;
    }

    .footer-upper>div {
        flex: 0 0 100%;
        text-align: center;
    }

    .footer-contact {
        max-width: 370px;
        text-align: left;
        margin: 0 auto;
        width: 100%;
    }

    .footer-contact h3 {
        text-align: center;
    }

    .copyright {
        text-align: center;
    }

    .header-containerInner {
        position: relative;
    }

    .header-menu-burger {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .header-menu {
        position: absolute;
        top: 100%;
        z-index: 99;
        width: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #f1f1f1;
        border-radius: 10px;
        padding: 20px;
        display: none;
    }

    .header-menu ul {
        flex-direction: column;
        text-align: left;
        align-items: baseline;
        gap: 10px;
    }

    .header-menu ul li {
        width: 100%;
    }

    .header-menu ul li a {
        display: block;
        padding: 5px;
    }

    .header-menu-burger span {
        width: 100%;
        display: block;
        height: 4px;
        background: #3f3f3f;
        border-radius: 4px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 9;
        transition: transform 0.3s;
    }

    .header-menu-burger span:first-child {
        margin-top: -10px;
    }

    .header-menu-burger span:last-child {
        margin-top: 10px;
    }

    body.menuActive .header-menu-burger span:nth-child(2) {
        display: none;
    }

    body.menuActive .header-menu-burger span {
        margin: 0 !important;
    }

    body.menuActive .header-menu-burger span:first-child {
        transform: rotate(45deg);
    }

    body.menuActive .header-menu-burger span:last-child {
        transform: rotate(-45deg);
    }

    button.slick-arrow {
        font-size: 30px;
        padding: 10px;
    }

    .cardSlider button.slick-prev.slick-arrow {
        left: -30px;
    }

    .cardSlider button.slick-next.slick-arrow {
        right: -30px;
    }

    div#section9 h2 {
        margin-bottom: 40px;
    }

    .row {
        flex-direction: column;
    }

    .col.col-6 {
        width: 100%;
    }

    .col.col-4 {
        width: 100%;
    }

    .col.col-8 {
        width: 100%;
    }

    .stepItem .stepDetails h5 {
        font-size: 20px;
    }

    .stepItem .stepDetails p {
        font-size: 12px;
    }

    .customSliderItem .customSliderItemLabel {
        font-size: 14px;
        padding: 5px 15px;
        bottom: 20px;
        right: 20px;
    }

    .banner {
        padding: 30px 0;
    }

    .banner h2 {
        font-size: 30px;
    }

    div#about_section1 .col {
        padding: 0;
    }

    div#about_section1 .row[data-align="right"] {
        flex-direction: column;
    }

    .teamWrapper {
        padding: 0;
    }

    .teamWrapper .teamContent {
        padding-top: 5px;
    }

    div#about_section2 .row:not(:last-child) {
        margin-bottom: 15px;
    }

    h3.sectionTitle {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .contact-map {
        padding: 0px;
    }

    .contact-details {
        padding: 0px;
    }

    .page-content+.page-content {
        margin-top: 20px;
    }

    .pl-50 {
        padding-left: 0px;
    }

    .service-card {
        flex-direction: column;
    }
    .service-image {
        width: 100%;
    }
    .service-content {
        width: 100%;
    }
    div#about_section3 h3.sectionTitle strong {
        font-size: 100%;
    }
}

@media (max-width:480px) {
    .custom-section h2 {
        font-size: 26px;
    }

    div#section4 h4 {
        font-size: 26px;
    }

    .form-container h3 {
        font-size: 24px;
    }

    .cardSliderWrapper {
        padding: 20px;
    }

    .cardSliderItem {
        padding: 0 0;
    }

    .iconWithlabelItem_icon {
        padding: 10px 0;
        font-size: 30px;
    }

    .iconWithlabelItem_icon img {
        height: 40px;
        width: 40px;
    }

    .imageWithTitleWrapper .imageWithTitle {
        font-size: 20px;
        padding: 10px 30px;
    }

    .footer-contact ul li {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-upper>div {
        width: 100%;
    }

    .formWithBG {
        padding: 0;
    }

    div#section7 {
        padding: 30px 0;
    }

    div#section2 .page-center {
        padding: 0 20px;
    }

    .stepItem {
        padding-left: 0;
        padding-top: 50px;
    }

    .stepItem .stepDetails {
        padding-right: 0;
    }

    .customSliderItem .customSliderItemLabel {
        font-size: 12px;
        padding: 5px 10px;
        bottom: 10px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    h3.sectionTitle {
        font-size: 20px;
    }

    .page-content+.page-content {
        margin-top: 10px;
    }
}