@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --green: #004299;
    --black: #192a56;
    --light-color: #666;
    --white: #fff;
    --text: rgb(2, 102, 119);
    --gold: rgb(228, 215, 31);
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    --c2: #192a56;
    --color: rgb(4, 132, 136);
}

* {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .3s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

section {
    padding: 2rem 9%;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    color: #fff !important;
    background: var(--black);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;
}

.btn:hover {
    background: rgb(0, 83, 109);
    letter-spacing: .1rem;
}

section:nth-child(even) {
    background: #eee;
}

.sub-heading {
    text-align: center;
    color: orange;
    font-size: 2rem;
    padding-top: 1rem;
}

.heading {
    text-align: center;
    color: var(--black);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

header .logo {
    color: var(--black);
    width: 19%;
    font-weight: bolder;
}

header .logo i {
    color: rgb(80, 214, 255);
}

header .navbar a {
    font-size: 1.3rem;
    border-radius: 1.5rem;
    padding: .5rem 1.5rem;
    color: var(--light-color);
}

header .navbar a.active,
header .navbar a:hover {
    color: #FFF;
    background: rgb(4, 132, 136);
}


header .icons i,
header .icons a {
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    width: 4.5rem;
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    border-radius: 50%;
    background: #eee;
}

:hover header .icons i:hover,
header .icons a:hover {
    color: #fff;
    background: var(--green);
    transform: rotate(360deg);
}

header .icons #menu-bars {
    display: none;
}

#search-form {
    position: fixed;
    top: -110%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1004;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

#search-form.active {
    top: 0;
}

#search-form #search-box {
    width: 50rem;
    border-bottom: .1rem solid #fff;
    padding: 1rem 0;
    color: #fff;
    font-size: 3rem;
    text-transform: none;
    background: none;
}

#search-form #search-box::placeholder {
    color: #eee;
}

#search-form #search-box::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

#search-form label {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;

}

#search-form label:hover {
    color: rgba(80, 214, 255);
}

#search-form #close {
    position: absolute;
    color: #fff;
    cursor: pointer;
    top: 2rem;
    right: 3rem;
    font-size: 5rem;
}

.home .home-slider .slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 9rem;
}

.home .home-slider .slide .content {
    flex: 1 1 45rem;

}

.home .home-slider .slide .image {
    flex: 1 1 25rem;
    width: 47%;
    height: 500px;
}

.home .home-slider .slide .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width:768px) {
    .home .home-slider .slide .image {
        flex: 1 1 25rem;
        width: 100%;
    }

    .home .home-slider .slide .image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

}

.home .home-slider .slide .content span {
    color: orange;
    font-size: 2.5rem;
}

.home .home-slider .slide .content h3 {
    color: var(--black);
    font-family: "Poppins", sans-serif;
    font-size: 5rem;
}

.home .home-slider .slide .content h3 span {
    font-size: 5rem;
    color: var(--color);
}

.home .home-slider .slide .content p {
    color: var(--light-color);
    font-size: 1.7rem;
    padding: 3rem 0;
    line-height: 1.5;
}

.swiper-pagination-bullet-active {
    background: var(--green);
}

.category .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap: 1.5rem;
}

@media screen and (max-width:600px) {
    .category .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        gap: 1.5rem;
    }
}

