/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* line 4, ../scss/_general.scss */
body {
  font-family: "Open Sans", sans-serif;
  color: #444444; }

/* line 9, ../scss/_general.scss */
a {
  color: #1377d9;
  text-decoration: none; }

/* line 14, ../scss/_general.scss */
a:hover {
  color: #3290ed;
  text-decoration: none; }

/* line 19, ../scss/_general.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif; }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* line 26, ../scss/_general.scss */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff; }

/* line 37, ../scss/_general.scss */
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1377d9;
  border-top-color: #d6e9fb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite; }

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* line 58, ../scss/_general.scss */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1377d9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s; }
  /* line 71, ../scss/_general.scss */
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0; }
  /* line 77, ../scss/_general.scss */
  .back-to-top:hover {
    background: #298bec;
    color: #fff; }
  /* line 82, ../scss/_general.scss */
  .back-to-top.active {
    visibility: visible;
    opacity: 1; }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* line 4, ../scss/_header.scss */
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0; }
  /* line 10, ../scss/_header.scss */
  #header.header-scrolled {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); }
  /* line 15, ../scss/_header.scss */
  #header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase; }
    /* line 24, ../scss/_header.scss */
    #header .logo a {
      color: #0b2341; }
    /* line 28, ../scss/_header.scss */
    #header .logo img {
      max-height: 40px; }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/* line 8, ../scss/_nav.scss */
.navbar {
  padding: 0; }
  /* line 11, ../scss/_nav.scss */
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center; }
  /* line 19, ../scss/_nav.scss */
  .navbar li {
    position: relative; }
  /* line 23, ../scss/_nav.scss */
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #0b2341;
    white-space: nowrap;
    transition: 0.3s; }
    /* line 33, ../scss/_nav.scss */
    .navbar a i, .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px; }
  /* line 40, ../scss/_nav.scss */
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #1377d9; }
  /* line 44, ../scss/_nav.scss */
  .navbar .getstarted {
    background: #1377d9;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff; }
    /* line 50, ../scss/_nav.scss */
    .navbar .getstarted:hover {
      color: #fff;
      background: #1b84eb; }
  /* line 58, ../scss/_nav.scss */
  .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; }
    /* line 72, ../scss/_nav.scss */
    .navbar .dropdown ul li {
      min-width: 200px; }
    /* line 76, ../scss/_nav.scss */
    .navbar .dropdown ul a {
      padding: 10px 20px;
      text-transform: none; }
      /* line 79, ../scss/_nav.scss */
      .navbar .dropdown ul a i {
        font-size: 12px; }
    /* line 84, ../scss/_nav.scss */
    .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
      color: #1377d9; }
  /* line 90, ../scss/_nav.scss */
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible; }
  /* line 100, ../scss/_nav.scss */
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden; }
  /* line 106, ../scss/_nav.scss */
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible; }
  @media (max-width: 1366px) {
    /* line 114, ../scss/_nav.scss */
    .navbar .dropdown .dropdown ul {
      left: -90%; }
    /* line 118, ../scss/_nav.scss */
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%; } }

