/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 50px 0;
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #f9f8ff !important;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px !important;
    position: relative;
  }
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #05579e; /*#5846f9;*/
    bottom: 0;
    left: calc(50% - 25px);
  }
  .section-title p {
    margin-bottom: 0;
    font-style: normal !important;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #intro {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, rgba(45, 124, 194, 0.9) 0%, rgba(16, 54, 179, 0.9) 100%), url("/img/german-flag.jpg") center center no-repeat;
    background-size: cover;
  }
  #intro .container, #intro .container-fluid {
    padding-top: 84px;
  }
  #intro h1 {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
  }
  #intro h2 {
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0 0 0;
    font-size: 20px;
  }
  #intro .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    border: 2px solid #fff;
  }
  #intro .btn-get-started:hover {
    background: #fff;
    color: #5846f9;
  }
  #intro .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  @media (min-width: 1200px) {
    #intro {
      background-attachment: fixed;
    }
  }
  @media (max-width: 991px) {
    #intro {
      text-align: center;
    }
    #intro .container, #intro .container-fluid {
      padding-top: 68px;
    }
    #intro .animated {
      -webkit-animation: none;
      animation: none;
    }
    #intro .intro-img {
      text-align: center;
    }
    #intro .intro-img img {
      width: 50%;
    }
  }
  @media (max-width: 768px) {
    #intro h1 {
      font-size: 26px;
      line-height: 36px;
    }
    #intro h2 {
      font-size: 18px;
      line-height: 24px;
    }
    #intro .intro-img img {
      width: 60%;
    }
  }
  @media (max-width: 575px) {
    #intro .intro-img img {
      width: 80%;
    }
  }
  @media (max-width: 575px), (max-height: 600px) {
    #intro {
      height: auto;
    }
  }
  
  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  /*----------------------------------------------------
  # About & CTA
  ------------------------------------------------------*/
  .about {
    padding: 60px 100px 0 100px !important;
  }
  .about-col .icon {
    background-color: #05579e !important;
  }
  #about .about-col {
    padding-bottom: 20px;
  }
  #about .about-col:hover .icon {
    background-color: #fff !important;
  }
  #about .about-col:hover i {
    color: #05579e !important;
  }
  #about .about-col h2 a:hover {
    color: #05579e !important;
  }
  #about .about-col p{
    text-align: center;
  }
  #about .about-col ul {
    list-style: none;
    padding-left: 15px;
  }
  #about .about-col ul li {
    padding-left: 28px;
    position: relative;
  }
  #about .about-col ul li + li {
    margin-top: 10px;
  }
  #about .about-col ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #05579e !important;
    line-height: 1;
  }
  
  /* For mobile devices */
  @media (max-width: 1024px){
    .about {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  }
  @media (max-width: 992px){
    .about {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }

  /*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
/* About Us Section
--------------------------------*/
#about {
    background: url("../img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
  }
  
  #about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
  }
  
  #about .container {
    position: relative;
    z-index: 10;
  }
  
  #about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }
  
  #about .about-col .img {
    position: relative;
  }
  
  #about .about-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #about .about-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18d26e;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #about .about-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
  }
  
  #about .about-col:hover .icon {
    background-color: #fff;
  }
  
  #about .about-col:hover i {
    color: #18d26e;
  }
  
  #about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
  }
  
  #about .about-col h2 a {
    color: #000;
  }
  
  #about .about-col h2 a:hover {
    color: #18d26e;
  }
  
  #about .about-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }
  @media (max-width: 992px) {
    .about {
      padding: 60px 0;
    }
  }
  
  
  /*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/
  .about-us {
    padding: 20px 20px !important;
    background: url("/img/about-bg.png") top center no-repeat;
    position: relative;
  }
  .about-us:before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  .about-us .container {
    position: relative;
  }
  .about-us .content h3 {
    font-weight: 600;
    font-size: 26px;
  }
  .about-us .content ul {
    list-style: none;
    padding: 0;
  }
  .about-us .content ul li {
    padding-left: 28px;
    position: relative;
  }
  .about-us .content ul li + li {
    margin-top: 10px;
  }
  .about-us .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #0880e8;
    line-height: 1;
  }
  .about-us .content p:last-child {
    margin-bottom: 0;
  }
  .about-us .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: #0880e8;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #0880e8;
  }
  .about-us .content .btn-learn-more:hover {
    background: #0880e8;
    color: #fff;
    text-decoration: none;
  }
  @media (max-width: 992px) {
    .about-us {
      padding: 60px 0;
    }
  }
  
  .btn-wrap {
    margin: 15px -15px -15px -15px;
    padding: 15px 15px;
    text-align: center;
  }
  
  .btn-buy {
    background: #0880e8;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn-buy:hover {
    background: #2b99f8;
  }