@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype'),
        url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype'),
        url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype'),
        url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Poppins-Regular';
    text-decoration: none;
    outline: none;
    margin: 0;
    padding: 0;
}

a {
    transition: .3s;
}

a:hover {
    text-decoration: none;
}

body,
h3,
h1,
h2,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    width: 100%;
}

.main-div {
    width: 100%;
    position: relative;
}

#menu:not(.mm-menu) {
    display: none;
}

.mmenu {
    float: right;
    margin-top: 20px;
    display: none;
    width: 45px;
    transition: all .3s ease-in-out;
}

.mmenu a {
    display: block;
}

.mmenu a img {
    width: 100%;
}

/*header start*/
header {
    position: relative;
    width: 100%;
    z-index: 9;
}

.header-top {
    position: relative;
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding: 20px 0;
}

.header-details {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.header-details:first-child {
    margin-right: 8%;
}

.header-details img {
    display: inline-block;
    width: auto;
    margin-right: 10px;
}

.header-details-txt {
    display: inline-block;
    vertical-align: middle;
}

.header-details-txt h4 {
    font-size: 13px;
    font-family: 'Poppins-SemiBold';
    color: #144369;
}

.header-details-txt a {
    font-size: 15px;
    color: #777;
}

.header-details-txt a:hover {
    color: #144369;
}

header nav {
    width: 100%;
    background-color: #144369;
    box-shadow: 5px 5px 15px #111;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

header nav ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 13%;
}

header nav ul li a {
    font-family: 'Poppins-Medium';
    color: #fff;
    display: block;
    font-size: 16px;
    padding: 25px 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

header nav ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    transition: .3s;
    z-index: -1;
}

header nav ul li a:not(:only-child):after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
    transition-delay: .2s;
    transition: .3s;
}

header nav ul li a:not(:only-child) {
    padding-right: 30px;
}

header nav ul li a:hover:not(:only-child):after {
    border-top-color: #144369;
}

header nav ul li a:hover {
    color: #144369;
}

header nav ul li a:hover:before {
    height: 100%;
}

header nav ul ul {
    position: absolute;
    background-color: #144369;
    top: 100%;
    left: 0;
    text-align: left;
    min-width: 100%;
    transform-origin: center;
    transform: scaleY(0);
    box-shadow: 0px 0px 10px #111;
    transition: .3s;
}

header nav ul ul li {
    width: 100%;
}

header nav ul ul li a {
    text-transform: capitalize;
    padding: 15px 20px;
}

header nav ul ul ul {
    top: 0;
    left: 100%;
}

header nav ul li:hover>ul {
    transform: scaleY(1);
}

.logo {
    width: 150px;
    margin-top: -150px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 35px;
    margin-right: 35px;
}

.logo a {
    padding: 0;
}

.logo a:before {
    display: none;
}

.logo a img {
    width: 100%;
}

.mlogo {
    display: none;
    width: 120px;
    padding: 10px 0;
}

.mlogo a {
    display: block;
}

.mlogo a img {
    width: 100%
}

.fixed nav {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px #111;
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fixed .logo {
    margin-top: -20px;
    margin-bottom: -60px;
    box-shadow: 0px 0px 10px #111;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

/*header end*/
/*banner start*/
.banner {
    position: relative;
    width: 100%;
}

.banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

#slider {
    width: 100% !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

#slider li {
    width: 100% !important;
}

#slider li img {
    width: 100% !important;
}

.left-btn,
.right-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: .5;
    transition: .3s;
    z-index: 9;
}

.right-btn {
    right: 1%;
}

.left-btn {
    left: 1%;
}

.left-btn:hover,
.right-btn:hover {
    opacity: 1;
}

