@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --font-base: "DM Sans", sans-serif;

    --primary-color: #edf2f8;
    --secondary-color: #313bac;
    /* --secondary-color: #F7C02D; */
    --black-color: #030303;
    --lightGray-color: #e4e4e4;
    --gray-color: #6b7688;
    --brown-color: #46364a;
    --white-color: #ffffff;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'Titillium Web', sans-serif;
}

p {
    font-size: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 2rem;
}

/** Scroll bar **/
::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #eee;
}

body::-webkit-scrollbar-thumb {
    /* background-color: #b4b4b4; */
    border-bottom: 3px solid #ff3d00;
}

.shader{
    width: 80%;
    border-bottom: 1px solid gainsboro;
}

/** header section start here  **/

nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 100px;
    z-index: 100;
    background: #fff;
    width: 100%;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

nav.sticky {
    position: sticky;
    top: 0;
    left: 0;
}

nav a.logo {
    text-decoration: none;
}

nav .logo {
    color: #24272c;
    text-align: left;

    /* font-size: 30px; */
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -1px;
}

nav .logo span {
    color: #ff3d00;
}

nav .nav-items {
    display: flex;
    justify-content: flex-end;
    /* flex-direction: ; */
    flex: 1;
    padding: 0 0 0 40px;
}

nav .nav-items li {
    list-style: none;
    padding: 0 15px;
}

