:root {
    /* font family */
    --primary-font-family: "DM Sans", serif;
    --secondary-font-family: "Unbounded", serif;
    --third-font-family: "Lato", serif;
    --forth-font-family: "MuseoSans", serif;

    /* colors */
    --primary-color: #f5bc3b;
    --secondary-color: #f5e93b;
    --third-color: #f5d33b;
    --color-green: #239f31;
    --color-lightgreen: #cff53b;
    --forth-color: #f5a33b;
    --color-white: #ffffff;
    --color-black: #000000;
    --text-color: #272727;
    --text-color2: #070707;
    --btn-color: #fafafa;
    --text-color3: #707070;

    /* font sizes */
    --font-42: 42px;
    --font-40: 40px;
    --font-35: 35px;
    --font-30: 30px;
    --font-25: 25px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
    --font-15: 15px;
    --font-13: 13px;
    --font-10: 10px;

    /* line heights */
    --line-52: 52px;
    --line-40: 40px;
    --line-34: 34px;
    --line-30: 30px;
    --line-28: 28px;
    --line-26: 26px;
    --line-25: 25px;
    --line-24: 24px;
    --line-20: 20px;
    --line-19: 19px;
    --line-18: 18px;
    --line-17: 17px;
    --line-10: 10px;

    /* font weight */
    --font-w-thin: 300;
    --font-w-regular: 400;
    --font-w-medium: 500;
    --font-w-semibold: 600;
    --font-w-bold: 700;
    --font-w-extrabold: 800;
    --font-w-black: 900;

    /* text cases */
    --t-upper: uppercase;
    --t-lower: lowercase;
    --t-cap: capitalize;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1404px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

h1 {
    font-size: var(--font-40);
    line-height: var(--line-52);
    font-family: var(--forth-font-family);
}

h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
}

p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
}

ul {
    list-style: none;
    margin: 0;
}

li {
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-regular);
}

a {
    text-decoration: none;
    transition: 0.3s all ease-in;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    padding: 0;
    margin: 0;
}

.regular-btn,
.medium-btn {
    max-width: 170px;
    width: 100%;
    display: block;
    text-align: center;
    background: var(--color-green);
    border: 1px solid var(--color-green);
    border-radius: 6px;
    padding: 12.5px 0;
    font-size: var(--font-16);
    line-height: var(--line-19);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--btn-color);
    text-transform: var(--t-upper);
    transition: 0.3s all ease-in;
}

.regular-btn:hover,
.medium-btn:hover {
    background: transparent;
    color: var(--color-green);
}

.medium-btn {
    max-width: 197px;
    width: 100%;
}

.yellow-btn {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--color-black);
}

.yellow-btn:hover {
    background: var(--color-black);
    border: 1px solid var(--color-black);
    color: var(--primary-color);
}

@font-face {
    font-family: "MuseoSans";
    src: url("./../fonts/MuseoSans_500.otf") format("opentype"),
        url("./../fonts/MuseoSans_500_Italic.otf") format("oepntype");
}

/* header css start */

header.header {
    position: sticky;
    top: 0;
    z-index: 99;
    transition: 0.3s all ease-in;
}

body.logged-in.admin-bar .header {
    top: 32px;
}

.header .top-header .top-wrapper {
    display: flex;
    align-items: center;
}

.header .top-header .top-wrapper .top-left {
    background: var(--primary-color);
    position: relative;
}

.header .top-header .top-wrapper .top-left::after {
    position: absolute;
    top: 0;
    right: -49px;
    width: 50px;
    height: 53px;
    background: var(--primary-color);
    content: "";
    clip-path: polygon(51% 0, 100% 48%, 54% 100%, 0 100%, 0 0);
}

.header .top-header .top-wrapper .top-left,
.header .top-header .top-wrapper .top-right {
    max-width: 50%;
    width: 100%;
    padding: 12.5px 0;
}

.header .top-header .top-wrapper .top-left .top-left-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .top-header .top-wrapper .top-left .top-left-wrapper,
.header .top-header .top-wrapper .top-right .top-right-wrapper {
    max-width: 692px;
    width: 100%;
    margin-left: auto;
    padding-left: 20px;
}

.header .top-header .top-wrapper .top-right .top-right-wrapper {
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 20px;
}

.header .top-header .top-wrapper .top-left p {
    font-size: var(--font-20);
    line-height: var(--line-28);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
    text-transform: var(--t-upper);
}

.header .top-header .top-wrapper .top-left p a {
    font-size: var(--font-20);
    line-height: var(--line-28);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    text-transform: var(--t-upper);
    text-decoration: underline;
}

/* .header .top-header .top-wrapper .top-left p a:hover{
    color: var(--color-green);
} */

.header .top-header .top-wrapper .top-right {
    background: var(--secondary-color);
}

.header .top-header .top-wrapper .top-right-wrapper {
    justify-content: end;
    display: flex;
    align-items: center;
    gap: 23px;
}

