html, body {
    padding: 0px;
	margin: 0px;
	height: 100%;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.row {
    margin: 0 !important;
}

a {
    text-decoration: none !important;
}

h1 {
    font-size: 64px;
    letter-spacing: 0;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 40px;
    letter-spacing: 0;
    line-height: 40px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

h3 {
    font-size: 32px;
    letter-spacing: 0;
    line-height: 32px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

h4 {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 40px;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

h5 {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
}

h6 {
    font-size: 16px;
    letter-spacing: 0;
    padding-top: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

p {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
}

.btn1 {
    cursor: pointer;
    padding: 13px 28px 13px 28px;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    line-height: 24px;
    border-radius: 6px;
    background-color: #0084df;
    border: 2px solid #0084df;
    min-width: max-content;
    display: inline-block;
    transition: 0.5s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 1;
}

.btn1:hover {
    background-color: #102958;
    border-color: #102958;
    color: #ffffff;
}

.btn2 {
    padding: 13px 28px 13px 28px;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    line-height: 24px;
    border-radius: 6px;
    border: 2px solid #0084df;
    background-color: transparent;
    min-width: max-content;
    display: inline-block;
    transition: 0.5s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 1;
}

.btn2:hover {
    background-color: #102958;
    border-color: #102958;
    color: #ffffff;
}

.custom-container-center {
    margin-left: 10%;
    margin-right: 10%;
    max-width: 1240px;
    margin: auto;
}

nav {
    opacity: 0;
}

.navbar {
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
    transition: 0.5s;
}

.logo-lg {
    width: 180px;
}

.logo-sm {
    width: 180px;
}

.nav-link {
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-weight: bold;
}

.nav-link:hover {
    color: #0084df !important;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 2px;
    margin: 6px 0;
    transition: 0.5s;
    border: 0px solid;
    border-radius: 30px;
    color: #ffffff;
    background-color: #ffffff;
}

.menu {
    font-size: 15px;
    padding-top: 7px;
    padding-right: 10px;
    color: #ffffff;
    transition: 0.5s;
}
  
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-4px, 3px);
    transform: rotate(-45deg) translate(-3px, 3px);
    background-color: #fff !important;
}
  
.change .bar2 {
    opacity: 0;
}
  
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
    background-color: #fff !important;
}

.change .menu {
    color: #fff !important;
}

.mobile-nav {
    background-color: rgba(49, 49, 49, 0.9);
    transition: 0.5s;

}

.navbar .active {
    font-weight: bolder;
    border-bottom: 1.5px solid #0084df;
}

.section {
    padding: 80px 0;
}

.gray {
    background-color: #f8f9fa;
}

.fixed-nav {
    transition: 0.5s;
    background-color: #f8f9fa;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

footer {
    background-color: #0084df;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.footer-logo img {
    width: 150px;
}

footer .social {
    width: 33px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
}

.logo-scroll {
    cursor: pointer;
}

@media only screen and (max-width: 500px) {
    .logo-sm {
        width: 140px;
    }
}

@media only screen and (min-width: 767px) {
    .logo-sm {
        display: none;
    }

    .fixed-nav {
        padding-left: calc(10% + 15px);
        padding-right: 10%;
    }
}

@media only screen and (max-width: 767px) {
    .logo-lg {
        display: none;
    }

    .nav-link {
        color: #ffffff;
        padding-left: 0 !important;
    }

    .fixed-nav {
        background-color: rgba(49, 49, 49, 0.9);
    }

    .footer-logo img {
        width: 125px;
    }

    .navbar .active {
        border: none;
        color: #0084df;
    }
}

@media only screen and (max-width: 992px) {
    h1 {
        font-size: 36px;
        line-height: 56px;
    }

    h2 {
        font-size: 32px;
        line-height: 36px;
    }

    h3 {
        font-size: 28px;
        line-height: 32px;
    }

    h4 {
        font-size: 24px;
        line-height: 36px;
    }

    h5 {
        font-size: 20px;
        line-height: 24px;
    }

    h6 {
        font-size: 14px;
        line-height: 20px;
    }

    p {
        font-size: 16px;
        line-height: 28px;
    }

    .btn1, .btn2 {
        padding: 10px 20px 10px 20px;
        font-size: 16px;
        line-height: 20px;
    }

    .custom-container-center {
        margin: auto;
        width: 90%;
    }

    .section {
        padding: 50px 0;
    }

    .fixed-nav {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .img-order {
        order: 2;
    }
    
    .text-order {
        order: 1;
    }
}