/** Import Fonts **/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
/** Null all default CSS-styles **/

* {
    margin: 0;
    padding: 0;
    border: 0;
}

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

:focus,
:active {
    outline: none;
}

a {
    color: #3C3C3C;
    -o-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    color: #3C3C3C;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    margin: 0;
}

a,
a:visited,
a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

/** Main Styles **/

html,
body {
    font-family: 'Open Sans', sans-serif;
    height: 100%;
    font-weight: normal;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

textarea {
    resize: none;
}

hr {
    border-bottom: 1px solid #e0e0e0;
    margin: 20px 0 30px;
}

.ibg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.ibg img {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.item {
    height: 100%;
    display: block;
    position: relative;
}

.item__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
}

@media only screen and (min-width: 1400px) {
    .container {
        width: 1370px;
    }
}

@media only screen and (min-width: 1900px) {
    .container {
        width: 1800px;
    }
}

@media only screen and (max-width: 576px) {
    .container {
        width: 540px;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        width: 750px;
    }
}

@media only screen and (max-width: 992px) {
    .container {
        width: 970px;
    }
}

@media only screen and (max-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 35, 40, 0.4);
    z-index: 1;
}

/** Back to Top Button **/

#toTop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 10px 21px;
    border-radius: 40px;
    background-color: #EBC359;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    -o-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    -moz-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
}

#toTop:before {
    content: "\f106";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#toTop:hover,
#toTop:active {
    background-color: #ffffff;
    color: #EBC359
}

#toTop.show {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 576px) {
    #toTop {
        padding: 5px 14px
    }
    #toTop:before {
        font-size: 18px
    }
}

main {
    min-height: 100%;
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: fixed;
    }
}

.section {
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    .section {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 992px) {
    .section {
        padding: 30px 0;
    }
}

.section__header-block {
    position: relative;
    width: 75% !important;
    margin: 0 auto;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    .section__header-block {
        width: 100%;
    }
}

.section__heading {
    position: relative !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content !important;
    margin: 0 auto 30px auto;
    z-index: 10;
}

.section__heading::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -15px;
    width: 100%;
    height: 5px;
    background: #EBC359;
    border-radius: 50px;
}

@media only screen and (max-width: 992px) {
    .section__heading {
        font-size: 1.25em;
    }
}

@media only screen and (max-width: 768px) {
    .section__heading {
        margin-bottom: 30px;
    }
}

.section__title {
    position: relative;
    font-family: "Oswald", Sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 1200px) {
    .section__title {
        font-size: 2.6rem;
    }
}

@media only screen and (max-width: 992px) {
    .section__title {
        font-size: 2rem;
    }
}

.section__title span {
    font-weight: 100;
}

@media only screen and (max-width: 992px) {
    .section__title span {
        display: block;
        font-size: 2rem;
        line-height: 1.6;
    }
}

.section__subtitle {
    text-align: center;
    font-size: 1.25em;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    font-weight: 300;
    color: #fff;
    padding-top: 30px;
}

@media only screen and (max-width: 992px) {
    .section__subtitle {
        font-size: 1.1em;
    }
}

@media only screen and (max-width: 768px) {
    .section__subtitle {
        font-size: 1.1em;
    }
}

.custom-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 15px 30px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
    border-radius: 15px;
    outline: 0;
    cursor: pointer;
    -o-transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
    -moz-transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
    -webkit-transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .custom-btn {
        padding: 12px 24px;
    }
}

summary {
    cursor: pointer;
}

/** Webkit Scrollbar **/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #222328;
    -webkit-box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
    box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-track {
    background: linear-gradient(90deg, rgba(34, 35, 40, 0.8), rgba(33, 37, 49, 0.8) 1px, rgba(38, 37, 49, 0.8) 0, rgba(43, 47, 59, 0.8));
}