/**
* Mobile Navigation 
*/
/* line 129, ../scss/_nav.scss */
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s; }
  /* line 136, ../scss/_nav.scss */
  .mobile-nav-toggle.bi-x {
    color: #fff; }

@media (max-width: 991px) {
  /* line 143, ../scss/_nav.scss */
  .mobile-nav-toggle {
    display: block; }

  /* line 147, ../scss/_nav.scss */
  .navbar ul {
    display: none; } }
/* line 153, ../scss/_nav.scss */
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999; }
  /* line 165, ../scss/_nav.scss */
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px; }
  /* line 171, ../scss/_nav.scss */
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s; }
  /* line 184, ../scss/_nav.scss */
  .navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #0b2341; }
  /* line 190, ../scss/_nav.scss */
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #1377d9; }
  /* line 194, ../scss/_nav.scss */
  .navbar-mobile .getstarted {
    margin: 15px; }
  /* line 200, ../scss/_nav.scss */
  .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); }
    /* line 211, ../scss/_nav.scss */
    .navbar-mobile .dropdown ul li {
      min-width: 200px; }
    /* line 215, ../scss/_nav.scss */
    .navbar-mobile .dropdown ul a {
      padding: 10px 20px; }
      /* line 218, ../scss/_nav.scss */
      .navbar-mobile .dropdown ul a i {
        font-size: 12px; }
    /* line 223, ../scss/_nav.scss */
    .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
      color: #1377d9; }
  /* line 229, ../scss/_nav.scss */
  .navbar-mobile .dropdown > .dropdown-active {
    display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* line 4, ../scss/_hero.scss */
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative; }
  /* line 11, ../scss/_hero.scss */
  #hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; }
  /* line 19, ../scss/_hero.scss */
  #hero .carousel-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat; }
  /* line 25, ../scss/_hero.scss */
  #hero .carousel-item::before {
    content: '';
    background-color: rgba(4, 12, 21, 0.5); }
  /* line 30, ../scss/_hero.scss */
  #hero .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 82px;
    left: 50px;
    right: 50px; }
  /* line 40, ../scss/_hero.scss */
  #hero h2 {
    color: #fff;
    margin: 0;
    font-size: 48px;
    font-weight: 700; }
  /* line 47, ../scss/_hero.scss */
  #hero p {
    animation-delay: 0.4s;
    color: #fff;
    margin-top: 10px; }
    @media (min-width: 1200px) {
      /* line 47, ../scss/_hero.scss */
      #hero p {
        width: 50%; } }
  /* line 57, ../scss/_hero.scss */
  #hero .carousel-inner .carousel-item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    background-position: center top; }
  /* line 63, ../scss/_hero.scss */
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    opacity: 0; }
  /* line 69, ../scss/_hero.scss */
  #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; }
  /* line 76, ../scss/_hero.scss */
  #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); }
  /* line 85, ../scss/_hero.scss */
  #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center; }
    /* line 100, ../scss/_hero.scss */
    #hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
      background: rgba(255, 255, 255, 0.3);
      color: rgba(255, 255, 255, 0.8); }
  /* line 107, ../scss/_hero.scss */
  #hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s; }
    /* line 117, ../scss/_hero.scss */
    #hero .carousel-indicators li.active {
      opacity: 1;
      background: #1377d9; }
  /* line 123, ../scss/_hero.scss */
  #hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: #1377d9;
    margin-top: 15px; }
    /* line 137, ../scss/_hero.scss */
    #hero .btn-get-started:hover {
      background: #1b84eb; }
  @media (max-width: 992px) {
    /* line 4, ../scss/_hero.scss */
    #hero {
      height: 100vh; }
      /* line 144, ../scss/_hero.scss */
      #hero .carousel-container {
        text-align: center;
        top: 74px; } }
  @media (max-width: 768px) {
    /* line 151, ../scss/_hero.scss */
    #hero h2 {
      font-size: 30px; } }
  @media (min-width: 1024px) {
    /* line 157, ../scss/_hero.scss */
    #hero .carousel-control-prev, #hero .carousel-control-next {
      width: 5%; } }
  @media (max-height: 500px) {
    /* line 4, ../scss/_hero.scss */
    #hero {
      height: 120vh; } }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/* line 4, ../scss/_sections.scss */
section {
  padding: 30px 0; }