.content {
    position: absolute;
    width: 80%;
    z-index: 3;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.content h2 {
    font-family: 'Poppins-SemiBold';
    font-size: 46px;
    text-shadow: 0px 0px 5px #000;
}

.content h2 span {
    font-variant-caps: all-small-caps;
}

.content h3 {
    font-size: 36px;
    text-shadow: 0px 0px 5px #000;
    font-family: 'Poppins-Medium';
}

/*banner end*/
/*section1 start*/
.section1 {
    position: relative;
    width: 100%;
    background-image: url(../images/bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding: 70px 0;
    border-radius: 0 0 50% 50% / 6%;
    color: #fff;
    box-shadow: 7px 5px 10px #999;
}

.section1 h2 {
    font-size: 26px;
    text-transform: uppercase;
}

.section1 h1 {
    font-size: 46px;
    text-transform: uppercase;
    font-family: 'Poppins-SemiBold';
    margin-bottom: 20px;
}

.section1-txt {
    font-size: 16px;
    margin-top: 20px;
}

.section1-txt a {
    color: inherit;
    font-family: 'Poppins-Medium';
}

.section1-txt a:hover {
    color: #aaa;
}

.bar1 {
    margin: 50px 0;
}

.bar1 img {
    width: auto;
    max-width: 100%;
}

.offer {
    text-align: center;
}

.offer-main {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 60px;
}

.offer-main img {
    width: 100%;
}

.offer-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    padding: 10px;
    opacity: 0;
    transition: .5s;
}

.offer-name:before {
    content: "";
    position: absolute;
    left: -100px;
    right: 0;
    top: 120%;
    bottom: -100px;
    background-color: rgba(255, 255, 255, 0.85);
    transform: rotate(8deg);
    transition: .3s;
}

.offer-main:hover .offer-name {
    opacity: 1;
}

.offer-main:hover .offer-name:before {
    top: -10px;
}

.offer-name a {
    color: #144369;
    position: relative;
    text-transform: uppercase;
}

.offer-name a h3 {
    font-size: 16px;
}

.offer-name a h4 {
    font-size: 10px;
    transition: .3s;
}

.offer-name a h4:hover {
    color: #000;
}

/*section1 end*/
/*section2 start*/
.section2 {
    position: relative;
    width: 100%;
    padding: 70px 0;
    text-align: center;
    color: #144369;
}

.section2 h2 {
    font-size: 26px;
    text-transform: uppercase;
}

.section2 h1 {
    font-size: 46px;
    text-transform: uppercase;
    font-family: 'Poppins-SemiBold';
}

.section2-txt {
    font-size: 16px;
    margin-bottom: 50px;
}

.section2-txt span,
.section1-txt span {
    font-variant-caps: all-small-caps;
}

.bar2 {
    margin: 20px 0;
}

.bar2 img {
    width: auto;
    max-width: 100%;
}

.gallery {
    position: relative;
    width: 100%;
}

.gallery-main {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #fff;
    box-shadow: 0px 0px 10px #144369;
}

.gallery img {
    width: 100%;
}

.gallery-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-bottom: 10px;
    opacity: 0;
    transition: .5s;
}

.gallery-name:before {
    content: "";
    position: absolute;
    left: -100px;
    right: 0;
    top: 120%;
    bottom: -100px;
    background-color: rgba(20, 67, 105, 0.85);
    transform: rotate(8deg);
    transition: .3s;
}

.gallery-main:hover .gallery-name {
    opacity: 1;
}

.gallery-main:hover .gallery-name:before {
    top: -10px;
}

.gallery-name a {
    color: #fff;
    position: relative;
    text-transform: uppercase;
}

.gallery-name a h3 {
    font-size: 18px;
}

.gallery-name a h4 {
    font-size: 14px;
    transition: .3s;
}

.gallery-name a h4:hover {
    color: #aaa;
}

/*section2 end*/
/*clients start*/
.clients {
    width: 100%;
    position: relative;
    padding-bottom: 30px;
    text-align: center;
    color: #144369;
}

.clients h2 {
    font-size: 26px;
    text-transform: uppercase;
}

.clients h1 {
    font-size: 46px;
    text-transform: uppercase;
    font-family: 'Poppins-SemiBold';
}

.clients .owl1 {
    width: 100%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #144369;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #fff;
    border: 2px solid #144369;
    width: 15px;
    height: 15px;
    margin: 5px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
}

/*clients end*/
/*divider start*/
.divider {
    background-color: #144369;
    color: #999;
    text-align: center;
    padding: 40px 0;
    font-size: 36px;
    border-radius: 50% 50% 0 0 /40%;
}

.divider .fi {
    border: 3px solid #999;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.3;
    font-size: 32px;
}

.divider .fl {
    color: inherit;
}

.divider .fl:hover {
    color: #fff;
}
.social {
    width: 100%;
    text-align: center;
}

.social a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
    width: 35px;
    height: 35px;
    font-size: 14px;
    color: #777;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    line-height: 2.5;
    text-align: center;
}

.social a:hover {
    background-color: #144369;
    color: #fff;
}

/*divider end*/
/*footer start*/
iframe {
    width: 100%;
    border: 0;
    display: block;
    height: 350px;
}

footer {
    position: relative;
    width: 100%;
}

