:root {
    --black-20: #D7D7D7;
    --black-40: #949498;
    --black-70: #606060;
    --black-100: #323232;
    --black-200: #171717;
    --red-100: #BE212F;
    --beige: #F2F0EA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Karla;
    font-size: 16px;
    color: var(--black-70);
}

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

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    border: 0px;
    outline: 0px;
}

a,
button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black-100);
    font-weight: 700;
}

h1 {
    font-size: 64px;
    line-height: 69.76px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h1.entry-title {
    text-align: center;
}


p {
    margin: 0px 0px 10px;
}

.title {
    font-weight: 700;
    text-transform: uppercase;
    margin: 0px 0px 42px;
}

.bg-grey {
    background: var(--beige);
}

.sticky-top {
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    position: -webkit-sticky !important;
    position: sticky !important;
}

.header-area {
    padding: 18px 0px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 999;
    position: relative;
}

.scrolling.header-area {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px -1px, rgba(0, 0, 0, 0.06) 0 2px 4px -1px;
    opacity: 0.96;
}

.main-menu {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    /*margin: auto;*/
}

.main-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-menu ul li a {
    color: var(--black-100);
    text-decoration: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin: 0px 12px;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: var(--red-100);
}

.header-right .btn-danger {
    margin-left: auto;
}

.btn-danger {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    background: var(--red-100);
    color: rgb(255, 255, 255);
    padding: 15px 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-appearance: none;
    border: 0px;
}

.btn-danger:hover {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.slicknav_menu {
    background: transparent;
}

.slicknav_btn {
    background: var(--red-100);
}

.slicknav_nav {
    position: absolute;
    background: #fff;
    right: 0;
    top: 59px;
    min-width: 300px;
    padding: 10px 0;
}

.slicknav_nav a {
    color: var(--black-100);
    text-align: right;
}

.scrolling .slicknav_nav {
    top: 54px;
}

.popup {
    overflow: hidden;
}

.popup-area {
    position: fixed;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(153, 153, 153, 0.94);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    padding: 40px 0;
}

.popup .popup-area {
    z-index: 9999;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.popup-body {
    margin: auto;
    background: rgb(255, 255, 255);
    padding: 60px;
    position: relative;
    max-width: 774px;
}

.close-popup {
    background: transparent;
    border: 0px;
    height: 40px;
    width: 40px;
    padding: 0px;
    position: absolute;
    right: 20px;
    z-index: 3;
    top: 20px;
}

.popup-body .contact-form {
    padding: 0px;
}

.popup-body .title {
    margin: 0px 0px 15px;
}

.popup-body p {
    color: var(--black-100);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0px 0px 30px;
}

.popup-body a {
    color: var(--red-100);
    text-decoration: none;
    font-weight: 700;
}

.note p {
    margin: 0px 0px 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: var(--black-70);
}

.note p a {
    font-weight: 500;
}

.hero-area {
    position: relative;
	background: #e3e9e5;
}

.hero-image img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center right;
    object-position: center right;
}

/*

.hero-image:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgb(0, 0, 0) -3.1%, rgba(2, 2, 2, 0) 104.03%);
    background: linear-gradient(90deg, rgb(0, 0, 0) -3.1%, rgba(2, 2, 2, 0) 104.03%);
    z-index: 1;
}

*/

.hero {
    min-height: 652px;
    position: relative;
    z-index: 9;
    padding: 60px 0px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 691px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
	width: 50%;
    transition: 0.3s height;
}

.hero h1 {
    font-style: normal;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    margin: 0px 0px 16px;
    color: #323232;
}

.hero p {
    display: flex;
    gap: 24px;
	align-items: center;
}

.hero p img {
    height: unset;
	width: unset;
    max-width: unset;
}

.section-area {
    padding: 100px 0;
    min-height: 50vh;
}

.page-template-default .section-area{
    padding: 30px 0;
}

.section-image img {
    width: 100%;
}

.section-text h4 {
    font-weight: 500;
    margin: 0px 0px 12px;
}

.section-text p {
    margin: 0px 0px 30px;
}

.read-more {
    font-weight: 700;
    color: var(--red-100);
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.read-more img {
    margin-left: 7px;
    position: relative;
    top: 1px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.read-more:hover img {
    margin-left: 15px;
}

.list {
    margin: 0px 0px 32px;
    padding: 0px;
    list-style: none;
}

.list p {
    margin: 0px 0px 20px;
}

.list h4 {
    margin: 0px 0px 8px;
}

.list li {
    position: relative;
    padding-left: 36px;
}

.list li:before {
    content: "";
    background: url("../img/check.svg") no-repeat scroll;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 0px;
}

.list {
    margin: 0px 0px 32px;
    padding: 0px;
    list-style: none;
}

.list p {
    margin: 0px 0px 20px;
}

.list h4 {
    margin: 0px 0px 8px;
}

.list li {
    position: relative;
    padding-left: 36px;
}

.brand-text h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0px 0px 12px;
}

.brand-text h3 img {
    margin-right: 10px;
}

.brand-text p {
    margin-bottom: 20px;
	line-height: 20px;
}

.section-text p a{
	color: var(--red-100);
	text-decoration: none;
}


.brand-hr {
    border-color: var(--black-20);
    border-width: 0px 0px 1px;
    margin: 40px 0px;
}

.contact-form {
    background: rgb(255, 255, 255);
    padding: 60px;
}


#contact .contact-form {
	background: var(--beige);
}

.single-input {
    margin: 0px 0px 20px;
    transition: margin 0.3s ease;
}

.single-input.wpcf7invalid{
    margin: 0px 0px 30px;
}

.single-input label {
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: var(--black-100);
    margin: 0px 0px 5px;
    display: block;
}

.single-input input::-webkit-outer-spin-button,
.single-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-input input[type=number] {
    -moz-appearance: textfield;
}

.input-icon {
    position: relative;
    border: 1px solid var(--black-20);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
	background: white;
}

.wpcf7invalid .input-icon{
    border: 1px solid #FF2929;
}

.input-icon input,
.input-icon textarea,
.input-icon select {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    border: 0px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: var(--black-70);
    margin-left: 12px;
    font-family: Karla;
}

.contact-form .btn-danger {
    width: 100%;
    cursor: pointer;
}

.custom-check {
    margin: 0px 0px 20px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.custom-check input {
    display: none;
}

.custom-check label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.custom-check label:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid var(--black-20);
    position: absolute;
    left: 0px;
    top: -3px;
}

.custom-check input:checked~span:after,
.custom-check input:checked~label:after {
    content: "";
    background: var(--red-100);
    position: absolute;
    width: 14px;
    height: 14px;
    left: 4px;
    top: 1px;
}

.contact-author {
    text-align: center;
    position: relative;
    height: 100%;
}

.contact-author img {
    max-width: 300px;
}

.contact-author h3 {
    margin: 15px 0px 5px;
}

.footer-area {
    background: var(--black-200);
    padding: 70px 0px 46px;
    color: var(--black-40);
}

.footer-logo {
    margin: 0px 0px 15px;
}

.footer-area p {
    line-height: 21px;
}

.social {
    margin: 20px 0px 0px;
    padding: 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social li a {
    width: 32px;
    height: 32px;
    background: var(--black-100);
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	margin-bottom: 10px;
}

.social li a:hover {
    background: var(--red-100);
}

.social li a img {
    max-width: 15px;
    max-height: 15px;
}

.widget-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.widget-menu ul li a {
    font-weight: 300;
    line-height: 24px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin: 0px 20px;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.widget-menu ul li a:hover {
    color: var(--red-100);
}

.newsletter h5 {
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    line-height: 18px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    margin: 0px 0px 5px;
}

.newsletter p {
    font-size: 12px;
}

.newsletter .bottom-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.newsletter form input {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--black-70);
    padding: 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    border: 0px;
    width: 50%;
}


.newsletter input[type="submit"] {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    background: var(--red-100);
    color: rgb(255, 255, 255);
    border: 0px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    min-height: 50px;
    max-width: 129px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.newsletter input[type="submit"]:hover {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.footer-area hr {
    border-width: 1px 0px 0px;
    border-style: solid;
    border-color: var(--black-100);
    margin: 70px 0px 25px;
}

.copyright {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.footer-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-menu ul li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: var(--black-40);
    text-decoration: none;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    margin-left: 20px;
}

.footer-menu ul li a:hover {
    color: var(--red-100);
}

.footer-menu ul li:first-child a {
    margin-left: 0px;
}

#error-404 {
    text-align: center;
}

#error-404 .btn-danger {
    margin: 24px auto;
}

#error-404 .title{
    margin: 0 0 12px;
}

#error-404 .section-image img {
    max-height: 30vh;
    width: auto;
}

.wpcf7-spinner{
    display: none;
}


.hamburger {
    width: 24px;
    height: 20px;
    cursor: pointer;
    position: relative;
    border: 0;
    background: transparent;
    display: block;
    margin-left: 20px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    position: absolute;
    top: 0;
    left: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.hamburger span:nth-child(3) {
    top: auto;
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 0px);
    position: absolute;
    top: 8px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(-2px, 5px);
    position: absolute;
    top: 5px;
}

.mobileSidebar {
    position: fixed;
    left: -100%;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 20px;
    background: white;
    width: 100%;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px -1px, rgba(0, 0, 0, 0.06) 0 2px 4px -1px;
}

.sticky-top .mobileSidebar{
    top: 40px;
}

.sticky-top.scrolling .mobileSidebar{

}

.mobileSidebar.show {
    left: 0;
}

.mobileSidebar li {
    list-style: none;
    text-align: center;
    margin: 10px 0;
}

.mobileSidebar li a{
    color: var(--black-100);
    text-decoration: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.wpcf7-form-control-wrap{
    width: 100%;
    display: flex;
}
.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea{
    width: 97%;
}

span.wpcf7-form-control-wrap.recaptcha {
    margin-bottom: 20px;
    overflow: hidden;
    display: block;
}

span#checkbox span.wpcf7-list-item-label {
    line-height: 20px;
}

header.entry-header {
    margin-bottom: 20px;
}

.wpcf7-not-valid-tip{
    bottom: -25px;
    position: absolute;
    /*color: #FF2929;*/
    color: var(--red-100);
}

.contact-form .wpcf7-not-valid-tip{
    position: absolute;
    bottom: -200%;
    left: -32px;
}

.wpcf7-form-control-wrap ~ .wpcf7-not-valid{
    margin-bottom: 30px;
}

.contact-form .wpcf7-form-control-wrap{
    flex-direction: column;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    color: rgb(255, 255, 255);
    padding-left: 0;
    margin-left: 0;
    margin-top: 5px;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output{
    color: #606060;
}

.wpcf7 form.invalid .wpcf7-response-output{
    display: none;
}

.wpcf7 form.spam .wpcf7-response-output{
    /*color: #FF2929;*/
    color: var(--red-100);
    border: unset;
    padding-left: 0;
    margin-left: 0;
    padding-top: 0;
    margin-top: 10px;
}

.align-items-right {
    justify-content: flex-end;
}

.mobile-tablet{
	display: none;
}

.wpcf7 textarea {
  resize: none;
}

.page-template-default h1{
    font-size: 34px;
    margin-top: 20px;
}
.page-template-default h2{
    font-size: 28px;
    margin: 17px 0 12px;
}
.page-template-default h3{
    font-size: 22px;
    margin: 14px 0 10px;
}
.page-template-default h4{
    font-size: 18px;
    margin: 11px 0 7px;
	font-weight: 700;
}

.page-template-default .section-text p{
    margin: 0 0 15px;
	font-size: 14px;
}

.page-template-default ul,
.page-template-default ol{
	margin: 20px 0 30px 30px;
}

.page-template-default .section-area a{
	font-weight: 700;
    color: var(--red-100);
}

.page-template-default table {
    margin-bottom: 7.5px;
}

.page-template-default th, 
.page-template-default td {
    text-align: left;
    border: 1px solid #eeeeee;
    padding: 10px;
}

.page-template-default .wp-block-table thead{
	border-bottom: unset;
}


.row.footer-middle > div {
    margin-bottom: 20px;
}

.page-template-default article{
	word-wrap: break-word;
}