/* line 10, ../scss/_sections.scss */
.section-bg {
  background-color: #f6f9fd; }

/* line 14, ../scss/_sections.scss */
.section-title {
  padding-bottom: 40px;
  /* p {
     margin: 0;
     margin: 0;
     font-size: 36px;
     font-weight: 700;
     text-transform: uppercase;
     font-family: $font-secondary;
     color: lighten($secondary, 5);
   }  */ }
  /* line 17, ../scss/_sections.scss */
  .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif; }
  /* line 29, ../scss/_sections.scss */
  .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #499def;
    margin: 4px 10px; }
  /* line 48, ../scss/_sections.scss */
  .section-title p {
    font-size: 36px;
    margin: 4px 0px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #0f2f57; }
  /* line 60, ../scss/_sections.scss */
  .section-title h1 {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #0f2f57; }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/* line 80, ../scss/_sections.scss */
.about .content h3 {
  font-weight: 600;
  font-size: 26px; }
/* line 85, ../scss/_sections.scss */
.about .content ul {
  list-style: none;
  padding: 0; }
  /* line 89, ../scss/_sections.scss */
  .about .content ul li {
    padding-left: 28px;
    position: relative; }
  /* line 94, ../scss/_sections.scss */
  .about .content ul li + li {
    margin-top: 10px; }
  /* line 98, ../scss/_sections.scss */
  .about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #1377d9;
    line-height: 1; }
/* line 108, ../scss/_sections.scss */
.about .content p:last-child {
  margin-bottom: 0; }
/* line 112, ../scss/_sections.scss */
.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #1377d9;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #1377d9; }
  /* line 126, ../scss/_sections.scss */
  .about .content .btn-learn-more:hover {
    background: #1377d9;
    color: #fff;
    text-decoration: none; }

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
/* line 138, ../scss/_sections.scss */
.counts {
  padding-top: 0; }
  /* line 141, ../scss/_sections.scss */
  .counts .count-box {
    box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%; }
    /* line 146, ../scss/_sections.scss */
    .counts .count-box i {
      display: block;
      font-size: 30px;
      color: #1377d9;
      float: left; }
    /* line 153, ../scss/_sections.scss */
    .counts .count-box span {
      font-size: 42px;
      line-height: 24px;
      display: block;
      font-weight: 700;
      color: #0b2341;
      margin-left: 50px; }
    /* line 162, ../scss/_sections.scss */
    .counts .count-box p {
      padding: 30px 0 0 0;
      margin: 0;
      font-family: "Raleway", sans-serif;
      font-size: 14px; }
    /* line 169, ../scss/_sections.scss */
    .counts .count-box a {
      font-weight: 600;
      display: block;
      margin-top: 20px;
      color: #164682;
      font-size: 15px;
      font-family: "Poppins", sans-serif;
      transition: ease-in-out 0.3s; }
      /* line 177, ../scss/_sections.scss */
      .counts .count-box a:hover {
        color: #2169c4; }

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
/* line 188, ../scss/_sections.scss */
.why-us {
  padding: 0; }
  /* line 190, ../scss/_sections.scss */
  .why-us .content {
    padding: 60px 100px 0 100px; }
    /* line 192, ../scss/_sections.scss */
    .why-us .content h3 {
      font-weight: 400;
      font-size: 34px;
      color: #123a6d; }
    /* line 198, ../scss/_sections.scss */
    .why-us .content h4 {
      font-size: 20px;
      font-weight: 700;
      margin-top: 5px; }
    /* line 204, ../scss/_sections.scss */
    .why-us .content p {
      font-size: 15px;
      color: #848484; }
  /* line 210, ../scss/_sections.scss */
  .why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative; }
  /* line 218, ../scss/_sections.scss */
  .why-us .accordion-list {
    padding: 0 100px 60px 100px; }
    /* line 220, ../scss/_sections.scss */
    .why-us .accordion-list ul {
      padding: 0;
      list-style: none; }
    /* line 225, ../scss/_sections.scss */
    .why-us .accordion-list li + li {
      margin-top: 15px; }
    /* line 229, ../scss/_sections.scss */
    .why-us .accordion-list li {
      padding: 20px;
      background: #fff;
      border-radius: 4px; }
    /* line 235, ../scss/_sections.scss */
    .why-us .accordion-list a {
      display: block;
      position: relative;
      font-family: "Poppins", sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 500;
      padding-right: 30px;
      outline: none;
      color: #0b2341;
      cursor: pointer; }
    /* line 248, ../scss/_sections.scss */
    .why-us .accordion-list span {
      color: #1377d9;
      font-weight: 600;
      font-size: 18px;
      padding-right: 10px; }
    /* line 255, ../scss/_sections.scss */
    .why-us .accordion-list i {
      font-size: 24px;
      position: absolute;
      right: 0;
      top: 0; }
    /* line 262, ../scss/_sections.scss */
    .why-us .accordion-list p {
      margin-bottom: 0;
      padding: 10px 0 0 0; }
    /* line 267, ../scss/_sections.scss */
    .why-us .accordion-list .icon-show {
      display: none; }
    /* line 272, ../scss/_sections.scss */
    .why-us .accordion-list a.collapsed {
      color: #0b2341; }
      /* line 274, ../scss/_sections.scss */
      .why-us .accordion-list a.collapsed:hover {
        color: #1377d9; }
      /* line 278, ../scss/_sections.scss */
      .why-us .accordion-list a.collapsed .icon-show {
        display: inline-block; }
      /* line 282, ../scss/_sections.scss */
      .why-us .accordion-list a.collapsed .icon-close {
        display: none; }
  /* line 289, ../scss/_sections.scss */
  .why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#1377d9 50%, rgba(19, 119, 217, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden; }
  /* line 301, ../scss/_sections.scss */
  .why-us .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); }
  /* line 316, ../scss/_sections.scss */
  .why-us .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(19, 119, 217, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0); }
  /* line 333, ../scss/_sections.scss */
  .why-us .play-btn:hover::after {
    border-left: 15px solid #1377d9;
    transform: scale(20); }
  /* line 338, ../scss/_sections.scss */
  .why-us .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;
    animation: none;
    border-radius: 0; }
  @media (max-width: 1024px) {
    /* line 356, ../scss/_sections.scss */
    .why-us .content, .why-us .accordion-list {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 992px) {
    /* line 363, ../scss/_sections.scss */
    .why-us .content {
      padding-top: 30px; }
    /* line 366, ../scss/_sections.scss */
    .why-us .accordion-list {
      padding-bottom: 30px; } }

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1; }
  100% {
    transform: scale(1, 1);
    opacity: 0; } }
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* line 388, ../scss/_sections.scss */
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s; }
  /* line 395, ../scss/_sections.scss */
  .services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #1377d9;
    border-radius: 5px;
    transition: all .3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2; }
    /* line 410, ../scss/_sections.scss */
    .services .icon-box .icon i {
      color: #fff;
      font-size: 28px; }
    /* line 416, ../scss/_sections.scss */
    .services .icon-box .icon::before {
      position: absolute;
      content: '';
      left: -8px;
      top: -8px;
      height: 100%;
      width: 100%;
      background: #90c3f5;
      border-radius: 5px;
      transition: all .3s ease-out 0s;
      transform: translateZ(-1px);
      z-index: 1; }
  /* line 432, ../scss/_sections.scss */
  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px; }
    /* line 436, ../scss/_sections.scss */
    .services .icon-box h4 a {
      color: #0b2341; }
  /* line 442, ../scss/_sections.scss */
  .services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0; }
  /* line 448, ../scss/_sections.scss */
  .services .icon-box:hover {
    background: #1377d9;
    border-color: #1377d9; }
    /* line 452, ../scss/_sections.scss */
    .services .icon-box:hover .icon {
      background: #fff; }
      /* line 455, ../scss/_sections.scss */
      .services .icon-box:hover .icon i {
        color: #1377d9; }
      /* line 459, ../scss/_sections.scss */
      .services .icon-box:hover .icon::before {
        background: #3290ed; }
    /* line 463, ../scss/_sections.scss */
    .services .icon-box:hover h4 a, .services .icon-box:hover p {
      color: #fff; }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/* line 477, ../scss/_sections.scss */
.testimonials .testimonial-wrap {
  padding-left: 50px; }
/* line 481, ../scss/_sections.scss */
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff; }
  /* line 490, ../scss/_sections.scss */
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    position: absolute;
    left: -45px; }
  /* line 498, ../scss/_sections.scss */
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111; }
  /* line 505, ../scss/_sections.scss */
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0; }
  /* line 511, ../scss/_sections.scss */
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #bfdcf9;
    font-size: 26px; }
  /* line 516, ../scss/_sections.scss */
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative; }
  /* line 522, ../scss/_sections.scss */
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px; }
  /* line 529, ../scss/_sections.scss */
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto; }
/* line 536, ../scss/_sections.scss */
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative; }
  /* line 540, ../scss/_sections.scss */
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #1377d9; }
  /* line 548, ../scss/_sections.scss */
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1377d9; }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
/* line 558, ../scss/_sections.scss */
.cta {
  padding: 80px 0;
  background: #0b2341; }
  /* line 562, ../scss/_sections.scss */
  .cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700; }
  /* line 568, ../scss/_sections.scss */
  .cta p {
    color: #fff; }
  /* line 572, ../scss/_sections.scss */
  .cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #1377d9;
    color: #fff; }
    /* line 584, ../scss/_sections.scss */
    .cta .cta-btn:hover {
      background: #1377d9;
      border: 2px solid #1377d9; }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/* line 596, ../scss/_sections.scss */
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px; }
  /* line 603, ../scss/_sections.scss */
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #0b2341;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out; }
    /* line 615, ../scss/_sections.scss */
    .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
      color: #1377d9; }
    /* line 619, ../scss/_sections.scss */
    .portfolio #portfolio-flters li:last-child {
      margin-right: 0; }
