/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 17px;
    font-family: 'Source Sans Pro', sans-serif;

    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

.header-area {
    border-top: 3px solid #00a6e1;

}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}


/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}



/*===========================================================
Preloader CSS
============================================================*/
.spinner-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    background: #fff;
}

.spinner {
    background-color: #065e52;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 100%;
    -webkit-animation: scaleout 1.0s infinite ease-in-out;
    animation: scaleout 1.0s infinite ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 9999999;
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0.0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

/*===========================================================
 Scroll Animate
============================================================*/

.js .animate-box {
    opacity: 0;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 30px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    z-index: 10;
    background-color: #fff;
}

.admin-bar .header {
  top: 32px;
}

.nav {
    padding-left: 20px;
}

.nav ul li {
    margin-top: 25px;
    display: inline-block;
}

.nav ul li a {
    padding: 10px 15px;
    color: #134d79;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
}


/*===========================================================
 hero-area
============================================================*/
.hero-logo,
.hero-content,
.hero-area {
    position: relative;
    height: 500px;
}

.hero-area {
    /*background-color: #134d79;*/
	background-image: linear-gradient(141deg, rgba(0, 66, 103, 1) 60%, rgba(0, 78, 122, 1) 75%);
}

.hero-logo,
.hero-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.hero-logo {
    justify-content: center;
}

.hero-content-inner {
    position: relative;
    color: #fff;
}

.hero-content h1 {
    display: block;
    color: #fff;
    font-size: 40px;
    line-height: 60px;
}

.hero-content p {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}

.more {
    position: absolute;
    right: -15px;
    bottom: 65px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    z-index: 5;
}

.more i {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 45px;
}

.more span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 45px;
    text-transform: uppercase;
}

/*===========================================================
 Title
============================================================*/
.title {
    margin-bottom: 70px;
    position: relative;
}

.title h1, .title h2 {
    color: #134d79;
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    text-align: center;
}

.title img {
    position: absolute;
    top: 25px;
    right: 0;
    z-index: 2;
    width: 75px;
}

/*===========================================================
 network-service-area | flowchart-area | creation-area
============================================================*/
.vc_row:not(.vc_inner) {
    padding-top: 180px;
    padding-bottom: 120px;
}

.flowchart-area {
    background-color: #e5edf1;
}

.flowchart-area {}

.theContent {
    margin-bottom: 40px;
}



.theContent h2 {
    color: #134d79;
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}

.theContent ul li:before {
    position: absolute;
    top: 9px;
    left: -20px;
    width: 8px;
    height: 8px;
    background-color: #134d79;
    content: '';
    border-radius: 50%;
}

.theContent ul li {
    margin-bottom: 5px;
    list-style: none;
    position: relative;
}

.theContent ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    list-style: none;
}

.theContent li,
.theContent h3 {
    color: #2f3036;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
}

.network-service-area,
.creation-area {
    position: relative;
    overflow: hidden;
    clear: both;
}

.bubbles:before {
    position: absolute;
    width: 721px;
    height: 721px;
    content: '';
    right: -520px;
    bottom: 0;
    background-image: url("../img/network-bg.png");
    /*-webkit-background-size: cover;*/
    /*background-size: cover;*/
    background-repeat: no-repeat;
}

/*===========================================================
 Feature Block
============================================================*/
.feature-blocks-area {
    padding-top: 70px;
    padding-bottom: 100px;
    background-color: #e5edf1;
}