.category .box-container .box {
    padding: 1rem;
    background: #fff;
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.category .box-container .box .fa-heart,
.category .box-container .box .fa-eye {
    position: absolute;
    top: 1.5rem;
    background-color: #eee;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--black);
}

.category .box-container .box .fa-heart:hover,
.category .box-container .box .fa-eye:hover {
    background: var(--green);
    color: rgb(255, 255, 255);
}

.category .box-container .box .fa-heart {
    right: -15rem;
}

.category .box-container .box .fa-eye {
    left: -15rem;
}

.category .box-container .box:hover .fa-heart {
    right: 1.5rem;
}

.category .box-container .box:hover .fa-eye {
    left: 1.5rem;
}

.category .box-container .box img {
    margin: 0.5rem 0;
    height: 17rem;
    width: 100%;
    object-fit: cover;
}

.category .box-container .box h3 {
    color: var(--black);
    font-size: 2rem;
}

.category .box-container .box .stars {
    padding: 1rem 0;
}

.category .box-container .box .stars i {
    font-size: 1.7rem;
    color: var(--gold);
}

.category .box-container .box span {
    color: var(--text);
    font-weight: bolder;
    margin-right: 1rem;
    font-size: 2.5rem;
}

.about .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.about .row .image {
    flex: 1 1 45rem;
    height: auto;

}

.about .row .image img {
    width: 100%;
    height: 100%;
}


.about .row .content {
    flex: 1 1 45rem;

}

.about .row .content h3 {
    color: var(--black);
    font-size: 4rem;
    padding: .5rem 0;
}

.about .row .content p {
    color: var(--light-color);
    font-size: 1.5rem;
    padding: .5rem 0;
    line-height: 2;
}

.about .row .content .icons-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: .5rem;
}

.about .row .content .icons-container .icons {
    background: #eee;
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1 1 17rem;
    padding: 1.5rem 1rem;
}

.about .row .content .icons-container .icons i {
    font-size: 2.5rem;
    color: var(--green);
}

.about .row .content .icons-container .icons span {
    font-size: 1.5rem;
    color: var(--black);
}

.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

@media screen and (max-width:600px) {
    .menu .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem , 1fr));
        gap: 1.5rem;
    }
    
}

.menu .box-container .box {
    background: #fff;
    border: .1rem solid rgba(0, 0, 0, .2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.menu .box-container .box .image {
    height: 25rem;
    width: 100%;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

.menu .box-container .box .image img {
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.menu .box-container .box .image .fa-heart {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    color: var(--black);
}

.menu .box-container .box .image .fa-heart:hover {
    background-color: var(--green);
    color: #fff;
}

.menu .box-container .box .content {
    padding: 2rem;
    padding-top: 0;
}

.menu .box-container .box .content .stars {

    padding-bottom: 1rem;

}

.menu .box-container .box .content .stars i {
    font-size: 1.7rem;
    color: var(--gold);
}

.menu .box-container .box .content h3 {
    color: var(--black);
    font-size: 2rem;
    text-align: center;
}

.menu .box-container .box .content p {
    color: var(--light-color);
    font-size: 1.6rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.menu .box-container .box .content .price {
    color: var(--text);
    margin-left: 1rem;
    font-size: 2.5rem;
}

.reviews .slide {
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0, 0, 0, .2);
    border-radius: .5rem;
    position: relative;
}

.reviews .slide .fa-quote-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    color: #ccc;
}

.reviews .slide .user {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
}

.reviews .slide .user img {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.reviews .slide .user h3 {
    color: var(--black);
    font-size: 2rem;
    padding-bottom: .5rem;
}

.reviews .slide .user i {
    font-size: 1.3rem;
    color: var(--gold);
}

.reviews .slide p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--light-color);
}

.order form {
    max-width: 90rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0, 0, 0, .2);
    background: #fff;
    padding: 1.5rem;
    margin: 0 auto;

}

.order form .inputBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.order form .inputBox .input {
    width: 49%;

}

.order form .inputBox .input span {
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
}

.order form .inputBox .input input,
.order form .inputBox .input textarea {
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    margin-bottom: 1rem;
    width: 100%;
}

.order form .inputBox .input input:focus,
.order form .inputBox .input textarea:focus {
    border: .2rem solid var(--green);
}


.order form .inputBox .input textarea {
    height: 20rem;
    resize: none;
}

.order form .inputBox .btn {
    margin-top: 0;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    padding: .5rem 0;
    font-size: 2.5rem;
    color: var(--black);
}

.footer .box-container .box a {
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    padding: .5rem 0;
    color: var(--light-color);
}

.footer .box-container .box p {

    font-size: 1.5rem;
    color: var(--light-color);
}

.footer .box-container .box a:hover {
    color: var(--green);
    text-decoration: underline;

}

.footer .credit {
    text-align: center;
    border-top: .1rem solid rgba(0, 0, 0, .1);
    font-size: 2rem;
    color: var(--black);
    padding: .5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;

}

.footer .credit span {
    color: var(--green);
}

/* Media queries */

@media (max-width:991px) {
    html {
        font-size: 55%;

    }

    header {
        padding: 1rem 2rem;
    }

    section {
        padding: 2rem;
    }
}


@media (max-width:800px) {

  

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        background: #fff;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        border-bottom: .1rem solid rgba(0, 0, 0, .2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header .icons #menu-bars {
        display: inline-block;
    }

    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    header .navbar a {
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background: #eee;
    }

    #search-form #search-box {
        width: 90%;
        margin: 0 1rem;
    }

    .home .home-slider .slide .content h3 {
        font-size: 5rem;
    }
}


