﻿


/* montserrat-regular - latin */
/*@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;*/
    /*    src: url(montserrat-v26-latin-regular.woff2) format('woff2');*/
    /*    src: local("Montserrat") url("/assets/vendor/google/montserrat_v26_JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXp-p7K4KLg.woff2") format('woff2');*/
    /*    src: url('https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXp-p7K4KLg.woff2') format('woff2');*/
    /*    src: url('../assets/vendor/google/Montserrat-Regular.ttf') format('truetype');*/
/*    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}*/


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

a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 200px;
    background: #121b43;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    padding: 0 15px;
    overflow-y: auto;
    font-family: "Montserrat", sans-serif;
    font-size:14px;
}


#header .profile .logo img {
    margin: 20px auto;
    display: block;
    width: 80%;
}

#header .profile .language-links {
    vertical-align: middle;
    text-align: center;
    height: 20px;
}

#header .profile .language-links a {
    font-size: 10px;
    display: inline;
    width: 20px;
    color: #fff;
    padding: 3px 3px;
    border:none;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;
}

#header .profile .language-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

.container,
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }


  /* Main */
  #main {
    margin-left: 5px;
  }

  .container,
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

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

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 14px;
}

.nav-menu a i,
.nav-menu a:focus i {
/*  font-size: 20px;*/
  padding-right: 8px;
  color: #6f7180;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  color: #fff;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #149ddd;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    background-color: #149ddd;
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 50px;
    cursor: pointer;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
}

    #hero:before {
      content: "";
      background: rgba(5, 13, 24, 0.3);
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1;
    }

    #hero .hero-container {
      position: relative;
      z-index: 2;
      min-width: 300px;
    }

    #hero h1 {
        margin: 0 0 10px 0;
        font-family: "Montserrat", sans-serif;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
    }

    #hero .spaced-text {
        letter-spacing: 5px;
    }

    #hero p {
        color: #fff;
        margin-bottom: 50px;
        font-size: 26px;
        font-family: "Montserrat", sans-serif;
    }

        #hero p span {
          color: #fff;
          padding-bottom: 4px;
          letter-spacing: 1px;
          border-bottom: 3px solid #149ddd;
        }

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

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

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

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

.section-bg {
  background: #f5f8fd;
}

.section-title {
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
}

    .section-title h2 {
        width: 40%;
        font-size: 32px;
        font-weight: bold;
        text-align: center;
        border-bottom: 3px solid #149ddd;
        margin-bottom: 0px;
        padding-bottom: 10px;
        color: #173b6c;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .about-intro {
    padding: 10px 0 40px 0;
}

    .about .about-intro img {
        padding-bottom: 20px;
    }

    .about .about-intro p {
        padding: 20px 10% 5px 10%;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
    }

.about .services {
    max-width: 80%;
}

    .about .services p {
        padding-top: 40px;
        padding-bottom: 30px;
        font-size: 18px;
        font-weight: bold;
        align-content: center;
        text-align: center;
    }


    .about .services .service-block {
        font-family: "Source Sans Pro", sans-serif;
        padding-bottom: 50px;
    }


    .about .services .service-item {
        background: #61aed3ff;
        margin: 0;
        padding: 10%;
        height: 100%;
        border-radius: 30px;

    }

        .about .services .service-item.color-bg {
            background: #122f5bff;
            color: #fff;
        }

        .about .services .service-item .service-icon i {
            max-width: 20px;
        }

        .about .services .service-item i {
            font-size: 75px;
            color: #121b43;
        }

        .about .services .service-item .picture {
            width: inherit;
        }
        .about .services .service-item h3 {
            font-size: 14px;
            text-transform: uppercase;
            font-weight: bold;
            font-family: "Montserrat", sans-serif;
        }

        .about .services .service-item .description {
            font-size: 11px;
            font-weight: normal;
            font-family: "Montserrat", sans-serif;
        }

    .about .services .service-item.color-bg i, .services .service-item.color-bg h3, .services .service-item.color-bg .description {
        color: #fff;
    }


.about .sv-pictures {
    text-align: center;
}

    .about .sv-pictures .line {
        content: "";
        display: inline-block;
        text-align: center;
        line-height: 0;
        width: 30%;
        background: #fff;
        border-bottom: 2px solid #149ddd;
        margin: 40px 0 40px 0;
        padding: 0;
    }

    .about .sv-pictures img {
        padding: 0 10%;
        max-width: 100%;
        height: auto;
    }
    .about .sv-pictures p {
        padding: 0 0 10px 0;
        margin: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 12px;
        color: #050d18;
        font-style: italic;
    }

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/

.resume {
    padding-right: 50px;
}

