body.elementor-editor-active #elementor-add-new-section{
    margin-top: 120px;
}
.fat-transition{
    transition: all 0.3s !important;
    -webkit-transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
}
.fat-transition-05{
    transition: all 0.5s !important;
    -webkit-transition: all 0.5s !important;
    -moz-transition: all 0.5s !important;
}
.fat-hover-shadow:hover{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.7);
}
.fat-hover-bg-black:hover{
    background-color: #1e1e1e;
    color: #bbaca9;
}

a.fat-bt{
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2em;
    background-color: #000;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}
a.fat-bt:hover{
    background-color: #fff;
    color: #000;
}

a.fat-bt.bt-white{
    background-color: #fff;
    color: #000;
}
a.fat-bt.bt-white:hover{
    color: #fff;
    background-color: #000;
}


.fat-bt-loading.loading.loading.loading.loading.loading.loading {
    position: relative;
    cursor: default;
    text-shadow: none !important;
    color: transparent !important;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0s linear, opacity 0.1s ease;
    transition: all 0s linear, opacity 0.1s ease;
}

.fat-bt-loading.loading:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin: -0.64285714em 0em 0em -0.64285714em;
    width: 1.28571429em;
    height: 1.28571429em;
    border-radius: 500rem;
    border: 0.2em solid rgba(0, 0, 0, 0.15);
}
.fat-bt-loading.loading:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin: -0.64285714em 0em 0em -0.64285714em;
    width: 1.28571429em;
    height: 1.28571429em;
    -webkit-animation: button-spin 0.6s linear;
    animation: button-spin 0.6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 500rem;
    border-color: #FFFFFF transparent transparent;
    border-style: solid;
    border-width: 0.2em;
    -webkit-box-shadow: 0px 0px 0px 1px transparent;
    box-shadow: 0px 0px 0px 1px transparent;
}

/** accordion */
.elementor-widget-n-accordion .e-n-accordion-item > div[role="region"]{
    border: none;
    margin-bottom: 30px;
}

.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title{
   border-top: none;
    border-left: none;
    border-right: none;
    padding-left: 0px;
    padding-right: 0px;
    border-color: #585857;
    margin-bottom: 20px !important;
    position: relative;
}

.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-icon{
    position: absolute;
    right: 0px;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
}
.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-icon{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}



@keyframes button-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes button-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/** fade In **/
@-webkit-keyframes med_fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-250px, 0, 0);
        transform: translate3d(-250px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes med_fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-250px, 0, 0);
        transform: translate3d(-250px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.med_fadeInLeft {
    -webkit-animation-name: med_fadeInLeft;
    animation-name: med_fadeInLeft;

    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -moz-animation: 0.8s !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
    -moz-animation-fill-mode: both !important;
}

@-webkit-keyframes med_fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(250px, 0, 0);
        transform: translate3d(250px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes med_fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(250px, 0, 0);
        transform: translate3d(250px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.med_fadeInRight {
    -webkit-animation-name: med_fadeInRight;
    animation-name: med_fadeInRight;
    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -moz-animation: 0.8s !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
    -moz-animation-fill-mode: both !important;
}

@-webkit-keyframes med_fadeInBottom {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -250px, 0);
        transform: translate3d(0px, -250px, 0);
        -moz-transform:  translate3d(0px, -250px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -moz-transform: none
    }
}

@keyframes med_fadeInBottom {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -250px, 0);
        transform: translate3d(0px, -250px, 0);
        -moz-transform:  translate3d(0px, -250px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -moz-transform: none
    }
}

.med_fadeInBottom {
    -webkit-animation-name: med_fadeInBottom;
    animation-name: med_fadeInBottom;

    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -moz-animation: 0.8s !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
    -moz-animation-fill-mode: both !important;
}

@-webkit-keyframes med_fadeInTop {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 250px, 0);
        transform: translate3d(0px, 250px, 0);
        -moz-transform:  translate3d(0px, 250px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -moz-transform: none
    }
}

@keyframes med_fadeInTop {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 250px, 0);
        transform: translate3d(0px, 250px, 0);
        -moz-transform:  translate3d(0px, 250px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -moz-transform: none
    }
}

