@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");

/* VARIABLES */
:root {
    /* TEXT VARIABLES */
    --text-dark: #000;
    --text-light: #fff;
    --text-grey: #adbdcc;
    --body-font: "Inter", Sans-serif;
    --heading-font: "Playfair Display", Sans-serif;
    --h1-size: 94px;
    --h1-height: 108px;
    --h2-size: 50px;
    --h2-height: 75px;
    --h3-size: 45px;
    --h4-size: 32px;
    --h5-size: 28px;
    --h6-size: 22px;
    --subtitle-size: 17px;
    --subtitle-height: 26px;
    --p-size: 20px;
    --p-height: 32px;
    --secondary-text-size: 14px;
    --secondary-text-height: 18px;
    --button-size: 16px;

    /* SPACING VARIABLES */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    /* COLOR VARIABLES */
    --purple-1: #6962f7;
    --purple-2: #7000ff;
    --blue-1: #00d4ff;
    --primary-accent: #0800ff;
    --primary-button-hover: #6d7a88;
    --bg-white: #fff;
    --bg-green: #1dbf73;
    --bg-light-green: #5dd08c;

    --standard-border-radius: 20px;
    --standard-box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
}

a {
    text-decoration: none !important;
    color: var(--text-light) !important;
}

ul {
    list-style: none;
}

h1 {
    font-size: var(--h3-size);
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
}
/* Navbar section start */
.headerBac {
    background-color: rgba(40, 48, 170, 0.93);
}

.container .header {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
}

.container .header .socialM i {
    font-size: 22px;
    margin: 10px;
    transition: all 0.4s;
}

.container .header .socialM i:hover {
    color: var(--text-grey);
}

.container .header .number {
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.container .header .number .num1,
.container .header .number .num2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.container .header .number .num1 i,
.container .header .number .num2 i {
    margin: 0 10px 0 0;
}

.container .header .number .num1 p,
.container .header .number .num2 p {
    margin: -5px 0 0 0;
}
/* Navbar section end */
/* Main section start */
#mainImg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    overflow: hidden;
}

.mainSection {
    position: relative;
}

.mainSection .menu {
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.mainSection .menu .logo h1 {
    font-family: "Lobster", sans-serif;
    font-weight: bold;
    margin-left: 61px;
    color: var(--text-light);
    margin-top: 15px;
    font-size: 45px;
    margin-bottom: 0 !important;
}

.mainSection .menu .menuItem ul {
    display: flex;
}

.mainSection .menu .menuItem ul li {
    margin: 10px 22px;
    font-size: 20px;
}

.mainSection .menu .menuItem ul li a {
    text-transform: uppercase;
    position: relative;
    padding: 10px;
}

.menuBgColor {
    transition: all 1s;
    background-color: #140101b0;
    color: var(--text-light);
    width: 100%;
    position: fixed;
    top: 0;
    padding: 10px 0;
}

#marginLS {
    margin: -5px 50px 0 0;
    font-size: 22px;
}

.mainSection .menu .menuItem ul li .under::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--text-grey);
    width: 0;
    height: 2px;
    transition: 0.4s;
}

.mainSection .menu .menuItem ul li:hover .under::before {
    width: 100%;
}

/* hamburger start */
.hamburger {
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 20px;
    display: none;
    z-index: 3;
}
.hamburger .bar1,
.hamburger .bar2,
.hamburger .bar3 {
    background-color: #fff;
    height: 4px;
    width: 36px;
    margin: 3px;
    border-radius: 10px;
}

.animateBar1 {
    animation: flipBar1 0.5s;
    animation-fill-mode: forwards;
}

.animateBar2 {
    animation: fadeBar2 0.5s;
    animation-fill-mode: forwards;
}

.animateBar3 {
    animation: flipBar3 0.5s;
    animation-fill-mode: forwards;
}

/* Mobile Nav start */
.mobilenav {
    background-color: #190202cd;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 16px 0;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    transition: transform 0.6s;
    z-index: 2;
    display: none;
}

.openDarwer {
    transform: translate(-100%);
}

.mobilenav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 185px 0 0 0;
}

