* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.topnav,
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topnav a {
    font-size: 14px;
    transition: .5s ease-out;
    font-weight: 400;
}

.topnav a:hover {
    color: #F27B35;
}

.logo img {
    width: 90px;
    margin-right: 2em;
}

.topnav {
    background-color: #011C39;
    padding: 15px 25px;
    width: 100%;
}

.topnav a {
    color: #fff;
    text-decoration: none;
}

.navbar1 {
    padding: 0 2.9em;
    width: 100%;
    position: fixed;
    z-index: 9999;
}

.main-nav {
    background-color: #fff;
    padding: 0px 25px;
    width: 100%;
    position: relative;
}

.menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.menu a {
    padding: 1.7rem 1.9rem;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #272727;
    transition: .3s ease-out;
}

.menu a:hover {
    color: #F27B35;
}

.btn-style-one1 {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    color: white;
    padding: 15px 50px;
    font-weight: 600;
    background: #F27B35;
    letter-spacing: .1em;
    overflow: hidden;
    border-radius: 5px;
    text-transform: uppercase;
    border-radius: 0px !important;
    text-decoration: none;
}

.btn-style-one:hover{
    background-color: #011C39 !important;
}

.third-div {
    margin-left: 2em;
}

.mobile-only,
.mobile-btn,
.fa-times {
    display: none;
}


@media only screen and (max-width: 1024px) {

    .menu a {
        padding: 1.7rem .4rem;
    }
}

@media only screen and (max-width: 920px) {

    .menu a {
        padding: 1.7rem .5rem;
    }

    .btn-style-one  {
        padding: 10px 30px !important;
    }

    .logo img {
        margin-right: 1em;
    }

    .third-div {
        margin-left: 1em;
    }

    .navbar1{
        padding: 0 15px;
    }


}

@media only screen and (max-width: 840px) {

    .logo img {
        margin-right: 1em;
    }

    .third-div {
        margin-left: 1em;
    }

}

@media only screen and (max-width: 780px) {

    .logo img {
        margin-right: .2em;
    }

    .third-div {
        margin-left: .2em;
    }

    .menu a {
        padding: 1.7rem .3rem;
    }

    .btn-nav {
        padding: 15px 25px;
    }

}

@media only screen and (max-width: 720px) {

    .main-nav {
        padding: 15px;
        position: relative;
        z-index: 9000;
    }

    .topnav {
        padding: 10px 15px;
    }

    .navbar1 {
        padding: 0em;

    }

    .btn-nav {
        display: none;
    }

    .mobile-only {
        display: block;
        color: #F27B35;
        font-size: 30px;
    }

    .mobile-btn {
        display: block;
        position: relative !important;
        font-size: 14px !important;
        line-height: 30px !important;
        color: white !important;
        padding: 10px 30px !important;
        font-weight: 600 !important;
        background: #F27B35 !important;
        letter-spacing: .1em !important;
        overflow: hidden !important;
        border-radius: 5px !important;
        text-transform: uppercase !important;
        border-radius: 0px !important;
        text-decoration: none !important;
        /* width: 100%; */
        margin: 1em;

    }

    .menu {
        position: fixed;
        flex-direction: column;
        background-color: #fff;
        width: 65%;
        top: 114px;
        height: 100vh;
        left: -100%;
        align-items: start;
        justify-content: flex-start;
        /* border-top: 2px solid #F27B35; */
        transition: .3s ease-out;
        z-index: -1;

    }

    .show-menu {
        left: 0;
        transition: .3s ease-out;
    }

    .menu a {
        padding: 1em 1em 1.5em;
        display: block;

        border-bottom: 1px solid #d8d8d8;
    }

    .menu a:first-child {
        margin-top: 20px;
    }

    .menu-item {
        width: 100%;
    }

    #close-menu {
        display: none;
    }

    .logo img {
        width: 110px;
        margin-right: 2em;
    }
    

}


/* Preloader */

.preloader {
    background-color: #efefef;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div1 {
    height: 70px;
    width: 70px;
    border-right: 3px solid #F27B35;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    animation: rotate2 2s linear infinite;
    border-radius: 100%;
}

.div2 {
    height: 55px;
    width: 55px;
    border-left: 3px solid #F27B35;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    animation: rotate1 3s linear infinite;
    border-radius: 100%;
}

@keyframes rotate2 {
    100% {
        rotate: 360deg;
    }
}

@keyframes rotate1 {
    100% {
        rotate: 360deg;
    }
}