/* 1. Root */

:root {
    --base-color: #fff;
    --background-color: #FFF;
    --coach-color: #93CBDB;
    --text-color: #93CBDB;
    --primary-font-family: "Montserrat";
    --secondary-font-family: "Montserrat";
    --background-img: url(assets/background.jpg);
    --mobile-img: url(assets/mobile.jpg)
}

/* 2. Basics */

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin:  0;
	padding: 0;
}

blockquote,
ul,
ol {
	margin:  0;
	padding: 0;
}

ul li,
ol li {
	margin-bottom: 0;
}

li {
	margin:  0;
	padding: 0;
	list-style: none;
}

img {
	width:     100%;
	max-width: 100%;
	vertical-align: middle;
}

a,
i {
	border: none;
}

button {
	padding: 0;
}

a {
	color: var(--coach-color);
    text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button,
button:focus,
button:hover {
	border:     none;
	background: none;
}

a:focus,
button:focus {
	outline: none;
}

p {
    font-family: var(--secondary-font-family);
    font-size: 16px;
    font-weight: 200;
    color: var(--text-color);
    line-height: 30px;
}

h1 {
    color: var(--coach-color);
    font-family: var(--primary-font-family);
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

h2 {
    color: var(--text-color);
    font-family: var(--primary-font-family);
    font-size: 25px;
    line-height: 35px;
    font-weight: 400;
}

h1, h2 {
    margin: 0 10px;
}

/* 3. Container and Columns */

main {
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

section {
    position: relative;
}

.container {
    max-width: 1400px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.col-12 {
    width: 98%;
    padding: 10px;
}

.col-6 {
    width: 48%;
    padding: 10px;
}

@media screen and (max-width:1024px) {
    .container {
        max-width: 1024px;
    }
    
    .col-6 {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .container {
        max-width:767px;
    }
    
    .col-6 {
        width: 100%;
    }
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;  
}

.vertical-align {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

.text-content-split {
    text-align: center;
    margin: 0 0 -30px 0;
}

.text-content-full-width {
    text-align: center;
    margin: 0 0 -30px 0;
}

/* 3. Navigation */

.header{
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    min-height: 60px;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #383838;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    font-family: var(--primary-font-family);
    font-weight: 700;
    color: var(--text-color);
}

.nav-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--primary-font-family);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    padding: 13px 20px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--coach-color);
}

.nav-link:after {
    display: block;
    position: absolute;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
        transition-timing-function: ease;
    -webkit-transition-timing-function: cubic-bezier(.58,.3,.005,1);
    -o-transition-timing-function: cubic-bezier(.58,.3,.005,1);
    transition-timing-function: cubic-bezier(.58,.3,.005,1);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    height: 3px;
    width: -moz-available;
    background-color: var(--coach-color);
    z-index: 2;
    content: "";
    bottom: 0;
}


.nav-link:hover:after, .nav-link.active:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.nav-logo {
    font-size: 25px;
    font-weight: 700;
    color: var(--coach-color);
    font-family: var(--primary-font-family);
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: 0;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        border-radius: 0;
        text-align: center;
        transition: 0.3s;
        z-index: 99;
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* 4. Leadform Section */

.section-height {
    min-height: 90vh;
}

.section-bg {
    background: var(--background-color);
}

.full-layout-bg {
    background-image: var(--background-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#footer {
    background: var(--base-color);
    font-family: var(--primary-font-family);
    border-top: 1px solid #E2E8F0;
}

.powered-by {
    font-size: 14px;
}

.text-center {
    text-align: center;
}

.coach-img {
    width: 480px;
    border-radius: 25px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width:1024px) {
   .section-bg .row > :nth-child(2) {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    
    .section-bg .row > :nth-child(1) {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
}

@media screen and (max-width:767px) {
    .full-layout-bg {
        background-image: var(--mobile-img);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
       
    }
      .text-content-full-width {
        text-align: center;
        margin: 300px 0 -30px 0;
    }
}

/* 5. Animation */

@keyframes fadeInUp {
    from {
        transform: translate3d(0,100px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,100px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: both
}

.animated-delay {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

/* 6. Lenus Form */

.lenus-form > div > .lenus-form-titles > h4 {
    font-size: 18px !important;
}

.lenus-form {
    margin-top: 20px !important;
}