﻿@import url('fonts.css');

body {
    font-family: 'regular';
    background-color: var(--bg);
}

:root {
    /*theme color*/
    --text: #935B54;
    --bg: #ffffff;
    --primary: black;
    --secondary: #935B54;
    --light: #91371c;
    --error: red;
    /*grediant (webgradiant.com) color */
    --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    /*theme font-family*/
}

img {
    width: 100%;
}


.row {
    margin: 0 !important;
}


/*-----------------layout--------------------*/
.navbar {
    padding: 20px 0;
    margin: 0;
}

    .navbar a {
        color: var(--text) !important;
        text-decoration: none;
    }

    .navbar img {
        width: 60%;
    }

    .navbar .row {
        width: 100%;
        align-items: center;
        margin: 0;
        display: flex;
    }

    .navbar .navbar-menu {
        margin-left: auto;
    }

.navbar-icon {
    display: flex;
    justify-content: flex-end;
    height: 40px;
    align-items: center;
}

@media screen and (min-width: 992px) {
    .navbar-icon {
        display: none;
    }
}

.navbar-icon span {
    width: 36px;
    height: 3px;
    background-color: var(--secondary);
    display: block;
    position: relative;
    transition: 0.3s;
}

    .navbar-icon span:after {
        content: "";
        width: 36px;
        height: 3px;
        position: absolute;
        top: 9px;
        background-color: var(--secondary);
        transition: 0.3s;
    }

    .navbar-icon span:before {
        content: "";
        width: 36px;
        height: 3px;
        position: absolute;
        bottom: 9px;
        background-color: var(--secondary);
        transition: 0.3s;
    }

.navbar-icon.active span {
    background-color: transparent;
}

    .navbar-icon.active span:before {
        transform: rotate(45deg);
        bottom: 0;
        background-color: var(--secondary);
    }

    .navbar-icon.active span:after {
        transform: rotate(-45deg);
        background-color: var(--secondary);
        top: 0;
    }

@media screen and (max-width: 991px) {
    .navbar-menu nav {
        visibility: hidden;
        position: fixed;
    }
}

.navbar-menu nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: flex-end;
}

    .navbar-menu nav ul li {
        margin: 0;
    }

@media screen and (max-width: 991px) {
    .navbar-menu nav ul li {
        transform: translateX(-10px);
        opacity: 0;
    }
}

.navbar-menu nav ul li a {
    display: block;
    padding: 10px 20px;
    color: #000;
    transition: 0.3s;
}

.navbar-menu nav ul li:hover a {
    text-decoration: none;
    transform: translateY(-3px);
}

@media screen and (max-width: 991px) {
    .navbar-menu nav.active {
        visibility: visible;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--bg);
    }
}

@media screen and (max-width: 991px) {
    .navbar-menu nav.active ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

@media screen and (max-width: 991px) {
    .navbar-menu nav.active ul li {
        transform: translateX(0);
        opacity: 1;
        transition: 0.9s;
    }

        .navbar-menu nav.active ul li:nth-child(1) {
            transition-delay: 0.15s;
        }

        .navbar-menu nav.active ul li:nth-child(2) {
            transition-delay: 0.3s;
        }

        .navbar-menu nav.active ul li:nth-child(3) {
            transition-delay: 0.45s;
        }

        .navbar-menu nav.active ul li:nth-child(4) {
            transition-delay: 0.6s;
        }

        .navbar-menu nav.active ul li:nth-child(5) {
            transition-delay: 0.75s;
        }

        .navbar-menu nav.active ul li:nth-child(6) {
            transition-delay: 0.9s;
        }

        .navbar-menu nav.active ul li:nth-child(7) {
            transition-delay: 1.05s;
        }

        .navbar-menu nav.active ul li:nth-child(8) {
            transition-delay: 1.2s;
        }

        .navbar-menu nav.active ul li:nth-child(9) {
            transition-delay: 1.35s;
        }

        .navbar-menu nav.active ul li a {
            color: #fff;
            font-size: 24px;
        }
}

footer {
    text-align: center;
    color: var(--text) !important
}

.footer-icons {
    color: var(--text) !important;
    text-align: center;
    padding: 10px;
    font-size: 3vh;
}

    .footer-icons a {
        color: var(--text) !important;
    }

.footer-icons {
    padding: 1rem !important;
}

.footer-copy, .footer-icons {
    align-self: center;
}

@media(max-width:990px) {
    .footer-logo img {
        width: 30%;
        display: flex;
        margin: 0 auto;
    }
}


/*----------------------layout-ends------------------*/