.med_fadeInTop {
    -webkit-animation-name: med_fadeInTop;
    animation-name: med_fadeInTop;
    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -moz-animation: 0.8s !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
    -moz-animation-fill-mode: both !important;
}


/** Fade Out **/
@-webkit-keyframes med_fadeOutLeft {
    from {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-250px, 0, 0);
        transform: translate3d(-250px, 0, 0);
    }
}

@keyframes med_fadeOutLeft {
    from {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-250px, 0, 0);
        transform: translate3d(-250px, 0, 0);
    }
}

.med_fadeOutLeft {
    -webkit-animation-name: med_fadeOutLeft;
    animation-name: med_fadeOutLeft;
    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -moz-animation: 0.8s !important;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
}

@-webkit-keyframes med_fadeOutRight {
    from {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(250px, 0, 0);
        transform: translate3d(250px, 0, 0);
    }
}

@keyframes med_fadeOutRight {
    from {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(250px, 0, 0);
        transform: translate3d(250px, 0, 0);
    }
}

.med_fadeOutRight {
    -webkit-animation-name: aqua_fadeOutRight;
    animation-name: aqua_fadeOutRight;
    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -moz-animation: 0.8s !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
    -moz-animation-fill-mode: both !important;
}


.fat-med.scrolldown{
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    z-index: 1;
    color: #fff;
    cursor: pointer;
    font-family: var(--e-global-typography-primary-font-family);;
    font-size: 20px;
}

.fat-med.scrolldown .chevrondown{
    text-align: center;
    margin-top: 15px;
    height: 49px;
    overflow: hidden;
}
.fat-med.scrolldown .chevrondown svg{
    -webkit-animation-duration: 1.2s !important;
    animation-duration: 1.2s !important;
    -moz-animation: 1.2s !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
    -moz-animation-fill-mode: both !important;
    visibility: visible !important;
    -webkit-animation-name: med_scroll_down;
    animation-name: med_scroll_down;
    animation-iteration-count: infinite;
}

.fat-opacity-04,
.fat-opacity-04 h2,
.fat-opacity-04 h3,
.fat-opacity-04 h4{
    opacity: 0.4;
}

.elementor-widget-image-box.fat-img-box .elementor-image-box-content{
    display: flex;
    align-items: center;
}
.elementor-widget-image-box.fat-img-box .elementor-image-box-content h3.elementor-image-box-title{
    margin: 0px 10px 0px 0px;
    font-size: 20px;
    font-weight: 600;
    color: #585857;
}
.elementor-widget-image-box.elementor-vertical-align-top.fat-img-box .elementor-image-box-wrapper{
    align-items: center;
}
.elementor-widget-image-box.fat-img-box .elementor-image-box-content .elementor-image-box-description{
    font-weight: 300;
}