/* line 625, ../scss/_sections.scss */
.portfolio .portfolio-item {
  margin-bottom: 30px; }
  /* line 628, ../scss/_sections.scss */
  .portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px; }
    /* line 639, ../scss/_sections.scss */
    .portfolio .portfolio-item .portfolio-info h4 {
      font-size: 18px;
      color: #fff;
      font-weight: 600;
      color: #0b2341; }
    /* line 646, ../scss/_sections.scss */
    .portfolio .portfolio-item .portfolio-info p {
      color: #1a5298;
      font-size: 14px;
      margin-bottom: 0; }
    /* line 652, ../scss/_sections.scss */
    .portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
      position: absolute;
      right: 40px;
      font-size: 24px;
      top: calc(50% - 18px);
      color: #123a6d; }
      /* line 658, ../scss/_sections.scss */
      .portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
        color: #1377d9; }
    /* line 663, ../scss/_sections.scss */
    .portfolio .portfolio-item .portfolio-info .details-link {
      right: 10px; }
  /* line 669, ../scss/_sections.scss */
  .portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s; }
    /* line 678, ../scss/_sections.scss */
    .portfolio .portfolio-item .portfolio-links a {
      color: #fff;
      margin: 0 2px;
      font-size: 28px;
      display: inline-block;
      transition: 0.3s; }
      /* line 685, ../scss/_sections.scss */
      .portfolio .portfolio-item .portfolio-links a:hover {
        color: #61aaf1; }
  /* line 693, ../scss/_sections.scss */
  .portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px; }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
