/*
 * Author by FreeHTML5.co
 * Twitter: https://twitter.com/fh5co
 * Facebook: https://fb.com/fh5co
 * URL: https://freehtml5.co
 */
/* Fonts */
@font-face {
    font-family: 'Calisto-MT';
    src: url(../fonts/Calisto-MT.ttf);
}

@font-face {
    font-family: 'Calisto-MT-Italic';
    src: url(../fonts/Calisto-MT-Italic.ttf);
}

@font-face {
    font-family: 'Calisto-MT-Bold';
    src: url(../fonts/Calisto-MT-Bold.ttf);
}

/* Colors */
/* Universal style */
* {
    margin: 0;
    padding: 0;
    font-family: "Calisto-MT";
}
.universal-h2 {
    font-size: 48px;
    text-align: center;
    color: #222;
}

@media (max-width: 1250px) {
    .universal-h2 {
        font-size: 38px;
    }
}

@media (max-width: 668px) {
    .universal-h2 {
        font-size: 30px;
    }
}

.universal-h2-bckg {
    background-image: url("../images/double-line.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* Universal style end */
/* Includes */
.site-navigation {
    position: absolute;
    top: 4.6%;
    width: 100%;
    z-index: 2;
}

.site-navigation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation {
    color: #fff;
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background: #000;
    opacity: 0.9;
}

    .main-navigation .main-navigation__ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 3%;
        border: 2px solid #fff;
        border-radius: 7px;
        background-color: #c18f59;
    }

        .main-navigation .main-navigation__ul li {
            margin-bottom: 20px;
            list-style: none;
        }

        .main-navigation .main-navigation__ul a {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            transition: 0.3s ease;
        }

            .main-navigation .main-navigation__ul a:hover {
                color: #777;
            }

@media (max-width: 1150px) {
    .main-navigation {
        opacity: 0.94;
    }
}

/* Navigation burger */
.burger-container {
    cursor: pointer;
    z-index: 3;
}

.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 3px;
    background-color: #c18f59;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: rotate(-45deg) translate(-6px, 6px);
    background-color: #c18f59;
}

.change .bar2 {
    opacity: 0;
    background-color: #c18f59;
}

.change .bar3 {
    transform: rotate(45deg) translate(-6px, -7px);
    background-color: #c18f59;
}

.stop-scroll {
    overflow: hidden;
}

/* Navigation burger end */








@media (max-width: 620px) {
    .social {
        flex-direction: column;
    }
}

.social-icons a {
    position: relative;
    border: 1px solid white;
    border-radius: 50%;
    padding: 13px 23px;
    margin-right: 10px;
    transition: 0.3s ease;
}

    .social-icons a:hover {
        background-color: #777;
        border-color: transparent;
    }

.social-icons img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 620px) {
    .social-icons {
        margin: 35px 0;
    }
}

.site-footer {
    padding-top: 120px;
    background-color: #343434;
}

@media (max-width: 1250px) {
    .site-footer {
        padding-top: 60px;
    }
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 95px;
}

    .footer-inner h5 {
        margin-bottom: 30px;
        font-size: 20px;
        letter-spacing: 2px;
        color: #fff;
    }

@media (max-width: 1250px) {
    .footer-inner {
        padding-bottom: 50px;
        flex-direction: column;
        align-items: center;
    }
}

.footer-info {
    width: 50%;
    display: flex;
}

    .footer-info .footer-info__left {
        margin-right: 45px;
    }

        .footer-info .footer-info__left img {
            margin-bottom: 10px;
        }

        .footer-info .footer-info__left p {
            color: #c18f59;
        }

@media (max-width: 620px) {
    .footer-info .footer-info__left {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.footer-info .footer-info__right p {
    margin-bottom: 15px;
    color: #aaa;
}

.footer-info .footer-info__right .footer-phone {
    font-size: 14px;
}

.footer-info .footer-info__right .social-icons {
    margin-top: 27px;
}

    .footer-info .footer-info__right .social-icons a {
        padding: 9px 19px;
    }

@media (max-width: 1250px) {
    .footer-info {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 620px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
    }
}

.footer-contact-form {
    width: 50%;
}

    .footer-contact-form .contact-form__input {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

        .footer-contact-form .contact-form__input input {
            width: 40%;
            padding: 20px;
            border: 1px solid #404040;
            background-color: #282828;
            color: #c18f59;
        }

            .footer-contact-form .contact-form__input input::placeholder {
                color: #aaa;
            }

@media (max-width: 1250px) {
    .footer-contact-form .contact-form__input input {
        width: 45%;
    }
}

@media (max-width: 520px) {
    .footer-contact-form .contact-form__input input {
        width: 100%;
    }
}

.footer-contact-form textarea {
    box-sizing: border-box;
    height: 90px;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #404040;
    background-color: #282828;
    resize: none;
    color: #c18f59;
}

.footer-contact-form .submit-button {
    padding: 19px 50px;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background-color: #c18f59;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .footer-contact-form .submit-button:hover {
        background-color: #777;
    }

@media (max-width: 1250px) {
    .footer-contact-form {
        width: 100%;
    }
}

.footer-bottom {
    padding: 25px 0;
    background-color: #2d2d2d;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
}

    .footer-bottom-inner p {
        color: #777;
    }

    .footer-bottom-inner a {
        color: #c18f59;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-bottom-inner a:hover {
            color: #777;
        }

    .footer-bottom-inner .footer-bottom__img img {
        margin-right: 25px;
    }

        .footer-bottom-inner .footer-bottom__img img:last-child {
            margin-right: 0;
        }

@media (max-width: 992px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
    }

        .footer-bottom-inner p {
            font-size: 14px;
            margin-bottom: 20px;
        }
}
