@import url('../fonts/fonts.css');

/* Base Styles */

.latoblack {
    font-family: 'latoblack', Arial, Helvetica, sans-serif !important;
}

.latobold {
    font-family: 'latobold', Arial, Helvetica, sans-serif !important;
}

.latoregular {
    font-family: 'latoregular', Arial, Helvetica, sans-serif !important;
}

.font-8 {
    font-size: 8px !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

body {
    font-family: 'latoregular', Arial, Helvetica, sans-serif;
    color: #092746;
    font-size: 13px;
}

.container {
    max-width: 1300px;
}

.themeGreen {
    color: #add3b0;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    outline: 0;
}

img {
    max-width: 100%;
}

.form-control,
.form-select {
    border: 0;
    border-radius: 0;
}

.contactSection .form-control,
.contactSection .form-select {
    background: #eee;
    min-height: 45px;
    border-bottom: 1px solid #ccc;
}

.bg-transparent {
    background: transparent;
}

.theme-btn {
    font-family: 'latobold', Arial, Helvetica, sans-serif;
    background: #0061E0;
    color: #fff;
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 0;
}

.theme-btn:hover {
    background: #ccc;
    color: #0061E0;
}

.theme-btn:hover .icon {
    transform: translateX(2px);
}

.theme-blue-bg {
    background: #0061E0;
}

.theme-red-bg {
    background: #d10000;
}

.theme-blue-color {
    color: #0061E0;
}

.theme-red-color {
    color: #d10000;
}

.background-cover {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.theme-transition {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}


/* Base Styles */


/*Header*/

#ScrolTop {
    background: #f80d14;
    position: fixed;
    bottom: 20px;
    right: -10%;
    height: 40px;
    width: 40px;
    opacity: 0;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    z-index: 99999;
}

#ScrolTop:hover {
    background: #eee;
    color: #f80d14;
}

#ScrolTop.Changed {
    right: 20px;
    opacity: 1;
}

.mainHeader {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.mainHeader.Changed,
.mainHeader.ChangedAgain {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.mainHeader.ChangedAgain {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.navbar-light .navbar-toggler {
    border: 2px solid #0061E0;
    border-radius: 10px;
    padding: 0 5px;
}

.mainHeader .navbar .navbar-nav li:hover>.nav-link,
.mainHeader .navbar .navbar-nav .show>.nav-link,
.mainHeader .navbar .navbar-nav .nav-link.active {
    color: #d10000;
}

.mainHeader .navbar .navbar-brand {
    font-family: 'latoblack', Arial, Helvetica, sans-serif;
    padding: 0;
    color: #0061E0;
    font-size: 30px;
    padding: 0 10px 5px;
}

.mainHeader .navbar .navbar-brand span {
    color: #f80d14;
}

.mainHeader .navbar-light .navbar-nav li a {
    color: #222222;
}

.mainHeader .navbar-light .navbar-nav>li>a {
    font-size: 16px;
}

.mainHeader .navbar .dropdown-menu {
    z-index: 9999;
    border-radius: 0;
}

.mainHeader .navbar .dropdown-menu li a {
    font-size: 14px;
}

.mainHeader .navbar-nav .dropdown-menu a:hover,
.mainHeader .navbar-nav .dropdown-menu a:focus,
.mainHeader .navbar-nav .dropdown-menu a:active {
    color: #17244B;
    background: none;
}

.headerActions {
    background: #eee;
}

.headerActions .nav {
    min-width: 110px;
    padding: 10px 0;
}

.headerActions .nav a {
    color: #222;
    font-family: 'latobold', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}

.headerActions .nav a:hover {
    color: #000;
}

.headerActions .separator {
    display: inline-block;
    height: 22px;
    margin: 0 15px;
    border-left: 1px solid #ccc;
}


/* Banner Post Header */

.bannerPostHeader {
    position: relative;
    padding: 50px 0;
    color: #fff;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -ms-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
}

.bannerPostHeader .content {
    position: relative;
    z-index: 10;
}

.bannerPostHeader:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 60%);
    z-index: 0;
}

.bannerPostHeader.inner:before {
    background: rgba(9, 39, 70, 60%);
}

.bannerPostHeader h1 {
    text-transform: capitalize;
    color: #fff;
    font-family: 'latobold', Arial, Helvetica, sans-serif;
}

.bannerPostHeader h1 .title-bg {
    font-family: 'latoblack', Arial, Helvetica, sans-serif;
    background: rgb(248 13 20 / 75%);
    color: #fff;
    display: inline-block;
}

._thumnails {}

._thumnails h2 {
    color: #d10000;
}

._thumnails h3 {
    font-size: 24px;
}

._thumnails h5 {
    position: relative;
    font-size: 20px;
}

._thumnails h5:before {
    content: "";
    position: absolute;
    left: -3px;
    top: -5%;
    height: 110%;
    width: 50px;
    background: #eee;
    z-index: -1;
}

._thumnails.withBg h5:before {
    background: #fff;
}

._thumnails ._list {
    list-style: none;
    padding: 0;
}

._thumnails ._list li {
    padding: 0 0 5px;
}

._thumnails ._list li:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: #d10000;
    margin-right: 5px;
}

._thumnails.withBg {
    position: relative;
    margin: 20px 0 30px;
    overflow: hidden;
}

._thumnails.withBg:before {
    z-index: -1;
    left: 5%;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    transform: rotate(45deg);
    position: absolute;
    background: #f5f5f5;
}

.aboutSection {
    background: #0061E0;
}


/* Footer */

.mainFooter {
    background: #eee;
    font-size: 13px;
}

.footerCenter {
    position: relative;
    padding: 50px 0 20px;
}

.footerCenter h4 {
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 15px;
    font-family: 'latoblack', Arial, Helvetica, sans-serif;
    color: #d10000;
}

.footerCenter ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footerCenter ul li {
    padding: 0;
    margin: 0 0 8px;
}

.footerCenter ul li a {
    text-transform: uppercase;
    color: #222;
}

.footerCenter ul li:hover a,
.footerCenter ul li:hover a.active {
    color: #d10000;
}

.social-links li {
    position: relative;
    margin: 0 0 0 5px;
    display: inline-block;
    vertical-align: top;
}

.footerCenter .social-links li a {
    color: #0061E0;
    width: 30px;
    font-size: 15px;
    text-align: left;
}

.footerLogo img {
    max-width: 125px;
}

.footerCenter address {
    display: inline-block;
    line-height: 25px;
}

.subscribeForm .form-control {
    border: 1px solid #fff;
}

.subscribeForm .theme-btn {
    font-size: 16px;
}

@media (min-width: 992px) {
    .mainHeader .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
    .mainHeader .navbar-light .navbar-nav>li>a {
        padding: 5px 25px;
    }
}

@media (min-width: 767px) {
    .headerActions .nav {
        padding: 25px 0;
        min-width: 110px;
    }
    .loginNSignup.signup {
        height: calc(100vh - 54px);
    }
    .bannerPostHeader {
        min-height: 400px;
    }
    .bannerPostHeader h1 {
        font-size: 60px;
    }
}