@import url('reset.css');

body {
    font: 16px/1.4 "Arial";
    color: #666;
}
body.active {
    overflow: hidden;
}
.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.reverse-block {
    flex-direction: row-reverse;
}
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-wrapper {
    padding: 0 20px;
    max-width: 1340px;
    margin: 0 auto;
}
.content-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper_small {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-content {
    padding-top: 96px;
    flex: 1 0 auto;
}
.site-logo {
    display: inline-block;
    max-width: 230px;
    width: 100%;
    cursor: pointer;
}

/* ==================== SLICK SLIDER ==================== */
.slick-slider {
    position: relative;
}
.slick-list {
    overflow: hidden;
    margin: 0 30px;
}
.slick-track {
    display: flex;
    justify-content: space-between;
}
.slick-slide:focus {
    outline: 0;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 30px;
    height: 40px;
    background-color: rgba(0,0,0,0.3);
    transition: all 250ms ease-in-out;
    cursor: pointer;
}
.slick-arrow:hover {
    background-color: rgba(0,0,0,0.8);
}
.slick-arrow:before {
    content: '';
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-top: 7px;
}
.slick-prev {
    left: 0;
}
.slick-prev:before {
    transform: rotate(-45deg);
    margin-left: 8px;
}
.slick-next {
    right: 0;
}
.slick-next:before {
    transform: rotate(135deg);
    margin-left: -3px;
}

/* ==================== TYPOGRAPHY ==================== */
.h1,
h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
}
.h2,
h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: bold;
    color: #494949;
    text-align: center;
}
.h4,
h4 {
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: bold;
    color: #505050;
    text-align: center;
}

/* ==================== SITE HEADER ==================== */
.site-header {
    background-color: rgba(12, 11, 12, 0.8);
    min-width: 320px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 8px 0;
}
.menu-toggle {
    display: none;
    background: #000;
    width: 40px;
    height: 36px;
    padding: 8px 9px;
    font-size: 0;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    position: relative;
    background: #fff;
}
.menu-toggle span:before, .menu-toggle span:after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    background: #fff;
    transition: 0.2s linear;
}
.menu-toggle span:before {
    top: -6px;
}
.menu-toggle span:after {
    bottom: -6px;
}
.menu-toggle.active span {
    background-color: transparent;
}
.menu-toggle.active span:before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle.active span:after {
    bottom: 0;
    transform: rotate(-45deg);
}
.contactUs-btn {
    width: 170px;
    background: #ff7c06;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    margin-left: 50px;
    padding: 11px;
    cursor: pointer;
}