/* line 704, ../scss/_sections.scss */
.portfolio-details {
  padding-top: 40px; }
  /* line 709, ../scss/_sections.scss */
  .portfolio-details .portfolio-details-slider img {
    width: 100%; }
  /* line 712, ../scss/_sections.scss */
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative; }
    /* line 716, ../scss/_sections.scss */
    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #fff;
      opacity: 1;
      border: 1px solid #1377d9; }
    /* line 724, ../scss/_sections.scss */
    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #1377d9; }
  /* line 731, ../scss/_sections.scss */
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08); }
    /* line 735, ../scss/_sections.scss */
    .portfolio-details .portfolio-info h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee; }
    /* line 743, ../scss/_sections.scss */
    .portfolio-details .portfolio-info ul {
      list-style: none;
      padding: 0;
      font-size: 15px; }
      /* line 748, ../scss/_sections.scss */
      .portfolio-details .portfolio-info ul li + li {
        margin-top: 10px; }
  /* line 755, ../scss/_sections.scss */
  .portfolio-details .portfolio-description {
    padding-top: 30px; }
    /* line 758, ../scss/_sections.scss */
    .portfolio-details .portfolio-description h1 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px; }
    /* line 764, ../scss/_sections.scss */
    .portfolio-details .portfolio-description h2 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px; }
    /* line 770, ../scss/_sections.scss */
    .portfolio-details .portfolio-description p {
      padding: 0; }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/* line 782, ../scss/_sections.scss */
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden; }
  /* line 789, ../scss/_sections.scss */
  .team .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s; }
  /* line 799, ../scss/_sections.scss */
  .team .member .member-info-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    transition: bottom 0.4s; }
    /* line 807, ../scss/_sections.scss */
    .team .member .member-info-content h4 {
      font-weight: 700;
      margin-bottom: 2px;
      font-size: 18px;
      color: #fff; }
    /* line 814, ../scss/_sections.scss */
    .team .member .member-info-content span {
      font-style: italic;
      display: block;
      font-size: 13px;
      color: #fff; }
  /* line 823, ../scss/_sections.scss */
  .team .member .social {
    position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    width: 50px;
    transition: left ease-in-out 0.3s;
    background: rgba(11, 35, 65, 0.5);
    text-align: center; }
    /* line 832, ../scss/_sections.scss */
    .team .member .social a {
      transition: color 0.3s;
      display: block;
      color: #fff;
      margin-top: 15px; }
      /* line 837, ../scss/_sections.scss */
      .team .member .social a:hover {
        color: #1377d9; }
    /* line 843, ../scss/_sections.scss */
    .team .member .social i {
      font-size: 18px;
      margin: 0 2px; }
  /* line 850, ../scss/_sections.scss */
  .team .member:hover .member-info {
    background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s; }
  /* line 856, ../scss/_sections.scss */
  .team .member:hover .member-info-content {
    bottom: 30px;
    transition: bottom 0.4s; }
  /* line 861, ../scss/_sections.scss */
  .team .member:hover .social {
    left: 0;
    transition: left ease-in-out 0.3s; }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
/* line 876, ../scss/_sections.scss */
.pricing .row {
  padding-top: 40px; }
/* line 880, ../scss/_sections.scss */
.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center; }
/* line 888, ../scss/_sections.scss */
.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px; }
/* line 894, ../scss/_sections.scss */
.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px; }
  /* line 901, ../scss/_sections.scss */
  .pricing h4 span {
    color: #bababa;
    font-size: 18px;
    display: block; }
