/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #444444;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Lato', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #202C45;
}

a {
    color: #202C45;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #d6a00b;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center; 
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #d6a00b;
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 #202C45;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn.btn-custom:hover {
    color: #ffffff;
    background: #202C45;
    box-shadow: inset 200px 0 0 0 #202C45;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/****************************************/
/****** Loader Wheel & Back to Top ******/
/****************************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #202C45;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: .5s;
    background: #d6a00b;
    border-radius: 44px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #202C45;
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #202C45;
    border-top: 1px dotted #ffffff;
}

.page-header h2 {
    position: relative;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #ffffff;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #d6a00b;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d6a00b;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    left: 25%;
    bottom: 0;
    background: #d6a00b;
}

.section-header.text-left p::after {
    left: 0;
}

.section-header.text-right p::after {
    left: 50%;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    background: #D3D3D3;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon {
    width: 40px;
	min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202C45;
    border-radius: 40px;
}

.top-bar .top-bar-icon i {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
	color: #202C45;
    margin: 5px 0 0px 0;
    font-size: 18px;
    font-weight: 600;
}

.top-bar .top-bar-text p {
	color: #202C45;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.top-bar .top-bar-social {
    position: relative;
    margin-top: 0px;
    display: flex;
	padding-right: 24px;
	margin-right: 5px;
	align-items: center;
}

.top-bar .top-bar-social a {
    width: 40px;
	min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202C45;
    background: #ffffff;
    border-radius: 40px;
    transition: .5s;
	margin: 5px;
}

.top-bar .top-bar-social a:last-child {
    margin: 0;
}

.top-bar .top-bar-social a:hover {
    color: #ffffff;
    background: #d6a00b;
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

.nav-bar {
    position: relative;
    background: #202C45;
}

.nav-bar.nav-sticky {
    position: sticky;
    width: 100%;
    top: 0px;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    padding: 10px 0;
    background: #202C45 !important;
    transition: .3s;
}

.nav-bar.nav-sticky .navbar {
    padding: 15px 0;
}

.nav-bar .logo {
    text-align: left;
    overflow: hidden;
}

.nav-bar .logo img {
    max-width: 100%;
    max-height: 70px;
	padding-left: 20px;
}

@media (max-width: 991.98px) {
    .nav-bar .logo {
        text-align: center;
    }
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    padding: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover {
	color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #d6a00b;
}

@media (min-width: 992px) {
    .nav-bar .navbar-brand {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 5px 0;
    }
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
	display: flex;
	position: relative;
    width: 100%;
	margin: 0;
	justify-content: center;
	align-items: center;
}

.hero .container-fluid {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	width: 100%;
}
	
.hero .hero-image {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 50%;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0;
	padding: 0;
	min-height: 600px;
	display: flex;
	object-fit: contain;
}

.hero .hero-text {
    max-width: 992px;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 2;
	padding: 0;
	margin: 30px 0px 30px 0px;
}

.hero .hero-text h1 {
    color: #ffffff;
    font-size: 90px;
    font-weight: 700;
	margin: 0 0 20px 0;
    text-transform: capitalize;
}

.hero .hero-text h3 {
    color: #d6a00b;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
	margin: 0;
}

.hero .hero-text p {
    color: #ffffff;
    font-size: 18px;
	margin: 0 20% 30px 20%;
	padding: 0;
}

.hero .btn .btn-custom {
    padding: 18px 45px 18px 45px;
    color: #ffffff;
	margin: 0 15px 0 15px;
}


@media (max-width: 991.98px) {
    .hero .hero-text h3 {
        margin-bottom: 5px;
    }
    
    .hero .hero-text h1 {
        font-size: 60px;
    }
    
    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .hero .hero-text h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
		margin-top: 10px;
    }
    
    .hero .hero-text h1 {
        font-size: 45px;
    }
    
    .hero .hero-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
		margin-top: 20px;
    }
    
    .hero .hero-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text p {
        margin-bottom: 25px;
    }
    
    .hero .hero-text .btn {
        padding: 8px 10px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
	background-color: ffffff;
	scroll-margin-top: 60px;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-content {
    margin-bottom: 30px;
}

.about .about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.about .about-content ul li {
    margin-bottom: 5px;
}

.about .about-content ul li i {
    margin-right: 8px;
    color: #d6a00b;
}

/*******************************/
/********* Images CSS **********/
/*******************************/
.info {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	margin: 0;
}

.info .info-item {
    width: 100%;
    display: flex;
    flex-direction: column;
	padding-top: 20px;
	height: 220px;
	margin: 0;
	padding-right: 0px;
}

.info img {
    width: 100%;
    height: 100%;
	max-height: 220px;
    object-fit: cover;
}

@media screen and (max-width: 575.98px) {
  .column {
    width: 100%;
	min-height: 300px;
  }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
	scroll-margin-top: 60px;
}

.service .service-item {
    display: flex;
    flex-direction: column;
    margin: 20px 0 45px 0;
	padding: 0;
	overflow: hidden;
}

.service .service-item i {
    color: #202C45;
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 20px;
}

.service .service-item [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#d6a00b, #202C45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-item p {
    margin: 0;
}

/*******************************/
/********* Awards CSS **********/
/*******************************/
.awards {
    position: relative;
	display: block;
    width: 100%;
    min-height: 200px;
    align-items: center;
	text-align: center;
	justify-content: center;
    background: #202C45;
	padding: 20px;
}

.awards .awards-text h2 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
	margin: 0px 0 25px 0;
}