.mobilenav ul li {
    margin: 20px 22px;
    font-size: 20px;
}

.mobilenav ul li a {
    text-transform: uppercase;
    position: relative;
}

#marginLS {
    margin-top: -5px !important;
    font-size: 22px;
}

.mobilenav ul li .under::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--text-grey);
    width: 0;
    height: 2px;
    transition: 0.4s;
}

.mobilenav ul li:hover .under::before {
    width: 100%;
}

/* Keyframes for menu start */

@keyframes flipBar1 {
    form {
        transform: rotate(0);
    }
    to {
        transform: rotate(45deg) translate(4px, 6px);
    }
}

@keyframes fadeBar2 {
    form {
        transform: scale(1);
    }
    to {
        transform: scale(0);
    }
}

@keyframes flipBar3 {
    form {
        transform: rotate(0);
    }
    to {
        transform: rotate(-45deg) translate(4px, -6px);
    }
}

/* Keyframes for menu end */
/* hamburger end */

.mainSection .mainSectionB {
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    margin: 40px 0 0 0;
}

.mainSection .mainSectionB .paraS h3 {
    font-size: var(--h2-size);
    line-height: var(--h2-height);
}

.mainSection .mainSectionB .paraS p {
    font-size: var(--p-size);
    font-weight: 400;
    line-height: var(--p-height);
    margin: 25px 0 0 0;
}

.mainSection .mainSectionB .callWhatsBtn {
    display: flex;
    justify-content: center;
    margin: 60px 0 0 0;
}

.mainSection .mainSectionB .callWhatsBtn .call a {
    margin-right: 20px;
}

.mainSection .mainSectionB .callWhatsBtn .call a i,
.mainSection .mainSectionB .callWhatsBtn .call a span,
.mainSection .mainSectionB .callWhatsBtn .whatsapp a i,
.mainSection .mainSectionB .callWhatsBtn .whatsapp a span {
    color: var(--text-dark);
}

.mainSection .mainSectionB .callWhatsBtn .call a i {
    width: 30px;
}

.mainSection .mainSectionB .callWhatsBtn .whatsapp a i {
    width: 35px;
}

.mainSection .mainSectionB .callWhatsBtn .call a span,
.mainSection .mainSectionB .callWhatsBtn .whatsapp a span {
    font-weight: 500;
    font-size: 20px;
}

#buttonAnimate {
    transition: transform 0.3s ease;
}

#buttonAnimate:hover {
    transform: scale(1.1);
}

#btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
    transition: transform 0.3s ease;
}

#btn-whatsapp:hover {
    background-color: #1da851;
    transform: scale(1.1);
}
/* Main section end */
/* About section start */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 60px 0 0 0;
}

.about h1 {
    display: inline-block;
}

.about h1::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about p {
    font-size: 18px;
    line-height: var(--p-height);
    opacity: 0.7;
    word-spacing: 5px;
    margin: 40px;
}

.colorGreen {
    color: var(--primary-accent) !important;
    font-weight: 500;
}

.about .learn a {
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0 40px 0;
    font-weight: 500;
}

.about .learn .btnCustom {
    background-color: var(--primary-accent);
}
/* About section end */
/* services section start */
.services .product-heading h1 {
    margin: 40px 0 40px 0;
    display: inline-block;
}

.services .product-heading h1::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.services .allProduct {
    margin: 70px 0 50px 0;
    grid-gap: 5px;
}

.services .allProduct a {
    color: var(--text-dark) !important;
}

