/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #222222;
  font-size: 1.1rem;
}

a {
  color: #47b2e4;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  margin-bottom: 30px;
}
.header_top {
  background: url(../img/banner_top_left.png) no-repeat left top;
  height: 40px;
  width: 100%;
}
.top_head_right {
  background: url(../images/banner_top_right.png) no-repeat right top;
  height: 40px;
  width: 501px;
  float: right;
}
.banner_center {
  background: linear-gradient(#0000008f 40%, #0000008f 40%), url(../img/skyline-img.png) no-repeat center;
  height: 200px;
  position: relative;
  width: 100%;
  background-size: cover;
}
.logo {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: 1;
}
.banner_center h1 {
  font-size: 32px;
  position: absolute;
  left: 318px;
  top: 50px;
  color: #ffffff;
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-weight: bold;
}
.banner_center h2 {
  position: absolute;
  right: 20px;
  bottom: 0;
  color: #ffffff;
  font-size: 26px;
}


/* #header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  width: 100%;
  height: auto;
  background: #37517e;
}
.hero-section h1 {
  margin: 0 0 10px 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

.hero-section h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  .hero-section {
    /* height: 100vh; */
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  .hero-section .hero-img {
    text-align: center;
  }
  .hero-section .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero-section#hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .hero-section .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .hero-section .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# contact Us
--------------------------------------------------------------*/
.see-btn {
  background: #fa0a0a;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0px 10px;
  color: #fff;
  padding: 15px 40px;
  font-size: 17px;
  border: none;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  height: 50px;
}
.quote-note p {
  font-size: 13px;
  color: #6e6c6c;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
}


@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
}

/* Cookies CSS */
#cookie_box {
  position: fixed;
  /* display: none; */
  bottom: 0px;
  font-size: 16px;
  z-index: 1000;
  /* background: rgba(0, 0, 0, 0.8); */
  background: rgb(103, 103, 103);
  padding: 10px 10px 10px 10px;
  text-align: center;
  width: 100%;
  color: #ffffff;
  left: 0;
}

#cookie_box p {
  font-size: 15px;
  margin: 0 0 5px 0;
}

#cookie_box p span {
  font-weight: bold;
  font-size: 20px;
  color: #f73649;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
}

#cookie_box p b {
  font-size: 18px;
}

#cookie_box .btn {
  padding: 4px 10px 4px 10px;
}

.cookie_third_msg input {
  display: inline-block;
}

.cookie_second_msg,
.cookie_third_msg {
  display: none;
}

a.whynot {
  color: #fde910;
  font-size: 16px;
  position: absolute;
  left: 81px;
  top: 32px;
  font-weight: 700;
  text-decoration: underline;
}

a.whynot:hover {
  color: #fff;
  text-decoration: underline !important;
}

.george.float-right {
  margin: 0 0 60px 10px;
}

.insp-name {
  position: absolute;
  top: 337px;
  right: 38px;
  text-align: center;
}

.insp-name h2 {
  font-size: 18px;
  margin: 0;
}

.hist_img img {
  width: 100%;
}

.hist-link a {
  text-decoration: underline;
  color: #000;
  font-weight: bold;
}

.hist-link {
  position: absolute;
  top: 205px;
  right: 30px;
}
#cookie_box .form-control {
  display: block;
  width: 50%;
  padding: .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#cookie_box .cookie_third_msg input {
  display: inline-block !important;
}
.succMsg {
  color: #37517e;
  font-weight: bold;
}
.errMsg {
  color:#ff0000;
  font-weight: bold;
}
.skills img.img-fluid {
  width: 80%;
}