.awards .awards-item {
	display: block;
	position: relative;
	margin: 10px 0 25px 0;
	padding: 0;
	width: 100%;
}

.awards .awards-item img {
	height: 120px;
	width: 120px;
	margin: 10px 15px 0 15px;
}

/*******************************/
/******** Location CSS *********/
/*******************************/
.location {
    position: relative;
    width: 100%;
    padding: 45px 0;
	scroll-margin-top: 60px;
}

.location .location-item {
    display: flex;
    margin-bottom: 30px;
}

.location .location-item i {
    padding-top: 3px;
    font-size: 30px;
    color: #d6a00b;
}

.location .location-text {
    padding-left: 15px;
}

.location .location-text h3 {
    font-size: 18px;
    font-weight: 700;
}

.location .location-text p {
    margin-bottom: 5px;
}

.location .location-text p strong {
    margin-right: 5px;
    font-weight: 600;
}

.location .location-form {
    padding: 45px 30px;
    background: #d6a00b;
    border-radius: 5px;
}

.location .location-form h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

.location .location-form .control-group {
    margin-bottom: 15px;
}

.location .location-form .form-control {
    height: 45px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    background: transparent;
}

.location .location-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.location .location-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.location .location-form .form-control:-ms-input-placeholder,
.location .location-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.location .location-form .btn.btn-custom {
    width: 100%;
    color: #202c45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #202C45;
}

.location .location-form .btn.btn-custom:hover {
    color: #ffffff;
    background: #d6a00b;
    box-shadow: inset 400px 0 0 0 #202C45;
}

@media(min-width: 576px) and (max-width: 991.89px) {
    .location .location-form .btn.btn-custom:hover {
        box-shadow: inset 650px 0 0 0 #202C45;
    }
}

/*******************************/
/******** Careers CSS **********/
/*******************************/
.careers {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.careers .careers-item {
    display: flex;
    margin-bottom: 30px;
}

.careers .careers-item i {
    padding-top: 3px;
    font-size: 30px;
    color: #d6a00b;
}

.careers .careers-text {
    padding-left: 15px;
}

.careers .careers-text h3 {
    font-size: 18px;
    font-weight: 700;
}

.careers .careers-text p {
    margin-bottom: 5px;
	font-weight: 600;
    color: #444444;
}

.careers .careers-text p2 {
    margin-bottom: 5px;
	font-weight: 600;
    color: #444444;
}

.careers .careers-text li {
    margin-bottom: 5px;
	margin-top: 15px;
	font-weight: 600;
}

.careers .careers-text p strong {
    margin-right: 5px;
    font-weight: 600;
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
	scroll-margin-top: 60px;
}

.contact .contact-info {
    width: 100%;
    margin-bottom: 45px;
    padding: 35px 30px 10px 30px;
    border-radius: 5px;
    background: #202C45;
    
}

.contact .contact-info h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact .contact-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.contact .contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
}

.contact .contact-info-icon i {
    margin: 0;
    color: #202C45;
    font-size: 16px;
}

.contact .contact-info-text {
    padding-left: 20px;
}

.contact .contact-info-text h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact .contact-info-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.contact .contact-form input {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #202C45;
}

.contact .contact-form textarea {
    height: 125px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #202C45;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 50px;
    background: #202C45;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter,
.footer .footer-logo {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d6a00b;
}

.footer .footer-logo {
	position: relative;
	margin-bottom: 10px;
	margin-right: 20px;
}

.footer .footer-logo img {
    width:100%;
    height:100%;
    object-fit: cover;
    overflow: hidden;
	max-width: 300px;
}
.footer .footer-logo p {
	position: relative;
	color: #ffffff;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202C45;
    background: #ffffff;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-social a:hover {
    color: #ffffff;
    background: #d6a00b;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #d6a00b;
    letter-spacing: 1px;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 45px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #d6a00b;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: #d6a00b;
    box-shadow: inset 200px 0 0 0 #d6a00b;
}

.footer .copyright {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 45px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #d6a00b;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}
