@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-Regular.ttf");
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-Italic.ttf");
    font-style: italic;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-SemiboldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}


@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/FiraSans/FiraSans-Regular.ttf");
}
@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/FiraSans/FiraSans-RegularItalic.ttf");
    font-style: italic;
}
@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/FiraSans/FiraSans-SemiBoldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}
@font-face {
    font-family: "FontAwesome";
    src: url("../lib/font-awesome/webfonts/fa-solid-900.ttf");
}
body {
  background: #EDEDED;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #1bb1dc;
  transition: 0.5s;
}

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

p {
  font-family: "Fira Sans";
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans";
  font-weight: bold;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #00AAAA;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  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% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  padding: 0 0 10px 0;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar .social-links {
  text-align: right;
}

#topbar .social-links a {
  color: #ffffff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
}

#topbar .social-links a:hover {
  color: #00AAAA;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 110px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}
#logoC{
    display: none;
}

#header.header-scrolled,
#header.header-pages {
  height: 70px;
  padding: 15px 0;
  background-color: #EDEDED;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
#header.header-scrolled #logoB,
#header.header-pages #logoB{
  display: none;
  transition: all 0.10s;
}
#header.header-scrolled #logoC,
#header.header-pages #logoC{
  display:block;
  transition: all 0.10s;
}
#header.header-scrolled #topbar,
#header.header-pages #topbar {
  display: none;
}
#header.header-scrolled .logo h1 a {
    color: #413e66;
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

#header .logo img {
  padding: 0;
  margin-top: -11px;
  margin-left: -30px;;
  max-height: 70px;
}
.main-pages {
  margin-top: 60px;
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    display: table;
    width: 100%;
    height:650px;
    background: #EDEDED;
  }

  #intro .carousel-item {
    width: 100%;
    /*height: 100vh; */
    height:650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #intro .carousel-item::before {
    content: '';
   /* background-color: rgba(0, 0, 0, 0.7); */
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }

  #intro .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: left;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  #intro .carousel-background img {
    max-width: 100%;
    height: 650px;
  }

  #intro .carousel-content {
    text-align: left;
    margin-left: 100px;
    margin-top: 0px;
  }
  #intro .carousel-content img{
    position: absolute;
    width: 40%;
    top: 140px;
    right: 150px;
  }
  #intro h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
  }

  #intro p {
    width: 49%;
    font-size: 45px;
    font-style: italic;
    line-height: normal;
    margin: 0 0 15px 8px;
    color: #fff;
  }

  #intro .carousel-fade {
    overflow: hidden;
  }

  #intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
  }

  #intro .carousel-fade .carousel-inner .carousel-item,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
  }

  #intro .carousel-fade .carousel-inner .active,
  #intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
  #intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
  }

  #intro .carousel-fade .carousel-inner .carousel-item-next,
  #intro .carousel-fade .carousel-inner .carousel-item-prev,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  #intro .carousel-control-next-icon,
  #intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
  }
  #intro .carousel-indicators {
    bottom: 100px;
  }
  #intro .carousel-indicators li {
    cursor: pointer;
    width: 50px;
  }

  #intro .btn-get-started {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #869DAA;
  }

  #intro .btn-get-started:hover {
    background: #EDEDED;
    color: #00AAAA;
  }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
/*
.main-nav {
  Drop Down
  Deep Drop Down
} */

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
#header.header-scrolled .main-nav a  {
    color: #413e66;
}
.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #00AAAA;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #869DAA;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #00AAAA;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(40, 38, 70, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #00AAAA;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #413e66;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Open Sans", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #EDEDED;
}

/* Welcom Section
--------------------------------*/

#welcom {
  padding: 80px 0;
}

#welcom .welcom-content {
  padding-top: 40px;
}

#welcom .welcom-content h2 {
  color: #413e66;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

#welcom .welcom-content h3 {
  color: #696592;
  font-weight:bold;
  font-size: 22px;
  font-style: italic;
}

#welcom .welcom-content ul {
  list-style: none;
  padding: 0;
}

#welcom .welcom-content ul li {
  padding-bottom: 10px;
}

#welcom .welcom-content ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #1bb1dc;
}

#welcom .welcom-img {
  position: relative;
  margin: 30px 30px 30px 30px;
  text-align: center;
}

#welcom .welcom-img img {
  width: 100%;
  transition: .5s;
}

#welcom .welcom-img img:hover {
  width: 100%;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

#welcom .welcom-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: '';
  transition: .5s;
}

#welcom .welcom-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: '';
  transition: .5s;
}

/* Product Section
--------------------------------*/

#products {
    background: url("../img/section/product-bg.png") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
  }

  #products::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
  }

  #products .container {
    position: relative;
    z-index: 10;
  }
  #products h3{
   color:#fff
  }
  #products .products-col {
    background: #fff;
    border-radius: 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }

  #products .products-col .img {
    position: relative;
  }

  #products .products-col .img img {
    border-radius: 4px 4px 0 0;
  }

  #products .products-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #00AAAA;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }

  #products .products-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
  }

  #products .products-col:hover .icon {
    background-color: #fff;
  }

  #products .products-col:hover i {
    color: #00AAAA;
  }

  #products .products-col h2 {

    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
  }

  #products .products-col h2 a {
    color: #413e66;
  }

  #products .products-col h2 a:hover {
    color: #00AAAA;
  }

  #products .products-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }

/*  Us Section
--------------------------------*/

#us {
  padding: 60px 0;
}

 .features {
  margin: 0 0 15px 0;
  padding: 0;
  transition: 0.3s ease-in-out;
}