.header .top-header .top-wrapper .top-right p,
.header .top-header .top-wrapper .top-right p a {
    font-size: var(--font-20);
    line-height: var(--line-28);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
}

.header .top-header .top-wrapper .top-right p a:nth-of-type(1) {
    position: relative;
    padding-right: 13px;
}

.header .top-header .top-wrapper .top-right p a:nth-of-type(1)::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "|";
    font-size: var(--font-20);
    line-height: var(--line-28);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
}

.header .top-header .top-wrapper .top-right p a {
    position: relative;
}

.header .top-header .top-wrapper .top-right p a::before {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-black);
    transform-origin: bottom left;
    transition: transform 0.3s ease-in;
}

.header .top-header .top-wrapper .top-right p a:hover::before {
    transform: scaleX(1);
}

.header .top-header .top-wrapper .top-right p a:nth-of-type(1):hover::before {
    width: calc(100% - 13px);
}

.header .top-header .top-wrapper .top-right p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .main-header {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: var(--color-white);
}

.header.sticky .main-header .header-wrapper {
    padding: 15px 0;
}

.header .main-header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 34px 0;
    transition: 0.3s all ease-in;
}

.header .main-header .header-wrapper .header-logo {
    max-width: 209px;
    width: 100%;
    height: 77px;
    transition: 0.3s all ease-in;
}

.header.sticky .main-header .header-wrapper .header-logo {
    max-width: 162px;
    height: 60px;
}

.header .main-header .header-wrapper .header-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.header .main-header .header-wrapper .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header .main-header .header-wrapper .header-menu {
    /*max-width: 672px;*/
    max-width: calc(100% - 300px);
    width: 100%;
}

.header .main-header .header-wrapper .header-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-left: 0px;
    max-width: fit-content;
    margin-left: auto;
}

.header .main-header .header-wrapper .header-menu ul li a {
    font-size: var(--font-18);
    line-height: var(--line-24);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-medium);
    color: var(--text-color);
    text-transform: var(--t-upper);
}

.header .main-header .header-wrapper .header-menu ul li.menu-item-has-children {
    position: relative;
}

/* header css end */

/* Home page banner css */

.home-banner {
    position: relative;
}

.home-banner .banner-img {
    width: 100%;
    height: 592px;
}

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

.home-banner .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-banner .banner-content .container,
.home-banner .banner-content .container .row {
    height: 100%;
}

.home-banner .banner-content .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

.home-banner .banner-content .content-wrapper .content-left {
    max-width: 50%;
    width: 100%;
}

.home-banner .banner-content .content-wrapper .content-right {
    max-width: 511px;
    width: 100%;
    background: rgba(255, 255, 255, 0.67);
    backdrop-filter: blur(9px);
    border: 1px solid var(--color-white);
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.05);
    padding: 60px 52px 67px 61px;
    border-radius: 15px;
    /* position: absolute;
    top: 100px;
    right: 0; */
    margin-top: 100px;
}

.home-banner .banner-content .content-wrapper .content-left h2 {
    font-size: var(--font-40);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    text-transform: var(--t-upper);
    margin-bottom: 21px;
}

.home-banner .banner-content .content-wrapper .content-left p {
    font-size: var(--font-30);
    line-height: var(--line-30);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
    margin-bottom: 46px;
}

.home-banner .banner-content .content-wrapper .content-left a.medium-btn:hover {
    border: 1px solid var(--color-white);
    background: var(--color-white);
    color: var(--color-green);
}

.home-banner .banner-content .content-wrapper .content-right h4 {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-black);
    margin-bottom: 10px;
}

