﻿* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
}
a {
    text-decoration-line: blink;
}
nav ul li {
    margin: 0 0 0 15px;
}

.nav-link {
    color: #fff !important;
}

.navbar-nav {
    --bs-nav-link-hover-color: rgb(55, 11, 228);
}

nav ul li a {
    font-size: 14px !important;
}
       
.mobile-menu {
    display: block;
    width: 100%;
    background: #fff /*e0b88f/*c99393/*e5d1a4/*dcc591/*EFD3A3*/;
    line-height: 1.6em;
    font-weight: 400;
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
    /*Strip the ul of padding and list styling*/
    .mobile-menu ul {
        list-style-type: none;
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
        width: 100%;
/*        position: absolute;*/
        background: #fff;
    }

    /*Create a horizontal list with spacing*/
    .mobile-menu li {
        display: inline-block;
        /*float: left;
	margin-right: 1px;*/
    }

        /*Style for menu links*/
        .mobile-menu li a {
            display: block;
            min-width: 140px;
            text-align: center;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            color: #fff;
            text-transform: uppercase;
            background: #fff;
            text-decoration: none;
            margin-left: -5px;
            padding: 10px 0;
            -webkit-transition: all 0.4s ease 0s;
            -moz-transition: all 0.4s ease 0s;
            -ms-transition: all 0.4s ease 0s;
            -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
        }

        /*Hover state for top level links*/
        .mobile-menu li:hover a {
            color: #4db3ff;
            background-color: #ccddee;
        }

        /*Style for dropdown links*/
        .mobile-menu li:hover ul a {
            background: #f3f3f3;
            color: #2f3036;
            height: 40px;
            line-height: 40px;
        }

        /*Hover state for dropdown links*/
        .mobile-menu li:hover .mobile-menu ul a:hover {
            color: #4db3ff;
        }

        /*Hide dropdown links until they are needed*/
        .mobile-menu li ul {
            display: none;
        }

            /*Make dropdown links vertical*/
            .mobile-menu li ul li {
                display: block;
                float: none;
            }

                /*Prevent text wrapping*/
                .mobile-menu li ul li a {
                    width: auto;
                    min-width: 100px;
                    padding: 0 20px;
                }


    /*Style 'show menu' label button and hide it by default*/
    .mobile-menu .show-menu {
        text-decoration: none;
        color: #fff;
        background: #000;
        text-align: center;
        padding: 10px 15px;
        display: none;
        cursor: pointer;
        text-transform: uppercase;
    }

        .mobile-menu .show-menu span {
            padding-left: 25px;
        }

    /*Hide checkbox*/
    .mobile-menu input[type=checkbox] {
        display: none;
    }

        /*Show menu when invisible checkbox is checked*/
        .mobile-menu input[type=checkbox]:checked ~ #menu {
            display: block;
        }

/*Responsive Styles*/

@media screen and (max-width : 800px) {
    .mobile-menu .lines {
        border-bottom: 15px double #f8f8f8;
        border-top: 5px solid #f8f8f8;
        content: "";
        height: 23px;
        width: 20px;
        padding-right: 15px;
        float: right;
    }
    /*Make dropdown links appear inline*/
    .mobile-menu ul {
        position: static;
        display: none;
    }
    /*Create vertical spacing*/
    .mobile-menu li {
        margin-bottom: 1px;
    }
        /*Make all menu links full width*/
        .mobile-menu ul li, .mobile-menu li a {
            width: 90%;
        }
    /*Display 'show menu' link*/
    .mobile-menu .show-menu {
        display: block;
    }
}


.footer-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(167, 180, 201, 0.1);
    border-bottom: 1px solid rgba(167, 180, 201, 0.1);
}

footer-distributed {
    background: black;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 40%;
    padding: 40px;
}

/* The company logo */

.footer-distributed h3 {
    color: #ffffff;
    font: normal 36px 'Open Sans', cursive;
    margin: 0;
}

    .footer-distributed h3 span {
        color: lightseagreen;
    }

/* Footer links */

.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
    padding: 0;
}

    .footer-distributed .footer-links a {
        display: inline-block;
        line-height: 1.8;
        font-weight: 400;
        text-decoration: none;
        color: inherit;
    }

.footer-distributed .footer-company-name {
    color: #222;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
    padding: 35px;
}

    .footer-distributed .footer-center i {
        background-color: #33383b;
        color: #ffffff;
        font-size: 25px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        text-align: center;
        line-height: 42px;
        margin: 10px 15px;
        vertical-align: middle;
    }

        .footer-distributed .footer-center i.fa-envelope {
            font-size: 17px;
            line-height: 38px;
        }

    .footer-distributed .footer-center p {
        display: inline-block;
        color: #ffffff;
        font-weight: 400;
        vertical-align: middle;
        margin: 0;
    }

        .footer-distributed .footer-center p span {
            display: block;
            font-weight: normal;
            font-size: 14px;
            line-height: 2;
        }

        .footer-distributed .footer-center p a {
            color: lightseagreen;
            text-decoration: none;
            ;
        }

.footer-distributed .footer-links a:before {
    content: "|";
    font-weight: 300;
    font-size: 20px;
    left: 0;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
    content: none;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 20%;
    padding: 30px;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

    .footer-distributed .footer-company-about span {
        display: block;
        color: #ffffff;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 20px;
    }

.footer-distributed .footer-icons {
    margin-top: 25px;
}

    .footer-distributed .footer-icons a {
        display: inline-block;
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-color: #33383b;
        border-radius: 2px;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        line-height: 35px;
        margin-right: 3px;
        margin-bottom: 5px;
    }

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

    .footer-distributed {
        font: bold 14px sans-serif;
    }

        .footer-distributed .footer-left,
        .footer-distributed .footer-center,
        .footer-distributed .footer-right {
            display: block;
            width: 100%;
            margin-bottom: 40px;
            text-align: center;
        }

            .footer-distributed .footer-center i {
                margin-left: 0;
            }
}

.logo {
    height: 10vh;
    width: 10vh;
}