@media (max-width:450px) {
    html {
        font-size: 50%;

    }

    .category .box-container .box img {
        width: 100%;
        height: 120px;
    }

    .order form .inputBox .input {
        width: 100%;

    }
}

@media screen and (max-width:425px) {
    header .logo {
        color: var(--black);
        width: 60%;
        font-weight: bolder;
    }
}

@media screen and (min-width:425px) and (max-width:768px) {
    header .logo {
        color: var(--black);
        width: 40%;
        font-weight: bolder;
    }
}


/* /////////////////////// */



/* ////////////////////////////Mini service Samples/////////////////// */

.home-about-services {
    width: 100%;
    margin-bottom: 5%;
    padding-top: 2%;
}

.home-about-services .home-s-title {
    margin-bottom: 4%;
}

.home-about-services .home-s-title h5 {
    color: var(--color);
}


.home-about-services .home-s-title h2 {
    color: var(--black);
}

.home-about-services .home-s-title a {
    width: 150px;
    margin-top: 2%;
    padding: 1% 1.5%;
    background-color: var(--c2);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: 1s;
}

.home-about-services .home-s-title a:hover {
    transition: 1s;
    background-color: var(--blue);
    font-weight: 500;
    color: var(--white);
}

.home-about-services button {
    margin-bottom: 3%;
    text-align: start;
    text-transform: uppercase;
    background: none;
    color: var(--color);
    transition: 0.5s;
    font-size: 15px;
}

.home-about-services button:hover {
    color: var(--c2);
}

.home-about-services .nav-pills {
    border-bottom: 3px solid var(--color);
    background-color: var(--white);
    width: 30%;
    /* width: 100%;
    flex-direction: row !important; */
}

.home-about-services .nav-pills .active {
    background: var(--color) !important;
    border-left: 5px solid var(--c2) !important;
    color: var(--white) !important;
}


.home-about-services .tab-content {
    width: 60%;
    height: auto;
}

.sec-con-img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-con-img img {
    width: 35% !important;
    height: 250px !important;
}

.sec-content {
    width: 60%;
}

.home-about-services .tab-content h5 {
    font-size: 25px;
    padding-bottom: 3%;
    border-bottom: 1px solid var(--color);
    color: var(--color);
}

.home-about-services .tab-content p {
    padding-top: 2%;
    font-size: 1.6rem;
}

.home-about-services .tab-content .tab-pane {
    height: auto;
    width: 100%;
}

.home-about-services .tab-content .tab-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}







@media screen and (max-width:320px) {

    /* ////////////////////////////Mini service Samples/////////////////// */


    .flex-sm-column {
        flex-direction: column;
    }

    .home-about-services .nav-pills {
        border-bottom: 3px solid var(--color);
        background-color: var(--white);
        /* width: 30%; */
        width: 100%;
        display: block;
        flex-direction: row !important;
    }

    .home-about-services .nav-pills .active {
        background: var(--color) !important;
        border-left: 5px solid var(--c2) !important;
        color: var(--white) !important;
    }


    .home-about-services .tab-content {
        width: 100%;
    }

    .home-about-services .tab-content .tab-pane {
        height: auto;
        width: 100%;
    }




}