.home-banner .banner-content .content-wrapper .content-right p {
    font-size: var(--font-16);
    line-height: var(--line-26);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row .forminator-field input,
.home-banner .banner-content .content-wrapper .content-right form .forminator-row .forminator-field textarea {
    border: 1px solid var(--color-black);
    background-color: transparent;
    padding: 13px 20px;
    font-size: var(--font-15) !important;
    line-height: var(--line-18) !important;
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-black);
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row .forminator-field input::placeholder,
.home-banner .banner-content .content-wrapper .content-right form .forminator-row .forminator-field textarea::placeholder {
    font-size: var(--font-15) !important;
    line-height: var(--line-18) !important;
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-black);
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row .forminator-field textarea {
    height: 126px;
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row {
    margin-bottom: 16px !important;
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row.forminator-row-last {
    margin-bottom: 0 !important;
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row button.forminator-button-submit {
    max-width: 176px;
    width: 100%;
    display: block;
    text-align: center;
    background: var(--color-green);
    border: 1px solid var(--color-green);
    border-radius: 6px;
    padding: 12.5px 0;
    font-size: var(--font-16) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--btn-color);
    text-transform: var(--t-upper);
    transition: 0.3s all ease-in;
    box-shadow: none;
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row button.forminator-button-submit:hover {
    background: transparent;
    color: var(--color-green);
}

.home-banner .banner-content .content-wrapper .content-right form {
    margin-top: 34px;
}

.home-banner .banner-content .content-wrapper .content-right form .forminator-row .forminator-error-message {
    background-color: transparent !important;
    font-size: var(--font-13) !important;
    line-height: var(--line-19) !important;
    font-family: var(--primary-font-family) !important;
    padding: 0;
}

/* Home banner css end */

/* Multicolumn icon css start */

.multi-icon {
    background: #FAFAFA;
    padding: 270px 0 58px;
}

.multi-icon .icon-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 40px;
}

.multi-icon .icon-wrapper .icon-card {
    max-width: calc(25% - 20px * 3 / 4);
    width: 100%;
}

.multi-icon .icon-wrapper .icon-card .card-img {
    max-width: 125px;
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 23px;
}

.multi-icon .icon-wrapper .icon-card .card-img img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.multi-icon .icon-wrapper .icon-card h4 {
    font-size: var(--font-25);
    line-height: var(--line-34);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--primary-color);
    text-align: center;
    text-transform: var(--t-upper);
    margin-bottom: 12px;
}

.multi-icon .icon-wrapper .icon-card p {
    font-size: var(--font-20);
    line-height: var(--line-25);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-black);
    text-align: center;
}

/* Multicolumn icon css end */

/* image and content section css start */

.image-content {
    padding: 58px 0 207px;
    background: #FAFAFA;
}

.image-content.white-bg {
    background: var(--color-white);
    padding: 153px 0 251px;
}

.image-content.white-bg .image-content-wrapper .image-content-left a {
    margin-top: 94px;
}

.image-content.white-bg .image-content-wrapper .image-content-left h2 {
    margin-bottom: 36px;
}

.image-content .image-content-wrapper {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 20px;
}

.image-content .image-content-wrapper .image-content-left {
    max-width: 560px;
    width: 100%;
}

.image-content .image-content-wrapper .image-content-left h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
    margin-bottom: 25px;
}

.image-content .image-content-wrapper .image-content-left p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    margin-bottom: 20px;
}

.image-content .image-content-wrapper .image-content-left p:nth-last-of-type(1) {
    margin-bottom: 0;
}

.image-content .image-content-wrapper .image-content-left a {
    margin-top: 58px;
}

.image-content .image-content-wrapper .image-content-right {
    max-width: 50%;
    width: 100%;
    height: 400px;
    padding-top: 60px;
}

.image-content .image-content-wrapper .image-content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .image-content .image-content-wrapper{
    align-items: center;
}

.home .image-content .image-content-wrapper .image-content-right {
  padding-top: 0px;
}

/* image and content section css end */

/* service cards section css start */

.services {
    padding: 123px 0;
}

.services h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
    margin-bottom: 31px;
    text-align: center;
}

.services p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    max-width: 435px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.services .service-wrapper {
    margin-top: 68px;
    display: flex;
    justify-content: center;
    column-gap: 58px;
    row-gap: 90px;
    flex-wrap: wrap;
}

.services .service-wrapper .service-card {
    max-width: calc(33.33% - 58px * 2 / 3);
    width: 100%;
}

.services .service-wrapper .service-card .service-icon {
    max-width: 68px;
    width: 100%;
    height: 72px;
    margin: 0 auto 24px;
}

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

.services .service-wrapper .service-card h4 {
    font-size: var(--font-25);
    line-height: var(--line-34);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
    margin-bottom: 21px;
    text-align: center;
}

.services .service-wrapper .service-card p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    text-align: center;
}

.services .medium-btn {
    margin: 74px auto 0;
}

/* service cards section css end */

/* full width image content css start */

.full-w-image-content {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.full-w-image-content .full-image,
.full-w-image-content .full-content {
    max-width: 50%;
    width: 100%;
}

.full-w-image-content .full-image {
    width: 100%;
    min-height: 1101px;
    height: 1101px;
}

.full-w-image-content .full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-w-image-content .full-content h2 {
    font-size: var(--font-35);
}

.full-w-image-content .full-content .content {
    max-width: 692px;
    width: 100%;
    /* margin: 0 auto; */
    padding: 0 20px 0 170px;
}

.full-w-image-content .full-content .content h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    margin-bottom: 88px;
}

.full-w-image-content .full-content .content p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    margin-bottom: 20px;
}

.full-w-image-content .full-content .content a {
    margin-top: 36px;
}


/* full width image content css end */

/* featured review section css */

.featured-review {
    position: relative;
}

.featured-review .featured-img {
    width: 100%;
    min-height: 1107px;
    height: 1107px;
}

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

.featured-review .featured-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1022px;
    width: 100%;
    padding: 0 20px;
}

.featured-review .featured-content h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    max-width: 530px;
    width: 100%;
    text-align: center;
    margin: 0 auto 96px;
}