.about .resume-intro {
    padding-bottom: 5px;
    text-align: left;
    padding-left: 10%;
    padding-right: 10%;
}

    .resume .resume-title {
      font-size: 26px;
      font-weight: 700;
      margin-top: 20px;
      margin-bottom: 20px;
      color: #050d18;
    }

.resume .resume-box {
/*    background: #ffffff;*/
/*    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);*/
    border-radius: 10px;
    margin-bottom: 20px;
}

    .resume .resume-item {
      padding: 0 0 0 20px;
      margin-top: -2px;
      margin-bottom: 20px;
      border-left: 2px dashed #1f5297;
      position: relative;
    }

        .resume .resume-item h4 {
          line-height: 18px;
          font-size: 16px;
          font-weight: 600;
          font-family: "Poppins", sans-serif;
          color: #050d18;
          margin-bottom: 10px;
        }

        .resume .resume-item h5 {
            background: #121b43;
            color: #ffffff;
            font-size: 15px;
            padding: 2px 10px;
            display: inline-block;
            margin-bottom: 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        .resume .resume-item p {
            margin-bottom: 5px;
            font-size: 15px;
        }
        .resume .resume-item ul {
          padding-left: 20px;
        }

            .resume .resume-item ul li {
                padding-bottom: 5px;
                font-size: 15px;
            }

        .resume .resume-item:last-child {
          padding-bottom: 0;
        }

    .resume .resume-item::before {
      content: "";
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50px;
      left: -9px;
      top: 0px;
      background: #fff;
      border: 2px solid #1f5297;
    }

/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/
.main-footer {
    padding-bottom: 100px;
    align-content: center;
}

    .main-footer .footer-box {
        box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
        background: #fff;
    }

    .main-footer .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .main-footer .info {
        padding: 10px;
        align-content: center;
    }

        .main-footer .info .info-item {
            display: flex;
            align-items: center;
            padding: 2px 0 2px 30%;
        }

            .main-footer .info .info-item .info-icon {
                float: left;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 28px;
                height: 28px;
                background: #dff3fc;
                border-radius: 50px;
                transition: 0.5s;
                border: 1px solid #149ddd;
            }

                .main-footer .info .info-icon i {
                    color: #149ddd;
                    font-size: 16px;
                }

        .main-footer .info .info-item .info-data {
            font-size: 12px;
            color: #173b6c;
            align-items: center;
            padding: 0 0 0 10px;
        }

            .main-footer .info .info-item .info-data p {
                margin: 0;
            }

            .main-footer .info .info-item .info-data a {
                color: #173b6c;
                text-decoration: underline;
            }


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

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

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

      .breadcrumbs ol li {
        display: inline-block;
      }
}

/*--------------------------------------------------------------
# Side Footer
--------------------------------------------------------------*/
#side-footer {
    padding: 5px 15px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 200px;
    z-index: 9997;
    background: #121b43;
    overflow-y: auto;
    font-family: "Montserrat", sans-serif;
}

    #side-footer .for-download {
        padding: 0 0 15px 0;
    }

        #side-footer .for-download * {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        #side-footer .for-download > ul > li {
            position: relative;
            white-space: nowrap;
        }

        #side-footer .for-download a,
        .for-download a:focus {
            display: flex;
            align-items: center;
            color: #a8a9b4;
            padding: 0 15px;
            margin-bottom: 4px;
            transition: 0.3s;
            font-size: 12px;
        }

            #side-footer .for-download a i,
            .for-download a:focus i {
                font-size: 20px;
                padding-right: 8px;
                color: #6f7180;
            }

            #side-footer .for-download a:hover,
            .for-download .active,
            .for-download .active:focus,
            .for-download li:hover > a {
                text-decoration: none;
                color: #fff;
            }

                #side-footer .for-download a:hover i,
                .for-download .active i,
                .for-download .active:focus i,
                .for-download li:hover > a i {
                    color: #149ddd;
                }

    #side-footer .copyright {
        padding: 10px 10px;
        font-size: 9px;
        color: #909090;
        text-align: left;
    }


@media (max-width: 1199px) {
    #side-footer {
        position: static;
        width: auto;
        padding-right: 20px 15px;
    }
}

/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/

#terms h3 {
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #173b6c;
}

    #terms h3::after {
        content: "";
        position: absolute;
        display: block;
        width: 200px;
        height: 3px;
        background: #149ddd;
        bottom: 0;
        left: 0;
    }

#terms .download {
    font-size: 14px;
    background-color: #149ddd;
}

#terms .content {
    font-size: small;
    padding-right:50px;
}

    #terms .content p {
        margin-block-start: 0;
        margin-block-end: 0;
    }

    #terms .content ul {
        margin-block-start: 0;
        margin-block-end: 0;
    }

    #terms .content h5 {
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 5px;
    }

    #terms .content h7 {
        font-style: italic;
        font-weight: bold;
    }