.jarallax {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.jarallax {
    position: relative;
    z-index: 0;
    min-height: 400px;
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .jarallax {
        min-height: 350px;
    }
}

@media only screen and (max-width: 576px) {
    .jarallax {
        min-height: 300px;
    }
}

/** Hover Animations **/

.img-hover-zoom,
.img-hover-zoom--quick-zoom,
.img-hover-zoom--point-zoom,
.img-hover-zoom--zoom-n-rotate,
.img-hover-zoom--slowmo,
.img-hover-zoom--brightness,
.img-hover-zoom--zoom-n-pan-h,
.img-hover-zoom--zoom-n-pan-v,
.img-hover-zoom--blur,
.img-hover-zoom--colorize {
    overflow: hidden;
}

.img-hover-zoom img,
.img-hover-zoom .ibg {
    -webkit-transition: transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.img-hover-zoom:hover img,
.img-hover-zoom:hover .ibg {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.img-hover-zoom--quick-zoom img,
.img-hover-zoom--quick-zoom .ibg {
    -webkit-transition: transform 0.25s, visibility 0.25s ease-in;
    -webkit-transition: visibility 0.25s ease-in, -webkit-transform 0.25s;
    transition: visibility 0.25s ease-in, -webkit-transform 0.25s;
    transition: transform 0.25s, visibility 0.25s ease-in;
    transition: transform 0.25s, visibility 0.25s ease-in, -webkit-transform 0.25s;
}

.img-hover-zoom--quick-zoom:hover img,
.img-hover-zoom--quick-zoom:hover .ibg {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.img-hover-zoom--point-zoom img,
.img-hover-zoom--point-zoom .ibg {
    -webkit-transform-origin: 65% 75%;
    transform-origin: 65% 75%;
    -webkit-transition: transform 0.1s, filter 0.5s ease-out;
    -webkit-transition: -webkit-transform 1s, -webkit-filter 0.5s ease-out;
    transition: -webkit-transform 1s, -webkit-filter 0.5s ease-out;
    transition: transform 1s, filter 0.5s ease-out;
    transition: transform 1s, filter 0.5s ease-out, -webkit-transform 1s, -webkit-filter 0.5s ease-out;
}

.img-hover-zoom--point-zoom:hover img,
.img-hover-zoom--point-zoom:hover .ibg {
    -webkit-transform: scale(5);
    transform: scale(5);
}

.img-hover-zoom--zoom-n-rotate img,
.img-hover-zoom--zoom-n-rotate .ibg {
    -webkit-transition: transform 0.5s ease-in-out;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.img-hover-zoom--zoom-n-rotate:hover img,
.img-hover-zoom--zoom-n-rotate:hover .ibg {
    -webkit-transform: scale(2) rotate(25deg);
    transform: scale(2) rotate(25deg);
}

.img-hover-zoom--slowmo img,
.img-hover-zoom--slowmo .ibg {
    -webkit-transform-origin: 50% 65%;
    transform-origin: 50% 65%;
    -webkit-transition: transform 5s, filter 3s ease-in-out;
    -webkit-transition: -webkit-transform 5s, -webkit-filter 3s ease-in-out;
    transition: -webkit-transform 5s, -webkit-filter 3s ease-in-out;
    transition: transform 5s, filter 3s ease-in-out;
    transition: transform 5s, filter 3s ease-in-out, -webkit-transform 5s, -webkit-filter 3s ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Brightness=150%";
    -webkit-filter: brightness(150%);
    filter: brightness(150%);
}

.img-hover-zoom--slowmo:hover img,
.img-hover-zoom--slowmo:hover .ibg {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-transform: scale(3);
    transform: scale(3);
}

.img-hover-zoom--brightness img,
.img-hover-zoom--brightness .ibg {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: transform 1.5s, filter 1s ease-in-out;
    -webkit-transition: -webkit-transform 1.5s, -webkit-filter 1s ease-in-out;
    transition: -webkit-transform 1.5s, -webkit-filter 1s ease-in-out;
    transition: transform 1.5s, filter 1s ease-in-out;
    transition: transform 1.5s, filter 1s ease-in-out, -webkit-transform 1.5s, -webkit-filter 1s ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Brightness=70%";
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
}

.img-hover-zoom--brightness:hover img,
.img-hover-zoom--brightness:hover .ibg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Brightness=100%";
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.img-hover-zoom--zoom-n-pan-h img,
.img-hover-zoom--zoom-n-pan-h .ibg {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition: transform 0.5s ease-in-out;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.img-hover-zoom--zoom-n-pan-h:hover img,
.img-hover-zoom--zoom-n-pan-h:hover .ibg {
    -webkit-transform: scale(1.5) translateX(30%);
    transform: scale(1.5) translateX(30%);
}

.img-hover-zoom--zoom-n-pan-v img,
.img-hover-zoom--zoom-n-pan-v .ibg {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: transform 0.5s ease-in-out;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.img-hover-zoom--zoom-n-pan-v:hover img,
.img-hover-zoom--zoom-n-pan-v:hover .ibg {
    -webkit-transform: scale(1.25) translateY(-30%);
    transform: scale(1.25) translateY(-30%);
}

.img-hover-zoom--blur img,
.img-hover-zoom--blur .ibg {
    -webkit-transition: transform 1s, filter 2s ease-in-out;
    -webkit-transition: -webkit-transform 1s, -webkit-filter 2s ease-in-out;
    transition: -webkit-transform 1s, -webkit-filter 2s ease-in-out;
    transition: transform 1s, filter 2s ease-in-out;
    transition: transform 1s, filter 2s ease-in-out, -webkit-transform 1s, -webkit-filter 2s ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Blur=2px";
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.img-hover-zoom--blur:hover img,
.img-hover-zoom--blur:hover .ibg {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.img-hover-zoom--colorize img,
.img-hover-zoom--colorize .ibg {
    -webkit-transition: transform 0.5s, filter 1.5s ease-in-out;
    -webkit-transition: -webkit-transform 0.5s, -webkit-filter 1.5s ease-in-out;
    transition: -webkit-transform 0.5s, -webkit-filter 1.5s ease-in-out;
    transition: transform 0.5s, filter 1.5s ease-in-out;
    transition: transform 0.5s, filter 1.5s ease-in-out, -webkit-transform 0.5s, -webkit-filter 1.5s ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Grayscale=100%";
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.img-hover-zoom--colorize:hover img,
.img-hover-zoom--colorize:hover .ibg {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0D121A;
    z-index: 1000;
}

#loader,
.preloader__image {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
}

#loader {
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF8C00;
    -o-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #EFEFEF;
    -o-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #050505;
    -o-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media only screen and (min-width: 1200px) {
    .section-with-angle:before {
        position: absolute;
        bottom: 0;
        right: 0;
        content: '';
        display: inline-block;
        z-index: 1;
        border-width: 5vw 50vw 0 0;
        border-color: transparent #fff transparent transparent;
        width: 0;
        height: 0;
        border-style: solid;
    }
    .section-with-angle:after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        display: inline-block;
        z-index: 1;
        border-width: 0 50vw 5vw 0;
        border-color: transparent transparent #fff transparent;
        width: 0;
        height: 0;
        border-style: solid;
    }
}

/** Header **/

.header .container {
    overflow: visible;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

body.admin-bar .header.sticky {
    top: 32px;
}

@media only screen and (max-width: 992px) {
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }
    body.admin-bar .header {
        top: 32px;
    }
}

@media only screen and (max-width: 768px) {
    body.admin-bar .header,
    body.admin-bar .header.sticky {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: fixed !important;
    }
}

.header-top {
    background-color: #1E1E1E;
    padding: 15px 0;
    -o-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 576px) {
    .header-top {
        display: none;
    }
}

.header-bottom {
    padding: 15px 0;
}

.header-bottom__logo {
    width: 270px;
}

.header-bottom-centered .header-bottom__logo {
    margin-bottom: 15px;
}

.header-top p,
.header-top a {
    color: #fff;
}

.header-top__row,
.header-bottom__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-bottom-centered .header-bottom__row {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    .header-bottom-centered .header-bottom__row {
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.header-bottom-reverse .header-bottom__row {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.header-contacts {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-socials-list {
    text-align: right;
}

.header-socials-list__item {
    display: inline-block;
}

.header-socials-list__item:not(:last-child) {
    margin-right: 7px;
}

.header-socials-list__item a {
    font-size: 20px;
}

.header-socials__item:not(:last-child) {
    margin-right: 15px;
}

.header-socials__item a {
    font-size: 1.25em;
}

@media only screen and (max-width: 576px) {
    .header-top p,
    .header-top a {
        font-size: 12px;
    }
    .header-socials-list__item a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 420px) {
    .header-top p,
    .header-top a {
        font-size: 10px;
    }
    .header-socials-list__item a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 380px) {
    .header-socials-list__item a {
        font-size: 12px;
    }
}

@media only screen and (min-width: 992px) {
    body.admin-bar .header-bottom.scrolled {
        top: 32px;
    }
    .header-bottom.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background-color: #181818;
        padding: 7px 0;
        -webkit-box-shadow: 0px 10px 10px 0px rgba(5, 5, 5, 0.2);
        -moz-box-shadow: 0px 10px 10px 0px rgba(5, 5, 5, 0.2);
        box-shadow: 0px 10px 10px 0px rgba(5, 5, 5, 0.2);
        -o-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }
    .header-bottom.scrolled .header-bottom__logo {
        width: 90px;
    }
    .header-bottom-centered.scrolled .header-bottom__logo {
        margin-bottom: 7px;
    }
}

@media only screen and (max-width: 1600px) {
    .header-bottom {
        padding: 7px 0;
    }
    .header-bottom__logo {
        width: 260px;
    }
    .header-bottom.scrolled .header-bottom__logo {
        width: 80px;
    }
    .header-bottom-centered .header-bottom__logo {
        margin-bottom: 7px;
    }
}

@media only screen and (max-width: 992px) {
    body.admin-bar .header-bottom.scrolled {
        top: 46px;
    }
    .header-bottom {
        padding: 5px 0;
        background-color: #181818;
    }
    .header-bottom__logo {
        width: 90%;
    }
}

@media only screen and (max-width: 576px) {
    .header-bottom__logo {
        width: 140px;
    }
}

@media only screen and (max-width: 576px) and (max-height: 500px) {
    .header-bottom__logo {
        width: 140px;
    }
}

.menu {
    position: relative;
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu__list li:not(:last-child) {
    margin-right: 15px;
}

.menu__link {
    position: relative;
    display: block;
    color: #fff;
    padding: 10px 15px;
    font-weight: 400;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid transparent !important;
    border-radius: 5px;
    -o-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 1;
}

.menu__link::before {
    -o-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -o-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.menu__link:hover,
.menu__link:focus {
    color: #fff;
}

.menu__link:hover::before,
.menu__link:focus::before {
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -o-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.menu__link::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0 0 0 0;
    background-color: #EBC359;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: transform 0.3s ease 0s;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

@media only screen and (max-width: 1200px) {
    .menu__list li:not(:last-child) {
        margin-right: 7px;
    }
}

@media only screen and (max-width: 992px) {
    .menu__body {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: auto;
        background-color: #f99b30;
		font-family: 'Roboto';  font-weight:600; font-size:22px;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
        -o-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -o-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -webkit-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }
    .menu__body.active {
        opacity: 1;
        visibility: visible;
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    body.admin-bar .menu__body {
        top: 32px;
    }
    .menu__list {
        -moz-box-flex: column;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .menu__list {
        display: block;
        padding: 60px 0;
        text-align: center;
    }
    .menu__list li {
        padding: 7px 0;
    }
    .menu__list li:not(:last-child) {
        margin-right: 0;
    }
    .menu__list li:after {
        display: block;
        width: 4px;
        height: 4px;
        background-color: #fff;
        right: 50%;
        top: 40px;
        margin: 0 -2px 0 0;
    }
    .menu__link {
        display: inline-block;
        font-size: 20px;
		font-weight:500;
		line-height:0;
		font-family: 'Roboto'; 
		
		
    }
    .icon-menu,
    .icon-menu span {
        -o-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    .icon-menu {
        display: block;
        position: relative;
        width: 34px;
        height: 22px;
        cursor: pointer;
        z-index: 100;
    }
    .icon-menu span {
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }
    .icon-menu span:first-child {
        top: 0;
    }
    .icon-menu span:last-child {
        top: auto;
        bottom: 0;
    }
    .icon-menu.active span {
        -o-transform: scale(0);
        -ms-transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    .icon-menu.active span:first-child {
        top: 7px;
        -o-transform: scale(-45deg);
        -ms-transform: scale(-45deg);
        -moz-transform: scale(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .icon-menu.active span:last-child {
        bottom: 12px;
        -o-transform: scale(45deg);
        -ms-transform: scale(45deg);
        -moz-transform: scale(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/** Submenu **/

.sub-menu {
    position: fixed;
    height: auto;
    background-color: #fff;
    margin-top: 1.75rem;
    padding: 15px;
    border-top: 3px solid transparent;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.sub-menu li {
    padding: 0;
    margin-left: 0;
}

.sub-menu li:first-child {
    margin: 0;
}

.sub-menu li a {
    line-height: 1.25;
}

@media only screen and (min-width: 992px) {
    .sub-menu {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        z-index: 500;
    }
    .sub-menu li {
        display: block;
    }
    .sub-menu li:first-child {
        margin: 0;
    }
    .sub-menu li a {
        color: #050505;
    }
}

@media only screen and (max-width: 992px) {
    .sub-menu {
        display: none;
        position: relative;
        min-width: 300px;
        left: 7px;
        right: 7px;
        width: 97%;
        margin-top: 0;
        padding: 0;
        -o-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }
    .sub-menu li a {
        display: contents;
        color: #050505;
    }
    .sub-menu li a:hover {
        color: #EBC359;
    }
}

.sub-menu .menu__list li {
    padding: 0;
    display: inline-block;
}

li.menu-item.has-submenu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

li.menu-item.has-submenu:hover .submenu {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.menu li.menu-item-has-children:hover>.sub-menu {
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    border-top: 3px solid #EBC359;
}

.menu li.menu-item-has-children:hover>.sub-menu ul.sub-menu {
    right: -30%;
    left: 30%;
}

@media only screen and (max-width: 992px) {
    .menu li.menu-item-has-children:hover>.sub-menu {
        display: block;
        margin-top: 0;
    }
    .menu li.menu-item-has-children:hover>.sub-menu li {
        margin: 0;
    }
    .menu li.menu-item-has-children>.sub-menu li a {
        line-height: 1.6;
        font-size: 14px;
    }
    .menu li.menu-item-has-children:hover>.sub-menu li a {
        display: inline-block;
    }
}

.menu li.menu-item-has-children>a {
    display: inline-block;
}

@media only screen and (max-width: 992px) {
    .menu li.menu-item-has-children {
        margin-right: 0;
        padding-right: 0;
    }
}

.caret {
    display: none;
    cursor: pointer;
    margin-right: -19px;
    color: #fff;
    -o-transition: color 0.3s ease 0s;
    -moz-transition: color 0.3s ease 0s;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

@media only screen and (max-width: 992px) {
    .caret {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
    }
}

/** Footer **/

.footer {
    background-color: #1E1E1E;
    color: #fff;
}

.footer-top {
    padding: 45px 0;
}

.footer-top__heading {
    position: relative;
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-bottom: 15px;
    line-height: 1.25;
}

.footer-top__heading::before {
    content: "";
    display: block;
    position: absolute;
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    bottom: 14px;
    height: 5px;
    left: 0;
    width: 5px;
    z-index: 1;
}

.footer-top__heading::after {
    content: "";
    display: block;
    position: relative;
    width: 150px;
    height: 2px;
    border-top: 1px solid #fff;
    margin-top: 15px;
}

@media only screen and (max-width: 1200px) {
    .footer-top__heading {
        font-size: 24px;
    }
}

.footer-top__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;padding:10px;
}

.footer-top__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 20%;
    flex: 0 1 20%;
}

.footer-top__logo {
    display: block;
    width: 180px;
}

@media only screen and (max-width: 768px) {
    .footer-top__column:first-child {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .footer-top__column {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
        flex: 0 1 30%;
    }
    .footer-top__logo {
        width: 200px;
        margin: 0 auto 30px auto;
    }
}

.contact-information__item {
    line-height: 1.6;
}

.contact-information__item:not(:last-child) {
    margin-bottom: 7px;
}

.contact-information__item a {
    color: #fff
}

.socials-list__item {
    display: inline-block;
    line-height: 1.6;
}

.socials-list__item:not(:last-child) {
    margin-right: 7px;
}

.socials-list__item a {
    font-size: 25px;
    color: #fff
}

.socials-list__item:not(:last-child) {
    margin-right: 15px;
}

.footer-bottom {
    background-color: #181818;
    padding: 15px 0;
    text-align: center;
}

@media only screen and (max-width: 576px) {
    .footer-top__column:nth-child(2),
    .footer-top__column:nth-child(3) {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
        flex: 0 1 48%;
    }
    .footer-top__column:last-child {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        margin-top: 15px;
        text-align: center;
    }
    .footer-top__column:last-child .footer-top__heading::before {
        left: 50%;
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .footer-top__column:last-child .footer-top__heading::after {
        margin: 15px auto 0 auto;
    }
    .footer-top__heading {
        font-size: 16px;
        margin-bottom: 0;
    }
    .contact-information__item,
    .footer-top__paragraph {
        font-size: 12px;
    }
    .footer-bottom__copyright {
        font-size: 12px;
    }
    .socials-list__item a {
        font-size: 20px;
    }
    .socials-list__item:not(:last-child) {
        margin-right: 7px;
    }
}

@media only screen and (max-width: 500px) {
    .socials-list__item a {
        font-size: 24px;
    }
    .socials-list__item:not(:last-child) {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 330px) {
    .footer-top__column:nth-child(2),
    .footer-top__column:nth-child(3) {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        text-align: center;
    }
    .footer-top__column:nth-child(3),
    .footer-top__column:last-child {
        margin-top: 30px;
    }
    .footer-top__column:nth-child(2) .footer-top__heading::before,
    .footer-top__column:nth-child(3) .footer-top__heading::before {
        left: 50%;
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .footer-top__column:nth-child(2) .footer-top__heading::after,
    .footer-top__column:nth-child(3) .footer-top__heading::after {
        margin: 15px auto 0 auto;
    }
    .footer-top__heading {
        font-size: 20px;
    }
    .contact-information__item,
    .footer-top__paragraph {
        font-size: 14px;
    }
}

/** Pages **/

.page-heading {
    position: relative;
    margin: 0 auto;
    z-index: 1;
}

.page-heading__title {
    position: relative;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .page-heading__title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 768px) {
    .page-heading__title {
        font-size: 28px;
    }
}

@media only screen and (max-width: 576px) {
    .page-heading__title {
        font-size: 24px;
    }
}

.breadcrumbs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumb {
    list-style: none;
    font-size: 18px;
    text-decoration: none;
    line-height: 1.25;
}

.breadcrumb,
.breadcrumb a {
    color: #fff;
}

@media only screen and (max-width: 576px) {
    .breadcrumb,
    .breadcrumb a {
        font-size: 14px;
    }
}

.breadcrumb+.breadcrumb {
    padding-left: 7px;
}

.breadcrumb+.breadcrumb::before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding: 0 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.page-content:not(.page-content-fullwidth) {
    padding: 90px 0;
}

@media only screen and (max-width: 992px) {
    .page-content:not(.page-content-fullwidth) {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 576px) {
    .page-content:not(.page-content-fullwidth) {
        padding: 30px 0;
    }
}

.page-content__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-content__row.sidebar-left {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.content-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 66%;
    flex: 0 1 66%;
}

.content-box-fullwidth,
.content-box.sidebar-none {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 31%;
    flex: 0 1 31%;
}

.sidebar.sidebar-none {
    display: none;
}

@media only screen and (max-width: 768px) {
    .content-box,
    .sidebar {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
}

.page-content__row.full-width .content-box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.page-content__row.left-sidebar {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/** Blog Item **/

.blog-item {
    border-bottom: 1px solid #E1E1E1;
    margin-top: 30px;
    padding-bottom: 30px;
}

.blog-item:first-child {
    margin-top: 0;
}

.blog-item:last-child {
    border-bottom: none;
}

.blog-item-heading__title {
    position: relative;
    font-weight: 600;
    font-size: 28px;
    margin: 7px 0;
}

.blog-item-heading__title,
.blog-item-heading__title a {
    color: #3C3C3C !important;
}

.blog-item-heading__title span {
    display: inline-block;
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
    margin-right: 8px;
    border-radius: 10px;
}

.blog-item-heading__meta {
    margin-bottom: 15px;
}

.blog-item-heading__meta,
.blog-item-heading__meta a {
    color: #3C3C3C !important;
}

time.updated {
    display: none;
}

.blog-item-content {
    color: #3C3C3C;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.blog-item-content__btn {
    color: #3C3C3C;
    margin: 15px 0 0;
    width: auto;
}

.blog-item-content__btn:hover {
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .blog-item-heading__title {
        font-size: 20px;
    }
    .blog-item-heading__meta,
    .blog-item-heading__meta a {
        font-size: 12px;
    }
    .blog-item-content {
        font-size: 14px;
    }
}

.blog-item__image {
    margin-bottom: 15px;
}

.post-navigation {
    overflow: hidden;
    padding: 60px 0;
    border-top: 1px solid #ececee;
    border-bottom: 1px solid #ececee;
}

.post-navigation a {
    color: #fff;
    font-style: italic;
    font-size: 16px;
}

.post-navigation .nav-next a .nav-content {
    padding-right: 7px;
}

.post-navigation .nav-previous a .nav-content {
    padding-left: 7px;
}

.post-navigation .nav-previous {
    text-align: left;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-links {
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.nav-previous,
.nav-next {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 49%;
    flex: 0 1 49%;
}

/** Comment Form **/

.comments-area {
    margin-top: 30px;
}

.comment-reply-title {
    font-weight: 600;
    font-size: 28px;
}

p.comment-notes {
    display: none;
}

p.comment-form-author,
p.comment-form-email,
p.comment-form-url,
p.comment-form-comment {
    text-align: center;
}

@media only screen and (max-width: 576px) {
    p.comment-form-author,
    p.comment-form-email,
    p.comment-form-url,
    p.comment-form-comment {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        padding: 0;
    }
}

.comment-form {
    padding: 20px 0;
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}

.comment-form p {
    margin-bottom: 15px;
}

.comment-notes,
.comment-form-comment,
.form-submit {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.comment-form-comment,
.form-submit {
    order: 1;
}

.comment-form textarea {
    color: #3B4855;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    height: 180px;
    width: 100%;
    padding: 15px;
    margin-top: 7px;
    resize: none;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.33333%;
    flex: 0 1 33.33333%;
}

.comment-form-author {
    padding: 0 15px 0 0;
}

.comment-form input:not([type='checkbox']) {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    padding: 15px;
    color: #3B4855;
    font-weight: 500;
    margin-top: 5px;
}

.comment-form-email {
    padding: 0 15px;
}

.comment-form-url {
    padding: 0 0 0 15px;
}

.form-submit input[type='submit'] {
    width: auto;
    height: 60px;
    padding: 10px 20px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

.form-submit {
    margin-bottom: 0 !important;
}

.comments-title {
    margin-bottom: 15px;
}

.comment-list .comment {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.comment-list .children {
    width: 100%;
    padding: 0 30px
}

.comment-list .comment.parent:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px dashed #e1e1e1;
    margin-bottom: 15px;
}

.comment-metadata .edit-link {
    display: block;
}

.comments-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.comment-body {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-bottom: 15px;
}

@media only screen and (max-width: 576px) {
    .comment-body {
        -moz-box-flex: column;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .comment-metadata {
        margin-bottom: 15px
    }
    .comment-body .reply {
        margin-top: 15px;
    }
}

.comment-meta {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 27%;
    flex: 0 1 27%;
}

.comment-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
}

.reply {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
    text-align: right;
    align-self: flex-end;
}

#cancel-comment-reply-link {
    display: block
}

.comment-author.vcard {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    margin-bottom: 7px;
}

.comment-author.vcard a.url,
.comment-author.vcard span.says {
    margin-left: 7px;
}

.comment-author.vcard img {
    margin-right: 7px;
}

.comment-author.vcard img,
.comment-author.vcard .fn {
    vertical-align: middle;
}

.comment-content {
    line-height: 1.6;
    padding: 0 15px;
}

.required-field-message {
    color: #fff;
    font-weight: 600;
}

/** Post & Page Typography **/

.page-content h2,
.blog-item h2,
.page-content h3,
.blog-item h3,
.page-content h4,
.blog-item h4,
.page-content h5,
.blog-item h5,
.page-content h6,
.blog-item h6 {
    font-weight: 600;
    margin: 30px 0 15px;
}

.page-content h2:first-child,
.blog-item h2:first-child,
.page-content h3:first-child,
.blog-item h3:first-child,
.page-content h4:first-child,
.blog-item h4:first-child,
.page-content h5:first-child,
.blog-item h5:first-child,
.page-content h6:first-child,
.blog-item h6:first-child {
    margin: 0 0 15px;
}

.page-content .elementor h2,
.page-content .elementor h3,
.page-content .elementor h4,
.page-content .elementor h5,
.page-content .elementor h6 {
    font-weight: unset;
    margin: unset;
}

.page-content h2:first-child,
.blog-item h2:first-child,
.page-content h3:first-child,
.blog-item h3:first-child,
.page-content h4:first-child,
.blog-item h4:first-child,
.page-content h5:first-child,
.blog-item h5:first-child,
.page-content h6:first-child,
.blog-item h6:first-child {
    margin: 0 0 15px;
}

.page-content .elementor h2:first-child,
.page-content .elementor h3:first-child,
.page-content .elementor h4:first-child,
.page-content .elementor h5:first-child,
.page-content .elementor h6:first-child {
    margin: unset;
}

.blog-item h2 {
    font-size: 24px;
}

.blog-item h3 {
    font-size: 20px;
}

.blog-item h4 {
    font-size: 18px;
}

.blog-item h5 {
    font-size: 17px;
}

.blog-item h6 {
    font-size: 16px;
}

.blog-item p {
    margin-bottom: 15px;
}

.blog-item ul li {
    list-style: inside;
    padding-left: 15px;
}

.page-content .wp-block-image {
    margin: 15px 0;
}

.page-content .wp-block-columns {
    margin: 15px 0;
}

.page-content .wp-block-columns .wp-block-image {
    margin: 0;
}

@media (min-width: 782px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
        margin-left: var(--wp--style--block-gap, 15px);
    }
}

.page-content ul:not(.team-card__socials) li {
    list-style: inside;
    padding-left: 15px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.page-content ul.elementor-editor-element-settings li {
    list-style: none;
    padding-left: 0;
    line-height: inherit;
    margin-bottom: 0;
}

.wp-block-quote {
    overflow-wrap: break-word;
}

.wp-block-quote {
    position: relative;
    padding: 15px 15px 15px 30px;
    font-size: 1.25em;
    font-style: italic;
    background-color: #ECEEED;
    color: #3c3c3c;
    margin-bottom: 16px;
}

.wp-block-quote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 10px;
}

@media only screen and (max-width: 781px) {
    .wp-block-column:not(:first-child) {
        margin-top: 15px;
    }
}

/* Pagination */

.pagination-block {
    margin-top: 30px;
}

.pagination-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

@media only screen and (max-width: 768px) {
    .pagination-content {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
    }
}

.pagination-item {
    color: #fff !important;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    -o-transition: background-color .3s ease 0s;
    -moz-transition: background-color .3s ease 0s;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

/** Sidebar and Widgets **/

@media only screen and (max-width: 768px) {
    .sidebar {
        margin-top: 30px;
        text-align: center;
    }
}

.widget {
    margin-bottom: 15px;
    padding: 15px 0;
}

.widget:first-child {
    padding-top: 0;
}

.wp-block-search__label {
    display: none;
}

.search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    max-width: 100%;
}

.search-form label,
.search-form .search-field {
    width: 100%;
}

.wp-block-search__input,
.search-field {
    position: relative;
    border-radius: 10px 0 0 10px;
    border: solid 0.5px #EBC359;
    padding: 15px;
}

.wp-block-search__button,
.search-submit {
    border: solid 1px #EBC359;
    border-radius: 0 10px 10px 0;
    background-color: #EBC359;
    color: #FFFFFF;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
}

.wp-block-group__inner-container h2 {
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 35px;
    text-transform: capitalize;
}

.widget_block ul li {
    list-style: none;
    padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
    overflow: hidden;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
    list-style: none !important;
    padding-left: 0 !important;
    line-height: inherit !important;
    overflow: hidden;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:not(:last-child) {
    margin-bottom: 15px;
}

.wp-block-group__inner-container h2,
.wp-block-latest-posts.wp-block-latest-posts__list li,
.wp-block-latest-posts.wp-block-latest-posts__list a {
    color: #3C3C3C;
}

.wp-block-latest-posts.wp-block-latest-posts__list li a {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 7px;
}

.wp-block-latest-posts__featured-image.alignleft {
    margin-right: 15px !important;
}

@media only screen and (max-width: 1200px) {
    .wp-block-latest-posts.wp-block-latest-posts__list li a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .wp-block-latest-posts__featured-image.alignleft {
        float: none;
    }
}

.tag-cloud-link {
    display: inline-block;
    padding: 7px 15px 7px 15px;
    background-color: transparent;
    border-radius: 15px;
    margin-right: 0;
    margin-top: 5px;
    cursor: pointer;
    -o-transition: background-color .3s ease 0s;
    -moz-transition: background-color .3s ease 0s;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.wp-block-categories-list li {
    font-size: 14px;
    line-height: 1.6;
    list-style: inside;
}

.wp-block-archives-list li {
    line-height: 1.6;
}

/** Not found & 404 Page **/

.not-found h2 {
    font-size: 30px;
}

.not-found__content p {
    margin-bottom: 15px;
}

.error-404-page__heading {
    text-align: center;
    margin-bottom: 30px;
}

.error-404-page__heading h2 {
    font-size: 50px;
}

@media only screen and (max-width: 768px) {
    .error-404-page__heading h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 576px) {
    .error-404-page__heading h2 {
        font-size: 30px;
    }
}

/** Elementor Changes **/

.elementor-image-carousel-wrapper .swiper-pagination {
    margin-top: 30px;
}

/** Essentials Addons Styles Changes **/

.eael-post-grid .eael-grid-post-holder-inner {
    position: relative;
}

.eael-post-grid .eael-entry-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
}

.eael-post-grid .eael-grid-post-holder-inner:hover .eael-entry-wrapper {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.eael-grid-post-holder-inner:hover .eael-entry-overlay.zoom-in {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.eael-contact-form-7-button-align-center .eael-contact-form-7 .wpcf7-form p {
    width: 100%
}

/** Other Styles **/

.form-group {
    position: relative;
}

.form-group i,
body:not(.home) .form-group i {
    position: absolute;
    top: 20px;
    left: 10px;
    color: #050505;
    z-index: 1;
}

select.wpcf7-form-control {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #FFFFFF00;
    padding: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;
}

select.wpcf7-form-control:focus {
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #EBC359;
}

.eael-contact-form-7-button-align-center .eael-contact-form-7 .wpcf7-form p:nth-last-of-type(1) {
    text-align: center;
}

input[type="submit"].wpcf7-form-control {
    cursor: pointer;
}

.wpcf7-spinner {
    position: relative;
    display: block;
    margin: 0 auto;
}

.box{background-color: #000;}