.featured-review .featured-content .review-item {
    border-radius: 25px;
    background: var(--color-white);
    padding: 51px 159px;
}

.featured-review .featured-content .review-slider{
    margin-bottom: 91px;
}

.featured-review .featured-content .review-slider .review-item{
    margin: 0 10px;
}

.featured-review .featured-content .review-item .review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}

.featured-review .featured-content .review-item .review-stars img {
    width: 24px;
    height: 24px;
}

.featured-review .featured-content .review-item p {
    font-size: var(--font-18);
    line-height: var(--line-30);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--text-color3);
    margin-bottom: 23px;
    text-align: center;
}

.featured-review .featured-content .review-item h6 {
    font-size: var(--font-18);
    line-height: var(--line-24);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--primary-color);
    text-align: center;
}

.featured-review .featured-content a.medium-btn {
    margin: 0 auto;
}

/* footer css start */

footer.footer {
    padding: 43px 0;
    background: var(--color-black);
}

footer.footer .footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 99px;
}

.footer .footer-left {
    max-width: 240px;
    width: 100%;
}

footer.footer .footer-wrapper .footer-logo {
    max-width: 240px;
    width: 100%;
    height: 106px;
    margin-bottom: 33px;
}

footer.footer .footer-wrapper .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer.footer .footer-wrapper .social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

footer.footer .footer-wrapper .social-icons a {
    display: block;
    max-width: 20px;
    width: 100%;
    height: 20px;
    transition: 0.3s all ease-in;
}

footer.footer .footer-wrapper .social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer.footer .footer-wrapper .social-icons a:hover {
    transform: scale(1.1);
}

footer.footer .footer-wrapper .footer-right {
    max-width: calc(100% - 307px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer .footer-right > .menu-item {
    flex: 1 1 70%;
}

.footer .footer-right > .menu-item > ul > li {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .footer-right > .menu-item > ul > li > ul.sub-menu {
    gap: 5px;
}

.footer .footer-right .contact-details {
    flex: 1 1 30%;
}

footer.footer .footer-wrapper .footer-right .menu-item h3,
footer.footer .footer-wrapper .footer-right .contact-details h3 {
    font-size: var(--font-15);
    line-height: var(--line-20);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--third-color);
    text-transform: var(--t-upper);
    margin-bottom: 12px;
}

footer.footer .footer-wrapper .footer-right .menu-item ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
}

.footer.footer .footer-wrapper .footer-right > .menu-item > ul {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
}

.footer.footer .footer-wrapper .footer-right > .menu-item > ul > li {
    max-width: calc((100% - 20px) / 2);
    width: 100%;
}

.footer.footer .footer-wrapper .footer-right > .menu-item > ul > li:nth-child(3) {
    max-width: 100%;
}


.footer.footer .footer-wrapper .footer-right > .menu-item > ul > li:nth-child(3) > ul {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
}

.footer.footer .footer-wrapper .footer-right > .menu-item > ul > li:nth-child(3) > ul > li {
    max-width: calc((100% - 20px) / 2);
    width: 100%;
}

.footer.footer .footer-wrapper .footer-right > .menu-item > ul > li:nth-child(3) > ul > li:nth-child(3), .footer.footer .footer-wrapper .footer-right > .menu-item > ul > li:nth-child(3) > ul > li:nth-child(7) {
    order: 1;
}

.footer.footer .footer-wrapper .footer-right > .menu-item > ul > li:nth-child(3) > ul > li:nth-last-child(2) {
    order: 1;
}

footer.footer .footer-wrapper .footer-right .menu-item ul li a {
    font-size: var(--font-13);
    line-height: var(--line-17);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    position: relative;
    max-width: fit-content;
}

footer.footer .footer-wrapper .footer-right .menu-item ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-white);
    transform-origin: bottom left;
    transition: transform 0.3s ease-in;
}