@media screen and (min-width:321px) and (max-width:426px) {


    /* ////////////////////////////Mini service Samples/////////////////// */


    .flex-sm-column {
        flex-direction: column;
    }

    .home-about-services .nav-pills {
        border-bottom: 3px solid var(--color);
        background-color: var(--white);
        /* width: 30%; */
        margin-bottom: 5%;
        display: block;
        width: 100%;
        flex-direction: row !important;
    }

    .home-about-services .nav-pills .active {
        background: var(--color) !important;
        border-left: 5px solid var(--c2) !important;
        color: var(--white) !important;
    }


    .home-about-services .tab-content {
        width: 100%;
    }

    .home-about-services .tab-content .tab-pane {
        height: auto;
        width: 100%;
    }


}

@media screen and (min-width:426px) and (max-width:600px) {

    .flex-sm-column {
        flex-direction: column;
    }

    .home-about-services .nav-pills {
        border-bottom: 3px solid var(--color);
        background-color: var(--white);
        /* width: 30%; */
        width: 100%;
        flex-direction: row !important;
        margin-bottom: 3% !important;
    }

    .home-about-services .nav-pills .active {
        background: var(--color) !important;
        border-left: 5px solid var(--c2) !important;
        color: var(--white) !important;
    }


    .home-about-services .tab-content {
        width: 100%;
    }

    .home-about-services .tab-content .tab-pane {
        height: auto;
        width: 100%;
    }


}

@media screen and (min-width:601px) and (max-width:767px) {


    /* Home About services  */

    .flex-sm-column {
        flex-direction: column;
    }

    .home-about-services .nav-pills {
        border-bottom: 3px solid var(--color);
        background-color: var(--white);
        /* width: 30%; */
        width: 100%;
        flex-direction: row !important;
    }

    .home-about-services .nav-pills button {
        font-size: 12px;
    }

    .home-about-services .nav-pills .active {
        background: var(--color) !important;
        border-left: 5px solid var(--c2) !important;
        color: var(--white) !important;
    }


    .home-about-services .tab-content {
        width: 100%;
    }

    .home-about-services .tab-content .tab-pane {
        height: auto;
        width: 100%;
    }


}

@media screen and (min-width:768px) and (max-width:900px) {


    .flex-sm-column {
        flex-direction: column;
    }

    .home-about-services .nav-pills {
        border-bottom: 3px solid var(--color);
        background-color: var(--white);
        /* width: 30%; */
        width: 100%;
        flex-direction: row !important;
    }

    .home-about-services .nav-pills button {
        font-size: 12px;
    }

    .home-about-services .nav-pills .active {
        background: var(--color) !important;
        border-left: 5px solid var(--c2) !important;
        color: var(--white) !important;
    }


    .home-about-services .tab-content {
        width: 100%;
    }

    .home-about-services .tab-content .tab-pane {
        height: 350px;
        width: 100%;
    }


}

@media screen and (min-width:901px) and (max-width:991px) {

    /* Home About services  */

    .flex-sm-column {
        flex-direction: column;
    }

    .home-about-services .nav-pills {
        border-bottom: 3px solid var(--color);
        background-color: var(--white);
        /* width: 30%; */
        width: 100%;
        flex-direction: row !important;
    }

    .home-about-services .nav-pills button {
        font-size: 12px;
    }

    .home-about-services .nav-pills .active {
        background: var(--color) !important;
        border-left: 5px solid var(--c2) !important;
        color: var(--white) !important;
    }


    .home-about-services .tab-content {
        width: 100%;
    }

    .home-about-services .tab-content .tab-pane {
        height: 350px;
        width: 100%;
    }

    /* Footer  */

}


@media screen and (max-width:700px) {
    .sec-con-img {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }

    .sec-con-img img {
        width: 100% !important;
        height: 250px !important;
    }

    .sec-content {
        width: 100%;
    }
}


