body {
    animation: load 2s;
}
@keyframes load {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* TEXT STYLE */
h1 {
    font-size: 1.5rem;
}
p {
    line-height: 2rem;
}
ul {
    list-style-type: disc;
    line-height: 2rem;
}
strong {
    font-weight: 700;
}
@media screen and (max-width:640px) {
    h1 {
        font-size: 20px;
    }
}
/* COLORS */
.light-blue {
    background-color: #9fdbe6;
}
.blue {
    background-color: #528f9c;
}
.dark {
    background-color: #0f434f;
    color: white;
}
/* ALIGNMENT */
.center {
    justify-content: center;
    text-align: center;
}
/* ICONS */
.fa fa-quote-right {
    font-size: 45px;
}
/* BUTTONS */
.btn--more {
    border: 2px solid white;
    padding: 1rem 2rem;
    background: none;
    color: white;
    font-size: 1rem;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.btn--more:hover {
    background-color: white;
    color: #0f434f;
}
.btn--back {
    border: 2px solid #0f434f;
    border-top-left-radius: 50%;
    padding: 0.5rem 2rem;
    background-color: none;
    font-size: 1rem;
    color: #0f434f;
    font-weight: 700;
    margin: 5rem;
}
.btn--back:hover {
    background-color: #0f434f;
    color: white;
}
@media screen and (max-width:640px) {
    .btn--more {
        padding: 1rem 1rem;
    }
}
/* TESTIMONIALS */
.testimonials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Slideshow container */
.testimonials-container {
    position: relative;
    background: white;
}
/* Slides */
.mySlides {
    display: none;
    padding: 10px 80px 20px 80px;
    text-align: center;
  }
  
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #0f434f;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}  
/* Position the "next button" to the right */
.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: #0f434f;
    color: white;
}  
/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
}  
/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #528f9c;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}  
/* Add a background color to the active dot/circle */
.active, .dot:hover {
    background-color: #0f434f;
}  
/* Add an italic font style to all quotes */
q {
    font-style: italic;
    line-height: 2rem;
}
  
/* Add a blue color to the author */
.author {
    color: #0f434f;
    font-weight: 700;    
}

/* FORMS */
form {
    margin: 0 10% 0 10%;
    color: white;
}
.form__half {
    display: flex;
    justify-content: space-between;
}
input {
    width: 100%;
    height: 2rem;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 16px;
    background-color: #0f434f;
    color: white;
}
input::placeholder {
    color: white;
}
textarea {
    padding: 3px;
    width: 100%;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 16px;
    background-color: #0f434f;
    color: white;
}
textarea::placeholder {
    color: white;
}
.name {
    width: 40%;
    color: white;
}
#email {
    width: 40%;
}
#message {
    height: 10rem;
}
#submit {
    border-bottom: 0;
}
@media screen and (max-width:640px) {
    .form__half {
        flex-direction: column;
        justify-content: flex-start;
    }
    #name {
        width: 100%;
    }
    #email {
        width: 100%;
    }
}
/* SECTIONS */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5% 5%;
    height: 20vh;
}
@media screen and (max-width:640px) {
    nav i {
        display: none;
    }
}
section {
    padding: 0 10% 5% 10%;
}
.topic {
    color: #0f434f;
    text-align: center;
    padding: 2rem;
    font-weight: 700;
}
.topic__photo {
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 2rem;
    width: 100%;
    height: 400px;
    background-position: center;
}
.topic__photo--half {
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 2rem;
    width: 100%;
    height: 400px;
    background-position: center;
}
@media screen and (max-width:640px) {
    .topic__photo {
        background-size: contain;
    }
}
.paslaugos {
    display: flex;
    justify-content: space-between;
    text-align: center;
	flex-wrap: wrap;
}
.kontaktai {
    padding: 5% 10% 0 10%;
    display: flex;
    flex-direction: row;
}
.apie {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width:640px) {
    .container--half {
        width: 100%;
    }
    .apie--item {
        margin-top: 20px;
    }
    .paslaugos {
        flex-direction: column;
    }
}
/* HEADER & NAVIGATION */
.logo {
    position: absolute;
    width: 75px;
    height: 75px;
}
.company {
    margin-left: 10%;
    display: flex;
    justify-content: flex-start;
}
.company h1 {
    color: #0f434f;
}
.logo img {
    width: 100%;
    height: 100%;
    z-index: 2;
}
nav ul {
    color: #0f434f;
    display: flex;
    list-style-type: none;
}
nav li a {
    padding-left: 25px;
}
nav li a:hover {
    text-decoration: underline;
}
nav i {
    color: #0f434f;
    padding-left: 25px;
}
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: white;
    padding-right: 20px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown a {
    display: flex;
    flex-direction: column;
}
.dropdown:hover .dropdown-content {
  display: block;
}
/* MOBILE NAVIGATION */
#menu-toggle {
    display: none;
    position: absolute;
    top: 5vh;
    z-index: 1;
  
    -webkit-user-select: none;
    user-select: none;
}
#menu-toggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
  
    cursor: pointer;
  
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
  
    -webkit-touch-callout: none;
}
#menu-toggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
  
    background: #528f9c;
    border-radius: 3px;
  
    z-index: 1;
  
    transform-origin: 4px 0px;
  
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        opacity 0.55s ease;
}

#menu-toggle span:first-child {
    transform-origin: 0% 0%;
}

#menu-toggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}
#menu-toggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #0f434f;
}
/*
 * But let's hide the middle one.
 */