footer.footer .footer-wrapper .footer-right .menu-item ul li a:hover::after {
    transform: scaleX(1);
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 27px;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item:nth-last-of-type(1) {
    margin-bottom: 0px;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-icon {
    max-width: 30px;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-icon img {
    width: auto;
    height: auto;
    object-fit: contain;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc p {
    font-size: var(--font-13);
    line-height: var(--line-17);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
    margin-bottom: 9px;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc a,
footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc p a {
    font-size: var(--font-13);
    line-height: var(--line-20);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    display: inline-block;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc a {
    position: relative;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc a::before {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-white);
    transform-origin: bottom left;
    transition: transform 0.3s ease-in;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc>a::before {
    bottom: 0px;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc a:hover::before {
    transform: scaleX(1);
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc h6 a:nth-of-type(1)::before {
    width: calc(100% - 18px);
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc h6 a:nth-of-type(1) {
    padding-right: 18px;
    position: relative;
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc h6 a:nth-of-type(1)::after {
    position: absolute;
    top: 0;
    right: 7px;
    content: "/";
    font-size: var(--font-13);
    line-height: var(--line-20);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
}

footer.footer .footer-wrapper .footer-right .contact-details .contact-item .contact-desc h4 {
    font-size: var(--font-13);
    line-height: var(--line-20);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
}

footer.footer .footer-wrapper .footer-right .contact-details:nth-last-of-type(1) h3 {
    display: none;
}

footer.footer .footer-wrapper .footer-right .contact-details:nth-last-of-type(1) {
    margin-top: 32px;
}

footer.footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 2px dashed var(--color-white);
}

footer.footer .footer-bottom .terms-condition {
    display: flex;
    align-items: center;
    gap: 5px;
}

footer.footer .footer-bottom .terms-condition p {
    padding-right: 7px;
    position: relative;
    font-size: var(--font-10);
    line-height: var(--line-10);
    font-family: var(--third-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
}

footer.footer .footer-bottom .terms-condition p::after {
    position: absolute;
    top: 0;
    right: 0;
    font-size: var(--font-10);
    line-height: var(--line-10);
    font-family: var(--third-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
    content: "|";
}

footer.footer .footer-bottom .terms-condition a {
    font-size: var(--font-10);
    line-height: var(--line-10);
    font-family: var(--third-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
    text-decoration: none;
    position: relative;
}

footer.footer .footer-bottom .terms-condition a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-white);
    transform-origin: bottom left;
    transition: transform 0.3s ease-in;
}

footer.footer .footer-bottom .terms-condition a:hover::after {
    transform: scaleX(1);
}

footer.footer .footer-bottom .website-link {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 270px;
    width: 100%;
}

footer.footer .footer-bottom .website-link p {
    font-size: var(--font-10);
    line-height: var(--line-10);
    font-family: var(--third-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
}

footer.footer .footer-bottom .website-link a {
    display: block;
    max-width: 60px;
    width: 100%;
    height: 24px;
}

footer.footer .footer-bottom .website-link a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* footer css end */


/* inner page banner css */

.inner-page-banner .image_container {
    width: 100%;
    min-height: 431px;
    height: 431px;
}

.inner-page-banner .image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* image gallery section css */

.image-gallery {
    padding: 98px 0 83px;
}

.image-gallery h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    margin-bottom: 83px;
    text-align: center;
}

.image-gallery .tabs {
    padding-top: 83px;
    padding-bottom: 83px;
}

.image-gallery .tabs ul.tab-list {
    display: flex;
    align-items: center;
    gap: 23px;
    padding-left: 0px;
    flex-wrap: wrap;
}

.image-gallery .tabs ul.tab-list li {
    padding: 19px 60px;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    font-size: var(--font-16);
    line-height: var(--line-20);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-semibold);
    color: var(--color-black);
    text-transform: var(--t-upper);
    cursor: pointer;
    transition: 0.3s all ease-in;
}

.image-gallery .tabs ul.tab-list li:hover {
    background: transparent;
    color: var(--secondary-color);
}

.image-gallery .tabs ul.tab-list li.tab-item.active {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.image-gallery .tabs ul.tab-list li.tab-item.active:hover {
    background: transparent;
    color: var(--primary-color);
}

.image-gallery .gallery-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 118px;
    row-gap: 60px;
}

.image-gallery .gallery-cards .card {
    max-width: calc(33.33% - 118px * 2 / 3);
    width: 100%;
}

.image-gallery .gallery-cards .card img {
    width: 100% !important;
}

.image-gallery .gallery-cards .card .card-img {
    width: 100%;
    height: 383px;
    margin-bottom: 14px;
}

.image-gallery .gallery-cards .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery .gallery-cards .card p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--text-color2);
}

.image-gallery .gallery-content {
    margin-bottom: 58px;
}

.image-gallery .pagination {
    display: flex;
    gap: 44px;
    justify-content: center;
}

.image-gallery .pagination.ajax-pagination {
    margin-top: 58px;
}

.image-gallery .pagination .page-numbers {
    max-width: 71px;
    width: 100%;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    cursor: pointer;
    font-size: var(--font-20);
    line-height: var(--line-26);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-semibold);
    color: var(--color-black);
    transition: 0.3s all ease-in;
}

.image-gallery .pagination .page-numbers:hover {
    background: transparent;
    color: var(--secondary-color);
}

.image-gallery .pagination .page-numbers.current {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.image-gallery .pagination .page-numbers.current:hover {
    color: var(--primary-color);
    background: transparent;
}

.image-gallery .pagination .page-numbers.prev {
    font-size: 0;
    position: relative;
    order: -1;
}

.image-gallery .pagination .page-numbers.next {
    font-size: 0;
    position: relative;
    transform: rotate(180deg);
}

.image-gallery .pagination .page-numbers.prev::after,
.image-gallery .pagination .page-numbers.next::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    line-height: 24px;
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-semibold);
    color: var(--color-black);
    content: "<";
}

.image-gallery .pagination .page-numbers.next::after {
    transform: translate(-50%, -50%);
}

.image-gallery .pagination .page-numbers.prev:hover::after,
.image-gallery .pagination .page-numbers.next:hover::after {
    color: var(--secondary-color);
}

/* testimanials slider section css */

.testimonial {
    position: relative;
}

#testimonials {
    scroll-margin-top: 100px;
}

.testimonial .testimonial-img {
    width: 100%;
    min-height: 1083px;
    height: 1083px;
}

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

.testimonial .testimonial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1042px;
    width: 100%;
    padding: 0 20px;
    word-wrap: break-word;
}

.testimonial .testimonial-content h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    margin-bottom: 75px;
    text-align: center;
    text-transform: var(--t-upper);
}

.testimonial .testimonial-content .testimonial-slide {
    background: var(--color-white);
    border-radius: 25px;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.04);
    padding: 54px 130px 86px;
    margin: 0 10px;
    /* height: auto; */
}

.testimonial .testimonial-content .testimonial-slide .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 27px;
}

.testimonial .testimonial-content .testimonial-slide .stars img {
    max-width: 24px;
    width: 100%;
    height: 24px;
}

.testimonial .testimonial-content .testimonial-slide p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    text-align: center;
}

