*:not(#copyright_line) {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#contact .fixed_logo:first-child {
    display: none !important;
}

#contact .fixed_logo:last-child {
    display: block !important;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    top: 15px;
}


/* ===============================================================================================================================================
																														   		 	 		   MAP
================================================================================================================================================== */

#map {
    width: 100%;
    height: calc(100vh - 300px);
    transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.loaded #map {
    height: calc(100vh - 230px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}


/* ===============================================================================================================================================
																														   		 	 CONTACT BLOCK
================================================================================================================================================== */

#contact_block {
    /*	background: url(/resources/home/backgrounds/background_separator_2.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;*/
    background: url(/resources/home/backgrounds/background_separator_2.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: fixed;
    width: 100%;
    height: 0px;
    bottom: 0px;
    transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}

#contact_block_inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.loaded #contact_block {
    height: 230px;
    opacity: 1;
}

#contact_block .part {
    font-family: roboto;
    font-size: 14px;
    line-height: 21px;
    height: 230px;
    position: relative;
}

#contact_block .left {
    float: left;
    width: calc(100% - 355px);
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}

#contact_block .right {
    float: right;
    width: 352px;
}


/* ===============================================================================================================================================
																														   		 	CONTACT (LEFT)
================================================================================================================================================== */

#text_content {
    height: 100%;
    color: white;
    width: auto;
    display: inline-block;
    padding-top: 17px;
    max-width: 700px;
}

#text_content .section_title {
    font-family: cfhelvetica;
    font-size: 20px;
    font-weight: bold;
}

#text_content .text {
    padding: 13px 0px;
}

.contact_part {
    float: left;
}

.contact_part:first-child {}

.contact_part:last-child {
    float: right;
    padding-left: 50px;
}

#text_content li a {
    margin-left: 26px;
}

#text_content .text span {
    background: rgba(0, 0, 0, .3);
    padding: 5px 10px;
    margin-bottom: 5px;
    display: inline-block;
    font-weight: normal;
}

#text_content li {
    list-style-position: inside;
    list-style-type: square;
}


/* ===============================================================================================================================================
																														  QUFORM OVERRIDES (RIGHT)
================================================================================================================================================== */


/*#map,
#contact_block{
	transition: all 0.85s ease-out;
}
.quform-outer{
	transition: all 0.5s ease-out 0.7s;
}
*/


/* WRAPPER
---------------------------------------------------------------------------------------- */

.quform-outer {
    background: #082c3c;
    width: 350px;
    position: absolute;
    bottom: 30px;
    left: 100%;
    -webkit-transform: translate(-100%, 100%);
    -moz-transform: translate(-100%, 100%);
    -ms-transform: translate(-100%, 100%);
    -o-transform: translate(-100%, 100%);
    transform: translate(-100%, 100%);
    padding: 20px 20px 12px 20px;
    transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    -moz-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    -ms-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    -o-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}

.loaded .quform-outer {
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}


/* FONTS
---------------------------------------------------------------------------------------- */

.quform-outer label,
.quform-title {
    color: white;
}

.quform-outer label {
    margin-bottom: 3px;
}

.quform-title {
    font-family: cfhelvetica !important;
    font-size: 20px !important;
    font-weight: bold !important;
    padding-bottom: 20px !important;
}


/* required star */

.quform-element label span.quform-required {
    color: #ff7890;
    margin-left: 3px;
}


/* INPUT
---------------------------------------------------------------------------------------- */

.quform-outer input,
.quform-outer textarea {
    background-color: transparent !Important;
    border: 1px solid white;
    color: white !important;
    padding: 7px 10px !Important;
}


/* CAPTCHA SECTION
---------------------------------------------------------------------------------------- */

.quform-element-captcha label {
    width: 100%;
}

.quform-element-captcha .quform-input {
    width: calc(100% - 75px);
    float: left;
}

.quform-element-captcha #type_the_word {
    width: 100%;
}

.quform-element-captcha .quform-captcha {
    width: 75px;
    float: right;
    padding: 5px 0px;
    background: white;
    text-align: center;
    display: flex;
    justify-content: center;
}


/* SUBMIT BUTTON
---------------------------------------------------------------------------------------- */

.quform-submit button,
.quform-submit-inner {
    width: 100%;
    float: none;
    background: #03151d;
    color: white;
}

.quform-submit button {
    background: #03151d;
    color: white;
    border: none;
    height: 40px;
}


/* ===============================================================================================================================================
																														  QUFORM OVERRIDES (RIGHT)
================================================================================================================================================== */

#footer {
    font-weight: normal;
    position: absolute;
    width: 100%;
    z-index: 999999999999;
    bottom: 0px;
    left: 0px;
}


/* ===============================================================================================================================================
																														  QUFORM OVERRIDES (RIGHT)
================================================================================================================================================== */


/* QUFORM
==================================================================================== */

@media(max-width: 1080px) {
    #contact_block .left {
        float: left;
        width: calc(100% - 255px);
    }
    #contact_block .right,
    .quform-outer {
        width: 250px;
    }
    #text_content .text,
    #text_content .text span,
    #text_content li,
    .quform-element>.quform-spacer>label,
    .quform-option label,
    .quform-submit button em,
    h3.quform-title {
        font-size: 12px !important;
    }
}

@media(max-width: 840px) {
    .loaded #map {
        height: 300px;
    }
    .loaded #contact_block {
        height: auto;
    }
    #contact_block {
        position: relative;
    }
    #contact_block .part {
        width: 100%;
        float: none;
        height: auto;
    }
    .quform-outer {
        -webkit-transform: translate(-100%, 0) !important;
        -moz-transform: translate(-100%, 0) !important;
        -ms-transform: translate(-100%, 0) !important;
        -o-transform: translate(-100%, 0) !important;
        transform: translate(-100%, 0) !important;
    }
    #contact_block .right,
    .quform-outer {
        width: 100%;
    }
    .quform-outer {
        position: relative;
        background: none;
    }
    #footer {
        position: relative;
    }
    h3.quform-title {
        background: rgba(0, 0, 0, .3);
        line-height: normal;
        padding: 10px 5px !Important;
        text-align: center;
        margin: 40px 0px 20px 0;
    }
}

@media(max-width: 620px) {
    .contact_part {
        width: 100%;
        float: none;
    }
    .contact_part:last-child {
        margin-top: 20px;
        padding-left: 0px;
    }
}