#menu-toggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}
#menu-toggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}
#menu {
    text-align: center;
    position: absolute;
    width: 90vw;
    height: 70vh;
    margin: -100px -5% 0 -5%;
    padding-top: 25vh;
  
    background: white;
    -webkit-font-smoothing: antialiased;
/* to stop flickering of text in safari */
  
    transform-origin: 0% 0%;
    transform: translate(110%, 0);
  
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menu-toggle input:checked ~ ul {
    transform: none;
}
@media screen and (max-width: 900px) {
    header {
        height: 30vh;
        flex-direction: column;
        align-items: center;
    }
    .hero {
        height: 60vh;
    }
    .logo {
        position: static;
        order: -1;
    }
    .company {
        margin-left: 0;
    }
}
@media screen and (max-width:640px) {
    header {
        height: 15vh;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .hero {
        height: 85vh;
    }
    .company {
        display: none;
    }
    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo img {
        width: 60%;
        height: 60%;
    }
    nav ul {
        flex-direction: column;
    }
    #navigation {
        display: none
    }
    #menu-toggle {
        display: block;
        position: fixed;
    }
}
.hero {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: top;
    background-size: cover;
    opacity: 0.8;
}
.hero--text {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 15vh;
}
.hero--text__item {
    text-align: center;
    text-shadow: 0px 0px 6px white;
}
.hero--text h1 {
    font-size: 70px;
    font-weight: 900;
    line-height: 5rem;
}
.hero--text h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 3rem;
}
.hero--text h1, .hero--text h3 {
    -webkit-animation: fadein 3s;
    animation: fadein 3s;
}
@-webkit-keyframes fadein {
    from {
        opacity: 0;
        -webkit-transform: scale(0.7, 0.7);
        transform: scale(0.7, 0.7);
    }
    to {
        opacity: 1;
    }
}
@keyframes fadein {
    from {
        opacity: 0;
        -webkit-transform: scale(0.7, 0.7);
        transform: scale(0.7, 0.7);
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width:900px) {
    .hero {
        height: 85vh;
    }
    .hero--text h1 {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1;
    }
    .hero--text h3 {
        font-size: 26px;
        line-height: 3rem;
    }
}
.thankyou {
    width: 100%;
    height: 80vh;
    background-color: #104451;
    position: relative;
}
@media screen and (max-width: 640px) {
    .thankyou {
        height: 85vh;
    }
}
.thankyou--content {
    position: absolute;
    text-align: center;
    height: 350px;
    width: 350px;
    left: 50%;
    top: 50%;
    margin-left: -175px;
    margin-top: -175px;
}
.thankyou--content h1 {
    color: #fff;
    margin: 1rem;
}
.data--container {
    display: flex;
    justify-content: space-between;
}
.data--text {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
    text-align: center;
    padding: 20% 0 20% 0;
}
.data--text__rev {
    order: 2;
}
.data--img {
    background-position: center;
    background-size: cover;
    display: flex;
    flex-basis: 60%;
    margin: 5% 0 0 5%;
    width: 100%;
    -webkit-box-shadow: 25px 25px 0px 0px rgba(16,68,81,1);
    -moz-box-shadow: 25px 25px 0px 0px rgba(16,68,81,1);
    box-shadow: 25px 25px 0px 0px rgba(16,68,81,1);
}
.data--img__rev {
    background-position: center;
    background-size: cover;
    display: flex;
    flex-basis: 60%;
    margin: 5% 5% 0 0;
    width: 100%;
    height: auto;
    order: 1;
    -webkit-box-shadow: 25px 25px 0px 0px rgba(16,68,81,1);
    -moz-box-shadow: 25px 25px 0px 0px rgba(16,68,81,1);
    box-shadow: 25px 25px 0px 0px rgba(16,68,81,1);
}
.data--sheet {
    background-color: white;
    text-align: center;
    width: 100%;
    margin: 5% 0 0 0;
    padding: 5% 10% 5% 10%;
}
.data--sheet__photo {
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10% 0 0 0;
    height: 90vh;
}
@media screen and (max-width:900px) {
    .data--container {
        flex-direction: column;
        justify-content: center;
    }
    .data--img, .data--img__rev {
        display: block;
        margin: 0 0 0 0;
        height: auto;
        width: 100%;
    }
    .data--img__rev {
        order: 2;
    }
    .data--text__rev {
        order: 1;
    }
}
.container--half {
    display: flex;
    width: 50%;
}
.container--half__col {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.container--half__10 {
    display: flex;
    flex-direction: column;
    width: 10%;
}

.container--half__40 {
    display: flex;
    flex-direction: column;
    width: 40%;
}
.container--half__50 {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
}
.container--third {
    display: flex;
    flex-direction: column;
    width: 30%;
}
.paslaugos .container--third {
	width: 48%;
	margin-bottom: 3rem;
}
.container--third__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4%;
}
.container--third__photo {
    height: 300px;
    background-position: center;
    background-size: cover;
}
@media screen and (max-width:640px) {
    .container--half {
        flex-direction: row;
        width: 100%;
    }
    .container--half__10 {
        display: none;
    }
    .container--half__50 {
        width: 80%;
    }
    .container--third {
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    .container--third__content {
        padding: 5%;
    }
    .hidden {
        display: none;
    }
}
@media screen and (min-width:900px) {
    .img__hidden {
        display: none
    }
}
.container--fullWidth {
    width: 100%;
}
footer {
    padding: 1rem;
    color: white;
    background-color: #104451;
    text-align: center;
}
@media screen and (max-width:640px) {
    .hero--text h1 {
        font-size: 3rem;
        line-height: 1;
    }
    .kontaktai {
        flex-direction: column;
    }
    .container--half__50 {
        width: 100%;
    }
}