.testimonial .testimonial-content .testimonial-slider button::before,
.featured-review .featured-content .review-slider button::before {
    content: none;
}

.testimonial .testimonial-content .testimonial-slider button.slick-prev,
.featured-review .featured-content .review-slider button.slick-prev {
    left: 29px;
}

.testimonial .testimonial-content .testimonial-slider button.slick-next,
.featured-review .featured-content .review-slider button.slick-next {
    right: 29px;
}

.testimonial .testimonial-content .testimonial-slider button,
.featured-review .featured-content .review-slider button {
    background: url(./../images/slider-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.testimonial .testimonial-content .testimonial-slider button.slick-prev,
.featured-review .featured-content .review-slider button.slick-prev {
    transform: translate(0, -50%) rotate(180deg);
}

.testimonial .testimonial-content .testimonial-slider button.slick-disabled,
.featured-review .featured-content .review-slider button.slick-disabled {
    background: url(./../images/slider-disable-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonial .testimonial-content .testimonial-slider button.slick-prev.slick-disabled,
.featured-review .featured-content .review-slider button.slick-prev.slick-disabled {
    transform: translate(0, -50%) rotate(0deg);
}

.testimonial .testimonial-content .testimonial-slider button.slick-next.slick-disabled,
.featured-review .featured-content .review-slider button.slick-next.slick-disabled {
    transform: translate(0, -50%) rotate(180deg);
}

.testimonial .testimonial-slider .slick-track,
.featured-review .featured-content .review-slider .slick-track{
  display: flex;
  align-items: center;
}

/* service listing section css */

.service-list {
    background-repeat: no-repeat !important;
    background-size: 100% 80% !important;
    background-position: bottom center !important;
    background-color: rgba(250, 250, 250, 1) !important;
    padding: 98px 0 189px;
    position: relative;
}

.service-list::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(250, 250, 250, 1) 56%, transparent);
    content: "";
}

.service-list .container {
    position: relative;
    z-index: 9;
}

.service-list h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
    text-align: center;
    text-transform: var(--t-upper);
}

.service-list .list-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 120px;
}

.service-list .list-wrapper .list-left,
.service-list .list-wrapper .list-right {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.service-list .list-wrapper .list-card {
    max-width: 551px;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 28px 51px 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.service-list .list-wrapper .list-card .service-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.service-list .list-wrapper .list-card .service-top img {
    max-width: 76px;
    width: 100%;
    height: 76px;
}

.service-list .list-wrapper .list-card .service-top h3 {
    font-size: var(--font-20);
    line-height: var(--line-26);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    text-transform: var(--t-upper);
}

.service-list .list-wrapper .list-card p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    margin-bottom: 20px;
}

.service-list .list-wrapper .list-card .yellow-btn {
    margin-top: 40px;
}

/* contact us page css */

.contact-us {
    padding: 124px 0 108px;
}

.contact-us .contact-wrapper {
    display: flex;
    /* align-items: center; */
    gap: 40px;
    justify-content: space-between;
    padding: 0 52px;
}

.contact-us .contact-wrapper .contact-left {
    max-width: 698px;
    width: 100%;
}

.contact-us .contact-wrapper .contact-right {
    max-width: 363px;
    width: 100%;
}

.contact-us .contact-wrapper .contact-right h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    text-transform: var(--t-upper);
    margin-bottom: 27px;
}

.contact-us .contact-wrapper .contact-right ul {
    padding-left: 0;
}

.contact-us .contact-wrapper .contact-right ul li {
    display: flex;
    /* align-items: center; */
    gap: 12px;
    margin-bottom: 36px;
}