.services .allProduct .product {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    padding: 5px 5px 15px 5px;
    border-radius: 10px 10px 10px 10px;
    margin: 20px 0;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.services .allProduct .product:hover {
    transform: translate(-8px, -8px);
    box-shadow: 11px 12px 15px 0px rgb(0 0 0 / 26%);
}

.services .allProduct .product .product-title h3 {
    font-weight: 400;
    margin: 40px 0 10px 0;
    font-size: 22px;
}

.services .allProduct .product .product-short-des p {
    font-size: 16.4px;
    opacity: 0.8;
    font-weight: 400;
}

.services .allProduct .product .product-img img {
    border-radius: 10px 10px 10px 10px;
    padding: 2px;
}
/* services section end */
/* location section start */
.main-map {
    width: 100wh;
    background-color: #f4e6e6ec;
}

.main-map .our-location h1 {
    padding: 50px 0 0 0;
    display: inline-block;
}

.main-map .our-location {
    text-align: center;
}

.main-map .our-location h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 65px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-map .map-section iframe {
    width: 100%;
    height: 400px;
    margin: 25px 0 60px 0;
}
/* location section end */
/* time section start */
.service-time {
    margin: 50px 0 0 0;
    text-align: center;
}

.service-time h1 {
    display: inline-block;
}

.service-time h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.time-chart {
    margin-top: 50px;
}
.time-chart td {
    padding: 10px;
}
/* time section end */
/* Review section start */
.main-review {
    margin: 70px 0;
    text-align: center;
}

.main-review h1 {
    margin: 0 0 60px 0;
    display: inline-block;
}

.main-review h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-review .review-img img {
    width: 120px;
    height: 100%;
    border-radius: 50%;
}

.main-review p {
    font-size: 18px;
    color: var(--text-light);
}

.main-review h5 {
    color: var(--text-light);
}

.carousel-caption {
    right: 15%;
    bottom: 3rem !important;
    left: 15%;
}

.carousel-indicators {
    bottom: 15px;
}
/* Review section end */
/* footer section start */
.main-footer {
    margin: 50px 0 20px 0;
}

.main-footer .footer {
    display: flex;
    justify-content: space-around;
}

.main-footer .footer .footer-item {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main-footer .footer .footer-item h4 {
    font-family: var(--heading-font);
    margin: 0 0 30px 0 !important;
    font-size: var(--h4-size);
}

.main-footer .footer .footer-item a {
    color: #0800ff !important;
    margin: 5px 0;
}

.main-footer .footer .footer-item a,
.main-footer .footer .footer-item p {
    font-size: 20px;
}
/* developer information start */
.main-dev-in {
    background-color: #f4e6e6ec;
    padding: 15px 0;
    margin: 30px 0 0 0;
}

.dev-in a {
    color: #0800ff !important;
}

.dev-in p {
    margin: 0 !important;
}

.dev-in p,
.dev-in a {
    font-size: 16px;
}
/* developer information end */
/* footer section end */
/* Button to top button start */
.bottom-top a {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 3;
}

.bottom-top a i {
    padding: 5px;
    font-size: 25px;
}
/* Button to top button end */
/* whatsapp fixed button start */
.wts-fixed a {
    position: fixed;
    bottom: 120px;
    right: 50px;
    z-index: 3;
    background-color: #25d366;
}

.wts-fixed a:hover {
    background-color: #1da851 !important;
}

.wts-fixed a i {
    font-size: 35px;
}
/* whatsapp fixed button end */
/* language change button */
/* english */
.english-language .gt-selected {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 3;
    background-color: #fff;
    float: left;
    cursor: pointer;
    text-transform: uppercase;
    overflow: hidden;
    text-align: left;
}

.english-language .gt-selected {
    background-color: #1de19f !important;
}

.english-language .gt-selected .gt-current-lang {
    padding: 10px 15px;
    color: #333;
    font-weight: bold;
}

.english-language .gt-selected .gt-current-lang {
    padding: 8px 8px !important;
    position: relative;
}
/* site language */
#site-language {
    word-wrap: normal;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    height: 100%;
    z-index: 99;
}
.english-language img {
    vertical-align: middle;
    display: inline-block;
    width: 33px;
    height: auto;
    margin: 0 5px 0 0;
    border-radius: 3px;
}

.english-language img {
    width: 24px !important;
}

.english-language .gt-selected .gt-current-lang span.gt-lang-code {
    position: relative;
    top: 2px;
}

.english-language .gt-selected .gt-current-lang span.gt-lang-code {
    font-size: 18px !important;
}

.english-language .gt-selected i {
    display: inline-block;
    height: 24px;
    width: 15px;
    vertical-align: middle;
    background-position: 50%;
    background-size: 11px;
    background-repeat: no-repeat;
    /* transition: all .3s; */
    /* transform: rotate(-90deg); */
    color: var(--text-dark);
}
/* arabic */
.arabic-language .gt-selected {
    position: fixed;
    bottom: 50px;
    left: 150px;
    z-index: 3;
    background-color: #fff;
    float: left;
    cursor: pointer;
    text-transform: uppercase;
    overflow: hidden;
    text-align: left;
}

.arabic-language .gt-selected {
    background-color: #1de19f !important;
}

.arabic-language .gt-selected .gt-current-lang {
    padding: 10px 15px;
    color: #333;
    font-weight: bold;
}

.arabic-language .gt-selected .gt-current-lang {
    padding: 8px 8px !important;
}

.arabic-language img {
    vertical-align: middle;
    display: inline-block;
    width: 33px;
    height: auto;
    margin: 0 5px 0 0;
    border-radius: 3px;
}

.arabic-language img {
    width: 24px !important;
}

.arabic-language .gt-selected .gt-current-lang span.gt-lang-code {
    position: relative;
    top: 2px;
}

.arabic-language .gt-selected .gt-current-lang span.gt-lang-code {
    font-size: 18px !important;
}

.arabic-language .gt-selected i {
    display: inline-block;
    height: 24px;
    width: 15px;
    vertical-align: middle;
    background-position: 50%;
    background-size: 11px;
    background-repeat: no-repeat;
    /* transition: all .3s; */
    /* transform: rotate(-90deg); */
    color: var(--text-dark);
}
/* home page responsive start */
/* 1000px responsive start */
@media only screen and (max-width: 1000px) {
    .about h1::before {
        margin: 30px 0;
    }

    .services .product-heading h1::before {
        margin: 50px 0;
    }

    .main-map .our-location h1::before {
        margin: 60px 0;
    }

    .service-time h1::before {
        margin: 40px 0;
    }

    .main-review h1::before {
        margin: 40px 0;
    }
}
/* 835px responsive end */
@media only screen and (max-width: 835px) {
    .mainSection .mainSectionB .paraS h3 {
        font-size: var(--h4-size);
        line-height: var(--h4-height);
        margin-top: 125px;
    }

    .mainSection .menuItem {
        display: none;
    }

    .mobilenav {
        display: block;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 35px;
    }

    .mainSection .menu .logo h1 {
        margin-left: 35px;
        margin-top: 5px;
    }

    #marginLS {
        margin: 0;
    }

    .main-footer .footer {
        flex-direction: column;
    }
}