/* line 908, ../scss/_sections.scss */
.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px; }
  /* line 915, ../scss/_sections.scss */
  .pricing ul li {
    padding-bottom: 12px; }
  /* line 919, ../scss/_sections.scss */
  .pricing ul i {
    color: #1377d9;
    font-size: 18px;
    padding-right: 4px; }
  /* line 924, ../scss/_sections.scss */
  .pricing ul .na {
    color: #ccc; }
    /* line 926, ../scss/_sections.scss */
    .pricing ul .na i {
      color: #ccc; }
    /* line 929, ../scss/_sections.scss */
    .pricing ul .na span {
      text-decoration: line-through; }
/* line 935, ../scss/_sections.scss */
.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff; }
  /* line 946, ../scss/_sections.scss */
  .pricing .get-started-btn:hover {
    background: #0b2341;
    color: #fff; }
/* line 952, ../scss/_sections.scss */
.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #1377d9; }
  /* line 956, ../scss/_sections.scss */
  .pricing .featured .get-started-btn {
    background: #1377d9;
    color: #fff;
    border-color: #1377d9; }
    /* line 960, ../scss/_sections.scss */
    .pricing .featured .get-started-btn:hover {
      background: #1b84eb; }
@media (max-width: 992px) {
  /* line 967, ../scss/_sections.scss */
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto; } }
@media (max-width: 767px) {
  /* line 974, ../scss/_sections.scss */
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto; } }
@media (max-width: 420px) {
  /* line 981, ../scss/_sections.scss */
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto; } }

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/* line 994, ../scss/_sections.scss */
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb; }
  /* line 999, ../scss/_sections.scss */
  .faq .faq-item i {
    color: #669ee5;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0; }
  /* line 1008, ../scss/_sections.scss */
  .faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
    font-family: "Poppins", sans-serif; }
  /* line 1015, ../scss/_sections.scss */
  .faq .faq-item p {
    font-size: 15px; }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/* line 1026, ../scss/_sections.scss */
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff; }
  /* line 1033, ../scss/_sections.scss */
  .contact .info-box i {
    font-size: 32px;
    color: #1377d9;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #a7d0f7; }
  /* line 1041, ../scss/_sections.scss */
  .contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0; }
  /* line 1048, ../scss/_sections.scss */
  .contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0; }
