@font-face {
    font-family: rooster;
    src: url(fonts/rooster.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
}
.lts-header-bg-color {
    background-color: #0b233f;
}
.lts-body-bg-color {
    background-color: #cad7df;
}
.info-section .container .row {
    display: flex;
    align-items: center;
    justify-items: center;
}
 .flip-card {
    perspective: 1000px;
    padding:0;
    width: 40%;
    height: 300px;
}
 .flip-card .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .flip-card-front {
    background-color: #fff;
    color: black;
  }
  
  .flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
  }
.m-top-32{
    margin-top:32px;
}
.m-top-15 {
    margin-top:15px;
}
.m-top-5 {
    margin-top:5px;
}
.m-top-10 {
    margin-top:10px;
}
.m-top-40 {
    margin-top:40px;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
ol, ul {
    padding: 0;;
}

body{
    color:black;
    width: 100%;
    background-color: #0b233f;
}

header {
    box-shadow: 0 2px 0 0 rgb(0 0 0 / 16%);
    color: #2c2c2c;
    font-family: 'GT Walsheim Pro', 'Source Sans Pro MC';
    padding: 0 15px;
    background-color: #0b233f;
}
.navbar {
    padding: 0;
    background-color: #0b233f;
}
 .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-family: Helvetica, Arial,sans-serif;
    transition: transform .2s;
    padding:16px !important;
    text-transform: uppercase;
        
}
.navbar-nav .nav-item .nav-link:hover {
    transform: scale(1.2);
}
.navbar-brand .logo-title{
    vertical-align: middle;
    font-size: 28px;
    font-family: 'Staatliches', 'Bebas Neue', rooster,'Play','The Nautigal','Arvo', Helvetica, Arial,sans-serif;
}
.responsive {
    max-width:42px;
    width: 100%;
    height: auto;
    transition: ease-in .4s;
    box-shadow: inset 0 0 0 0 transparent;
    animation: logo 1s linear;

  }
@keyframes logo {
    0% {opacity: 0;}
    50% {opacity: .5}
    60% {opacity: .6}
    80% {opacity: .8}
    100%{opacity: 1;}
}

  .responsive:hover {
    max-width:55px;
    width: 100%;
    height: auto;
    box-shadow: inset 55px 0px 10px 0 rgb(170, 6, 20);
  }
  .careers .coming-soon {
     margin-top: 35px;
     width: 100%;
  }
.footer-img {
    max-width:38px;
}
.container {
    font-family: Helvetica, Arial,sans-serif;
    background-color: #cad7df;
}

.bg-dark {
    background-color: black !important;
}

#footer-placeholder {
    background-color: #0b233f;
}
footer .container {
    background-color: #0b233f;
    color:#fff;
    text-align: center;
}
.social-media li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.social-media li a {
    font-size: 18px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
}

.copyright-div a {
    color: #fff;
 
}
.lts-btn {
    color: #fff;
    width: 200px;
    height: 50px;
    border:none;
    background-color: #0B233F;
    box-shadow: inset 0 0 0 0 rgb(168, 223, 236);
    border-radius: 5px;
    padding:3px 3px;
    font-size: 16px;
    transition: ease-out .3s;
    outline: none;
    font-weight: bold;
}
.lts-btn:hover{
    box-shadow: inset 200px 0px 0px 0px rgb(25, 141, 209);
    color:#fff;
    cursor: pointer;
}
.social-media li a{
    transition: ease-in .3s;
    box-shadow: inset 0 0 0 0 rgb(168, 223, 236);

}
.social-media li a:hover {
    box-shadow: inset 200px 0px 0px 0px rgb(25, 141, 209);
    color:#fff;
    cursor: pointer;
}