.contact-us .contact-wrapper .contact-right ul li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.contact-us .contact-wrapper .contact-right ul li .icon {
    max-width: 15px;
    width: 100%;
    height: 21px;
    margin-top: 6px;
}

.contact-us .contact-wrapper .contact-right ul li .icon img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.contact-us .contact-wrapper .contact-right ul li a,
.contact-us .contact-wrapper .contact-right ul li p {
    font-size: var(--font-18);
    line-height: var(--line-30);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--text-color2);
    display: block;
}

.contact-us .contact-wrapper .contact-left form {
    margin-bottom: 0px !important;
}

.contact-us .contact-wrapper .contact-left form .forminator-row {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 16px !important;
    gap: 14px;
}

.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-col {
    padding: 0;
}

.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-field input,
.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-field textarea {
    border: 1px solid var(--text-color3);
    padding: 12.5px 19px;
    font-size: var(--font-16) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-black) !important;
}

.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-field input::placeholder,
.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-field textarea::placeholder {
    font-size: var(--font-16) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-black) !important;
}

.contact-us .contact-wrapper .contact-left form .forminator-row.forminator-row-last {
    margin-bottom: 0px !important;
}

.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-field button.forminator-button-submit {
    max-width: 170px;
    width: 100%;
    border-radius: 6px;
    background: var(--color-green);
    border: 1px solid var(--color-green);
    padding: 12.5px 0;
    font-size: var(--font-16) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-white);
    text-transform: var(--t-upper);
    transition: 0.3s all ease-in;
    margin-bottom: 0px !important;
}

.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-field button.forminator-button-submit:hover {
    box-shadow: none !important;
    background: transparent;
    color: var(--color-green);
}

.contact-us .contact-wrapper .contact-left form .forminator-row .forminator-field .forminator-error-message {
    padding: 0px;
    background-color: transparent !important;
    font-size: var(--font-15) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
}

.contact-map {
    width: 100%;
    height: 606px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* request quote page css */

.request-quote {
    padding: 98px 0 173px;
}

.request-quote h2 {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    margin-bottom: 94px;
    text-align: center;
}

.request-quote .request-wrapper {
    max-width: 712px;
    width: 100%;
    margin: 0 auto;
}

.request-quote .request-wrapper form {
    margin-bottom: 0px !important;
}

.request-quote .request-wrapper form .forminator-row {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 15px !important;
    gap: 12px;
}

.request-quote .request-wrapper form .forminator-row .forminator-col {
    padding: 0px !important;
}

.request-quote .request-wrapper form .forminator-row.forminator-row-last .forminator-col {
    margin-bottom: 0px !important;
}

.request-quote .request-wrapper form .forminator-row .forminator-field input,
.request-quote .request-wrapper form .forminator-row .forminator-field textarea {
    border: 1px solid var(--text-color3);
    padding: 12.5px 19px !important;
    font-size: var(--font-16) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-black) !important;
}

.request-quote .request-wrapper form .forminator-row .forminator-field input::placeholder,
.request-quote .request-wrapper form .forminator-row .forminator-field textarea::placeholder {
    font-size: var(--font-16) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-black) !important;
}

.request-quote .request-wrapper form .forminator-row.forminator-row-last {
    margin-bottom: 0px !important;
}

.request-quote .request-wrapper form .forminator-row .forminator-field button.forminator-button-submit {
    max-width: 170px;
    width: 100%;
    display: block;
    margin: 0 auto;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: var(--primary-color);
    padding: 12.5px 0;
    font-size: var(--font-16) !important;
    line-height: var(--line-19);
    font-family: var(--primary-font-family) !important;
    font-weight: var(--font-w-regular) !important;
    color: var(--color-black);
    text-transform: var(--t-upper);
    transition: 0.3s all ease-in;
}

.request-quote .request-wrapper form .forminator-row .forminator-field button.forminator-button-submit:hover {
    box-shadow: none !important;
    background: var(--color-black);
    border: 1px solid var(--color-black);
    color: var(--primary-color);
}

.request-quote .request-wrapper form .forminator-row .forminator-field .forminator-icon-calendar {
    display: none;
}

/* service detail page css */

.service-header {
    background: var(--primary-color);
    padding: 55px 0 68px;
    overflow: hidden;
}

.service-header .service-header-wrapper {
    position: relative;
}

.service-header .service-header-wrapper .service-header-img {
    position: absolute;
    top: 140%;
    left: 0;
    transform: translateY(-50%);
    max-width: 300px;
    width: 100%;
    height: 320px;
}

.service-header .service-header-wrapper .service-header-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-header .service-header-wrapper h4 {
    font-size: var(--font-20);
    line-height: var(--line-26);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    text-transform: var(--t-upper);
    margin-bottom: 29px;
    text-align: center;
    transition: 0.3s all ease-in;
    position: relative;
    z-index: 9;
}