/* 770px responsive end */
@media only screen and (max-width: 770px) {
    .socialM {
        margin-left: 30px;
    }

    .container .header .number {
        font-size: 14px;
        margin-right: 30px;
    }

    .container .header .number .num1 i,
    .container .header .number .num2 i {
        margin: 0 2px 0 0;
    }

    .mainSection .mainSectionB .paraS h3 {
        font-size: var(--h5-size);
        line-height: var(--h5-height);
        margin-top: 125px;
    }

    .mainSection .mainSectionB .paraS p {
        font-size: 16px;
        line-height: 22px;
        margin: 25px 0 0 0;
    }
}

/* 570px responsive end */
@media only screen and (max-width: 570px) {
    .container .header .number .num1,
    .container .header .number .num2 {
        margin: 0 5px;
    }

    .socialM {
        margin-left: 5px !important;
    }

    .container .header .number {
        margin-right: 5px !important;
    }

    .about h1::before {
        margin: 30px 0;
    }

    .services .product-heading h1::before {
        margin: 50px 0;
    }

    .main-map .our-location h1::before {
        margin: 60px 0;
    }

    .service-time h1::before {
        margin: 40px 0;
    }

    .main-review h1::before {
        margin: 70px 0 0 20px;
    }

    .about p {
        margin: 40px 30px 40px 30px;
    }
}

