/*
Theme Name: Thor
Theme URI: https://niteothemes.com/downloads/cmp-thor-theme/
Author: NiteoThemes
Author URI: https://niteothemes.com/
Version: 1.3

Thor CMP Theme, Copyright 2020 NiteoThemes
Thor CMP Theme is distributed under the terms of the GNU GPL

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl.html

All used scripts are distributed under the terms of the GNU GPL v2 or later or under MIT license. 
Bundled images are distributed under the terms of the GNU GPL v2 or later or under MIT license or Unsplash license.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normaalize.css/
*/

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #E8E8E8;
    color: #3E3E3E;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.delay-small {
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;
}

.delay-small-1 {
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
}

.delay-small-2 {
    -webkit-animation-delay: 900ms;
    animation-delay: 900ms;
}

.delay-small-3 {
    -webkit-animation-delay: 1200ms;
    animation-delay: 1200ms;
}

.delay-small-4 {
    -webkit-animation-delay: 1500ms;
    animation-delay: 1500ms;
}

.delay-huge {
    -webkit-animation-delay: 2000ms;
    animation-delay: 2000ms;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-size: 2.5em;
    margin-bottom: .5em;
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
}

input {
    border-radius: 0;
}

.lang-switch-wrapper {
    min-width: 100%;
    margin-top: 2em;
    text-align: right;
}

.cmp-subscribe input::-webkit-input-placeholder {
    font-size: 1rem;
    color: inherit;
}

.cmp-subscribe input::-moz-placeholder {
    font-size: 1rem;
    color: inherit;
}

.cmp-subscribe input:-ms-input-placeholder {
    font-size: 1rem;
    color: inherit;
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 300px;
    vertical-align: bottom;
}

.text-logo {
    margin-bottom: 0;
}

#background-wrapper, #slider-wrapper, #background-image, #background-color, .slide-background, .background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

#background-wrapper {
    left: 40%;
    overflow: hidden;
}

.video-banner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

#background-image, .slide-background {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#background-image, #slider-wrapper {
    opacity: 0;
    transition: opacity 400ms;
}

#background-image.loaded, .loaded #slider-wrapper {
    opacity: 1;
}

.video-banner iframe, .video-banner video {
    transition: opacity 1500ms;
}

#background-image.pattern {
    background-repeat: repeat;
    background-size: initial;
}

/* #background-image:not(.slide) {
    background-attachment: fixed;
} */

header {
    display: flex;
    margin-bottom: auto;
    align-items: center;
    flex-wrap: wrap;
}

.cmp-title {
    background-color: rgb(69, 69, 69);
    text-align: left;
    margin: 0 auto;
    padding: 0.4em 20px;
}

.content {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 100vh;
    padding: 3em;
    box-sizing: border-box;
    z-index: 1;
}

.text-content {
    max-width: 30%;
}

#counter {
    text-align: center;
    margin-right: 20%;
}

.counter-inner {
    font-size: 3em;
    display: inline-block;
    padding: 20px 40px;
    background: rgb(69, 69, 69);
    color: white;
}

.counter-label {
    display: inline;
    margin: 0
}

footer {
    margin-top: auto;
    max-width: 40%;
}

.copyright {
    flex: 1;
    margin-bottom: 0;
}

#display-subscribe {
    display: inline-block;
    background: #fff;
    padding: 1em 2em;
    margin: 1em 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.3em;
    border: 2px solid rgb(69, 69, 69);
    transition: all 300ms ease-in-out;
}

.form-container {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #696969;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1000;
    transition: all 300ms ease-in-out;
}

.loaded .form-container {
    display: block;
}

.form-container.in-focus {
    visibility: visible;
    opacity: 1;
}

.form-wrapper {
    position: absolute;
    width: auto;
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -75%);
    -ms-transform: translate(0, -75%);
    -o-transform: translate(0, -75%);
    transform: translate(0, -75%);
    color: white;
    background: rgb(0, 0, 0, 0.92);
}

.in-focus .form-wrapper {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.close {
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    right: 30px;
    top: 15px;
}

.form-title {
    font-size: 2em;
    text-align: center;
}

.cmp-subscribe {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 2em;
}

.cmp-form-inputs {
    order: 1;
}

.cmp-subscribe input {
    border: 2px solid white;
    color: white;
    line-height: 2;
    font-size: 1.3em;
    padding: 10px;
    outline: none;
    font-weight: 700;
}

.cmp-subscribe input[type="email"] {
    min-width: 60%;
    padding-left: 20px;
    background: transparent;
}

.cmp-subscribe input[type="submit"] {
    min-width: 25%;
    background: white;
    margin-left: 10px;
    color: black;
    text-transform: uppercase;
    -webkit-appearance: none;
    cursor: pointer;
}

#subscribe-response {
    margin-top: 1em;
}