.service-header .service-header-wrapper h4:hover{
    color: var(--color-white);
}

.service-header .service-header-wrapper h2 {
    font-size: var(--font-42);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
    text-align: center;
    position: relative;
    z-index: 9;
}

.service-detail {
    padding: 130px 0 76px;
    background: #FAFAFA;
}

.service-detail .service-detail-wrapper {
    display: flex;
}

.service-detail .service-detail-wrapper .service-detail-left,
.service-detail .service-detail-wrapper .service-detail-right {
    max-width: 50%;
    width: 100%;
}

.service-detail .service-detail-wrapper .service-detail-left .content,
.service-detail .service-detail-wrapper .service-detail-right .content {
    max-width: 490px;
    width: 100%;
    padding-right: 40px;
}

.service-detail .service-detail-wrapper .content p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    margin-bottom: 15px;
}

/* .service-detail .service-detail-wrapper .content p:nth-last-of-type(1){
    margin-bottom: 0px;
} */

.service-detail .service-detail-wrapper .service-detail-right .content p{
    margin-bottom: 25px;
}

.service-detail .service-detail-wrapper .content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service-detail .service-detail-wrapper .content ul li {
    font-size: var(--font-18);
    line-height: var(--line-24);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-black);
    margin-bottom: 10px;
}

.service-detail .service-detail-wrapper .content ul li::marker {
    width: 11px;
    height: 11px;
    color: var(--primary-color);
}

.service-detail .service-detail-wrapper .content ul li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.service-full-img {
    width: 100%;
    height: 1072px;
    position: relative;
}

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

.service-full-img::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(250, 250, 250, 1) 15%, transparent);
    content: "";
}

/* 404 error page css */

.error {
    width: 100%;
    height: 650px;
    min-height: 650px;
    position: relative;
}

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

.error .error-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
}

.error .error-content h1 {
    font-size: 100px;
    line-height: 110px;
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    margin-bottom: 10px;
    text-align: center;
}

.error .error-content p {
    font-size: var(--font-42);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--color-white);
    margin-bottom: 30px;
    text-align: center;
}

.error .error-content a.medium-btn {
    margin: 0 auto;
}

.error.thankyou-page .error-content {
    max-width: 900px;
}

.error.thankyou-page .error-content h1 {
    font-size: var(--font-40);
    line-height: var(--line-52);
}

.error.thankyou-page .error-content p {
    font-size: var(--font-30);
    line-height: var(--line-34);
}

/* terms & condition page css */
.full-content.default-content {
    padding: 80px 0;
}

.full-content.default-content h3 {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    margin-bottom: 15px;
}

.full-content.default-content p {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-thin);
    color: var(--text-color2);
    margin-bottom: 15px;
}

.full-content.default-content p:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.full-content.default-content p a {
    font-size: var(--font-20);
    line-height: var(--line-30);
    font-family: var(--forth-font-family);
    font-weight: var(--font-w-bold);
    color: var(--text-color2);
    position: relative;
}

.full-content.default-content p a::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    bottom: -2px;
    background: var(--text-color2);
    content: "";
    transform: translateX(0);
}


.custom-testimonial-section {
    padding: 100px 0;
    position: relative;
}

.custom-testimonial-section .container {
    position: relative;
    z-index: 9;
}

.custom-testimonial-section::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    opacity: 0.5;
    content: "";
}

.custom-testimonial-section .testimonial-heading {
    font-size: var(--font-35);
    line-height: var(--line-52);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--color-white);
    max-width: 530px;
    width: 100%;
    text-align: center;
    margin: 0 auto 50px;
}

.custom-testimonial-section .testimonial-box {
    border-radius: 25px;
    background: var(--color-white);
    padding: 51px 159px;
    margin-bottom: 50px;
}

.custom-testimonial-section .testimonial-wrapper {
    max-width: 1022px;
    width: 100%;
    margin: 0 auto;
}

.custom-testimonial-section .testimonial-wrapper .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}

.custom-testimonial-section .testimonial-wrapper .stars img {
    width: 24px;
    height: 24px;
}

.custom-testimonial-section .testimonial-box .testimonial-text {
    font-size: var(--font-18);
    line-height: var(--line-30);
    font-family: var(--primary-font-family);
    font-weight: var(--font-w-regular);
    color: var(--text-color3);
    margin-bottom: 23px;
    text-align: center;
}

.custom-testimonial-section .testimonial-box .testimonial-author {
    text-align: center;
}

.custom-testimonial-section .testimonial-box .testimonial-author strong {
    font-size: var(--font-18);
    line-height: var(--line-24);
    font-family: var(--secondary-font-family);
    font-weight: var(--font-w-bold);
    color: var(--primary-color);
    text-align: center;
}


/*photo gallery*/

.photo-gallery {
    padding: 40px 0;
}

.photo-gallery h2, .photo-gallery h3 {
    margin-bottom: 20px;
}