/* 570px responsive end */
@media only screen and (max-width: 500px) {
    .mainSection .mainSectionB .paraS h3 {
        font-size: var(--h6-size);
        line-height: var(--h6-height);
    }

    .mainSection .mainSectionB .paraS p {
        font-size: 14px;
        line-height: 18px;
        margin: 25px 0 0 0;
    }
}
/* 460px responsive start */
@media only screen and (max-width: 460px) {
    .container .header .socialM i {
        font-size: 18px;
        margin: 10px 2px;
    }

    .container .header .number {
        margin-right: 2px !important;
    }

    .container .header .number .num1,
    .container .header .number .num2 {
        margin: 0 3px;
    }

    #mainImg {
        height: 65vh;
    }

    .mainSection .mainSectionB .paraS h3 {
        margin-top: 20px;
    }

    .about h1::before {
        margin: 30px 0;
    }

    .services .product-heading h1::before {
        margin: 50px 0;
    }

    .main-map .our-location h1::before {
        margin: 60px 0;
    }

    .service-time h1::before {
        margin: 40px 0;
    }

    .main-review h1::before {
        margin: 40px 0;
    }

    .arabic-language .gt-selected {
        bottom: 120px;
        left: 50px;
    }
}
/* home page responsive end */
/* Product section start */
#product h1 {
    margin: 90px 0 0 0;
}

.productPage-img {
    height: 65vh !important;
}

#product-menu {
    background-color: #140101b0;
}
/* main-product section start */
.main-product .pro-img {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.main-product .pro-img img {
    margin: 30px 10px 20px 10px;
    width: 400px;
    height: 100%;
}

.main-product .product-details h1::before {
    content: "";
    position: absolute;
    width: 30%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-product .product-details p {
    font-size: var(--p-size);
}
/* main-product section end */
/* pro-ham start */
#pro-ham {
    top: 25px;
}
/* Product section end */
/* product footer start */
#product-footer {
    background-color: #d5d2d2ce;
    padding: 50px 0;
}
/* product footer end */
/* product responsive start */
/* 1260px responsive end */
@media only screen and (max-width: 1260px) {
    .main-product .pro-img {
        flex-direction: column;
    }
}
/* product responsive end */
/* massage section start */
.main-massage .container {
}