.features i {
  font-size: 36px;
  float: left;
  color: #233C71;
}

 .features h4 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 56px;
  color: #413e66;
  margin-bottom: 5px;
  font-style: italic;
}

 .features p {
  font-size: 16px;
  margin-left: 56px;
}

#us .counters {
  padding-top: 40px;
}

#us .counters span {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #555186;
}

#us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #8a87b6;
}

/* Call To Action Section
--------------------------------*/

#call-to-action {
  background-image: url(../img/section/call-action.png);
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
}

#call-to-action .cta-text-white{
  color: #fff;
}

.cta-btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

.cta-btn:hover {
  background: #00AAAA;
  border: 3px solid #00AAAA;
}

/* Contact Section
--------------------------------*/

#contact {
    padding: 60px 0;
  }

  #contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
  }

  #contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #233C71;
  }

  #contact .contact-info address,
  #contact .contact-info p {
    margin-bottom: 0;
    color: #2d2b46;
  }

  #contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #2d2b46;
  }

  #contact .contact-info a {
    color: #2d2b46;
  }

  #contact .contact-info a:hover {
    color: #00AAAA;
  }

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    margin-bottom: 20px;
  }

  #contact .form #sendmessage {
    color: #233C71;
    border: 1px solid #233C71;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  #contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  #contact .form #sendmessage.show,
  #contact .form #errormessage.show,
  #contact .form .show {
    display: block;
  }

  #contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
  }

  #contact .form input,
  #contact .form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
  }

  #contact .form button[type="submit"] {
    background: #233C71;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
  }

  #contact .form button[type="submit"]:hover {
    background: #00AAAA;
  }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  padding: 0 0 0 0;
  font-size: 14px;
  background-image: url(../img/section/footer-bg.png);
  background-size: cover;
}
#footer .container{
    margin-top: 70px;
}
#footer .footer-top {
  padding: 70px 0 30px 0;
}
#footer .copyright {
    text-align: left;
    color: #fff;
    font-family: "Fira Sans";
    font-style: italic;
}
#footer .copyright img {
width: 200px !important;
}
#footer .credits {

  font-size: 12px;
  padding-top: 4px;
  color: #fff;
    font-family: "Fira Sans";
    font-style: italic;
}

#footer .credits a {
  color: #fff;
}

#footer .credits a:hover {
  color: #fff;
}
/*--------------------------------------------------------------
views
--------------------------------------------------------------*/
#navSpace{
    height: 120px;
    background-color: #233C71;
}
#why-us{
    padding-top: 10px;
    padding-bottom: 50px;
    background-color:#FFFFFF;
}
#why-us h2 {
    color: #413e66;
    font-family: "Open Sans";
    font-weight: 700;
}
#why-us .row{
    padding-top: 40px;
}
#why-us .mivi h3{
    font-style: italic;
    color: #413e66;
    position: absolute;
    top:20%;
}

.call-to-action-parts{
    background-image: none !important;
    background-color: #EDEDED !important;
    color: #233C71 !important;
}
.call-to-action-parts .cta-title, .cta-text{
    color: #233C71 !important;
}
.call-to-action-parts .cta-btn{
    background-color:#233C71;
    border: none !important;
    color: #EDEDED  !important;
}

.view-products{
    background: url(../img/section/view-bg-products.png) center top no-repeat fixed !important;
    background-size: cover !important;
}
.view-products .container{
    top:30px;
}

.view-products .section-header p {
    margin: auto;
    font-size: 20px;
    color: #ffffff;
    width: 50%;
  }
  .view-products .cta-btn {
   background-color:  #233C71;
   border: none;
    color: #fff;
    margin-bottom: 30px;
  }
.view-products .products-col{
    text-align: center;
}
.view-products .products-col .img img{
    width: 100%;
}
.view-prod-detifac .cta-title, li{

    font-size: 24px !important;
}
.view-prod-detifac li{
    font-size: 24px !important;
    font-style: italic;
    margin-left: -15px !important;
}
.view-prod-detifac .cta-text{
    color: #444 !important;
}
#notice-privacy{
    background-color: #EDEDED;
    margin-top: 70px;
}
#notice-privacy h2 {
    color: #413e66;
    font-family: "Open Sans";
    font-weight: 700;
}
.welcom-img img{
    width: 100%;
}
/* Services Section
--------------------------------*/

#services {
    padding: 60px 0 40px 0;
    background: #f5f8fd;
  }

  #services .box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 40px 10px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
  }

  #services .box:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  #services .icon {
    margin: 0 auto 15px auto;
    padding-top: 12px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }

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

  #services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }

  #services .title a {
    color: #111;
  }

  #services .box:hover .title a {
    color: #1bb1dc;
  }

  #services .description {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: left;
  }
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 991px) {
   .cta-btn-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  #intro .intro-info {
    padding-top: 80px;
  }

  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #topbar {
    display: none;
  }

  #header {
    height: 70px;
    padding: 15px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
  #intro .carousel-content img{
      display: none !important;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #faq #faq-list a {
    font-size: 18px;
  }

  #faq #faq-list i {
    top: 13px;
  }
}

@media (max-width: 767px) {
  #intro {
    height: auto;
    padding: 80px 0 60px 0;
  }

  #intro .container {
    height: auto !important;
  }

  #intro .intro-img {
    width: 80%;
  }

  #intro .intro-info {
    text-align: center;
    padding-top: 40px;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
  #header {
  background-color: #233C71;
  }
  .logo{
    margin-left: 20px !important;
  }
  .intro-container{
      margin-top: -10px;
    }
}
