/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #0066b8;
  text-decoration: none;
}

a:hover {
  color: #9eccf4;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: rgb(185, 53, 48);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #db5a5a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  height: 40px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #0066b8;
}

#topbar .contact-info i {
  color: #0066b8;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #5c768d;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #0066b8;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  background: #fff;
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #2a3742;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  /* height: 70px; */
  width: 250px;
  /* height: auto; */
}

.scrolled-offset {
  margin-top: 70px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 17px;
  /* text-transform: uppercase; */
  font-weight: 600;
  color: #242463;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ec2424;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #242463;
}

.navbar .getstarted {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #ec2424;
  border-color: #ec2424;
}

.navbar > ul > li > .getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #ec2424;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ee2424;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ec2424;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #ec2424;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 100vh; */
  height: calc(100vh - 150px);
  padding: 0;
  overflow: hidden;
  background: #000;
}

#hero .carousel-item {
  width: 100%;
  /* height: 100vh; */
  height: calc(100vh - 150px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: center;
}

@media (max-width: 992px) {
  #hero,
  #hero .carousel-item {
    height: calc(100vh - 400px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  font-weight: 650;
  line-height: 70px;
  /* text-transform: uppercase; */
  color: rgb(255, 255, 255);
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #0066b8;
}

#hero .btn-get-started:hover {
  background: #1c5c93;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 22px;
    line-height: 40px;
  }
}

@media (max-height: 500px) {
  #hero,
  #hero .carousel-item {
    height: 120vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1c5c93; /*Section background-color*/
}

.section-bg3 {
  background-color: #f5f9fc;
}

.section-bg2 {
  background-color: #eef5fb; /*Section background-color*/
}

.section-bg4 {
  background-color: #271f49; /*Section background-color*/
}

.section-title p {
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #242463;
  /* #242463  #1d163a*/
}

.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: #e82f2f;
  bottom: 0;
  left: calc(50% - 20px);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding-bottom: 40px;
}

.about .container {
  box-shadow: 0 5px 25px 0 #a8b4f7;
  /* box-shadow: #0066b8; */
  /* box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6); */
  background-color: #fff;
}

.about .video-box img {
  padding: 15px 0;
}

.about .section-title p {
  text-align: left;
  font-style: italic;
  color: #666;
}

.about .about-content {
  padding: 20px;
}

.about .icon-box + .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

/* Inner Drawing */
.about .icon-box .icon i {
  color: #ec2424;
  font-size: 32px;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1d163a;
}

.about .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 16px;
}

.about .video-box {
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#0066b8 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #1d163a;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.promise {
  padding-bottom: 40px;
}

.promise .container {
  box-shadow: 0 5px 25px 0 #a8b4f7;
  /* box-shadow: #0066b8; */
  /* box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6); */
  background-color: #fff;
  padding: 20px;
}

.promise .video-box img {
  /* padding: 15px 0; */
  padding-top: 30px;
}

.promise .section-title p {
  text-align: justify;
  /* word-spacing: 0.05em; */
  /* font-style: italic; */
  color: #666;
  font-size: 17.5px;
  /* padding: 20px; */
}

.promise .promise-content {
  padding: 20px;
}

.promise .icon-box + .icon-box {
  margin-top: 40px;
}

.promise .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

/* Inner Drawing */
.promise .icon-box .icon i {
  color: #ec2424;
  font-size: 32px;
}

.promise .icon-box:hover .icon i {
  color: #fff;
}

.promise .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.promise .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.promise .icon-box .title a:hover {
  color: #1d163a;
}

.promise .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 16px;
}

.promise .video-box {
  position: relative;
}

/*--------------------------------------------------------------
# Sevices New
--------------------------------------------------------------*/
.lservices {
  padding-bottom: 40px;
}

.lservices .container {
  box-shadow: 0 5px 25px 0 #a8b4f7;
  /* box-shadow: #0066b8; */
  /* box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6); */
  background-color: #fff;
  padding: 10px;
}

.lservices .video-box img {
  padding: 50px 0;
  /* padding-bottom: 20px; */
  vertical-align: center;
}

.lservices .section-title p {
  text-align: justify;
  /* word-spacing: 0.05em; */
  /* font-style: italic; */
  color: #666;
  font-size: 16.5px;
}

.lservices .lservices-content {
  padding: 20px;
}

/* background-color: rgb(185, 53, 48);
}

.flip-main .blue {
  background-color: #271f49; */

.lservices .icon-box {
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 10px;
  background-color: #281e55;
  /* transition: 0.3s; */
  text-align: center;
  padding: 15px;
  height: 75px;
  position: relative;
}

.lservices .icon-box:hover {
  background: rgb(185, 53, 48);
  color: #fff;
}

.lservices .icon-box:hover i {
  background: rgb(185, 53, 48);
  color: #fff;
}

.lservices .icon-box i {
  float: left;
  color: rgb(185, 53, 48);
  font-size: 40px;
  margin-top: 0px;
  padding-top: 0px;
}