.social-list {
    display: flex;
    padding: 0;
    margin: 0;
    margin-left: auto;
}

.social-list li {
    list-style: none;
    text-align: center;
}

.social-list a {
    display: block;
    padding: 0 .5em;
    font-size: 1.5em;
    color: white;
}

.social-list li:first-of-type a {
    padding-left: 1em;
}

.social-list li:last-of-type a {
    padding-right: 1em;
}

.social-list i {
    position: relative;
    vertical-align: middle;
    transform: translateY(0);
    transition: transform 300ms ease-in-out;
}

.social-list i:hover {
    transform: translateY(-3px);
}

.social-list i::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    position: absolute;
    bottom: -8px;
    background-color: #fff;
    transition: width 300ms ease-in-out;
}

.social-list i:hover::after {
    width: 100%;
}

/* slick slider */

.slick-slide {
    display: block!important;
    min-height: 100vh!important;
    position: relative;
    height: 100%;
}

.slick-list, .slick-slider, .slick-track {
    height: 100%;
}

.prev, .next {
    opacity: 0;
    display: block;
    position: absolute;
    bottom: 3em;
    width: 60px;
    height: 60px;
    color: white;
    background-color: rgb(69, 69, 69);
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    transition: opacity 300ms ease-in-out;
}

.loaded .prev, .loaded .next {
    opacity: 1;
}

.prev {
    right: calc(3em + 40px);
}

.next {
    right: 3em;
}

.prev::before, .next::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 14px;
    height: 14px;
    border-right: 3px solid white;
    border-top: 3px solid white;
}

.prev::before {
    left: 0;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.next::before {
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* wpcf7-form */

/* contact form 7 */

.wpcf7 .screen-reader-response, .wpcf7 .wpcf7-validation-errors {
    display: none!important;
}

.wpcf7 .wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-form .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -27px;
    left: 0px;
    text-align: left;
    font-size: 0.7em;
}

div.wpcf7-mail-sent-ng {
    border: none;
}

.wpcf7 .wpcf7-response-output {
    display: block!important;
    border: none;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 1024px) {
    body {
        display: block;
        padding: 2em;
        overflow-x: auto;
        min-height: initial;
    }
    header {
        display: block;
        text-align: center;
    }
    .logo-wrapper {
        margin-bottom: 3em;
    }
    .logo-wrapper img {
        max-height: 100px;
    }
    .cmp-title {
        margin: 0;
        font-size: 2.2em;
        text-align: center;
    }
    .social-list {
        display: inline-block;
        margin-top: 3em;
    }
    .social-list li {
        display: inline-block;
    }
    .content {
        display: block;
        min-height: initial;
        padding: 0;
        text-align: center;
        z-index: -1;
    }
    .text-content {
        font-size: 19px;
        max-width: 100%;
    }
    .button-subs-wrapper {
        text-align: center;
    }
    #counter {
        margin-right: 0;
        margin-top: 2em;
    }
    #slider-wrapper {
        position: relative;
        z-index: 0;
    }
    .slick-slide {
        min-height: 65vh!important;
    }
    #background-image {
        padding-top: 125%;
    }
    #background-wrapper {
        position: relative;
        margin: 3em 0;
        left: 0;
        z-index: 0;
        height: 65vh;
    }
    #slider-wrapper {
        padding-top: 0;
        max-height: 100%;
    }
    footer {
        text-align: center;
        max-width: 100%;
    }
    .prev, .next {
        position: relative;
        display: inline-block;
        left: initial;
        right: initial;
        bottom: 80px;
        margin-top: 1em;
    }
    .lang-switch-wrapper {
        text-align: center;
    }
}

@media only screen and (max-width: 1366px) {
    body {
        font-size: 17px!important;
    }
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 15px!important;
    }
    .in-focus .form-wrapper, .form-wrapper {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        top: 0;
        bottom: 0
    }
    .form-title {
        margin-top: 5em;
    }
}

@media only screen and (max-width: 560px) {
    .cmp-subscribe input {
        margin: 1em 0;
    }
}