/* ==================== SITE FOOTER ==================== */
.site-footer {
    background-color: #191919;
    color: #fff;
    min-width: 320px;
    padding: 30px 0 20px;
    overflow: hidden;
}
.site-footer .d-flex {
    align-items: flex-start;
}
.footer-content {
    width: 100%;
    margin-left: 6%;
}
.footer-content > div {
    width: 32%;
}
.footer-content_contact img {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.footer-content_text {
    display: inline-block;
    width: calc(100% - 50px);
    vertical-align: top;
    font-size: 1rem;
    color: #ff7c06;
    padding-top: 5px;
}
.footer-content_text a {
    color: #ff7c06;
}
.footer-content_text a:hover {
    color: #fff;
}
.footer-copyright {
    color: rgba(158, 158, 158, 0.8);
    text-align: center;
    padding: 15px 0 5px 0;
    font-size: 0.875rem;
}
.footer-copyright span {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== MAIN BANNER ==================== */
.main-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: calc(100vh - 95px);
    overflow: hidden;
    justify-content: center;
    padding: 0 20px;
}
.main-banner img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}
.main-banner h1 {
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

/* ==================== MAIN TITLE ==================== */
.main-title {
    margin-bottom: 50px;
    padding: 80px 0 25px;
    background: url("../images/line.png") bottom center no-repeat;
}
.main-title.no-margin {
    margin-bottom: 0;
}

/* ==================== IMAGE / TEXT BLOCK ==================== */
.imgText-block .d-flex > * {
    width: 49%;
}

/* ==================== TEXT / SLIDER BLOCK ==================== */
.textSlider-block {
    margin-bottom: 100px;
}
.textSlider-slider_item {
    padding: 0 5%;
}
.textSlider-slider_item figure {
    text-align: center;
}
.textSlider-slider_item figure img {
    width: auto;
    max-width: 160px;
    margin-bottom: 1.5em;
    display: inline-block;
}
.textSlider-slider_item figure figcaption {
    font-size: 1.125rem;
    line-height: 1.25;
}

/* ==================== ICON BLOCK (title/img/text) ==================== */
.icon-block {
    background-color: #f0eeee;
    padding: 50px 0;
}
.icon-block .d-flex {
    flex-wrap: wrap;
    align-items: unset;
}
.icon-block .d-flex > div {
    width: 32%;
    background-color: #fff;
    margin-bottom: 25px;
    padding: 40px 20px 30px;
}
.icon-block h4 {
    margin-bottom: 20px;
}
.icon-block img {
    max-width: 180px;
    max-height: 180px;
    margin: 0 auto;
}
.icon-block_text {
    background: url("../images/line.png") top center no-repeat;
    padding-top: 30px;
}

/* ==================== MAP BLOCK ==================== */
.map-block_map {
    position: relative;
    padding-bottom: 48%;
    margin-bottom: 80px;
}
.map-block_map svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.datamaps-subunit {
    fill: rgb(169, 169, 169);
    transition: fill .2s ease;
}
.datamaps-subunit.on {
    fill: #ff7c06;
}
.partners-slider {
    padding-bottom: 20px;
}
.partners-slider:after {
    content: '';
    border-bottom: 1px solid #ff7c06;
    display: block;
    width: 80%;
    margin: 20px auto 0;
}
.partners-slider .slick-arrow {
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}
.partners-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}
.partners-slider .slick-arrow:hover {
    background-color: #ff7c06;
}
.partners-slider .slick-track {
    align-items: center;
}
.partners-slider img {
    width: auto;
    max-width: 100%;
    margin: auto;
    padding: 5%;
    filter: grayscale(1);
    transition: filter .2s ease;
}
.partners-slider figure:hover img {
    filter: grayscale(0);
}

/* ==================== Clutch Section ==================== */
.clutch-block .content-wrapper {
    max-width: 1000px;
}
.clutch-block .imgText-block {
    margin-bottom: 20px;
}
.clutch-block .imgText-block img {
    width: 175px;
}
.clutch-block .imgText-block .text-block {
    width: calc(100% - 240px);
    font-size: 18px;
    text-align: justify;
}

/* ==================== Contact Form ==================== */
.contact-form {
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 80px;
    padding-bottom: 50px;
}
.contact-form_wrapper {
    max-width: 730px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-form .main-title > * {
    color: #fff;
}
.get-in-touch .d-flex {
    align-items: flex-start;
}
.get-in-touch .d-flex > * {
    width: 48%;
}
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}
.get-in-touch input:not([type="submit"]),
.get-in-touch textarea {
    background: rgba(248,248,248, 0.5);
    border: 2px solid #fff;
    color: #fff;
    font: 1rem/1 "Arial";
    padding: 18px 13px;
    width: 100%;
    max-width: 100%;
}
.get-in-touch textarea {
    height: 280px;
    resize: none;
    padding-bottom: 45px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #fff;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #fff;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #fff;
}
.get-in-touch .attach {
    position: relative;
}
.get-in-touch .attach span {
    margin-bottom: 0;
}
.get-in-touch .attach label {
    position: absolute;
    bottom: 8px;
    right: 2px;
    width: 127px;
    height: 42px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #fff;
    font: bold 1rem/42px "Arial";
    text-align: right;
    padding-right: 18px;
    background: url("../images/Attach-compressor.png") no-repeat 10px 10px;
    cursor: pointer;
}
.get-in-touch .attach label:hover {
    background: url("../images/Attach-compressor.png") no-repeat 10px -25px;
    color: #ff7c06;
    border-color: #ff7c06;
}
.get-in-touch input[type="file"] {
    position: absolute;
    left: -9999px;
}
.get-in-touch .cf-info {
    margin-bottom: 30px;
    font-size: 14px;
    padding-left: 14px;
    padding-right: 10px;
    color: #fff;
}
input[type="submit"] {
    width: 230px;
    background: #ff7c06;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin: 0 auto;
    padding: 12px 10px;
    cursor: pointer;
}
.screen-reader-response {
    display: none;
}
.get-in-touch .wpcf7-not-valid-tip {
    font-size: 14px;
    padding-left: 14px;
    padding-top: 5px;
    color: #f00;
    display: block;
}
.contact-form .wpcf7-validation-errors {
    color: #fff;
    border: 2px solid #ff7c06;
    max-width: 690px;
    margin: 25px auto 0;
    text-align: center;
}
.wpcf7-response-output {
	text-align: center;
    margin-top: 15px;
    color: green;
}