.lservices .section-title h2 {
  color: #1d163a;
}

.lservices h3 {
  color: #fff;
  font-size: 19px;
  line-height: 26px;
  /* font-weight: 600; */
}

.lservices .icon-box h4 {
  margin-left: 70px;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 17px;
  padding-top: 10px;
}

.lservices .icon-box h4 {
  /* color: #1d163a; */
  color: #fff;
  transition: 0.1s;
}

.lservices .icon-box i {
  /* color: #1d163a; */
  color: rgb(185, 53, 48);
  transition: 0.1s;
}

.lservices .icon-box h4 a:hover {
  text-decoration: underline;
  color: #fff;
}

.lservices .icon-box .icon-box:hover h4 a {
  color: rgb(185, 53, 48);
}

.lservices .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About usLists
--------------------------------------------------------------*/
.about-lists {
  /* padding: 40px; */
  background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 60px 0 30px 0;
  position: relative;
}

.responsive {
  width: 100%;
  height: auto;
}

/* .about-lists .boxes {
  background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
} */

.about-lists::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.about-lists .container,
.about-lists .container-fluid {
  position: relative;
  z-index: 10;
}

.about-lists .row {
  overflow: hidden;
}

.about-lists .content-item {
  padding: 40px;
  border-left: 2px solid #d9e8f4;
  border-bottom: 3px solid #d9e8f4;
  margin: -1px;
}

.about-lists .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #9eccf4;
}

.about-lists .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.about-lists .content-item p {
  color: #aaaaaa;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  .about-lists .content-item {
    padding: 40px 0;
    background-attachment: scroll;
  }
}

/* @media (max-width: 768px) {
  .about-lists .content-item {
    padding: 40px 0;
  }
}


/*--------------------------------------------------------------
# Nexus Values
--------------------------------------------------------------*/
/* .values {
  padding-bottom: 30px;
} */

.values {
  /* padding: 40px; */
  background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 60px 0 20px 0;
  position: relative;
}

.values::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.values .container,
.values .container-fluid {
  position: relative;
  z-index: 10;
}

/* .values .row {
  overflow: hidden;
}

.responsive {
  width: 100%;
  height: auto;
} */

.values .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.values .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #e03a3c;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.values .icon i {
  font-size: 36px;
  line-height: 0;
}

.values .icon-box:hover .icon {
  box-shadow: 0px 0 30px #ec2424;
}

.values .content-item {
  padding: 40px;
  border-left: 2px solid #d9e8f4;
  border-bottom: 3px solid #d9e8f4;
  margin: -1px;
}

.values .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 23px;
  position: relative;
  padding-bottom: 15px;
}

.values .title {
  color: #1d163a;
  transition: 0.3s;
}

/* .values .title a:hover {
  color: #0066b8;
} */

.values .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #e82f2f;
  bottom: 0;
  left: calc(50% - 25px);
}

.values .description {
  line-height: 24px;
  font-size: 16.5px;
  text-align: justify;
  word-spacing: 0.05em;
  /* word-spacing: -1px; */
  /* text-justify: distribute; */
  /* word-break: break-all; */
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

/* Inner Drawing */
/* .about .icon-box .icon i {
  color: #0066b8;
  font-size: 32px;
} */

/* Outer Drawing */
.about .icon-box:hover .icon {
  background: #ec2424;
}

.counts {
  padding-bottom: 10px;
  /* background pic  */
  background: url("../img/Bk/M_phil_cover8.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.counts .count-box {
  box-shadow: 0px 0 16px #a8b4f7;
  padding: 5px 5px 5px 5px;
  background: #fff;
  color: #0066b8;
  margin-bottom: 30px;
  border-radius: 25px;
  width: auto;
}

/* Outer Drawing
.counts .count-box:hover .icon {
  background: #0066b8;
} */

.counts .count-box i {
  display: block;
  font-size: 34px;
  margin-bottom: 15px;
}

.counts .count-box span {
  font-size: 19px;
  /* font-style: bold; */
  display: block;
  font-weight: 700;
  color: #0066b8; /* Text Color*/
  /* color: #1c5c93; Text Color */
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.count-box:hover {
  color: #ffffff; /* Text Color*/
  background: #0066b8;
}

#Philosophy h4 {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: aliceblue;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  /* transition: 0.3s; */
  text-align: center;
  padding: 15px;
  height: 75px;
  position: relative;
}

.services .icon-box:hover {
  background: #e82f2f;
  color: #fff;
}

.services .icon-box:hover i {
  background: #e82f2f;
  color: #fff;
}

.services .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
  margin-top: 0px;
  padding-top: 0px;
}

.services .section-title h2 {
  color: floralwhite;
}

.services h3 {
  color: #fff;
  font-size: 19px;
  line-height: 26px;
  /* font-weight: 600; */
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 17px;
  padding-top: 10px;
}

.services .icon-box h4 a {
  color: #1d163a;
  transition: 0.1s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
  color: #fff;
}

.services .icon-box .icon-box:hover h4 a {
  color: #e82f2f;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services new
--------------------------------------------------------------*/
/* .services .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #1977cc;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #badaf7;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #2c4964;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #1977cc;
  border-color: #1977cc;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #1977cc;
}

.services .icon-box:hover .icon::before {
  background: #3291e6;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
} */
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* .services {
  padding-bottom: 30px;
}

.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #0066b8;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 30px rgba(66, 139, 202, 0.5);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #0066b8;
}

.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #0066b8;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 16px;
  text-align: justify;
}

