﻿:root {
    --font-color: #757575;
    --main-font: "DM Sans", sans-serif;
    --color-black: #000;
    --color-blue: #1e09d8;
}

.dm-sans-<uniquifier > {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}


body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    transition: 0.5s ease-in-out;
}

p {
    color: var(--font-color);
    font-size: 18px;
    line-height: 1.7
}

.commonpadding {
    padding: 70px 0;
    position: relative;
}

.explore-btn {
    padding: 15px 30px;
    background: #010101;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.5s ease-in-out;
}

    .explore-btn:hover {
        background: #000;
        color: #fff;
    }

.explore-btn-white {
    padding: 15px 30px;
    background: #fff;
    border: 1px solid #010101;
    color: #010101;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.5s ease-in-out;
}

.title-section {
    margin-bottom: 20px;
}

    .title-section .title-text {
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        margin-bottom: 10px;
    }

    .title-section .main-title {
        font-size: 50px;
        font-weight: 500;
        color: #000;
        line-height: 1.2;
        letter-spacing: 1.1px;
    }

.style-ul li {
    margin-bottom: 10px;
}
/*--- header -----*/
.navbar.position-fixed {
    z-index: 999;
    transition: 0.3s ease-in-out;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.position-fixed.MenuStick {
    animation-name: fadeInDown;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.025),0 1px 1px 0 rgba(0,0,0,.01),0 0 50px 0 rgba(0,0,0,.07);
}

    .position-fixed.MenuStick .nav-link {
        font-size: 16px;
    }

.enquirebtn {
    padding: 10px 30px;
    background: #010101;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.5s ease-in-out;
}

.explore-btn:hover {
    background: #000;
    color: #fff;
}
/*-- mainbanner ---*/
.bannersection {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

    .bannersection:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.92);
        z-index: 1
    }

.bannersection-text {
    position: absolute;
    width: 100%;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-text {
    text-align: center;
}

    .banner-text h1 {
        color: var(--color-black);
        font-size: 70px;
        font-weight: 500
    }

    .banner-text p {
        margin: 20px 0;
        font-size: 18px;
        font-weight: 500
    }


.service-block-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}

.service-block {
    padding: 15px 20px;
    text-align: center;
    width: 100%;
}

.service-block-icon {
    margin-bottom: 20px;
    transition: 0.5s ease-in-out;
}

.service-block:hover .service-block-icon {
    transform: translate(0, -10px);
    transition: 0.3s ease-in-out;
}

.service-block h4 {
    font-size: 22px;
    font-weight: 600;
}

.service-block p {
    font-size: 16px;
}

.benefit-section-bg {
    background-image: url('../images/bg-banner.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

    .benefit-section-bg .main-title {
        color: #fff;
    }

.benefit-section {
    display: flex;
    flex-wrap: wrap;
}

    .benefit-section .benefit-block:nth-child(even) {
        margin-top: 15px;
    }

.benefit-block {
    width: 50%;
    padding: 20px;
    text-align: center;
}

    .benefit-block img {
        filter: invert(1);
        margin-bottom: 20px
    }

    .benefit-block h4 {
        font-size: 18px;
    }

    .benefit-block p {
        font-size: 15px;
    }

/* footer */
.footer-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
}

    .footer-section .social-icon a {
        margin-left: 10px;
    }

.logotext {
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    color: #000
}

.social-icon img {
    height: 40px;
    width: auto
}

.copyrightblock {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #808080;
    text-align: center;
    position: relative;
}

.footerpadding {
    position: relative;
}
/*----back to top ---*/
.backbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    right: 0px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    .backbtn img {
        height: 24px;
        width: auto;
    }

    .backbtn:hover {
        cursor: pointer;
        background-color: #333;
    }

    .backbtn:active {
        background-color: #555;
    }

    .backbtn.show {
        opacity: 1;
        visibility: visible;
    }

.contactform-block {
    margin-bottom: 50px
}

.form-control {
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0,0.22);
    background: transparent;
    border-radius: 0;
    min-height: 45px;
    margin-bottom: 20px;
}

    .form-control:focus {
        outline: 0;
        box-shadow: none;
        border-color: #000
    }

.btn.submit-btn {
    height: 45px;
    background: #000;
    color: #fff;
    padding: 0 25px;
    border-radius: 0;
    border: 0;
}

.quickcontact {
    margin-left: 25px;
    padding: 25px;
    border-left: 1px solid #757575;
}

.blocksection {
    padding-left: 20px;
}

    .blocksection p {
        margin-top: 20px;
        margin-bottom: 5px;
        font-weight: 500;
        color: #000
    }

    .blocksection a {
        color: var(--font-color);
        font-size: 17px;
        text-decoration: none;
    }
/*********responsive */
@media (max-width: 767px) {
    .banner-text h1 {
        font-size: 38px;
    }

    .commonpadding {
        padding: 30px 0
    }

    .title-section {
        margin-top: 20px;
    }

        .title-section .main-title {
            font-size: 28px;
            font-weight: 700
        }

    .service-block-section {
        flex-wrap: wrap;
    }

    .benefit-block {
        width: 100%;
        padding: 15px;
    }

    p {
        font-size: 16px;
    }

    .copyrightblock {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }



    .class-req {
        height: 100vh;
        object-fit: cover
    }

    .backbtn {
        position: relative;
        left: 0;
        right: 0;
        margin: auto;
    }
}

@media(max-width:991px) {
    /*.navbar.position-fixed {
        background: #fff;
    }*/
    .quickcontact {
        border: 0;
        padding: 10px;
        margin-left: 0;
        margin-bottom: 25px;
        text-align: center
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .bannersection {
        height: 70vh;
    }

    .banner-text h1 {
        font-size: 48px;
    }

    .class-req {
        height: 70vh;
        object-fit: cover
    }

    /* .title-section {
        margin-top: 20px
    }*/

    .title-section .main-title {
        font-size: 38px;
    }
}

@media (min-width: 992px) and (max-width:1195px) {
    .bannersection {
        height: auto
    }
}