/* ==================== Overlay ==================== */
.popup-wrap_form {
    opacity: 0;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    transition: .4s ease;
}
.popup-wrap_form.active {
    opacity: 1;
    z-index: 100;
}
/* ==================== Pop-up form ==================== */
.popup-form {
    max-width: 680px;
    width: 100%;
    margin: auto;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 60px 65px 55px;
    transform: translate(-50%, -50%);
}
.btn-close {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    cursor: pointer;
    right: 30px;
    top: 30px;
}
.btn-close:after,
.btn-close:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 95%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #626262;
    transition: .4s;
}
.btn-close:after { transform: rotate(45deg); }
.btn-close:before { transform: rotate(-45deg); }
.popup-form h4 {
    font: bold 1.5rem/1 "Arial";
    margin-bottom: 30px;
}

.get-in-touch-popup input:not([type="submit"]),
.get-in-touch-popup textarea {
    background-color: #dcdcdc;
    border: solid 2px #929292;
    color: #929292;
    font-weight: bold;
}
.get-in-touch-popup textarea {
    height: 200px;
}
.get-in-touch-popup input::-webkit-input-placeholder,
.get-in-touch-popup textarea::-webkit-input-placeholder {
    color: #929292;
}
.get-in-touch-popup input::-moz-placeholder,
.get-in-touch-popup textarea::-moz-placeholder {
    color: #929292;
}
.get-in-touch-popup input:-ms-input-placeholder,
.get-in-touch-popup textarea:-ms-input-placeholder {
    color: #929292;
}
.get-in-touch-popup .attach label {
    color: #929292;
    border-color: #929292;
    background: url('../images/Attach-compressor.png') no-repeat 10px -60px;
}
.get-in-touch-popup .cf-info {
    color: #929292;
}


@media only screen and (max-width: 1200px) {
    .site-footer .site-wrapper > .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .site-footer .site-logo {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 991px) {
    .site-content {
        padding-top: 65px;
    }
    .site-logo {
        max-width: 140px;
    }
    .clutch-block .content-wrapper {
        flex-direction: column;
    }
    .clutch-block .imgText-block .text-block {
        width: 100%;
        margin-top: 10px;
    }
    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }
    .footer-content .footer-content_contact {
        text-align: center;
        width: 270px;
        margin:  0 auto 30px;
    }
}
@media only screen and (max-width: 767px) {
    .site-content {
        padding-top: 54px;
    }
    .site-logo {
        max-width: 110px;
    }
    .menu-toggle {
        display: block;
    }
    .menu-wrapper {
        background: #fff;
        left: 0;
        width: 100%;
        position: absolute;
        box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.3);
        top: 54px;
        transition: .4s;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
    }
    .menu-wrapper.active {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }
    .contactUs-btn {
        margin: 10px auto;
    }
    h1,
    .h1 {
        font-size: 2.5rem;
    }
    .main-banner {
        height: calc(100vh - 54px);
    }
    .imgText-block .d-flex,
    .icon-block .d-flex,
    .get-in-touch .d-flex {
        flex-direction: column;
    }
    .imgText-block .d-flex > *,
    .icon-block .d-flex > div,
    .get-in-touch .d-flex > * {
        width: 100%;
    }
    .imgText-block .text-block {
        margin-top: 30px;
    }
    .popup-form {
        width: 90%;
        padding: 20px;
        min-height: 530px;
    }
    .popup-form h4 {
        margin-bottom: 20px;
    }
    .get-in-touch-popup input:not([type="submit"]),
    .get-in-touch-popup textarea {
        padding: 9px 13px;
        font-size: 0.9375rem;
    }
    .get-in-touch-popup textarea {
        padding-bottom: 30px;
        height: 100px;
    }
    .get-in-touch .attach label {
        height: 30px;
        line-height: 30px;
        background-position: 10px -65px;
    }
    .get-in-touch-popup input[type="submit"] {
        width: 160px;
        font-size: 1.25rem;
        padding: 8px 10px;
    }
}
