@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Jost', serif;
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
    font-weight: 200;
    background: #000000;
}

@media (max-width: 1200px){
    body {
        font-size: 15px;
    }
}

@media (max-width: 600px){
    body {
        font-size: 13px;
        line-height: 1.5;
    }
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p{
    margin: 0;
}

hr {
    display: block;
    width: 100%;
    height: 1px;
    margin: 40px 0;
    border: 0;
    background-color: #e5e5e5;
}

.a{
    cursor: pointer;
}

.bg-grey {
    background-color: #efefef!important;
}

.text-white{
    color: #ffffff!important;
}

.text-black{
    color: #000!important;
}

.text-center{
    text-align: center;
}

/* Page */
.page-wrapper {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1600px;
    padding: 0 50px;
    margin: 0 auto;
    z-index: 10;
}

@media (max-width: 950px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 15px;
    }
}

/************************************ Navbar ****************************************************************/
.header_area {
    position: fixed;
    top: 0;
    width: 100%;
    margin: auto;
    right: 0;
    left: 0;
    z-index: 99;
    box-shadow: 0 2px 20px rgb(255 255 255 / 28%);
    background-color: black;
}
.navigation {
    width: 100%;
    height: 85px;
    display: table;
    position: relative;
    font-family: inherit;
}
.navigation * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.navigation-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19998;
}
.navigation-hidden {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.align-to-right {
    float: right;
}
.nav-header {
    float: left;
}
.navigation-hidden .nav-header {
    display: none;
}
.nav-brand {
    display: block;
    margin-top: 25px;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-size: 20px;
}
.nav-brand img{
    width: 180px;
    height: auto;
}

.nav-logo > img {
    height: 48px;
    margin: 11px auto;
    padding: 0 15px;
    float: left;
}
.nav-logo:focus > img {
    outline: initial;
}

.nav-toggle {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 21px;
    right: 0;
    display: none;
    cursor: pointer;
    background-color: #000;
    padding: 6px 3px 5px 3px;
    border-radius: 3px;
}
.nav-toggle:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0.5em 0 0 #fff, 0 1em 0 0 #fff;
}

.nav-menus-wrapper-close-button {
    width: 30px;
    height: 30px;
    margin: 10px 7px;
    display: none;
    float: right;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    font-size: 0;
}

.nav-menu > li {
    display: inline-block;
    float: left;
    text-align: left;
}

.nav-menu + .nav-menu > li:first-child {
    border-top: none;
}
.nav-menu > li > a {
    height: 70px;
    padding: 35px 15px;
    display: inline-block;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s, background 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu > li:hover > a, .nav-menu > li.active > a, .nav-menu > li.focus > a {
    background: #c49765;
    color: #fff;
}
.nav-menu > li > a > i,
.nav-menu > li > a > [class*="ion-"] {
    width: 18px;
    height: 16px;
    line-height: 16px;
    transform: scale(1.4);
}
.nav-menu > li > a > [class*="ion-"] {
    width: 16px;
    display: inline-block;
    transform: scale(1.8);
}

.nav-menu.nav-menu-social > li {
    text-align: center;
    float: none;
    border: none !important;
}

.nav-menu.nav-menu-social > li > a > [class*="ion-"] {
    font-size: 12px;
}
.nav-menu.nav-menu-social > li > a > .fa {
    font-size: 14px;
}

.menu-item-has-children {
    position: relative;
}
.menu-item-has-children > a {
    padding-right: 35px !important;
}
.menu-item-has-children > a:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    margin-top: -13px;
    height: 8px;
    width: 8px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #ffd9d9 #ffffff #ffffff transparent;
    transform: rotate(45deg);
    transition: border 0.2s;
}
.menu-item-has-children:hover .sub-menu {
    display: block;
}
.nav-overlay-panel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 19999;
    background: #0009;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}
.nav-overlay-panel.overlay-show {
    visibility: visible;
    opacity: 1;
}
.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.nav-search {
    float: right;
    z-index: 19998
}
.navigation-hidden .nav-search {
    display: none
}

/* Background img */

