/* 
Theme Name: Hedonism
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
:root {
    --main-color: #321f14;
    --white-color: #fdfbf8;
    --border-color: #e4ded8;
    --bg-color: #f3eee9;
    
  }
@font-face {
    font-family: "Avenir Book";
    src: url("fonts/Avenir-Book.woff2");
  }
@font-face {
    font-family: "Avenir Roman";
    src: url("fonts/Avenir-Roman.woff2");
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html, body {
    height: 100%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: "Avenir Roman";
	line-height: 24px;
    letter-spacing: 1.44px;
    font-size: 12px;
    color: var(--main-color);
    background-color: var(--bg-color);
}
a {
    text-decoration: none;
    color: var(--main-color)
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
.fixed-header {
    padding-top: 149px;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.footer-bottom {
    background-color: transparent;
    color: var(--main-color);
    padding: 24px 0;
}
img {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}
.d-fx {
    display: flex;
}
.jc-sb  {
    justify-content: space-between;
}
.jc-s {
    justify-content: start;
}
.jc-e {
    justify-content: end;
}
.jc-c {
    justify-content: center;
}
.ai-s {
    align-items: start;
}
.ai-c {
    align-items: center;
}
.ai-e {
    align-items: end;
}
.ttu {
    text-transform: uppercase;
}
a.tdu-on-hover {
    position: relative;
}
a.tdu-on-hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: transparent;
    left: 0;
    bottom: -4px;
    position: absolute;
}
a.tdu-on-hover:hover::after {
    background-color: var(--main-color);
}

.tdn-on-hover,ul li a.active {
    position: relative;
}
.tdn-on-hover::after,ul li a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color)!important;
    left: 0;
    bottom: -4px;
    position: absolute;
}
.tdn-on-hover:hover::after,
ul li a.active:hover::after {
    background: transparent!important;
}


.footer-bottom ul li a.active {
    position: relative;
}
.footer-bottom ul li a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color)!important;
    left: 0;
    bottom: -4px;
    position: absolute;
}
.footer-bottom ul li a.active:hover::after {
    background: transparent!important;
}

.top-footer ul li a {
    position: relative;
}
.top-footer ul li a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: transparent;
    left: 0;
    bottom: -4px;
    position: absolute;
}
.top-footer ul li a:hover::after {
    background-color: var(--main-color);
}

.footer-bottom ul li a {
    position: relative;
}
.footer-bottom ul li a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: transparent;
    left: 0;
    bottom: -4px;
    position: absolute;
}
.footer-bottom ul li a:hover::after {
    background-color: var(--main-color);
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.container {
    padding: 0 40px;
}
header {
    padding: 26px 0;
    position: relative;
    z-index: 1111111111;
}
.page-button + .page-button {
    margin-top: 24px!important;
}
.header-container > div {
    width: 33.33%;
}
.logo-img {
    width: 177px;
}
.footer {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}
footer.top-footer.footer nav ul {
    gap: 48px;
}

.right-footer ul {
    gap: 38px;
}


.project-item {
    width: 25%;
    background-color: var(--white-color);
}
.project-item img {
    display: block;
}
main.main {
    padding-top: 44px;
    padding-bottom: 73px;
    min-height: calc(100vh - 145px - 148.5px);
}
span.pr-title {
    display: block;
    padding: 25px 20px 23px;
}
span.show-on-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: block;
    /* padding: 100px; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
span.show-on-hover img {
    max-width: 50%;
}
span.project-images {
    position: relative;
    display: block;
}
.project-item:hover span.show-on-hover {
    opacity: 1;
}
.page-image {
    padding-top: 48px;
}
.page-image img {
    max-width: 920px;
    display: block;
    margin: 0 auto;
    height: auto;
}
.page-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding-top: 72px;
    letter-spacing: 0.84px;
    font-family: 'Avenir Book';
    font-size: 14px;
}
.page-button {
    text-align: center;
    text-transform: uppercase;
    margin-top: 49px;
}
main.main.page-main {
    padding-bottom: 90px;
}
.press-items {
    flex-wrap: wrap;
    padding-top: 48px;
    gap: 49px 0;
}
span.press-title {
    text-transform: uppercase;
    margin-top: 25px;
}
a.press-item span {
    display: block;
}
span.press-image img {
    display: block;
    width: 100%;
    height: auto;
}
.press-item {
    width: calc(25% - 30px);
}
.header.fixed {
    top:0;
}
.projects {
    gap: 40px;
}
a.project-item + a.project-item .show-on-hover img {
    max-width: 220px !important;
    width: 220px !important;
}
em {
    font-style: italic;
}
.swiper img {
    width: 100%;
    display: block;
    padding: 0 80px;
}
.img-block {
    margin-bottom: 102px;
}
.text-block {
    max-width: 760px;
    margin: 0 auto 102px;
    padding: 0 35px;
}
.white_block_item.block-width-11 {
    max-width: 760px;
    width: 100%;
}
.text-block *,
.white_block *,
.txt-b * {
    letter-spacing: 0.84px;
    font-size: 14px;
    line-height: 24px;
}
.text-block a::after,
.white_block a::after,
.txt-b a::after {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 1px;
    background-color: var(--main-color);
    left: 0;
    bottom: -3px;
    opacity: 1;
    transition: opacity .3s ease;
}
.text-block a:hover::after,
.white_block a:hover::after,
.txt-b a:hover::after {
    opacity: 0;
    transition: opacity .3s ease;
}
.txt-title {
    font-size: 12px;
}
.white_block {
    background-color: #fdfbf8;
    text-align: center;
    padding: 60px 40px 90px;
}
.white_block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    justify-content: center;
}
.white_block_title {
    width: 100%;
    margin-bottom: 40px;
}
.white_block_item {
    width: calc((100% / 3) - 20px);
}

.text-block a,
.white_block a,
.txt-b a {
    position: relative;
}
.img-text-block > div {
    width: 50%;
}
.sub-pages {
    max-width: calc(100% - 160px);
    margin: 0 auto;
    padding: 30px 0 40px;
}
.sub-pages ul {
    display: flex;
    gap: 0;
    justify-content: center;
    gap: 40px;
}

.sub-pages li a {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.44px;
}
.img-text-block {
    display: flex;
    justify-content: center;
    background-color: #fdfbf8;
}
.sub-pages li {
    position: relative;
}
.sub-pages li::after {
    content:'';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .3s ease;
}
.sub-pages li:hover::after {
    opacity: 1;
    transition: opacity .3s ease;
}
.img-text-block img {
    display: block;
    width: 100%;
}
.txt-title {
    text-align: center;
    text-transform: uppercase;
}
.txt-b {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.img-text-block {
    margin-bottom: 13px;
}
.img-text-block {
    max-width: calc(100% - 80px);
    margin: 0 auto 13px;
}
.faq-btn {
    text-align: center;
}
.fs-12 {
    font-size: 12px;
}
.popup-form {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 244, 240, .8);
    z-index: 11;
    top: 0;
    left: 0;
    display: none;
}
.popup-form.popup-form1 {
    z-index: 9999999999;
}
input.wpcf7-form-control.wpcf7-submit {
    font-style: normal !important;
    text-transform: uppercase;
    background-color: transparent;
    padding-bottom: 4px;
    margin-top: 47px;
    letter-spacing: 1.44px;
    display: inline-block;
    width: auto;
    cursor: pointer;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    border-color: transparent;
}
.close-btn {
    width: 9px;
    height: 9px;
    position:absolute;
    right: 10px;
    top: 10px;
    background-image: url(https://licensing.hedonism.group/wp-content/themes/hedonism/img/close-ic.png);
    cursor: pointer;
}
.form-inner {
    width: 640px;
    background-color: #fdfcfb;
    z-index: 1111;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 24px 40px 46px 40px;
}
.form-inner input {
    font-size: 12px;
    border: none;
    border-bottom: 1px solid #321f14;
    font-style: italic;
}
.row1 span {
    width: calc(50% - 20px);
}
.form-title {
    text-align: center;
    text-transform: uppercase;
}
.form-title {
    margin-bottom: 48px;
}
.row1 p {
    display: flex;
    flex-wrap: wrap;
    gap: 31px 40px;
}
input::placeholder {
    font-size: 12px;
    color: #321f14;
}

.form-inner input {
    outline: none;
    font-size: 12px;
    border: none;
    border-bottom: 1px solid #321f14;
    font-style: italic;
    padding-bottom: 9px;
    width: 100%;
    padding: 0 0 10px 0;
    letter-spacing: 0.72px;
}
.interest p {
    text-align: center;
    padding-top: 10px;
}
.interest p {
    text-align: center;
    padding-top: 10px;
    letter-spacing: 0.72px;
    padding-top: 54px;
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    margin-right: 0px;
}
span.wpcf7-list-item label {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px !important;
}
span.wpcf7-list-item-label {
    letter-spacing: 0.72px;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}
span.wpcf7-form-control.wpcf7-checkbox {
    justify-content: center;
    display: flex;
    padding-top: 23px;
    gap: 60px;
}
.notes {
    text-align: center;
    letter-spacing: 0.72px;
    padding-top: 49px;
    margin-bottom: 24px;
}
input.wpcf7-form-control.wpcf7-submit {
    font-style: normal !important;
}
input.wpcf7-form-control.wpcf7-submit {
    font-style: normal !important;
    text-transform: uppercase;
    background-color: transparent;
    padding-bottom: 4px;
    margin-top: 47px;
    letter-spacing: 1.44px;
    display: inline-block;
    width: auto;
}
.wpcf7-list-item {
    margin: 0!important;
}
span.wpcf7-spinner {
    position: absolute;
}
.button-wrap {
    text-align: center;
}

.popup-item .ttu {
    text-transform: uppercase;
    letter-spacing: 1.44px;
    font-family: "Avenir Roman";
    margin-bottom: 20px;
}
.popup-item p {
    letter-spacing: 0.72px;
    font-family: "Avenir Book";
    line-height: 24px;
}
.popup-items {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 70px;
}
.popup-item {
    width: 230px;
}
.popup-form2 .form-inner {
    padding-bottom: 71px;
}
.popup-item .ttu {
    text-transform: uppercase;
    letter-spacing: 1.44px;
    font-family: "Avenir Roman";
    margin-bottom: 12px;
}
.popup-item p a {
    position: relative;
}
.popup-item p a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #111;
    position: absolute;
    left: 0;
    bottom: -4px;
}
.popup-form3 {
    display: block;
    position: static;
    background-color: transparent;
}
input#wp-submit {
    font-style: normal;
    text-transform: uppercase;
    width: auto;
    padding-bottom: 2px;
    margin: 0 auto;
    display: block;
    letter-spacing: 1.44px;
    margin-top: 17px;
}
input#wp-submit:hover {
    cursor: pointer;
    border-color: transparent;
}
form#loginform {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
form#loginform input {
    background-color: transparent;
    font-family: 'Avenir-Book';
}
form#loginform > p {
    width: calc(50% - 20px);
}
p.login-submit {
    width: 100% !important;
}
form#loginform .note {
    text-align: center;
    letter-spacing: 0.72px;
    font-family: 'Avenir-Book';
}
.popup-form.popup-form3 .note {
    text-align: center;
    letter-spacing: 0.72px;
    font-family: 'Avenir-Book';
    margin-top: 40px;
}
.popup-form.popup-form3 .note {
    text-align: center;
    letter-spacing: 0.72px;
    font-family: 'Avenir-Book';
    margin-top: 25px;
}
.popup-form.popup-form3 {
    height: auto;
}
.note a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -3px;
    opacity: 0;
}
.note a:hover::after {
    opacity: 1;
}

.form-inner input {
    background-color: transparent;
}
.wpcf7-response-output {
    border: none !important;
    letter-spacing: 0.72px;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center;
    padding-top: 30px !important;
    font-family: 'Avenir-Book';
}
.row1 input {
    font-family: 'Avenir-Book';
}
input.wpcf7-form-control.wpcf7-text {
    font-family: 'Avenir-Book';
}
.interest, .notes,span.wpcf7-list-item-label {
    font-family: "Avenir-Book";
}
.note a {
    position: relative;
}
.img-text-block img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.swiper img {
    width: 100%;
    display: block;
    padding: 0 80px;
    aspect-ratio: 20 / 9;
    object-fit: cover;
}
.white_block_title {
    letter-spacing: 1.44px;
    font-size: 12px;
}
.fs-12 {
    font-size: 12px;
    letter-spacing: 1.44px;
}
.popup-form.popup-form3 {
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(243, 238, 233, .8);
}
@media screen and (min-width: 767px){
    .faq-btn {
        text-align: center;
        margin-bottom: -61px;
        margin-top: 150px;
    }
    header.header.fixed {
        position: fixed;
        width: 100%;
        background-color: #f3eeea;
        z-index: 9999;
    }
    header.fixed .center-header.text-center > a {
        display: none;
    }
    .hide-on-desktop {
        display: none!important;
    }
    .project-item img.hide-on-hover {
        display: block;
        min-height: 419px;
        object-fit: cover;
        width: 100%;
    }
    header.fixed .center-header.text-center > a + a img,
    header.fixed .center-header.text-center > a + a  {
        display: inline!important;
    }
    header.fixed .logo-img {
        width: 135px;
        margin-top: -6px;
    }
    header.fixed {
        padding: 26px 0 10px;
    }
    .project-item {
        width: 25%;
        background-color: var(--white-color);
        height: calc(100svh - 387px);
    }
    span.project-images {
        position: relative;
        display: block;
        height: calc(100% - 72px);
    }
    .project-item img.hide-on-hover {
        display: block;
        min-height: 0;
        object-fit: cover;
        width: 100%;
        position: absolute;
        height: 100%;
    }
}
@media screen and (max-width: 767px){
    .project-item {
        width: 100%;
    }
    .hide-on-mobile {
        display: none!important;
    }
    footer.top-footer.footer {
        display: none;
    }
    .footer-bottom .right-footer {
        display: none;
    }
    main.main {
        padding-top: 36px;
        padding-bottom: 49px;
        min-height: calc(100vh - 72px - 96.66px);
    }
    .left-footer.ttu {
        width: 100%;
        text-align: center;
    }
    span.pr-title {
        display: block;
        padding: 13px 20px 12px;
    }
    .projects {
        flex-direction: column;
        gap: 23px;
    }
    .container {
        padding: 0 17px;
    }
    header {
        padding: 13px 0;
    }
    .logo-img {
        margin-top: 6px;
    }
    .page-image img {
        height: auto;
        max-width: 100%;
    }
    .page-image {
        padding-top: 24px;
    }
    .page-content {
        padding-top: 37px;
        letter-spacing: 0.72px;
        font-size: 12px;
    }
    .page-content br {
        display: none;
    }
    .page-button {
        text-align: center;
        text-transform: uppercase;
        margin-top: 12px;
    }
    main.main.page-main {
        padding-bottom: 59px;
    }
    header.header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: var(--bg-color);
        z-index: 111;
    }
    .header.fixed .hide-on-fixed {
        display: none;
    }
    .header-container > div {
        width: 25%;
    }
    .header-container > div.center-header.text-center {
        width: 50%;
    }
    header:not(.fixed) .logo-fixed {
        display: none;
    }
    .logo-img {
        width: 117px;
    }
    body {
        padding-top: 97px;
    }
    .header.fixed .logo-img {
        width: 137px;
    }
    header.fixed {
        padding: 13px 0 8px;
    }
    .press-item {
        width: calc(50% - 5px);
        background-color: var(--white-color);
        padding-bottom: 13px;
    }
    .press-items {
        flex-wrap: wrap;
        padding-top: 24px;
        gap: 27px 0;
    }
    span.press-date {
        display: none !important;
    }
    a.press-item span {
        display: block;
        line-height: 18px;
    }
    span.press-title {
        text-transform: uppercase;
        margin-top: 13px;
    }    
    .header {
        border-top: 1px solid var(--main-color);
    }
    .mob-menu.hide-on-desktop {
        position: fixed;
        height: 100%;
        background-color: #f3eeea;
        left: 0;
        top: 0;
        z-index: 1111;
        width: 100%;
    }
    .mobile-nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 40px;
    }
    .mobile-nav .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100vh - 70px);
        margin-top: 70px;
    }
    .footer-menu {
        justify-content: start !important;
        text-align: left;
        align-items: start;
        padding-bottom: 50px;
    }
    .mob-menu header:not(.fixed) .logo-fixed {
        display: inline;
    }
    .mob-menu .header .logo-img {
        width: 137px!important;
    }
    .mob-menu {
        display: none;
    }
    .left-header.ttu {
        display: none;
    }
    .header-container > div.center-header.text-center {
        width: 100%;
    }
    .right-header.text-right {
        display: none;
    }
    main.main h1 {
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 29px;
    }
    .container {
        padding: 0 38px;
    }
    .footer-items ul:last-child {
        margin-bottom: 0;
    }
    .footer-items {
    }
    .footer-items ul {
        margin-bottom: 24px;
    }
    .footer-items {
        text-transform: uppercase;
        text-align: center;
        padding-bottom: 30px;
        padding-top: 20px;
        letter-spacing: 1.44px;
    }
    .page-button {
        padding-top: 20px;
    }
    body:not(.home) .container {
        padding: 0 18px;
    }
    h1.page-title.ttu.text-center {
        margin-bottom: 0;
    }
    .sub-pages ul {
        gap: 0;
        flex-direction: column;
    }
    .sub-pages {
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 0 40px;
    }
    .sub-pages ul {
        gap: 0;
        flex-direction: column;
        display: inline-flex;
        justify-content: center;
        flex-flow: wrap;
        gap: 10px;
    }
    .swiper img {
        width: 100%;
        display: block;
        padding: 0;
    }
    .text-block {
        max-width: 760px;
        margin: 0 auto 50px;
        padding: 0 0px;
    }
    .img-block {
        margin-bottom: 50px;
    }
    .text-block {
        max-width: 760px;
        margin: 0 auto 50px;
        padding: 0;
    }
    .white_block {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
    }
    .white_block {
        background-color: #fdfbf8;
        text-align: center;
        padding: 50px 20px 40px;
    }
    .white_block_item {
        width: calc((100% / 3) - 20px);
        width: 100% !important;
    }
    .faq-btn {
        text-align: center;
        margin-top: 80px;
    }
    .img-text-block {
        max-width: 100%;
        margin: 0 auto 13px;
        flex-direction: column;
    }
    .txt-b {
        padding: 40px 20px;
        flex-direction: column;
        justify-content: space-between;
    }
    .img-text-block > div {
        width: 100%;
    }
    .img-text-block.text-f {
        flex-direction: column-reverse;
    }
    .form-inner {
        width: calc(100% - 40px);
        background-color: #fdfcfb;
        z-index: 1111;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 24px 20px 46px 20px;
    }   
    .form-inner br {
        display: none;
    }
    .popup-form.popup-form1 .form-inner {
        width: calc(100% - 0px);
        background-color: #fdfcfb;
        z-index: 1111;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 24px 20px 46px 20px;
    }
    .row1 p {
        display: flex;
        flex-wrap: wrap;
        gap: 21px 20px;
    }
    .row1 span {
        width: calc(50% - 10px);
    }
    .interest p {
        padding-top: 34px;
    }
    .form-title {
        margin-bottom: 28px;
    }

    span.wpcf7-form-control.wpcf7-checkbox {
        justify-content: center;
        display: flex;
        padding-top: 23px;
        gap: 15px;
    }
    form#loginform {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    form#loginform > p {
        width: calc(50% - 10px);
    }
    .popup-items {
        display: flex;
        text-align: center;
        justify-content: center;
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    form#loginform input {
        -webkit-appearance: none;
        border-radius: 0;
    }   
    form#loginform input#wp-submit {
        color: #321f14;
        font-family: 'Avenir Roman';
        font-weight: 300;
    }
    a.tdu-on-hover.ttu.enq-form {
        border: 1px solid #311f14;
        width: 100%;
        display: block;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    a.tdu-on-hover.ttu.enq-form::after {
        display: none;
    }
    input.wpcf7-form-control.wpcf7-submit {
        -webkit-appearance: none;
        color: #321f14;
        border-radius: 0!important;
    }
    input {
        border-radius: 0!important;
        -webkit-appearance: none;
    }
}