.main-massage .msg-address {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.main-massage .msg-address h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-massage .msg-address p {
    font-size: var(--p-size);
    margin: 50px 0 0 0;
}

.main-massage .msg-form {
    box-shadow: 0px 0px 15px 10px rgb(0 0 0 / 26%);
    width: 100%;
    padding: 20px 30px;
    border-radius: 10px 10px 10px 10px;
}

.main-massage .msg-form form input {
    height: 50px;
    border: 1px solid #b1acac;
}

.main-massage .msg-form form textarea {
    height: 100px;
    border: 1px solid #b1acac;
}

.main-massage .msg-form form label {
    font-size: 18px;
    font-weight: 400;
}

[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
    font-size: 18px;
    padding: 8px 15px;
}
/* massage section end */
/* massage responsive start */
/* 800px responsive end */
@media only screen and (max-width: 800px) {
    .main-massage .container {
        flex-direction: column;
    }

    .main-massage .msg-address {
        margin-bottom: 20px;
    }

    .main-massage .msg-address h1::before {
        margin: 40px 0;
    }
}
/* 500px responsive end */
@media only screen and (max-width: 500px) {
    .main-massage .msg-address h1::before {
        margin: 40px 0;
    }
}
/* massage responsive end */
/* contact start */
.main-contact img {
    width: 565px;
    height: 300px;
}
.main-contact .container {
    display: flex;
    justify-content: space-between;
}
.main-contact .con-flex {
    display: flex;
}

.main-contact .con-flex p {
    font-size: 18px;
    margin-left: 5px;
}

.main-contact .conIh3 {
    display: flex;
    align-items: center;
}

.main-contact .conIh3 i,
.main-contact .conIh3 h3 {
    font-size: 25px;
}

.main-contact .add-email {
    margin: 0 50px 0 0;
}

.main-contact .add-email .address {
    margin: 0 0 75px 0;
}

.main-contact .phone-open .phone {
    margin: 0 0 38px 0;
}

.main-contact p {
    margin: 10px 0 0 0;
}

.main-contact i {
    margin: 0 10px 0 0;
}

.main-contact .contact-map {
    margin: 0 0 0 50px;
}

.main-contact .contact-map h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main-contact .contact-map p {
    font-size: 18px;
    margin-top: 50px;
}

.main-contact .contact-map iframe {
    margin: 50px 0 0 0;
}
/* contact end */
/* contact responsive start */
/* 1400px responsive end */
@media only screen and (max-width: 1400px) {
    .main-contact .contact-map iframe {
        width: 450px;
    }

    .main-contact .contact-map .getIn-tuch {
        width: 450px;
    }

    .main-contact .add-email {
        margin: 0 30px 0 0;
    }

    .main-contact .conIh3 i,
    .main-contact .conIh3 h3 {
        font-size: 20px;
    }

    .main-contact .con-flex p {
        font-size: 16px;
    }

    .main-contact img {
        width: 530px;
    }

    .main-contact .contact-map {
        margin: 0 !important;
    }
}
/* 1200px responsive end */
@media only screen and (max-width: 1200px) {
    .main-contact .container {
        flex-direction: column;
    }

    .main-contact .con-flex {
        display: flex;
        justify-content: space-evenly;
    }

    .main-contact .contact-map {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 70px;
    }

    .main-contact img {
        width: 100%;
        height: 450px;
    }

    .main-contact .add-email {
        margin: 0px 50px 0 50px;
    }

    .main-contact .conIh3 h3 {
        font-size: 25px;
    }

    .main-contact .con-flex p {
        font-size: 18px;
    }

    .main-contact .contact-map .getIn-tuch {
        width: 100%;
    }

    .main-contact .contact-map iframe {
        width: 100%;
    }
}
/* 800px responsive end */
@media only screen and (max-width: 800px) {
    .main-contact .conIh3 h3 {
        font-size: 20px;
    }

    .main-contact .con-flex p {
        font-size: 16px;
    }

    .main-contact .add-email {
        margin: 0 20px 0 0 !important;
    }

    .main-contact .con-flex {
        flex-direction: column;
    }

    .main-contact .phone-open .phone {
        margin: 40px 0 40px 0;
    }

    .main-contact .add-email .address {
        margin: 0 0 40px 0;
    }

    .main-contact .contact-map h1::before {
        margin: 40px 0;
    }
}
/* 600px responsive start */
@media only screen and (max-width: 600px) {
    .main-contact .contact-map h1::before {
        margin: 40px 0;
    }
}
/* 500px responsive start */
@media only screen and (max-width: 500px) {
    .main-contact .contact-map h1::before {
        margin: 40px 0;
    }
    .main-contact img {
        width: 100%;
        height: 250px;
    }
}
/* contact responsive end */
/* about section start */
.mainSection .about-img {
    height: 60vh !important;
}
.header-about h1 {
    color: var(--text-light);
    margin-top: 80px;
    display: inline-block;
}

.header-about h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--text-light);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* about body start */
.about-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px 0 0 0;
}

.about-body h1 {
    margin: 0 0 60px 0;
}

.about-body h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-body p {
    font-size: var(--p-size);
    line-height: var(--p-height);
}

.about-body .abt-wts a {
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0 40px 0;
    font-weight: 500;
    color: var(--text-dark) !important;
}

.about-body .abt-wts .btnabtwts {
    background-color: #25d366;
}
/* about body end */
/* about section end */
/* about responsive start */
/* 900px responsive start */
@media only screen and (max-width: 900px) {
    .header-about h1::before {
        margin: 40px 0;
    }

    .about-body h1::before {
        margin: 40px 0;
    }
}

/* 500px responsive start */
@media only screen and (max-width: 500px) {
    .header-about h1::before {
        margin: 70px 0 0 -5px;
    }

    .about-body h1::before {
        margin: 70px 0 0 55px;
    }

    .mainSection .about-img {
        height: 50vh !important;
    }

    .header-about h1 {
        margin-top: 100px;
    }
}
/* about responsive end */