.fat-contact-form{
    background-color: #171717;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 30px;
}
.fat-contact-form .fat-heading{
    color: #F9F9F9;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
}
.fat-contact-form .fat-fields{
    display: flex;
}
.fat-contact-form .fat-fields .fat-field{
    width: 100%;
}
.fat-contact-form .fat-fields.two-fields .fat-field{
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
.fat-contact-form .fat-fields.two-fields{
    margin-left: -15px;
    margin-right: -15px;
}

form.wpcf7-form p{
    margin-top: 30px;
}

form.wpcf7-form select,
form.wpcf7-form input[type="text"],
form.wpcf7-form input[type="email"],
form.wpcf7-form input[type="tel"]{
    border: none;
    border-bottom: solid 1px #fff;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    background-color: transparent;
    padding-left: 0px;
    padding-right: 0px;
    color: #F9F9F9;
    font-size: 25px;
    font-weight: 400;
    font-family: var(--e-global-typography-primary-font-family);
}

form.wpcf7-form select option{
    color: #000;
}

form.wpcf7-form select:focus-visible,
form.wpcf7-form input[type="text"]:focus-visible,
form.wpcf7-form input[type="email"]:focus-visible,
form.wpcf7-form input[type="tel"]:focus-visible{
    outline: none !important;
    border-color: #DEA53B;

}
form.wpcf7-form input[type="submit"]{
    color: #fff;
    padding: 15px 30px;
    border: none;
    font-size: 17px;
    font-weight: 600;

}

form.wpcf7-form input[type="submit"]{
    background-color: #fff;
    color: #000;
    font-size: 25px;
    font-weight: 100;
    padding: 15px 50px;
    min-width: 200px;
}

.elementor-widget-button.fat-bt-button a.elementor-button:hover{
    border: solid 2px #fff;
    background-color: transparent !important;
    color: #fff;
}

.wpcf7-form-control.wpcf7-acceptance.optional .wpcf7-list-item,
.wpcf7-form-control.wpcf7-acceptance.optional .wpcf7-list-item label{
    margin-left: 0px;
    font-size: 18px;
    font-family: var(--e-global-typography-primary-font-family);
}

.fat-fields.fat-buttons .fat-field > p{
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.fat-social{
    display: flex;
    align-items: center;
}
.fat-social label{
    margin-right: 15px;
}
.fat-social a{
    display: inline-block;
    font-size: 0px;
    margin-right: 15px;
}

.elementor-element.fat-has-col-border > .elementor-element.e-child{
    border-top: solid 1px #4D4D4D;
    border-left: solid 1px #4D4D4D;
    border-bottom: solid 1px #4D4D4D;
}
.elementor-element.fat-has-col-border > .elementor-element.e-child:last-child{
    border-right: solid 1px #4D4D4D;
}

.fat-section-overlay{
    position: relative;
}
.fat-section-overlay:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(180deg, #1D1D1D 29.84%, rgba(29, 29, 29, 0.80) 101.92%, rgba(29, 29, 29, 0.30) 120.46%);
}

.fat-section-overlay  *{
    position: relative;
    z-index: 1;
}

.fat-video-gray video{
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.fat-image-box .elementor-image-box-wrapper .elementor-image-box-img{
    position: absolute;
}

.fat-image-box .elementor-image-box-wrapper  .elementor-image-box-title{
    padding-left: 70px;
    position: relative;
    top: -15px;
}

@media (max-width: 1200px){
    .fat-opacity-04 h2,
    .fat-opacity-04 h3,
    .fat-opacity-04 h4{
       font-size: 140px !important;
    }
}

@media (max-width: 991px){
    .fat-opacity-04 h2,
    .fat-opacity-04 h3,
    .fat-opacity-04 h4{
        font-size: 120px !important;
    }
    .elementor-element.fat-has-col-border > .elementor-element.e-child:nth-child(3n){
        border-right: solid 1px #4D4D4D;
    }

}

@media (max-width: 767px){
    .fat-opacity-04 h2,
    .fat-opacity-04 h3,
    .fat-opacity-04 h4{
        font-size: 50px !important;
    }
    .elementor-widget-image-box.fat-img-box .elementor-image-box-img{
        width: 100% !important;
    }
    .elementor-widget-image-box.fat-img-box .elementor-image-box-img img{
        margin: 0 auto;
    }
    .elementor-widget-image-box.fat-img-box .elementor-image-box-content{
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 600px) and (max-width: 767px){
    .fat-maika-container .fat-maika-listing.grid .fat-col-xs-12{
        width: 50% ;
    }
}

@media (max-width: 600px) {
    .fat-med.scrolldown{
        bottom: 0px;
    }

    .fat-contact-form .fat-heading{
        font-size: 30px;
    }

    form.wpcf7-form select,
    form.wpcf7-form input[type="text"],
    form.wpcf7-form input[type="email"],
    form.wpcf7-form input[type="tel"]{
        font-size: 20px;
    }
    form.wpcf7-form input[type="submit"]{
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .elementor-element.fat-has-col-border > .elementor-element.e-child{
        border-right: solid 1px #4D4D4D;
        margin-bottom: 15px;
    }
}

@keyframes med_scroll_down {
    0% {
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
    }
    100% {
        transform: translateY(120%);
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
    }
}

@-moz-keyframes med_scroll_down {
    0% {
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
    }
    100% {
        transform: translateY(120%);
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
    }
}

@-webkit-keyframes med_scroll_down {
    0% {
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
    }
    50% {
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
    }
    100% {
        transform: translateY(120%);
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
    }
}