.bg-left-30{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

.bg-left-50{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

.bg-right-50{
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

.bg-right-70{
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-position: left;
    background-size: cover;
    z-index: 1;
}

@media (max-width: 700px){
    .bg-right-70 {
        width: 100%;
        height: 50%;
    }
    .bg-left-30{
        width: 100%;
        height: 30%;
    }
    .bg-right-50 {
        width: 100%;
        height: 30%;
    }
    .bg-left-50 {
        width: 100%;
        height: 30%;
    }
}

/***************** Intro */
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    background-color: black;
    position: relative;
    z-index: 0;
    padding: 100px 0;
}

.intro__inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    z-index: 1;
}

.intro_box {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-box img {
    box-shadow: -7px 5px 13px 0px #00000091;
}

.intro__title {
    color: #cd955c;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.intro__suptitle {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.3;
}

.img-corner {
    position: absolute;
    width: 200px;
    height: 200px;
    right: -20px;
    bottom: -18px;
    background-color: #cd955c;
    z-index: -1;
}

.home-intro{
    width: 50%;
    margin-top: 150px;
}

.home-intro-bg{
    background-color: black;
    padding: 40px;
}

@media (max-width: 1400px) {
    .intro__title {
        font-size: 35px;
    }
    .intro__suptitle {
        font-size: 20px;
    }
}

@media (max-width: 1250px) {
    .intro_box {
        padding: 0 15px;
        width: 45%;
    }
    .intro__title {
        font-size: 30px;
    }
    .intro__suptitle {
        font-size: 17px;
    }
}

@media (max-width: 1100px) {
    .intro__title {
        font-size: 25px;
    }
    .intro__suptitle {
        font-size: 15px;
    }
}

@media (max-width: 950px) {
    .intro {
        min-height: auto;
        padding: 150px 0;
    }
    .home-intro {
        width: 60%;
        margin-top: 70px;
    }
    .intro__suptitle {
        font-size: 13px;
    }
    .section__header p {
        margin-bottom: 15px;
    }
    .home-intro-bg {
        background-color: black;
        padding: 30px;
    }
}

@media (max-width: 800px) {
    .home-intro {
        width: 70%;
    }
    .intro__inner {
        flex-direction: column;
        justify-content: center;
    }
    .intro_box {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 700px) {
    .intro {
        padding: 250px 0 50px 0;
        background-attachment: scroll;
    }
    .intro__suptitle {
        font-size: 14px;
        line-height: 1.5;
    }
    .intro__title {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .img-corner {
        width: 100px;
        height: 100px;
        right: -10px;
        bottom: -8px;
    }
    .home-intro {
        width: 100%;
        margin-top: 0;
    }
}

/* Services */
.section-services-main {
    padding: 150px 0 100px 0;
    background-color: black;
    position: relative;
    z-index: 1;
    display: flex;
}

.services {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 30%;
}

.services__item {
    width: 33.33333%;
    padding: 0 35px 40px 85px;
    position: relative;
    margin-top: 40px;
}

.two-lines{
    width: 50%;
}

.services__item--border {
    border-bottom: 1px solid #e5e5e5;
}

.services__icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 50px;
    height: auto;
}

.services__title {
    margin-bottom: 10px;
    font-size: 18px;
    color: #cd955c;
    font-weight: 700;
}

.services__text {
    font-size: 16px;
    color: white;
}

@media (max-width: 1250px) {
    .services__item {
        padding: 0 20px 30px 50px;
    }
    .services__icon {
        width: 35px;
    }
    .services__title {
        font-size: 16px;
    }
    .services__text {
        font-size: 15px;
    }
}

@media (max-width: 1100px) {
    .section-services-main {
        padding: 120px 0 70px 0;
    }
    .services__item {
        width: 50%;
    }
    .services__title {
        font-size: 15px;
    }
    .services__text {
        font-size: 13px;
    }
}

@media (max-width: 950px) {
    .services__item {
        width: 50%;
        padding-bottom: 0;
    }
    .services__item--border {
        border-bottom: 0;
    }
    .services__icon {
        width: 25px;
    }
    .services__item {
        padding: 0 20px 30px 40px;
    }
    .services__text {
        font-size: 12px;
    }
}

@media (max-width: 800px) {
    .section-services-main {
        padding: 80px 0 30px 0;
    }
    .services {
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .services__item {
        width: 50%;
        padding: 0 20px 0 40px;
    }
    .services__icon {
        left: 0;
    }
}

@media (max-width: 700px) {
    .section-services-main {
        padding: 150px 0 50px 0;
    }
    .services__icon {
        margin-top: 6px;
        width: 30px;
    }
    .services__item {
        width: 100%;
        padding-left: 40px;
        margin-top: 20px;
    }
    .services__item:first-child {
        margin-top: 40px;
    }
    .services__text {
        font-size: 13px;
    }
    .services {
        padding-left: 0;
    }
}


/*Home about*/
.home-about{
    padding: 200px 0 0 0;
    background-color: black;
    display: flex;
    position: relative;
}

@media (max-width: 1100px) {
    .home-about {
        padding: 150px 0 0 0;
    }
}

@media (max-width: 950px) {
    .home-about {
        padding: 120px 0 0 0;
    }
}

@media (max-width: 800px) {
    .home-about {
        padding: 150px 0 0 0;
    }
}

/* WhatsApp */
.menu-lang {
    width: fit-content;
    text-align: center;
    display: flex;
    flex-direction:column;
    justify-content: center;

    padding: 10px 20px;
    margin: 21px 0 0 20px;

    cursor: pointer;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.4s;
    border: 1px solid #b8b8b8;
}

.menu-lang:hover{
    background-color: #cd955c;
}

.whatsapp-link-text{
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .menu-lang {
        padding: 6px 10px;
        margin: 21px 0 0 15px;
    }
    .whatsapp-link-text {
        font-size: 11px;
    }
}

@media (max-width: 700px) {
    .menu-lang {
        margin: 15px 0 0 15px;
    }
    .whatsapp-link-text {
        font-size: 11px;
    }
}

/*******/
.sub-menu {
    min-width: 180px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
}

.sub-menu .sub-menu {
    left: 100%;
}
.nav-menu > li > .sub-menu {
    border: solid 1px #0000001f;
}
.sub-menu > li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}
.sub-menu > li > a {
    width: 100%;
    padding: 16px 20px;
    display: inline-block;
    text-decoration: none;
    float: left;
    font-size: 11px;
    color: #343a40;
    background-color: #fdfdfd;
	    text-transform: uppercase;
}
.sub-menu > li:hover > a, .sub-menu > li.focus > a {
    color: #27ae60;
}
.sub-menu.sub-menu-left {
    right: 0;
}
.sub-menu > li > .sub-menu-left {
    left: auto;
    right: 100%;
}
.sub-menu > li > a {
    color: #000;
    padding: 15px 30px;
    border-bottom: 1px solid #f6f6f6;
}
.sub-menu > li > a:hover,
.sub-menu > li > a:focus {
    color: #c59765;
}
.main_header_area.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.transparent-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

/* Media Query Mega Menu */
@media (max-width: 800px) {
    .sub-menu > li > a {
        width: 100%;
		font-size: 10px;
    }
    .sub-menu > li > a {
        color: #fff;
    }
    .sub-menu > li > a {
        border-bottom: none;
        background-color: #000;
    }
}

/************************************************************************************* End Menu **********************************************************************************/

/* Button */
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
    color: #ffffff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    letter-spacing: 1px;
    font-family: 'Jost', serif;
}

.btn:hover {
    background-color: #cd955c;
    color: #ffffff;
}

.btn-white {
    color: #000000;
    background-color: #ffffff;
}

.btn-yellow {
    color: #ffffff;
    background-color: #cd955c;
}

.btn-yellow:hover{
    color: #000000;
}

.shadow-white{
    box-shadow: -7px 5px 13px 0px #ffffff9e
}

.shadow-dark{
    box-shadow: -7px 5px 13px 0px #00000091;
}

@media (max-width: 950px){
    .btn {
        padding: 12px 30px;
        font-size: 11px;
    }
}
@media (max-width: 700px){
    .btn {
        margin-top: 17px;
    }
}


/* Slider */
.slider__item {
    display: flex;
    flex-direction: row;
    padding-bottom: 15px;
    position: relative;
}

.slider__num {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
}

.slider__text {
    width: 100%;
    margin-left: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

@media (max-width: 1500px) {
    .slider__text {
        font-size: 17px;
    }
}

@media (max-width: 1300px) {
    .slider__text {
        font-size: 15px;
    }
}

@media (max-width: 1024px){
    .slider__text {
        font-size: 14px;
    }
}

@media (max-width: 950px) {
    .slider__text {
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .slider__text {
        font-size: 14px;
    }
    .slider__item {
        padding-bottom: 10px;
    }
}

/* Section */
.cta-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    background-color: white;
}

.section__header {
    width: 80%;
    padding: 50px 50px;
    background-color: black;
}

.section__title {
    font-size: 50px;
    font-weight: 600;
    color: #adadad;
    text-transform: uppercase;
}

.section__title:after {
    content: "";
    left: 0;
    display: block;
    width: 100px;
    height: 5px;
    margin: 30px 0;
    background-color: #adadad;
}

.section__header p{
    margin-bottom: 20px;
	color: white;
}

.section__header h4{
    margin-top: 50px;
    color: #adadad;
    font-size: 25px;
}

.section__header h4:after {
    content: "";
    left: 0;
    display: block;
    width: 50px;
    height: 3px;
    margin: 15px 0;
    background-color: #adadad;
}

.section__header li{
    color: #fff;
    padding-left: -20px;
    font-size: 18px;
    line-height: 1.4;
}

.section__header p:last-child{
    margin-bottom: 0;
}

@media (max-width: 1500px) {
    .section__title {
        font-size: 45px;
    }
    .section__header {
        padding: 40px 40px;
    }
}

@media (max-width: 1300px) {
    .section__title {
        font-size: 35px;
    }
    .section__header li {
        font-size: 15px;
    }
}

@media (max-width: 1100px) {
    .section__title {
        font-size: 30px;
    }
    .section__header li {
        font-size: 15px;
    }
}
@media (max-width: 950px) {
    .section__header {
        width: 100%;
    }
    .section__title {
        font-size: 28px;
    }
    .cta-section {
        min-height: auto;
    }
    .section__header {
        padding: 35px 35px;
    }
}

@media (max-width: 700px) {
    .section__title{
        font-size: 18px;
    }
    .cta-section {
        padding: 150px 0 20px 0;
    }
    .section__header li {
        font-size: 14px;
    }
    .section__header {
        padding: 30px 25px;
    }
}


/* Grid */
.grid-section {
    background-color: black;
    padding-left: 30%;
}

.grid{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
}
.grid__column {
    display: flex;
    flex-direction: column;
    width: calc( 33.33% - 20px);
    margin: 10px;
}

.grid-border{
    width: 100%;
    height: 100%;
    border: 1px solid #cd955c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    z-index: 9
}

.card-insight__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 2;
    transition: transform 0.5s, opacity 0.6s;
    transform: scale(1.05);
}

.card-insight__text {
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
    font-size: 22px;
    z-index: 3;
    transition: transform 350ms;
    transform: translate3d(0, 0, 0);
    text-transform: uppercase;
    font-weight: 600;
}

.card-insight {
    display: flex;
    width: 100%;
    position: relative;
    padding: 30px;
    overflow: hidden;
    min-height: 400px;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
    text-decoration: none;
}

.card-insight:hover .card-insight__img {
    transform: scale(1);
    opacity: 0.3 !important;
}

.card-insight:hover .card-insight__text {
    transform: translate3d(0, -20px, 0);
}

ul {
    padding: 0 0 0 30px;
}

@media (max-width: 1500px) {
    .card-insight {
        padding: 30px;
        min-height: 300px;
    }
    .card-insight__text {
        font-size: 18px;
    }
}

@media (max-width: 1300px) {
    .grid__column {
        flex: none;
        margin: 0 3px 3px 3px;
        width: 32%;
    }
    .card-insight {
        padding: 20px;
        min-height: 250px;
    }
    .card-insight__text {
        font-size: 15px;
    }
}


@media (max-width: 1100px) {
    .card-insight {
        padding: 10px;
        min-height: 220px;
    }
}

@media (max-width: 950px) {
    .card-insight__text {
        font-size: 13px;
    }
    .card-insight {
        padding: 7px;
        min-height: 200px;
    }
    .grid-border {
        padding: 15px;
    }
}

@media (max-width: 800px) {
    .grid {
        justify-content: left;
    }
    .grid__column {
        width: calc(50% - 6px);
    }
}

@media (max-width: 700px) {
    .card-insight__text {
        line-height: 1.3;
    }
    .grid-section {
        padding-left: 0;
    }
}


/* Footer */
.footer {
    padding-top: 65px;
    background-color: #0f0e0e;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
    padding-bottom: 65px;
}

.footer__col {
    padding: 0 15px;
}

.footer__col--first {
    width: 38%;
}

.footer__col--second {
    width: 30%;
}

.footer__col--third {
    width: 28%;
}

.footer__logo {
    margin-bottom: 30px;
    margin-top: 30px;
    width: 220px;
}

.footer__text {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

.footer__social {
    margin-bottom: 25px;
}

.footer__social-header {
    font-size: 17px;
    color: #ffffff;
    font-weight: 700;
}

.footer__social-content {
    padding-top: 15px;
    font-size: 15px;
    color: #ffffff;
    font-style: italic;
    font-weight: 300;
}

.footer__social-content a {
    text-decoration: none;
}

.footer__title {
    margin: 30px 0;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .footer__text {
        font-size: 13px;
    }
    .footer__social-header {
        font-size: 15px;
    }
    .cub {
        height: 70%;
    }
}

@media (max-width: 991px) {
    .footer__col--first {
        width: 100%;
    }
    .footer__col--second,
    .footer__col--third {
        width: 50%;
    }
}

@media (max-width: 800px) {
    .footer__col--second,
    .footer__col--third {
        width: 100%;
    }
}

@media (max-width: 700px){
    .footer__logo {
        margin-top: 0px;
    }
}

/* Blogs */
.blogs{
    display: flex;
    flex-direction: column;
}

.blogs__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

.blogs__img {
    width: 90px;
    height: 50px;
    background-size: cover;
}

.blogs__content {
    padding-left: 20px;
    display: flex;
    width: 80%;
}

.blogs__title {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    text-decoration: none;
}

.blogs__title:hover {
    text-decoration: underline;
}

@media (max-width: 770px) {
    .blogs {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    .blogs__item {
        flex: none;
        width: 48%;
    }
}

@media (max-width: 700px) {
    .blogs__item {
        width: 100%;
    }
}

/* Subscribe */
.subscribe {
    width: 100%;
    max-width: 380px;
    display: flex;
}

.subscribe .wpcf7-form-control-wrap {
    width: 60%;
}

.subscribe__input {
    width: 100%;
    height: 40px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ffffff;
    border-right: 0;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
    font-style: italic;
    font-weight: 300;
}

.subscribe__input::placeholder {
    color: #000;
}

.subscribe__input:focus {
    outline: 0;
    border-color: #2d652d;
}

.subscribe__btn {
    width: 40%;
    height: 40px;
    padding: 12px 0;
    background-color: #cd955c;
    border: 0;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    transition: background .2s linear;
    font-family: 'Jost', serif;
    letter-spacing: 1px;
}

.subscribe__btn:hover {
    background-color: #cd955c;
}

.subscribe__btn:focus {
    outline: 0;
}

@media (max-width: 700px) {
    .subscribe {
        flex-wrap: wrap;
        max-width: none;
    }
    .subscribe__input {
        margin-bottom: 10px;
        border-right: 1px solid #e7e7e7;
    }
    .subscribe__input {
        width: 95%;
    }
    .subscribe__btn {
        width: 40%;
    }
}

/*Contacts*/
/* Slider */
.contact{
    background-color: black;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.contact_item {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    position: relative;
    margin-bottom: 15px;
}

.contact_num {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
}

.contact_text {
    width: calc(100% - 40px);
    margin-left: 10px;
    font-size: 15px;
    color: #ffffff;
}

@media (max-width: 950px) {
	.contact {
		min-height: 50vh;
		padding: 150px 0 40px 0;	}
}

@media (max-width: 700px) {
	.contact {
		min-height: 50vh;
		padding: 250px 0 40px 0;	}
}

/* Copyright */
.copyright {
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.copyright span {
    color: #f38181;
}

.map{
    width: 100%;
    height: 50vh;
    margin-bottom: -10px;
}


/*******  Form ********/
.cta-box-item {
    padding: 0 0 30px 30px;
    position: relative;
}

.cta-box-item:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 5px;
    background-color: #c59765;
    bottom: 0;
    left: 0;
}

.cta-box-item:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 200px;
    background-color: #c59765;
    bottom: 0;
    left: 0;
}

.cta-form {
    padding: 50px;
    background-color: #000000bd;
    text-align: center;
    position: relative;
    box-shadow: -7px 5px 13px 0px #00000091;
}

.cta_suptitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.cta_title {
    color: #c59765;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.form-control {
    min-height: 50px;
    box-shadow: none;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    margin-bottom: 10px;
    border: none;
    outline: none;
}
.form-control::placeholder {
    color: #000;
}


#ctaimg {
    max-width: 140px;
    width: 100%;
}

#error-msg{
    color: red;
    display: block;
}

.hide {
    display: none!important;
}

@media (max-width: 1400px) {
    .cta-box-item {
        padding: 0 0 30px 20px;
    }
    .cta_title {
        font-size: 28px;
    }
}

@media (max-width: 1100px) {
    .cta-box-item {
        padding: 0;
    }
    .cta_title {
        font-size: 23px;
    }
    .cta-box {
        padding: 10px;
    }
    .cta-form {
        padding: 40px;
    }
}

@media (max-width: 950px) {
    .form-control {
        min-height: 40px;
    }
}

@media (max-width: 800px){
    .cta-box {
        padding: 50px 150px;
    }
    .cta-box-item {
        padding: 30px 0 30px 50px;
    }
}

@media (max-width: 700px) {
    .cta-box {
        padding: 10px;
    }
    .cta-form {
        padding: 30px 15px;
    }
    .cta_suptitle {
        font-size: 15px;
    }
    .cta_title {
        margin-bottom: 20px;
    }
    .cta-box-item {
        padding: 0;
    }
    .cta-box-item:before,
    .cta-box-item:after {
        display: none
    }
}


/********* About */
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 120px 0;
    position: relative;
    background-color: black;
}

.about-intro{
    padding: 40px;
    background-color: black;
}

@media (max-width: 950px){
    .about {
    	min-height: 60vh;
	}
}

@media (max-width: 700px){
    .about {
        padding: 200px 0 0 0;
    }
}


/* Statistics */
.statistics {
    margin-left: 25%;
    margin-bottom: 70px;
}

.stat {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.stat-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 0;
}

.stat__item {
    width: 24%;
    padding: 15px 25px;
    border-right: 1px solid whitesmoke;
    text-align: center;
    color: #fff;
}

.stat__item:last-child {
    border-right:none;
}

.stat__count {
    margin-bottom: 10px;
    color: #cd955c;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.stat__count img{
    width: 60px;
}

.stat__text {
    font-size: 14px;
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .stat__count {
        font-size: 50px;
    }
}

@media (max-width: 1024px){
    .cta_suptitle {
        font-size: 15px;
    }
    .stat__count {
        font-size: 50px;
    }
}

@media (max-width: 950px){
    .stat__text {
        font-size: 10px;
    }
    .stat__count {
        font-size: 35px;
    }
}

@media (max-width: 800px){
    .stat__count {
        font-size: 40px;
    }
    .stat__item,.stat__item:last-child {
        border: none;
        padding-bottom: 70px;
    }
    .stat__item {
        padding: 70px 25px 0 25px;
    }
}

@media (max-width: 700px){
    .stat__item,.stat__item:last-child {
        border: none;
        padding-bottom: 40px;
    }
    .statistics {
        margin-left: 0;
    }
    .stat__item {
        padding: 40px 15px 0 15px;
        width: 50%;
    }
    .stat-about {
        padding: 0;
    }
}


/* Accordion */
.faq{
    padding: 150px 0;
    background-color: white;
}

.accordion{
    width: 80%;
    margin: 0 auto;
}

.accordion__item {
    margin-bottom: 10px;
    border: 1px solid #000;
}

.accordion__item.active .accordion__content {
    display: block;
}

.accordion__item.active .accordion__header:after {
    transform: translateY(-50%) rotate(-45deg);
    margin-top: 5px;
}

.accordion__header {
    padding: 20px;
    position: relative;

    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.accordion__header:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;

    border-top: 2px solid #000;
    border-right: 2px solid #000;

    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 1;

    transform: translateY(-50%) rotate(135deg);
}

.accordion__icon {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 1;

    transform: translateY(-50%);
}

.accordion__content {
    padding: 0 20px 20px 20px;
    display: none;

    font-size: 15px;
    color: #000;
    font-style: italic;
    font-weight: 500;
}

.accordion__title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding-right: 50px;
}