/* slideshow */
.mySlides {display: none;}
.mySlides img { 
    vertical-align: middle;
    height: 400px;
    width: 600%;
}
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active {
  background-color: steelblue;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Contact Page */
.contact-info, .contact-form {
        padding: 15px 30px;
        background-color: #fff;
        color: #111;
        /* border-radius: 5px; */
}
.contact-info ul li {
    list-style: none;
    margin: 20px 0;
    text-align: center;
}

.contact-info ul li .icon-span {
    color: #0b233f;
    transition: font-size 1s;
    cursor: pointer;
}
.contact-info ul li .icon-span:hover {
   font-size: 48px;
}

.contact-info ul li .h6 {
    font-size: 18px;
    font-weight: bold;
}
.contact-info ul li .text-span {
    font-size: 16px;
    color: #777; 
}
.contact-form .formbox h5 {
    color: #0b233f;
    margin: 10px 0;
    font-weight: bold;  
}
.contact-form .inputbox input[type='text'] {
    padding: 5px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    width: 50%;
    transition: ease-in .5s;
}
.contact-form .inputbox input:focus-visible {
    outline: none;
}
.contact-form .inputbox input::placeholder {
    font-size: 12px;
}
.contact-form .inputbox textarea, .contact-form .inputbox textarea:focus-visible {
    border: 2px solid #ccc !important;
}

[class*="col-"] { 
    margin-bottom: 10px;
}

.aboutus, .contactus, .careers, .services {
    background-color: #cad7df !important;
    margin-top: 40px !important;
}
.how-we-work, .about-legacy, .info-section {
    background-color: #cad7df !important;
}
.info-section h5, .about-legacy h5, .how-we-work h5 {
    text-transform: uppercase;
    font-weight: bold;
}
.aboutus-header-div, .contactus-header-div, .careers-header-div, .services-header-div  {
    max-height: 65px;
    width: 100%;
    text-align: center;
    text-transform:uppercase;
    padding:15px 0;
    color: #fff;
    opacity: 0.8;
    background: #4682b4; /* Old browsers */
    background: -moz-linear-gradient(top,  #4682b4 0%, #2989d8 55%, #207cca 56%, #4682b4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #4682b4 0%,#2989d8 55%, #207cca 56%, #4682b4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #4682b4 0%,#2989d8 55%,#207cca 56%, #4682b4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4682b4', endColorstr='#4682b4',GradientType=0 ); /* IE6-9 */

}

.aboutus .container, .careers .container, .services .container {
    padding: 10px 0;
}

@media (min-width: 320px) and  (max-width: 768px) {
   .navbar-brand .logo-title{
        font-size: 24px !important;
   }
   .responsive {
       max-width:40px;
   }
    
    .contact-form .formbox {
        text-align: center;
    }
    .navbar-nav .nav-item .nav-link {
        font-size:12px;
    }
    .navbar-nav .nav-item .nav-link:hover {
        transform: scale(0.95);
        transform-origin: left right;
    }
    .info-section .container .row .m-1{
        margin:5px 0 !important;
    }
    .contact-form .inputbox input[type='text'] {
        width: 100%;
    }
    .contact-form .inputbox textarea {
        width: 100%;
        min-height: 100px;
        resize: auto;
    }
    .followus, .terms-conditions {
        display: none;
    }
    .copyright-div {
        text-align: center;
        color: #fff;
        font-size: 12px;
    }
    .card-body .card-icon {
        text-align:center;
    }
    .card-body .card-title {
        text-align:center;
    }
}

@media (min-width: 768px) and  (max-width: 992px) {
    .col-md-6 {
        width: 48% !important;
        margin-left: 10px !important;
    }
    .slide-show {
        margin-top: 60px;;
    }
    .copyright-div .terms-conditions {
        text-align: center;
    }
    
    .contact-form .formbox {
        text-align: center;
    }
    .info-section .container .row .m-1{
        margin:5px !important;
    }
    .inputbox textarea {
        min-width: 325px;
        min-height: 100px;
        resize: auto;
    }
    .copyright-div {
        text-align: center;
        color: #fff;
        font-size: 12px;
    }
     .navbar-nav .nav-item .nav-link {
        font-size:12px;
    }
    .card-body .card-icon {
        text-align:right;
    }
    .card-body .card-title {
        text-align:left;
    }
    
    
}
@media (min-width: 992px) and (max-width: 1800px) {
    .col-md-6 {
        width: 48% !important;
        margin-left: 10px !important;
    }
    .contact-form .formbox {
        text-align: left;
        border-radius: 10px;
        box-shadow: 0 0px 30px rgba(158, 181, 209, 0.589);
        padding: 10px 0 10px 30px;
    }
    .inputbox textarea {
        min-width: 400px;
        min-height: 100px;
        resize: auto;
    }
     .navbar-nav .nav-item .nav-link {
        font-size:14px;
    }
    .card-body .card-icon {
        text-align:right;
    }
    .card-body .card-title {
        text-align:left;
    }
    
}

button[type='submit'] {
  font-size: 2em;
  background: #3498db;
  color: #f00;
  border: 0.25rem solid #3498db;
  padding: 0.85em 0.75em;
  margin: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* FLIPPING CARD */

.card {
    background-color: #0b233f !important;
    border: 0px solid #fff !important;
}
.card-flip > div {
    backface-visibility: hidden;
    transition: transform 300ms;
    transition-timing-function: linear;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
  }
  
  .card-front {
    transform: rotateY(0deg);
    border: none;
  }
  
  .card-back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    border: none;
  }
  
  .card-flip:hover .card-front {
    transform: rotateY(-180deg);
  }
    
  .card-flip:hover .card-back {
    transform: rotateY(0deg);
  }