.services .btn {
  text-decoration: none;
  color: #fff;
  padding: 10px 50px;

  font-size: 16.5px;
  font-weight: 600;
  margin-left: 3px;
  margin-bottom: 5px;
  text-align: center;
  justify-content: center;
  pointer-events: none;
}

.services .blue {
  background-color: #0066b8;
  color: #fff;
  width: 327px;

  align-items: center;
}

.services .lightBlue {
  background-color: #6da3cc;
} */

/*--------------------------------------------------------------
# Career
--------------------------------------------------------------*/
/* .careers {
  padding-bottom: 30px;
  background: url("../img/Bk/career5.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
} */

.careers {
  background: linear-gradient(rgba(129, 12, 12, 0.7), rgba(36, 36, 99, 0.9)),
    url("../img/PWS\ Trams\ -\ 188.jpg");
  background-size: cover;
  /* padding: 120px 0; */
}

.careers .careers-item {
  margin-bottom: 40px;
}

.careers .careers-item h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f3548;
}
.careers p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: white;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}

.contact .info-box i {
  font-size: 32px;
  color: rgb(185, 53, 48);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted rgb(185, 53, 48);
}

.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #0066b8;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: rgb(185, 53, 48);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 25px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgb(192, 105, 102);
}

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

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

#footer {
  background: #587187;
  padding: 0 0 0 0;
  color: #fff;
  font-size: 14px;

  text-align: center;
}

#footer .footer-top {
  background: #271f49;
  border-top: 1px solid #768fa6;
  border-bottom: 1px solid #67839c;
  padding: 20px 0 10px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.774);
  color: #1d163a;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #e82f2f;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0066b8;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #5295ce;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #9eccf4;
}

/*--------------------------------------------------------------
# Philosophy Section
--------------------------------------------------------------*/
.flip-main .flip-card {
  flex: 0 0 calc(33.33% - 30px);
  margin: 0 15px 30px;
  /* perspective: 1000px; */
  position: relative;
  text-align: center;
  color: white;
  font-size: 30px;
  font-weight: 700;
}
.flip-main .flip-card-inner {
  box-shadow: 0 0 10px #a9b3d6;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.8s ease;
}
.flip-main .flip-card-front img {
  width: 100%;
  opacity: 1;
}
.flip-main .flip-card-front,
.flip-main .flip-card-back {
  backface-visibility: hidden;
}
.flip-main .flip-card-back {
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotateY(-180deg);
  /* padding-bottom: 30px; */
}

.flip-main .red {
  background-color: rgb(185, 53, 48);
}

.flip-main .blue {
  background-color: #271f49;
}

.flip-main .flip-card-back h3 {
  font-size: 26px;
  color: #ffffff;
  margin: 0 0 5px;
  font-weight: bold;
}
.flip-main .flip-card-back p {
  font-size: 16px;
  color: #e9e9e9;
  margin: 0;
  justify-items: center;
  text-align: center;
}
.flip-main .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.centerText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*responsive*/
@media (max-width: 991px) {
  .flip-main .flip-card {
    flex: 0 0 calc(50% - 30px);
  }
}
@media (max-width: 767px) {
  .flip-main .flip-card {
    flex: 0 0 calc(100% - 30px);
  }
}

/* @media only screen and (min-width: 360px) and (max-width: 768px) {
} */

@media (min-width: 300px) and (max-width: 1200px) {
  .flip-main .flip-card-back h3 {
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 5px;
    font-weight: bold;
  }
  .flip-main .flip-card-back p {
    font-size: 12px;
    color: #e9e9e9;
    margin: 0;
    justify-items: center;
    text-align: center;
  }
}

@media (min-width: 280px) and (max-width: 320px) {
  .flip-main .flip-card-back h3 {
    font-size: 12px;
    color: #ffffff;
    margin: 0 0 5px;
    font-weight: bold;
  }
  .flip-main .flip-card-back p {
    font-size: 12px;
    color: #e9e9e9;
    margin: 0;
    justify-items: center;
    text-align: center;
  }
}

/* Values section */

.nvalues {
  /* margin: auto; */
  padding: 0%;
}

.nvalues .left {
  color: #fff;
  background-color: rgb(185, 53, 48);
  /* #d34540; */
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  height: 300px;
}

.nvalues .right {
  color: #fff;
  background-color: #271f49;
  padding: 30px;
}

.nvalues .right p {
  font-size: 25px;
}

.contact .left {
  color: #fff;
  background-color: #e82f2f;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  height: 300px;
}