.single-block {
    display: block;
    text-align: center;
    padding: 30px;
    height: 100%;
    min-height: 221px;
    -webkit-box-shadow: 0 0 29px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 29px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    margin-bottom: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.single-block h2 {
    color: #134d79;
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
}

.single-block p {
    color: #2f3036;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    background-color: #134d79;
    text-align: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.feature-icon img {
    width: 60%;
    margin: 0 auto;
    padding: 12px 0px;
}

/*===========================================================
 Kontakt
============================================================*/
.contact-area {
    padding: 90px 0;
}

.contact-left {
  /*background-color: #134d79;*/
	background-image: linear-gradient(141deg, rgba(0, 66, 103, 1) 60%, rgba(0, 78, 122, 1) 75%);
  float: left;
  padding: 75px;
}

.contact-left h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
}

.contact-left h3 {
    font-weight: 400;
    font-size: 30px;
    color: #ffffff;
    margin-top: 50px;
}

address,
.contact-left a span,
.contact-left h4 {
    display: block;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
}

.contact-left a i {
    text-align: center;
    padding: 0 4px;
    width: 21px;
    color: #134d79;
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    line-height: 21px;
}

.contact-left a {
    display: block;
    margin-top: 5px;
}

.contact-left a span {
    margin-left: 5px;
}

.contact-left a i,
.contact-left a span {
    display: inline-block;
    vertical-align: middle;
}

.contact-right {
  float: right;
  width: 360px;
}

address {
    margin-top: 30px;
}

address strong {
    font-weight: 400;
    font-size: 30px;
    color: #ffffff;
    margin-top: 50px;
}

.contact-right .form-group {
    margin-bottom: 0;
}

.contact-right label {
    color: #2f3036;
    font-size: 14px;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 0;
}

.contact-right input {
    border: 1px solid #ddd;
    line-height: 45px;
    padding: 0 15px;

}

.contact-right textarea {
    width: 100%;
    height: 151px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 15px;
}


.form-group-checkbox input {
    display: none;
}

.form-group-checkbox label {
    position: relative;
    cursor: pointer;
    color: #2f3036;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    padding-left: 20px;
}

.form-group-checkbox label:before {
    left: -18px;
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 3px solid #686869;
    padding: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: -12px;
    border-radius: 50%;
}

.form-group-checkbox input:checked+span:after {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: 11px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-right input[type="submit"] {
    margin-top: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 44px;
    text-transform: uppercase;
    width: 100%;
    line-height: 46px;
    background-color: #134d79;
    border-radius: 5px;
    height: auto;
}

/*===========================================================
 Hover
============================================================*/
.more:hover i,
.more:hover span,
.nav ul li:hover > a,
.nav ul li.current-menu-item > a,
.nav ul li.current-page-ancestor > a,
.nav ul li.current-lang > a,
.nav ul li.current-menu-ancestor > a {
    color: #000;
}

.footer-single a:hover {
  color: #fff;
}

.contact-right input[type="submit"]:not(:disabled):hover {
    background: #095690;
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: #FFF;
    min-height: 100vh;

}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}


/*===========================================================
 footer Area
============================================================*/
.footer-area {
    /*background-color: #2f3036;*/
    /*background-color: #134d79;*/
	background-image: linear-gradient(141deg, rgba(0, 66, 103, 1) 60%, rgba(0, 78, 122, 1) 75%);
    padding: 30px 0;
}

.footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.footer-single li {
    display: inline-block;
}

.footer p,
.footer a {
    display: block;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.footer-single ul li a {
    margin: 0 10px;
}

/*===========================================================
 Responsive
============================================================*/


@media (max-width: 991px) {
    .bubbles:before {
      display: none;
    }

    .contact-left {
        padding: 70px 40px;
    }

    .contact-right {
        width: 340px;
    }

    .network-service-img {
        text-align: center;
        margin-bottom: 30px;
    }

    .network-service-img img {
        max-width: 350px;
    }

    .hero-content h2 {
        display: block;
        color: #fff;
        font-size: 44px;
        line-height: 1.4;
    }

    .nav {
        padding-left: 0;
    }

    .nav ul li a {
        padding-left: 10px;
        padding-right: 10px;
    }
}


@media (max-width: 767px) {
    address, .contact-left a span, .contact-left h4 {
      font-size: 19px;
    }

    .contact-left {
        width: 100%;
    }

    .contact-right {
        width: 100%;
        margin-top: 50px;
    }

    .footer {
        text-align: center;
        display: block;
        justify-content: unset;
    }

    .footer-single {
        padding: 10px 0;
    }

    .hero-logo,
    .hero-content {
        position: relative;
        height: 335px;
    }

    /*menu*/
    .mobile-logo img {
        margin-top: 3px;
        height: 100%;
        width: auto;
    }

    .header {
        display: none;
    }

    .panel-header {
        display: block;
        background: #fff;
        padding: 10px;
        height: 63px;
    }

    .slideout-open .slideout-menu {
        background: #134d79;
    }

    .btn-hamburger {
        cursor: pointer;
        display: inline-block;
        float: left;
        margin-top: 5px;
    }

    .menu-section-list {
        padding: 25px 10px;
    }

    .menu-section-list li a {
        line-height: 1.3;
		padding: 10px 0;
		display: block;
        color: #fff;
        font-size: 20px;
    }

    .menu-section-list li {
        display: block;
    }


    .btn-hamburger img {
        width: 27px;
    }

    .mobile-logo {
        text-align: center;
        width: 50%;
        margin: 0 auto;
        height: 100%;
    }

    /*title icon*/
    .title img {
        position: initial;
    	float: right;
    }

    .feature-blocks-area {
        padding-bottom: 50px;
    }

    .contact-left {
        padding: 50px 20px;
    }

    .contact-area {
        padding: 80px 0;
    }

    .vc_row:not(.vc_inner) {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media (max-width: 400px) {
    .network-service-img img {
        max-width: 100%;
    }
}
