/*
    Name: Gabitus
    Description: Modern responsive coming soon page
    Version: 1.0
    Author: ThemeImperia
    Email: gregamezzo@gmail.com

    TABLE OF CONTENTS:
    0. First screen (Home section) and general styles
    1. Overlay and Youtube controls
    2. Animation of colors changing header
    3. About section
    4. Services section
    5. Portfolio section
    6. Subscribe section
    7. Contacts section
    8. Footer section
    9. Responsive
*/

/* :::::::::: 0. First screen (Home section) and general styles ::::::::::: */

.img-logo {
    margin-top: 1em;
}

.load {
    border-style: solid;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -13px;
    border-color: #3E3E3E #3E3E3E #fff;
    -webkit-animation: revolve 1s linear infinite;
    animation: revolve 1s linear infinite;
    width: 26px;
    height: 26px;
    border-radius: 26px;
    border-width: 1px
}

@-webkit-keyframes revolve {
    from {
        -webkit-transform: rotate(0)
    }
    50% {
        -webkit-transform: rotate(180deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes revolve {
    from {
        transform: rotate(0)
    }
    50% {
        transform: rotate(180deg)
    }
    to {
        transform: rotate(360deg)
    }
}

.background-loader {
    background-color: rgba(255, 255, 255, .99);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 2000;
    animation-delay: 2.5s
}

::-webkit-input-placeholder {
    color: #666;
    opacity: 1
}

:-moz-placeholder {
    color: #666;
    opacity: 1
}

::-moz-placeholder {
    color: #666;
    opacity: 1
}

:-ms-input-placeholder {
    color: #666;
    opacity: 1
}

::selection {
    background-color: transparent;
    color: #B5866A
}

::-moz-selection {
    background-color: transparent;
    color: #B5866A
}

::-webkit-selection {
    background-color: transparent;
    color: #B5866A
}

body input:focus:required:invalid,
body input:required:valid,
body textarea:focus:required:invalid,
body textarea:required:valid {
    color: #666
}

body {
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    overflow-x-line-height: 1.45;
    overflow-x-color: #141516
}

html {
    font-size: 16px
}

p {
    margin-bottom: 1.3em;
    font-family: "josefin", sans-serif
}

h1,
h2,
h3,
h4 {
    margin: 1.414em 0 .5em;
    font-weight: inherit;
    line-height: 1.2;
    font-family: "montserrat", sans-serif
}

h1 {
    margin-top: 0;
    font-size: 2.6em  /* 3.8 standard */
}

h2 {
    font-size: 2.64em
}

h3 {
    font-size: 1.999em
}

h4 {
    font-size: 1.39em;
}

.font_small,
small {
    font-size: .707em
}

a {
    color: #000000;
    background-color: white
}

a:focus,
a:hover {
    color: #9F9188;
    text-decoration: none
}

.main,
.wrapper {
    height: 100vh;
    position: relative;
    padding: 0;
    width: 100%;
    text-align: center;
    background: url(../img/bg.png);
}

.wrapper {
    background: #E9E4E1;
}

.main {
    background-color: transparent
}

.main .logo {
    width: 100%;
    text-align: center;
}

.main .logo h4 {
    font-weight: 400;
}

.logo_bg {
    background-color: white;
}
.main .main-container {
    background-color: #fff;
    min-height: 265px;
    position: absolute;
    top: 50%;
    margin-top: -132.5px
}

.main .main-container h1 {
    margin-top: 90px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 3px
}

.main .main-container p {
    font-size: 20px;
    margin-top: 1.1em
}

.main .main-container .countdown {
    margin-top: 1.4em;
    font-family: "josefin", sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 2px
}

.main .main-container .countdown span {
    display: block;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 2em
}

.main i {
    font-size: 2em;
    position: absolute;
    bottom: 5px
}

.spacer {
    margin-top: 6.5em
}

/* :::::::::: 1. Overlay and Youtube controls ::::::::::: */

.backstretch:after,
.mbYTP_wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    z-index: 1
}

.backstretch:after {
    background-color: rgba(255, 255, 255, .2);
}

.mbYTP_wrapper:after {
    background-color: rgba(255, 255, 255, .5);
}

.player-controls {
    position: absolute;
    font-size: 1.4em;
    right: 1em;
    top: 0.5em;
    z-index: 1000;
    text-align: center;
}

.player-controls a {
    color: white;
    margin: 0 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.player-controls a:visited {
    color: white;
}

.player-controls a:hover {
    color: #ea1d63;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.player-controls #unmute {
    position: relative;
}

.player-controls .display-none {
    display: none !important;
}

/* :::::::::: 2. Animation ::::::::::: */

.colors {
-webkit-animation:colors 10s infinite alternate-reverse;
animation:colors 10s infinite alternate-reverse;
-webkit-transition:all 3s linear;
transition:all 3s linear
}
@-webkit-keyframes colors {
    0% {
        background: #D3FFF8
    }
    
    25% {
        background: #D5FFD3
    }
    
    50% {
        background: #FFFDD3
    }
    
    75% {
        background: #FFE0D3
    }
    
    100% {
        background: #FFD3F1
    }
}
@keyframes colors {
    0% {
        background: #D3FFF8
    }
    
    25% {
        background: #D5FFD3
    }
    
    50% {
        background: #FFFDD3
    }
    
    75% {
        background: #FFE0D3
    }
    
    100% {
        background: #FFD3F1
    }
}


/* :::::::::: 3. About section::::::::::: */

.about-section h2,
.simple-header {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600
}

.contact-section form .btn:focus,
.contact-section form .form-control:focus,
.subscribe-section .enter-email:focus,
.subscribe-section .signup-button:focus {
    outline: 0
}

.about-section {
    position: relative;
    margin-top: 165px
}

.about-section h2 {
    margin-top: 0;
    line-height: 64px
}

.about-section .divider {
    margin-left: 2px
}

.about-section .border {
    z-index: 1;
    position: absolute;
    top: 12px;
    left: 27px
}

.about-section .img-about {
    position: relative;
	transition: all 1s cubic-bezier(.165,.84,.44,1);
}

.about-section .text {
    margin-left: -40px
}

.about-section .text p {
    margin-top: 2.2em;
    font-size: 1.2em
}

.about-section .text #bar,
.about-section .text #bar1,
.about-section .text #bar2 {
    width: 100%;
    height: 2px;
    margin-bottom: 35px
}

.about-section .text .progress-bar-header {
    margin-bottom: -8px
}

.divider {
    width: 50px;
    height: 3px;
    background-color: #141516;
    margin-left: -webkit-calc(50% - 25px);
    margin-left: calc(50% - 25px)
}

/* :::::::::: 4. Services section ::::::::::: */

.simple-header {
    line-height: 30px
}

.simple-description {
    font-size: 1.2em;
    margin-bottom: 1.8em
}

.services {
    margin-top: 200px;
    text-align: center
}

.services .divider {
    margin-bottom: 3.4em
}

.services .items p {
    width: 72%;
    margin-left: 14%;
    margin-bottom: 3.2em
}

.services .icon {
    font-size: 3em
}

.pswp__caption p,
.services p {
    font-size: 1.2em
}

.services h4 {
    margin-top: .6em
}

.services .icon-bg {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #f8f8f8;
    top: 10px;
    left: 44%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: -1
}

/* :::::::::: 5. Portfolio section ::::::::::: */

.pswp__caption .description-hd {
    font-family: "josefin", sans-serif;
    text-align: center
}

.pswp__caption .divider {
    height: 1px
}

.pswp__top-bar {
    background-color: #666!important
}

.portfolio {
    text-align: center;
    margin-top: 5em
}

.portfolio .divider {
    margin-bottom: 4em
}

.portfolio .my-gallery img {
    width: 100%;
    height: 100%
}

.portfolio .my-gallery figure {
    padding: 0 10px;
    margin-bottom: 20px
}

.portfolio .my-gallery figure:hover .pf-description {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.portfolio .my-gallery figure .pf-description {
    cursor: url(img/look.png), auto;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    margin-left: 10px;
    height: 100%;
    background-color: rgba(78, 78, 78, 0.8);
    text-align: center;
    opacity: 0;
    z-index: 100;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    -webkit-transition: all .3s cubic-bezier(.215, .61, .352, 1);
    transition: all .3s cubic-bezier(.215, .61, .352, 1);
    color: #fff
}

.pf-description h4, p {
    cursor: url(img/look.png), auto;
}

.portfolio .my-gallery figure .pf-description .divider {
    width: 120px;
    height: 1px;
    margin-left: -webkit-calc(50% - 60px);
    margin-left: calc(50% - 60px);
    background-color: #fff;
    margin-bottom: 0
}

.portfolio .my-gallery figure .pf-description .description-hd {
    margin-top: 5em;
    font-family: "josefin", sans-serif
}

.portfolio .my-gallery figure .pf-description .description-text {
    font-size: 1.2em;
    padding: 0 10px
}

.portfolio .my-gallery figure .pf-description .all-text {
    display: none
}


/* :::::::::: 6. Subscribe section ::::::::::: */

.subscribe-section {
    margin-top: 0;
    text-align: center
}

.subscribe-section .subscribe-bg {
    height: 270px;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    margin-left: 10px;
    background-color: #E4E6E4
}

.subscribe-section .enter-email,
.subscribe-section .signup-button {
    height: 36px;
    background-color: #fff;
    font-family: "josefin", sans-serif;
    border: none
}

.subscribe-section .enter-email {
    width: 262px;
    padding-left: 12px;
    margin-top: 117px;
	border: 1px solid #efefef
}

.subscribe-section .signup-button {
	border: 1px solid #efefef;
	color: #333;
    width: 113px;
    margin-left: 6px;
    -webkit-transition: all .3s cubic-bezier(.215, .61, .352, 1);
    transition: all .3s cubic-bezier(.215, .61, .352, 1)
}

.subscribe-section .signup-button:hover {
    color: #fff;
    background-color: #9F9188;
    -webkit-transition: all .4s cubic-bezier(.215, .61, .352, 1);
    transition: all .4s cubic-bezier(.215, .61, .352, 1)
}

.subscribe-section label {
    display: block;
    font-family: "josefin", sans-serif;
    margin-top: 1em
}

.subscribe-section label .subscribe-message {
    height: 1.5em;
    padding: 10px 20px;
    color: #ededed;
    font-size: 14px;
    float: none;
    top: 0;
    display: block!important;
    font-weight: 300;
    text-align: center
}

.subscribe-section label .subscribe-message i {
    font-size: 1.5em;
    position: relative;
    top: 2px;
    margin-right: 3px
}

.subscribe-section label .subscribe-message .error {
    text-align: center
}

/* :::::::::: 7. Contacts section ::::::::::: */

.contact-section {
    margin-top: 5em;
    margin-bottom: 5em
}

.contact-section .divider {
    margin-bottom: 4em
}

.contact-section .simple-description,
.contact-section .simple-header {
    text-align: center
}

.contact-section .contacts {
    border-left: 1px solid #f3f3f3;
    font-size: 1.2em;
    color: #6d6d6d
}

.contact-section .contacts .additional-text {
    line-height: 1.8em
}

.contact-section .contacts p {
    line-height: 1em
}

.contact-section .contacts h4 {
    margin-top: 0;
    color: #3E3E3E
}

.contact-section .contacts i {
    font-size: 1.2em;
    margin-right: .5em
}

.contact-section .contacts .point {
    color: #141516;
    font-weight: 400;
    font-family: "montserrat", sans-serif;
    font-size: .9em;
    margin-right: 1em;
    margin-left: 1.5em
}

.contact-section form {
    margin-right: 2em
}

.contact-section form .form-control {
    height: 36px;
    border: none;
    border-bottom: 1px solid #141516;
    margin-bottom: 4em;
    width: 100%;
    font-family: "josefin", sans-serif;
    font-size: 1.2em;
    -webkit-border-radius: 0!important
}

.contact-section form #msg {
    min-height: 5em
}

.contact-section form .btn {
    width: 115px;
    height: 36px;
    border: none;
    background-color: #F1F1F1;
    color: #141516;
    font-family: "josefin", sans-serif;
    -webkit-transition: all .4s cubic-bezier(.215, .61, .352, 1);
    transition: all .4s cubic-bezier(.215, .61, .352, 1)
}

.contact-section form .btn:hover {
    color: #fff;
    background-color: #9F9188;
    -webkit-transition: all .4s cubic-bezier(.215, .61, .352, 1);
    transition: all .4s cubic-bezier(.215, .61, .352, 1)
}

.contact-section form .error .email,
.contact-section form .error .name {
    position: absolute;
    right: 20px;
    top: 10px
}

.contact-section form .error .message {
    position: absolute;
    right: 20px;
    top: 3px
}

/* :::::::::: 8. Footer section ::::::::::: */

.footer-section {
    min-height: 160px;
    background-color: #FAFAFA;
    text-align: center
}

.footer-section ul {
    padding-left: 0
}

.footer-section li {
    display: inline-block;
    margin: 2em 2.5em 0;
    font-family: "josefin", sans-serif;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 1.1em
}

.footer-section .copyright {
    margin-top: 4.5em
}


/* :::::::::: 9. Responsive ::::::::::: */

@media only screen and (max-width:1200px) {
    .about-section {
        margin-top: 8em
    }
    .about-section .text {
        margin-left: 0
    }
    .services {
        margin-top: 7em
    }
    .my-gallery figure:hover .pf-description {
        opacity: 0!important
    }
}

@media only screen and (max-width:992px) {
    .about-section .border {
        display: none
    }
    .about-section .images {
        margin-top: 15em
    }
    .services {
        margin-top: 8em
    }
    .contact-section .contacts {
        border-left: none;
        margin-top: 3em
    }
}

@media only screen and (max-width:768px) {
	.about-section .images .img-about {
		margin: auto
	}
	.about-section .images {
        margin-top: -5em
    }
    .simple-header {
        line-height: 50px
    }
    .contact-section form {
        margin-right: 0
    }
    .contact-section .form-control {
        text-align: center
    }
    .contact-section .btn {
        position: relative;
        left: 50%;
        margin-left: -57.5px
    }
}

@media only screen and (max-width:480px) {
    .main .main-container {
        top: 40%;
        background-color: #fff
    }
    .main .main-container h1 {
        margin-top: 45px
    }
    .about-section {
        margin-top: 5em
    }
    .about-section .images {
        margin-top: 0
    }
    .about-section .img-about {
        margin-bottom: 2em
    }
    .about-section .text {
        margin: 0
    }
    .services {
        margin-top: 5em
    }
    .pswp__img {
        margin-top: -80px
    }
    .subscribe-section .enter-email {
        width: 230px;
        margin-top: 99px;
        text-align: center;
        padding-left: 0
    }
    .subscribe-section .signup-button {
        width: 230px;
        margin-top: 1em
    }
    .contact-section p {
        line-height: 1.8em
    }
}