﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #fefefe
}


h1 {
    letter-spacing: 0.1em;
    font-size: 30px;
}



a,
a:hover {
    text-decoration: none;
    color: none;
    transition: color 0.3s ease-in-out;
}

.btn {
    background: #262626;
    color: whitesmoke;
    font-weight: lighter;
    outline: none;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 0;
    height: 48px;
    line-height: 50px;
    display: inline-block;
    padding: 0;
    border: none;
}

.btn:focus {
    box-shadow: none;
}

.btn:hover {
    color: white;
}

.btn.btn--with-icon {
    padding-right: 20px;
}

.btn.btn--with-icon i {
    padding: 0px 30px 0px 15px;
    margin-right: 10px;
    height: 50px;
    line-height: 50px;
    vertical-align: bottom;
    color: white;
    background: darkblue;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}


/* menu start */

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 20px 0;
    /* box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15); */
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: white;
}

.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 80px;
    margin-top: -40px;
    margin-bottom: -40px;
    width: auto;
    display: block;
    filter: brightness(100%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
    padding: 10px;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: black !important;
    font-weight: 300;
    transition: all 200ms linear;
}

.nav-item:hover .nav-link {
    color: darkblue !important;
}

/* .nav-item.active .nav-link {
    color: #777 !important;
} */

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}


.nav-item {
    position: relative;
    transition: all 200ms linear;
}

/* #Primary style */

.bg-light {
    background-color: #fff !important;
    transition: all 200ms linear;
}




/* #Media */

@media (max-width: 767px) {

    .nav-item:after {
        display: none;
    }

    .nav-item::before {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: #000;

    }

    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #000;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .start-header,
    .start-header.scroll-on {
        background: white;
    }
}

/* menu end */


/* footer start */

section.footer {
    /*background-color: none;*/
    position: relative;
}

.footer__content {
    padding: 0px 5px 15px 5px;
    text-align: center;
    background-color: none;
}

.footer__heading {
    position: relative;
}

.footer__heading h3 {
    display: inline-block;
    padding: 0px 10px;
}

.footer__content p {
    font-size: 12px;
    font-weight: 100;
    padding: 5px 0px;
}

ul.social__media {
    margin: 0;
    padding: 0;
    display: inline-block;
    margin-top: 5px;
}

ul.social__media li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px;
}

ul.social__media li a {
    color: dimgray;
    font-size: 18px;
    font-weight: 100
}

ul.social__media li a:hover {
    color: darkblue;
}

ul.social__media li {
    text-align: center;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    background-color: white
        /*#333*/
    ;
    line-height: 30px;
    border: 1px solid lightgrey;
}

ul.bus__list {
    padding: 0;
    margin: 0;
}

ul.bus__list li {
    list-style-type: none;
    margin-bottom: 5px;
}

.footer_fontstyle {
    font-size: 13px;
    color: black;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}

/* footer end */