.footer-main {
    background-color: #232323;
    width: 100%;
    padding: 50px 0;
}

.foot-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.foot-nav li {
    position: relative;
    width: 100%;
    margin-bottom: 2px;
}

.foot-nav li a {
    color: #999;
    font-size: 18px;
    font-family: 'Poppins-Medium';
    padding-left: 20px;
    display: inline-block;
}

.foot-nav li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    border-left: 7px solid #999;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.foot-nav li a:hover {
    color: #ddd;
    margin-left: 10px;
}

.foot-nav li a:hover:before {
    border-left-color: #ddd;
}

.footer-main h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Poppins-Medium';
}

.newsletter-txt {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-main form {
    position: relative;
}

.footer-main input {
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 15px;
    outline: none;
    border: none;
    font-size: 14px;
    height: 40px;
    width: 100%;
}

.footer-main button {
    background-color: #393939;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-size: 14px;
    position: absolute;
    right: 5px;
    top: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-main button:hover {
    background-color: #232323;
}

.flogo {
    width: 120px;
}

.flogo a {

    display: block;
}

.flogo a img {
    width: 100%;
}

.foot-details {
    color: #999;
    margin-top: 10px;
    font-size: 16px;
}

.foot-details a {
    color: inherit;
    margin-right: 2px;
}

.foot-details a:hover {
    color: #ddd;
}

.footer_bottom {
    text-align: center;
    color: #fbfbfb;
    background-color: #393939;
    padding: 30px 0;
    font-size: 16px;
}

.footer_bottom a {
    color: #bfbfbf;
}

.footer_bottom a span {
    font-variant-caps: all-small-caps;
}

.footer_bottom a:hover {
    color: inherit;
}

.goto-top {
    position: fixed;
    z-index: 99;
    right: 40px;
    bottom: 20px;
    width: 50px;
    cursor: pointer;
    display: none;
}

.goto-top img {
    width: 100%;
}

/*footer end*/

/*inner pages start*/
.bg-inner {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-inner h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 70px;
    opacity: 0.7;
    text-shadow: 1px 1px 1px #000;
    white-space: nowrap;
    text-transform: uppercase;
}

.inner-nav {
    background-color: #144369;
    width: 100%;
}

.inner-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inner-nav ul li {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.inner-nav ul li i {
    font-size: 13px;
}

.inner-nav ul li a {
    display: block;
    padding: 10px 0;
    color: inherit;
}

.inner-nav ul li a:hover {
    color: #ccc;
}

.inner-content {
    padding: 50px 0;
}

.filter {
    width: 100%;
    border: 1px solid #144369;
    margin-bottom: 30px;
}

.filter h3 {
    text-align: center;
    font-size: 18px;
    background-color: #144369;
    color: #fff;
    padding: 8px;
    text-transform: uppercase;
}

.filter ul {
    list-style: none;
    margin: 0;
    padding: 5px;
}

.filter ul li {
    position: relative;
    width: 100%;
    /*! margin-top: 2px; */
}

.filter ul li a {
    display: block;
    padding: 5px;
    padding-left: 20px;
    color: #144369;
    font-size: 16px;
}

.filter ul li a:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 12px;
    border-left: 7px solid #144369;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.filter ul li a:hover {
    background-color: #144369;
    color: #fff;
}

.filter ul li a:hover:before {
    border-left-color: #fff;
}

.filter ul li a.active {
    background-color: #144369;
    color: #fff;
}

.filter ul li a.active:before {
    border-left-color: #fff;
}

.gallery-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #144369;
    overflow: hidden;
}

.gallery-img a {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    text-align: center;
    background-color: rgba(20, 67, 105, 0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    color: #fff;
    font-size: 38px;
    line-height: 4.5;
    opacity: 0;
    transition: .3s;
}

.gallery-img:hover a {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.videos .gallery-img {
    height: 250px;
}

.videos .gallery-img a {
    line-height: 6;
}

.contact h1 {
    font-size: 46px;
    text-transform: uppercase;
    font-family: 'Poppins-SemiBold';
    text-align: center;
    color: #144369;
    margin-bottom: 50px;
}

.contact h2 {
    font-size: 26px;
    text-transform: uppercase;
    color: #144369;
    text-align: center;
}

.contact input,
.contact textarea {
    width: 100%;
    outline: none;
    border: 1px solid #999;
    padding: 10px;
    margin-bottom: 15px;
    color: #111;
}

.contact textarea {
    height: 200px;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #144369;
}

.contact input[type="submit"] {
    width: 160px;
    background-color: transparent;
    cursor: pointer;
    transition: .3s;
}

.contact input[type="submit"]:hover {
    background-color: #144369;
    border-color: #144369;
    color: #fff;
}

.contact-content {
    position: relative;
    font-size: 16px;
    color: #111;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 50px;
}

.contact-content i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 28px;
    color: #144369;
}

.contact-content h3 {
    font-family: 'Poppins-Medium';
    color: #144369;
    font-size: 22px;
}

.contact-content a {
    color: inherit;
}

.contact-content a:hover {
    color: #144369;
}

/*inner pages end*/
@media only screen and (max-width: 1200px) {
    .logo {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .header-top {
        display: none;
    }

    header nav ul li {
        display: none;
    }

    .mmenu {
        display: block;
    }

    header nav ul {
        text-align: left;
    }

    .mlogo {
        display: inline-block;
    }

    .foot-nav {
        display: none;
    }
}

@media only screen and (max-width: 767px) {

    .content h2 {
        font-size: 34px;
    }

    .content h3 {
        font-size: 26px;
    }

    .section1 {
        padding: 40px 0;
        border-radius: 0 0 50% 50% / 3%;
    }

    .offer-main {
        margin-bottom: 30px;
    }

    .divider {
        font-size: 26px;
        padding: 30px 0;
    }

    .divider .fi {
        height: 35px;
        width: 35px;
        line-height: 1.3;
        font-size: 22px;
    }

    .footer-main {
        text-align: center;
        padding: 30px 0;
    }

    .footer-main h3 {
        margin-top: 20px;
    }

    .flogo {
        margin: 0 auto
    }

    .bar1 {
        margin: 30px 0;
    }

    .bg-inner {
        height: 160px;
    }

    .inner-content {
        padding: 40px 0;
    }

    .bg-inner h1 {
        font-size: 46px;
    }

    .inner-nav ul li a {
        padding: 6px 0;
        font-size: 15px;
    }

    .contact h1 {
        margin-bottom: 20px;
    }

    .contact-content {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 575px) {

    .content {
        width: 85%;
    }

    .content h2 {
        font-size: 20px;
    }

    .content h3 {
        font-size: 18px;
        font-family: 'Poppins-Regular';
    }

    .left-btn {
        left: 2%;
    }

    .right-btn {
        right: 2%;
    }

    .left-btn img,
    .right-btn img {
        height: 45px;
    }

    .offer-main {
        margin-bottom: 40px;
        margin-top: 0;
    }

    .footer-main h3 {
        margin-top: 20px;
        font-size: 20px;
    }

    .bg-inner h1 {
        font-size: 40px;
    }

    .bg-inner {

        height: 150px;

    }

    .section1 h2 {
        font-size: 20px;
    }

    .section1 h1 {
        font-size: 34px;
    }

    .section1-txt {
        font-size: 15px;
        margin-top: 10px;
    }

    .bar1 {
        margin: 25px 0;
    }

    .section2 {
        padding: 50px 0 20px;
    }

    .section2 h2 {
        font-size: 20px;
    }

    .section2 h1 {
        font-size: 34px;
    }

    .section2-txt {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .bar2 {
        margin: 10px 0;
    }

    .clients h2 {
        font-size: 20px;
    }

    .clients h1 {
        font-size: 34px;
    }

    .divider {
        font-size: 26px;
        padding: 20px 0 15px;
    }

    .divider .fl {
        display: block;
    }

    .divider .fi {
        height: 35px;
        font-size: 22px;
        width: 35px;
    }

    .footer_bottom {
        padding: 20px 0;
        font-size: 15px;
    }

    .contact h1 {
        font-size: 34px;
    }

    .contact h2 {
        font-size: 22px;
    }

    .contact input,
    .contact textarea {
        padding: 8px 10px;
    }

    .contact-content h3 {
        font-size: 20px;
    }

    .contact-content {
        margin-top: 20px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 350px) {
    .header-details:first-child {
        margin-right: 0;
    }

    .header-top {
        padding: 10px 0;
    }

    .mlogo {
        width: 110px;
    }

    .mmenu {
        margin-top: 18px;
        width: 40px;
    }

    .left-btn,
    .right-btn {
        display: none;
    }

    .content {
        width: 90%;
    }

    .goto-top {
        right: 20px;
        bottom: 20px;
        width: 40px;
    }

    .bg-inner h1 {
        font-size: 30px;
    }

    .inner-nav ul li {
        margin-right: 5px;
    }
}