/* CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #122b3c;
  font-family: "Oswald", sans-serif;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  padding:0;
}


.header{
  text-align: center;
  padding: 30px 0;
}
.header h1{
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.logoSection{
  display: flex;
  height: 100%;
  align-items: center;
  max-height: 300px;
}
.logo_left{
  background: #005d99;
  padding: 50px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.logo_right{
  padding: 50px;
  background: #9cdaf8;
  width: 50%;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.logoSection img{
  max-width: 300px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.logoSection img:hover{
  transform: scale(1.05);
}
.gallery{
  padding: 40px 0;
}
.gallery_img{
  margin-bottom: 10px;
}
.gallery_img img{
  width: 100%;
}
.gallery .col-lg-3{
  padding: 0 5px;
}
.section_heading{
    padding-bottom: 40px;
    text-align: center;
}
.section_heading h2{
  color: #fff;
  font-weight: 300;
  font-style: italic;
  font-size: 38px;
  text-transform: uppercase;
}
.usps{
  padding: 40px 0;
  background: #0d1f2b;
  padding-top: 100px;
}
.usps_items
{
  padding: 10px;
  background: #9cdaf8;
  border-radius: 20px;
  min-height: 280px;
  text-align: center;
}
.usps_items h3
{
  font-weight: bold;
  text-transform: uppercase;
  color: #27528a;
  margin-bottom: 0;
}
.usps_items img{
  max-height: 230px;
  margin: 0 auto;
  margin-top: -80px;
}
footer{
  padding: 10px 0;
}
.sidelogo img{
  margin: 20px 0;
}

@media only screen and (max-width: 991px){
  .logoSection img {
    max-width: 150px;
    max-height: 100px;
}
.logoSection{
  max-height: 170px;
}
.section_heading h2{
  font-size: 28px;
}
.usps_items{
  margin-bottom: 90px;
  min-height: 210px;
}

.mb-0-xs{
  margin-bottom: 0;
}
.sidelogo{
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidelogo img{
  max-width: 150px;
}

}