*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--accent);
}

:root {
    --primary: #000;
    --secondary: #FFFFFF;
    --accent: #95969D;
    --heading-font: "Raleway", sans-serif;
    --paragraph-font: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    --heading-size: 2em;
    --sub-heading-size: 1.5em;
    --paragraph-size: 1em;
}

a {
    text-decoration: none;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

/* Preloader */

#loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--secondary) url('/assets/img/preloader-128.gif') no-repeat center;
    z-index: 100000;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    background: var(--secondary);
}

.scrolled-offset {
    margin-top: 70px;
}

#main {
    z-index: 3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
    padding: 0;

}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: var(--paragraph-size);
    font-family: var(--heading-font);
    color: var(--accent);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 500;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--primary);

}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 5px;
    background-color: var(--primary);

}

.navbar .dropdown ul li {
    min-width: 100%;
    /*200px*/

}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: var(--secondary);

}

.navbar .dropdown ul a i {
    font-size: var(--paragraph-size);
    font-weight: 400;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    /* color: var(--accent); */
    opacity: 0.7;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--primary);
    font-size: 2em;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(43, 37, 35, 0.9);
    transition: 0.3s;
    z-index: 999;

}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--secondary);

}

.navbar-mobile ul {
    display: flex;
    position: fixed;
    /* top: 55px; */
    right: 25px;
    /* bottom: 15px; */
    flex-direction: column;
    justify-content: center;
    left: 25px;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: var(--secondary);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: var(--paragraph-size);
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--primary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    /* color: var(--accent); */
    opacity: 0.7;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0px;
    /*10px 20px*/
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--primary);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    /* color: var(--accent); */
    opacity: 0.7;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/* Section-1 */

.content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 6.25rem 6.25em 2rem 6.25rem;
}

.content .text-box {
    max-width: 600px;
    position: relative;
    margin-right: 20px;
}


.content .text-box h2 {
    color: var(--secondary);
    font-size: 3.2em;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 0.65rem;
}


.content .text-box h2::before {
    content: "";
    width: 20%;
    height: 0.5rem;
    background-color: var(--secondary);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 1rem;
}

.content .text-box .nav-btn button {
   background-color: var(--primary);
    box-shadow: none;
    border-radius: 1rem;
    transition: background-color 0.5s ease 0s;
    text-transform: none;
    font-family: var(--heading-font);
    font-size: var(--paragraph-size);
    font-weight: 500;
    transition: 0.3s;
}


.content .text-box .nav-btn button:hover {

  opacity: 0.85;
}


/* End Section-1 */

/* Section-2 */

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-slide .swiper-slide-shadow-left,
.swiper-slide .swiper-slide-shadow-right {
    background-image: none;
}

/* End Section-2 */
/* Minor changings */

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%;
}


.content .list-detail {
    margin-top: 0rem;

}

.content .list-detail .l-check {
    font-family: var(--paragraph-font);
    font-size: var(--paragraph-size);
    color: var(--secondary);
    text-transform: none;
    font-weight: 400;
    list-style: none;
    margin: 16px 0px;
}


.imgBox {
    background: var(--secondary);
    border-radius: 1rem;
}

.swiper-button-next,
.swiper-button-prev {

    color: var(--primary-color);
    font-weight: 700;
  
    }

.swiper-pagination-bullet {
    background-color: var(--primary);
    margin-bottom: 10px !important;
}

.swiper-slide img {
    display: block;
    width: 80%;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 0px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: var(--secondary);
    font-size: 14px;
    background: var(--primary);
    font-family: var(--heading-font);
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    opacity: 0.7 !important;

}



/* Media queries */

@media screen and (max-width: 768px) {


    .content {
        padding: 3rem !important;
        min-height: 90vh !important;
    }
.content .text-box {
    margin: 0;
    margin-top: 3.5em;
}
    .col-md-6 {
        width: 100% !important;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        max-width: 100% !important;

    }

    .swiper {
        padding: 0;
    }

    .col-md-5 {
        width: 100% !important;

    }

    .content .text-box h2::before {

        width: 50%;
    }

    .swiper {
        width: 100%;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .swiper-slide img {
        display: block;
        width: 90%;
    }

    .phone-check {
        display: flex !important;
        justify-content: space-evenly;
        align-items: center;
    }
}

@media screen and (max-width: 476px) {


     .content .text-box {
        margin: 0;
        margin-top: 4em;
            }

    .content .text-box h2 {
        font-size: 2rem;
        text-align: center;
    }

    .content .text-box h2::before {
        height: 0.3rem !important;
        left: auto;
    }

    .col-md-5 {

        margin-top: 2rem !important;
    }

    .content {
        padding: 3rem !important;
        min-height: 90vh !important;
    }

    /* .socials {
        left: 0rem;
        height: 0;
        top: 0;
        margin: -1.5rem;
    }

    .socials .sci {
        margin-right: auto !important;
    } */

    .btn-txt {
        font-size: 1rem !important;
        text-transform: none;
    }

    .swiper {
        width: 100%;
        padding: 0px;
    }

    .to-top {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }
/* 
    small {
        display: block;
        text-align: center;
    }

    small .big,
    small {
        font-size: 1rem !important;
    } */

    .list-detail .l-check,
    .list-detail .l-check .big {
        font-size: 1rem !important;
    }

    .swiper-slide img {
        display: block;
        width: 70%;
    }

    .content .list-detail {
        margin-top: 1rem !important;

    }

    .nav-btn {
        display: flex;
        justify-content: center;
    }

    .swiper-button-next,
    .swiper-button-prev {

        color: var(--primary-color);
    }

    .phone-check {
        display: flex !important;
        justify-content: space-evenly;
        align-items: center;
    }

    .phone-check .p-details {
        font-size: 0.65rem;
    }
}

/* Media queries ends here*/