nav .nav-items li a {
    position: relative;
    color: #24272c;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

nav .nav-items li a::after{
    content: '';
    position: absolute;
    background: #ff3d00;
    height: 3px;
    width: 0%;
    left: 0;
    bottom: -0px;
    transition: 0.3s all ease-in-out;
}

nav .nav-items li a:hover::after{
    width: 100%;
}

nav form {
    display: flex;
    height: 40px;
    padding: 2px;
    background: #fff;
    color: #24272c;
    min-width: 18% !important;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    border: 1px solid rgba(155, 155, 155, 0.2);
}

nav form .search-data {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color: #24272c;
    font-size: 17px;
    border: none;
    font-weight: 500;
    background: none;
}

nav form button {
    padding: 0 15px;
    color: #fff;
    font-size: 17px;
    background: #ff3d00;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

nav form button:hover {
    background: #e63600;
}

nav .menu-icon,
nav .cancel-icon,
nav .search-icon {
    width: 40px;
    text-align: center;
    margin: 0 50px;
    font-size: 18px;
    color: #262626;
    cursor: pointer;
    display: none;
}

nav .menu-icon span,
nav .cancel-icon,
nav .search-icon {
    display: none;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.content header {
    font-size: 30px;
    font-weight: 700;
}

.content .text {
    font-size: 30px;
    font-weight: 700;
}

.space {
    margin: 10px 0;
}

nav .logo.space {
    color: red;
    padding: 0 5px 0 0;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content header {
    font-size: 30px;
    font-weight: 700;
}

.content .text {
    font-size: 30px;
    font-weight: 700;
}

.content .space {
    margin: 10px 0;
}


/** footer section start here  **/
footer {
    width: 100%;
    height: auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer .footer-wrapper {
    width: 90%;
    padding: 2rem 0 0 0;
    background: #fff;
}

footer .footer-wrapper .wide-box,
footer .footer-wrapper .equal-box {
    padding: 1rem;
    font-size: 15px;
}

footer .footer-wrapper .wide-box .logo a {
    margin-bottom: 1rem;
}

footer .footer-wrapper .wide-box .logo a,
footer .footer-wrapper .wide-box a {
    text-decoration: none;
    color: #202020;
    font-size: 35px;
    font-weight: 700;
}

footer .footer-wrapper .wide-box a {
    font-size: 15px;
    margin: 5px;
    font-weight: 500;
}

footer .footer-wrapper .wide-box .social-media-icon a {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-wrapper .wide-box .social-media-icon a:hover {
    animation: leaves 0.35s;
}

@keyframes leaves {
    0% {
        transform: scale(1.0);
    }

    50% {
        transform: scale(.8);
    }

    100% {
        transform: scale(1.0);
    }
}

footer .footer-wrapper .wide-box img {
    width: 20px;
}

footer .footer-wrapper .equal-box h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

footer .footer-wrapper .equal-box a {
    text-decoration: none;
    color: #202020;
    display: block;
    transition: ease-in-out;
}

footer .footer-wrapper .equal-box a:hover {
    color: #ff3d00;
    font-weight: 500;
}

.footer1 {
    width: 100%;
    margin-bottom: 1rem;
    display: grid;
    grid-template: "1fr 1fr 1fr 1fr 1fr";
    padding: 2rem 0;
    column-gap: 1rem;
}

.footer2 {
    border-top: 1px solid gainsboro;
    padding-top: 1rem;
    text-align: center;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon {
    display: block;
    display: flex;
    margin-bottom: 0.25rem;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon ion-icon {
    font-size: 20px;
    margin: 0.1rem;
    padding: 0.2rem;
    margin-left: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 50%;
    transition: 0.1s ease-in-out;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon a {
    margin-left: 0;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon a:first-child {
    margin-left: 0;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon ion-icon:first-child {
    margin-left: 0;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon ion-icon:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon a:nth-child(1) ion-icon {
    color: #00acee;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon a:nth-child(2) ion-icon {
    color: #0077b5;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon a:nth-child(3) ion-icon {
    color: #db3236;
}

body>footer>div>div.footer1>div:nth-child(5)>div.social-media-icon a:nth-child(4) ion-icon {
    color: #171515;
}

body>footer>div>div.footer1>div:nth-child(5)>div.play-store {
    margin-top: 0.25rem;
    overflow: hidden;
}

body>footer>div>div.footer1>div:nth-child(5)>div.play-store img {
    width: 100px;
    object-fit: cover;
}

body > footer > div > div.footer1 > div:nth-child(5) > p{
    font-size: 1rem;
}

/** Responsive section start here **/
@media (max-width: 1245px) {
    nav {
        padding: 0 50px;
    }
}

@media (max-width: 1140px) {
    nav {
        padding: 0px;
    }

    nav .logo {
        flex: 2;
        text-align: left;
    }

    nav .nav-items {
        position: fixed;
        z-index: 99;
        top: 70px;
        width: 100%;
        left: -100%;
        height: 100%;
        padding: 10px 50px 0 50px;
        text-align: center;
        background: #fff;
        display: inline-block;
        transition: left 0.3s ease;
    }

    nav .nav-items.active {
        left: 0px;
        /* left: 1rem; */
    }

    nav .nav-items li {
        line-height: 40px;
        margin: 30px 0;
    }

    nav .nav-items li a {
        font-size: 20px;
    }

    nav form {
        position: absolute;
        top: 80px;
        right: 50px;
        opacity: 0;
        pointer-events: none;
        transition: top 0.3s ease, opacity 0.1s ease;
    }

    nav form.active {
        top: 95px;
        opacity: 1;
        pointer-events: auto;
    }

    nav form:before {
        position: absolute;
        content: "";
        top: -13px;
        right: 0px;
        width: 0;
        height: 0;
        z-index: -1;
        border: 10px solid transparent;
        border-bottom-color: #1e232b;
        margin: -20px 0 0;
    }

    nav form:after {
        position: absolute;
        content: '';
        height: 60px;
        padding: 2px;
        background: #1e232b;
        border-radius: 2px;
        min-width: calc(100% + 20px);
        z-index: -2;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    nav .menu-icon {
        display: block;
    }

    nav .search-icon,
    nav .menu-icon span {
        display: block;
    }


    nav .cancel-icon.show {
        display: block;
    }
}

@media (max-width: 1038px) {}

@media (max-width: 980px) {

    nav .menu-icon,
    nav .cancel-icon,
    nav .search-icon {
        margin: 0 20px;
    }

    nav form {
        right: 30px;
    }

    .footer1 {
        grid-template: "1fr 1fr";
    }

    footer .footer-wrapper {
        padding: 0;
    }

    nav .menu-icon {
        width: 30px;
    }

    nav .menu-icon span img {
        width: 30px;
    }

    nav .logo {
        font-size: 2rem;
    }

}

@media (max-width:480px) {

    .footer1 {
        grid-template: "1fr";
        row-gap: 1rem;
    }

    footer .footer-wrapper .wide-box,
    footer .footer-wrapper .equal-box {
        padding: 0;
    }

    .footer2 {
        font-size: 14px;
    }

}

@media (max-width:443px) {}

@media (max-width: 353px) {

    nav .menu-icon,
    nav .cancel-icon,
    nav .search-icon {
        margin: 0 10px;
        font-size: 16px;
    }

    nav .menu-icon {
        width: 25px;
    }

    nav .menu-icon span img {
        width: 25px;
    }

    nav .logo {
        font-size: 1.5rem;
    }
}