.whatsapp-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 120px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 22;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
}

.whatsapp-btn i {
    font-size: 30px;
    color: green;
    z-index: 999;
}



/* appoinment */

.appoinment {
    background-color: var(--color);
    padding: 2%;
    color: var(--white) !important;
    font-size: 1.2rem;
    border-radius: 15px;
}


.appoinment:hover {
    color: var(--white);
    background-color: var(--black);
}






/* ///////////////////////////////////////Apoinment Booking ////////////// */

.job-apply {
    position: fixed;
    z-index: 555;
    bottom: 5px;
    left: 10px;
    text-decoration: none;
    scale: 0.8;
}

@keyframes scale {
    0% {
        scale: 1;
    }

    50% {
        scale: 0.8;
    }

    100% {
        scale: 1;
    }
}

.job-apply .job {
    width: 90px;
    height: 90px;
    background-color: var(--c2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    border: 2px solid var(--color);
    border-radius: 50%;
}

.job-apply .job i {
    color: var(--white);
    margin-bottom: 15px;
}



/* ///////////////////////////////////////Apoinment Booking ////////////// */

.appoinment-book {
    position: fixed;
    z-index: 555;
    bottom: 10px;
    right: 5px;
    text-decoration: none;
    scale: 0.8;
}

@keyframes scale {
    0% {
        scale: 1;
    }

    50% {
        scale: 0.8;
    }

    100% {
        scale: 1;
    }
}

.appoinment-book .job {
    width: 100px;
    height: 100px;
    background-color: var(--c2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
    border: 2px solid var(--color);
    border-radius: 50%;
}

.appoinment-book .job i {
    color: var(--white);
    margin-bottom: 15px;
}



/* Up Arrow  */

.up-content {
    position: fixed;
    right: 20px;
    z-index: 555;
    bottom: 20px;
    text-decoration: none;
}

.up-content .up-arrow {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: 2px solid var(--color);
    justify-content: center;
    background-color: var(--c2);
}

.up-content .up-arrow i {
    font-size: 30px;
    color: var(--white);
}










@media screen and (max-width:426px) {
    .appoinment-book {
        position: fixed;
        z-index: 555;
        bottom: 10px;
        right: 10px;
        text-decoration: none;
        scale: 0.8;
    }

    .appoinment-book .job {
        width: 60px;
        height: 60px;
        background-color: var(--c2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        color: var(--white);
        border: 2px solid var(--color);
        border-radius: 50%;
    }

    .appoinment-book .job i {
        color: var(--white);
        margin-bottom: 0;
    }


    /* ///////////////////////////////////////Apoinment Booking ////////////// */

    .job-apply {
        position: fixed;
        z-index: 555;
        bottom: 10px;
        left: 10px;
        text-decoration: none !important;
        scale: 0.8;
    }

    .job-apply .job {
        width: 60px;
        height: 60px;
        background-color: var(--c2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        color: var(--white);
        border: 2px solid var(--color);
        border-radius: 50%;
    }

    .job-apply .job i {
        color: var(--white);
        margin-bottom: 0;
    }



    .whatsapp-btn {
        width: 50px;
        height: 50px;
        position: fixed;
        bottom: 80px;
        right: 15px;
        display: flex;
        align-items: center;
        z-index: 22;
        justify-content: center;
        background-color: var(--white);
        border-radius: 50%;
    }
    
}

.home-visit-section{
    width: 100%;
    height: auto;
    padding: 4%;
    background-image: url(../images/pics/1.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.home-visit-section::before{
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #192a56;
    opacity: 0.5;
}

.home-visit-section .home-s-title{
    position: relative;
    z-index: 2;
}

.home-visit-section .home-s-title h1{
    color: var(--white);
}

.home-visit-container{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-visit-container p{
    font-size: 1.5rem;
    margin-bottom: 2%;
    color: var(--white);
}

.home-visit-container a{
    padding: 2rem;
    font-size: 1.5rem;
}