/* line 1057, ../scss/_sections.scss */
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff; }
  /* line 1063, ../scss/_sections.scss */
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600; }
    /* line 1070, ../scss/_sections.scss */
    .contact .php-email-form .error-message br + br {
      margin-top: 25px; }
  /* line 1075, ../scss/_sections.scss */
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600; }
  /* line 1084, ../scss/_sections.scss */
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px; }
    /* line 1090, ../scss/_sections.scss */
    .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;
      animation: animate-loading 1s linear infinite; }
  /* line 1104, ../scss/_sections.scss */
  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px; }
    /* line 1109, ../scss/_sections.scss */
    .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
      border-color: #1377d9; }
  /* line 1114, ../scss/_sections.scss */
  .contact .php-email-form input {
    padding: 10px 15px; }
  /* line 1118, ../scss/_sections.scss */
  .contact .php-email-form textarea {
    padding: 12px 15px; }
  /* line 1122, ../scss/_sections.scss */
  .contact .php-email-form button[type="submit"] {
    background: #1377d9;
    border: 0;
    padding: 10px 30px;
    border-radius: 4px;
    color: #fff;
    transition: 0.4s; }
    /* line 1129, ../scss/_sections.scss */
    .contact .php-email-form button[type="submit"]:hover {
      background: #1b84eb; }
@keyframes animate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
/* line 1145, ../scss/_sections.scss */
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px; }
  @media (max-width: 992px) {
    /* line 1145, ../scss/_sections.scss */
    .breadcrumbs {
      margin-top: 74px; } }
  /* line 1154, ../scss/_sections.scss */
  .breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0b2341; }
  /* line 1160, ../scss/_sections.scss */
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px; }
    /* line 1168, ../scss/_sections.scss */
    .breadcrumbs ol li + li {
      padding-left: 10px; }
    /* line 1172, ../scss/_sections.scss */
    .breadcrumbs ol li + li::before {
      display: inline-block;
      padding-right: 10px;
      color: #123a6d;
      content: "/"; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* line 4, ../scss/_footer.scss */
#footer {
  background: #071527;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px; }
  /* line 11, ../scss/_footer.scss */
  #footer .footer-top {
    padding: 60px 0 30px 0; }
    /* line 14, ../scss/_footer.scss */
    #footer .footer-top .footer-info {
      margin-bottom: 15px;
      background: #05101e;
      border-top: 4px solid #1377d9;
      text-align: center;
      padding: 30px 20px; }
      /* line 21, ../scss/_footer.scss */
      #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; }
      /* line 29, ../scss/_footer.scss */
      #footer .footer-top .footer-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: "Raleway", sans-serif; }
    /* line 38, ../scss/_footer.scss */
    #footer .footer-top .social-links a {
      font-size: 18px;
      display: inline-block;
      color: #fff;
      line-height: 1;
      padding: 8px 0;
      margin-right: 4px;
      border-radius: 4px;
      text-align: center;
      width: 36px;
      height: 36px;
      transition: 0.3s;
      background: #0a1e38; }
      /* line 51, ../scss/_footer.scss */
      #footer .footer-top .social-links a:hover {
        color: #fff;
        background: #1377d9;
        text-decoration: none; }
    /* line 59, ../scss/_footer.scss */
    #footer .footer-top h4 {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      position: relative;
      padding-bottom: 12px; }
    /* line 67, ../scss/_footer.scss */
    #footer .footer-top .footer-links {
      margin-bottom: 30px; }
      /* line 69, ../scss/_footer.scss */
      #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        /* line 74, ../scss/_footer.scss */
        #footer .footer-top .footer-links ul i {
          padding-right: 2px;
          color: #1b84eb;
          font-size: 18px;
          line-height: 1; }
        /* line 81, ../scss/_footer.scss */
        #footer .footer-top .footer-links ul li {
          padding: 10px 0;
          display: flex;
          align-items: center; }
          /* line 83, ../scss/_footer.scss */
          #footer .footer-top .footer-links ul li:first-child {
            padding-top: 0; }
        /* line 90, ../scss/_footer.scss */
        #footer .footer-top .footer-links ul a {
          color: #fff;
          transition: 0.3s;
          display: inline-block;
          line-height: 1; }
          /* line 95, ../scss/_footer.scss */
          #footer .footer-top .footer-links ul a:hover {
            color: #1b84eb; }
    /* line 104, ../scss/_footer.scss */
    #footer .footer-top .footer-newsletter form {
      margin-top: 30px;
      background: #fff;
      padding: 6px 10px;
      position: relative;
      border-radius: 4px; }
      /* line 111, ../scss/_footer.scss */
      #footer .footer-top .footer-newsletter form input[type="email"] {
        border: 0;
        padding: 4px;
        width: calc(100% - 110px); }
      /* line 116, ../scss/_footer.scss */
      #footer .footer-top .footer-newsletter form input[type="submit"] {
        position: absolute;
        top: 0;
        right: -2px;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 20px 2px 20px;
        background: #1377d9;
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0; }
        /* line 129, ../scss/_footer.scss */
        #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
          background: #1b84eb; }
  /* line 138, ../scss/_footer.scss */
  #footer .copyright {
    border-top: 1px solid #0f2f57;
    text-align: center;
    padding-top: 30px; }
  /* line 144, ../scss/_footer.scss */
  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff; }
  @media (max-width: 575px) {
    /* line 152, ../scss/_footer.scss */
    #footer .footer-top .footer-info {
      margin: -20px 0 30px 0; } }