@media (max-width: 800px) {
    .accordion {
        width: 90%;
    }
}

@media (max-width: 700px){
    .accordion__title {
        font-size: 15px;
        padding-right: 30px;
    }
    .faq {
        padding: 70px 0;
    }
    .accordion {
        width: 100%;
    }
    .accordion__content {
        font-size: 13px;
    }
}

/*animation*/
.fadein{
    opacity: 0;
}

.appear {
    opacity: 0;
    transform: translateY(50px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(300px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1000px) {
    .nav-toggle {
        display: block;
    }

    .nav-search {
        height: 48px;
        padding: 0 38px;
        margin-right: 32px;
    }


    .nav-menu > li > a {
        width: 100%;
        height: auto;
        padding: 20px 10px 20px 10px;
    }

    .nav-brand {
        font-size: 18px;
        line-height: 48px;
    }
    .nav-logo > img {
        height: 36px;
        margin: 6px auto 6px 15px;
        padding: 0;
    }
    .nav-menus-wrapper {
        width: 320px;
        height: 100%;
        top: 0;
        left: -100%;
        position: fixed;
        background-color: #161616;
        z-index: 20000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition-duration: 0.2s;
        transition-timing-function: ease;
    }
    .nav-menus-wrapper.nav-menus-wrapper-right {
        left: auto;
        right: -400px;
    }
    .nav-menus-wrapper.nav-menus-wrapper-open {
        left: 0;
    }
    .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
        left: auto;
        right: 0;
    }

    .nav-menus-wrapper-close-button {
        display: block;
    }

    .nav-menu {
        width: 100%;
    }

    .nav-menu > li {
        width: 100%;
        position: relative;
        border-top: solid 1px #f0f0f0;
    }
    .nav-menu > li:last-child {
        border-bottom: solid 1px #f0f0f0;
    }

    .nav-menu.nav-menu-social {
        width: 100%;
        text-align: center;
    }
    .nav-menu.nav-menu-social > li {
        width: auto;
    }
    .nav-menu.nav-menu-social > li > a {
        padding: 15px;
    }
    .nav-search {
        height: 48px;
        padding: 0 38px;
        margin-right: 32px
    }
    .nav-search-button {
        width: 50px;
        height: 48px;
        line-height: 46px;
        font-size: 22px;
    }
    .sub-menu {
        width: 100%;
        position: static;
        left: 0;
    }
    .menu-item-has-children > a:after {
        transition: 0.4s;
    }
    .menu-item-has-children:hover .sub-menu {
        display: none;
    }
    .menu-item-has-children.show-children .sub-menu {
        display: block;
    }
    .menu-item-has-children.show-children > a:after {
        transform: rotate(-135deg);
        margin-top: -10px;
    }
    .sub-menu li a {
        color: #ffffff;
        background-color: #161616;
    }
    .sub-menu > li > a {
        padding: 12px 20px 12px 30px;
    }
    .sub-menu > li > ul > li > a {
        padding-left: 50px;
    }
    .sub-menu > li > ul > li > ul > li > a {
        padding-left: 70px;
    }
    .sub-menu > li > ul > li > ul > li > ul > li > a {
        padding-left: 90px;
    }
}


@media (max-width: 1400px) {
    .nav-menu > li > a {
        font-size: 9px;
    }
    .nav-brand img {
        width: 150px;
    }
}

@media (max-width: 1100px) {
    .navigation {
        height: 77px;
    }
    .nav-brand img {
        width: 120px;
        margin-top: 3px;
    }
}

@media (max-width: 800px) {
    .nav-brand {
        margin-top: 20px;
    }
    li.focus > a {
        background: #000000;
        color: #fff;
    }
    .nav-menu > li:hover > a, .nav-menu > li.active > a, .nav-menu > li.focus > a {
        background-color: black;
    }
}

@media (max-width: 700px) {
    .nav-menus-wrapper {
        width: 100%;
    }
    .navigation {
        height: 59px;
    }
    .nav-toggle {
        top: 24%;
        margin-top: 0px;
    }
    .nav-brand {
        font-size: 18px;
        line-height: 45px;
        margin-top: 13px;
    }
    .nav-search {
        height: 48px;
        padding: 0 20px 0 4px;
        margin-right: 35px;
    }
}
    
.wpcf7 form .wpcf7-response-output {
	border: none;
    padding: 0;
    margin: 20px 0 0 0;
    font-weight: 400;
}

.wpcf7 form.sent .wpcf7-response-output {
	border: none;
    color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
    color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: #ffb900;
}
