/********************
-- Common
---- Fonts
---- Variable
---- Overlay
---- Typography
---- Colors
---- Button
---- Spacing
---- Display
---- Picture
---- Box Shadow
---- Border Radius
---- Swiper Slider
---- Accordion
---- Contact Form 7
********************/

/********** Common **********/
.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
.container {
    max-width: 1350px;
}
.container.w-1210 {
    max-width: 1210px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.row > * {
    padding-left: 15px;
    padding-right: 15px;
}
hr {
    opacity: 1;
    height: 0;
    border-width: 3px;
}
.progress-loader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    z-index: 111;
}
.progress-loader img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    height: 100px;
}
.widget {
    margin: 0;
}

/********** Fonts **********/
/* outfit-100 - latin */
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 100;
    src:
        url("../fonts/outfit-v14-latin-100.woff2") format("woff2"),
        url("../fonts/outfit-v14-latin-100.ttf") format("truetype");
}

/* outfit-300 - latin */
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 300;
    src:
        url("../fonts/outfit-v14-latin-300.woff2") format("woff2"),
        url("../fonts/outfit-v14-latin-300.ttf") format("truetype");
}
/* outfit-regular - latin */
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    src:
        url("../fonts/outfit-v14-latin-regular.woff2") format("woff2"),
        url("../fonts/outfit-v14-latin-regular.ttf") format("truetype");
}
/* outfit-500 - latin */
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    src:
        url("../fonts/outfit-v14-latin-500.woff2") format("woff2"),
        url("../fonts/outfit-v14-latin-500.ttf") format("truetype");
}
/* outfit-600 - latin */
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    src:
        url("../fonts/outfit-v14-latin-600.woff2") format("woff2"),
        url("../fonts/outfit-v14-latin-600.ttf") format("truetype");
}
/* outfit-700 - latin */
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 700;
    src:
        url("../fonts/outfit-v14-latin-700.woff2") format("woff2"),
        url("../fonts/outfit-v14-latin-700.ttf") format("truetype");
}

/********** Variable **********/
:root {
    --primary: #0f3755;
    --secondary: #f16a6a;
    --tertiary: #bedad3;
    --black: #000000;
    --white: #ffffff;
    --light: #dcdcdc;
    --gray: #d9d9d9;
    --body: "Outfit";
    --heading: "Outfit";
    --headingdemi: "Outfit";
}

/********** Overlay **********/
.overlay {
    position: relative;
}
.overlay::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/********** Typography **********/
b,
strong {
    font-weight: bold;
}
ul,
ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
a {
    color: var(--black);
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.lvl-1,
.lvl-2,
.lvl-3,
.lvl-4,
.lvl-5,
.lvl-6 {
    color: var(--primary);
    font-family: var(--heading);
    font-weight: 500;
    margin-bottom: 0;
}
p:last-child {
    margin-bottom: 0;
}

/* .lvl-1,
h1 {
    font-size: 52px;
    line-height: 1.19;
}
.lvl-2,
h2 {
    font-size: 48px;
    line-height: 1.19;
}
.lvl-3,
h3 {
    font-size: 32px;
    line-height: 1.18;
}
.lvl-4,
h4 {
    font-size: 24px;
    line-height: 1.18;
    font-family: var(--headingdemi);
}
.lvl-5,
h5 {
    font-size: 24px;
    line-height: 1.18;
} */
.editor-content ul {
    margin-left: 30px;
    list-style-type: disc;
    margin-bottom: 20px;
}
.editor-content ul ul {
    margin-bottom: 0;
}
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    margin-bottom: 20px;
}

/* @media screen and (max-width: 1199px) {
    .lvl-1,
    h1 {
        font-size: 46px;
    }
    .lvl-2,
    h2 {
        font-size: 44px;
    }
}

@media screen and (max-width: 991px) {
    .lvl-1,
    h1 {
        font-size: 44px;
    }
    .lvl-2,
    h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .lvl-1,
    h1 {
        font-size: 36px;
    }
    .lvl-2,
    h2 {
        font-size: 32px;
    }
    .lvl-3,
    h3 {
        font-size: 26px;
    }
} */

/********** Colors **********/
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-tertiary,
.light-green {
    background-color: var(--tertiary);
}
.bg-wt {
    background-color: var(--white);
}

.c-primary,
.c-primary :is(p, a, h1, h2, h3, h4, h5, h6, .lvl-1, .lvl-2, .lvl-3, .lvl-4, .lvl-5, .lvl-6) {
    color: var(--primary);
}
.c-secondary,
.c-secondary :is(p, a, h1, h2, h3, h4, h5, h6, .lvl-1, .lvl-2, .lvl-3, .lvl-4, .lvl-5, .lvl-6) {
    color: var(--secondary);
}
.c-tertiary,
.c-tertiary :is(p, a, h1, h2, h3, h4, h5, h6, .lvl-1, .lvl-2, .lvl-3, .lvl-4, .lvl-5, .lvl-6) {
    color: var(--tertiary);
}
.c-wt,
.c-wt :is(p, a, h1, h2, h3, h4, h5, h6, .lvl-1, .lvl-2, .lvl-3, .lvl-4, .lvl-5, .lvl-6) {
    color: var(--white);
}

/********** Button **********/
.btn {
    display: inline-block;
    vertical-align: top;
    font-family: var(--heading);
    font-size: 20px;
    line-height: 1.2;
    padding: 17px 55px;
    border-radius: 32px;
    box-shadow: none;
    border: 0;
}
.btn:hover,
.btn:focus,
.btn:active {
    text-decoration: underline;
}
.btn.btn-primary {
    color: var(--white) !important;
    background-color: var(--primary) !important;
}
.btn.btn-secondary {
    color: var(--primary) !important;
    background-color: var(--secondary) !important;
}
.btn.btn-tertiary {
    color: var(--primary) !important;
    background-color: var(--tertiary) !important;
}

.secondary-link {
    color: var(--secondary);
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .btn {
        font-size: 18px;
    }
}

/********** Spacing **********/
.post,
.page {
    margin: 0;
}
.pt-1 {
    padding-top: 2px !important;
}
.pt-2 {
    padding-top: 4px !important;
}
.pt-3 {
    padding-top: 6px !important;
}
.pt-4 {
    padding-top: 8px !important;
}
.pt-5 {
    padding-top: 10px !important;
}
.pt-6 {
    padding-top: 12px !important;
}
.pt-7 {
    padding-top: 14px !important;
}
.pt-8 {
    padding-top: 16px !important;
}
.pt-10 {
    padding-top: 20px !important;
}
.pt-12 {
    padding-top: 24px !important;
}
.pt-15 {
    padding-top: 30px !important;
}
.pt-18 {
    padding-top: 36px !important;
}
.pt-20 {
    padding-top: 40px !important;
}
.pt-24 {
    padding-top: 48px !important;
}
.pt-32 {
    padding-top: 64px !important;
}
.pt-none {
    padding-top: 0px !important;
}
.pt-sm {
    padding-top: 40px !important;
}
.pt-md {
    padding-top: 60px !important;
}
.pt-def {
    padding-top: 80px !important;
}
.pt-lg {
    padding-top: 100px !important;
}
.pt-xl {
    padding-top: 120px !important;
}

.pb-1 {
    padding-bottom: 2px !important;
}
.pb-2 {
    padding-bottom: 4px !important;
}
.pb-3 {
    padding-bottom: 6px !important;
}
.pb-4 {
    padding-bottom: 8px !important;
}
.pb-5 {
    padding-bottom: 10px !important;
}
.pb-6 {
    padding-bottom: 12px !important;
}
.pb-7 {
    padding-bottom: 14px !important;
}
.pb-8 {
    padding-bottom: 16px !important;
}
.pb-10 {
    padding-bottom: 20px !important;
}
.pb-12 {
    padding-bottom: 24px !important;
}
.pb-15 {
    padding-bottom: 30px !important;
}
.pb-18 {
    padding-bottom: 36px !important;
}
.pb-20 {
    padding-bottom: 40px !important;
}
.pb-24 {
    padding-bottom: 48px !important;
}
.pb-32 {
    padding-bottom: 64px !important;
}
.pb-none {
    padding-bottom: 0px !important;
}
.pb-sm {
    padding-bottom: 40px !important;
}
.pb-md {
    padding-bottom: 60px !important;
}
.pb-def {
    padding-bottom: 80px !important;
}
.pb-lg {
    padding-bottom: 100px !important;
}
.pb-xl {
    padding-bottom: 120px !important;
}

@media (min-width: 768px) {
    .pt-md-0 {
        padding-top: 0 !important;
    }
    .pt-md-1 {
        padding-top: 2px !important;
    }
    .pt-md-2 {
        padding-top: 4px !important;
    }
    .pt-md-3 {
        padding-top: 6px !important;
    }
    .pt-md-4 {
        padding-top: 8px !important;
    }
    .pt-md-5 {
        padding-top: 10px !important;
    }
    .pt-md-6 {
        padding-top: 12px !important;
    }
    .pt-md-7 {
        padding-top: 14px !important;
    }
    .pt-md-8 {
        padding-top: 16px !important;
    }
    .pt-md-10 {
        padding-top: 20px !important;
    }
    .pt-md-12 {
        padding-top: 24px !important;
    }
    .pt-md-15 {
        padding-top: 30px !important;
    }
    .pt-md-18 {
        padding-top: 36px !important;
    }
    .pt-md-20 {
        padding-top: 40px !important;
    }
    .pt-md-24 {
        padding-top: 48px !important;
    }
    .pt-md-32 {
        padding-top: 64px !important;
    }
    .pb-md-0 {
        padding-bottom: 0 !important;
    }
    .pb-md-1 {
        padding-bottom: 2px !important;
    }
    .pb-md-2 {
        padding-bottom: 4px !important;
    }
    .pb-md-3 {
        padding-bottom: 6px !important;
    }
    .pb-md-4 {
        padding-bottom: 8px !important;
    }
    .pb-md-5 {
        padding-bottom: 10px !important;
    }
    .pb-md-6 {
        padding-bottom: 12px !important;
    }
    .pb-md-7 {
        padding-bottom: 14px !important;
    }
    .pb-md-8 {
        padding-bottom: 16px !important;
    }
    .pb-md-10 {
        padding-bottom: 20px !important;
    }
    .pb-md-12 {
        padding-bottom: 24px !important;
    }
    .pb-md-15 {
        padding-bottom: 30px !important;
    }
    .pb-md-18 {
        padding-bottom: 36px !important;
    }
    .pb-md-20 {
        padding-bottom: 40px !important;
    }
    .pb-md-24 {
        padding-bottom: 48px !important;
    }
    .pb-md-32 {
        padding-bottom: 64px !important;
    }
}

@media (min-width: 992px) {
    .pt-lg-0 {
        padding-top: 0 !important;
    }
    .pt-lg-1 {
        padding-top: 2px !important;
    }
    .pt-lg-2 {
        padding-top: 4px !important;
    }
    .pt-lg-3 {
        padding-top: 6px !important;
    }
    .pt-lg-4 {
        padding-top: 8px !important;
    }
    .pt-lg-5 {
        padding-top: 10px !important;
    }
    .pt-lg-6 {
        padding-top: 12px !important;
    }
    .pt-lg-7 {
        padding-top: 14px !important;
    }
    .pt-lg-8 {
        padding-top: 16px !important;
    }
    .pt-lg-10 {
        padding-top: 20px !important;
    }
    .pt-lg-12 {
        padding-top: 24px !important;
    }
    .pt-lg-15 {
        padding-top: 30px !important;
    }
    .pt-lg-18 {
        padding-top: 36px !important;
    }
    .pt-lg-20 {
        padding-top: 40px !important;
    }
    .pt-lg-24 {
        padding-top: 48px !important;
    }
    .pt-lg-32 {
        padding-top: 64px !important;
    }
    .pb-lg-0 {
        padding-bottom: 0 !important;
    }
    .pb-lg-1 {
        padding-bottom: 2px !important;
    }
    .pb-lg-2 {
        padding-bottom: 4px !important;
    }
    .pb-lg-3 {
        padding-bottom: 6px !important;
    }
    .pb-lg-4 {
        padding-bottom: 8px !important;
    }
    .pb-lg-5 {
        padding-bottom: 10px !important;
    }
    .pb-lg-6 {
        padding-bottom: 12px !important;
    }
    .pb-lg-7 {
        padding-bottom: 14px !important;
    }
    .pb-lg-8 {
        padding-bottom: 16px !important;
    }
    .pb-lg-10 {
        padding-bottom: 20px !important;
    }
    .pb-lg-12 {
        padding-bottom: 24px !important;
    }
    .pb-lg-15 {
        padding-bottom: 30px !important;
    }
    .pb-lg-18 {
        padding-bottom: 36px !important;
    }
    .pb-lg-20 {
        padding-bottom: 40px !important;
    }
    .pb-lg-24 {
        padding-bottom: 48px !important;
    }
    .pb-lg-32 {
        padding-bottom: 64px !important;
    }
}

@media (min-width: 1200px) {
    .pt-xl-0 {
        padding-top: 0 !important;
    }
    .pt-xl-1 {
        padding-top: 2px !important;
    }
    .pt-xl-2 {
        padding-top: 4px !important;
    }
    .pt-xl-3 {
        padding-top: 6px !important;
    }
    .pt-xl-4 {
        padding-top: 8px !important;
    }
    .pt-xl-5 {
        padding-top: 10px !important;
    }
    .pt-xl-6 {
        padding-top: 12px !important;
    }
    .pt-xl-7 {
        padding-top: 14px !important;
    }
    .pt-xl-8 {
        padding-top: 16px !important;
    }
    .pt-xl-10 {
        padding-top: 20px !important;
    }
    .pt-xl-12 {
        padding-top: 24px !important;
    }
    .pt-xl-15 {
        padding-top: 30px !important;
    }
    .pt-xl-18 {
        padding-top: 36px !important;
    }
    .pt-xl-20 {
        padding-top: 40px !important;
    }
    .pt-xl-24 {
        padding-top: 48px !important;
    }
    .pt-xl-32 {
        padding-top: 64px !important;
    }
    .pb-xl-0 {
        padding-bottom: 0 !important;
    }
    .pb-xl-1 {
        padding-bottom: 2px !important;
    }
    .pb-xl-2 {
        padding-bottom: 4px !important;
    }
    .pb-xl-3 {
        padding-bottom: 6px !important;
    }
    .pb-xl-4 {
        padding-bottom: 8px !important;
    }
    .pb-xl-5 {
        padding-bottom: 10px !important;
    }
    .pb-xl-6 {
        padding-bottom: 12px !important;
    }
    .pb-xl-7 {
        padding-bottom: 14px !important;
    }
    .pb-xl-8 {
        padding-bottom: 16px !important;
    }
    .pb-xl-10 {
        padding-bottom: 20px !important;
    }
    .pb-xl-12 {
        padding-bottom: 24px !important;
    }
    .pb-xl-15 {
        padding-bottom: 30px !important;
    }
    .pb-xl-18 {
        padding-bottom: 36px !important;
    }
    .pb-xl-20 {
        padding-bottom: 40px !important;
    }
    .pb-xl-24 {
        padding-bottom: 48px !important;
    }
    .pb-xl-32 {
        padding-bottom: 64px !important;
    }
}

@media screen and (max-width: 1199px) {
    .pt-lg {
        padding-top: 80px !important;
    }
    .pb-lg {
        padding-bottom: 80px !important;
    }
}

@media screen and (max-width: 991px) {
    .pt-lg {
        padding-top: 70px !important;
    }
    .pt-def {
        padding-top: 70px !important;
    }
    .pb-lg {
        padding-bottom: 70px !important;
    }
    .pb-def {
        padding-bottom: 70px !important;
    }
}

@media screen and (max-width: 767px) {
    .pt-lg {
        padding-top: 60px !important;
    }
    .pt-def {
        padding-top: 60px !important;
    }
    .pb-lg {
        padding-bottom: 60px !important;
    }
    .pb-def {
        padding-bottom: 60px !important;
    }
}

/********** Display **********/
.d-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/********** Picture **********/
img {
    display: block;
    height: auto;
    max-width: 100%;
    vertical-align: top;
}
.h-full {
    height: 100%;
}
picture {
    display: block;
}
picture.w-full {
    width: 100%;
}
picture.w-full img {
    width: 100%;
}
picture.h-full {
    height: 100%;
}
picture.h-full img {
    height: 100%;
    object-fit: cover;
}
.bg--image-abs {
    top: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
}
.bg--image-abs img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.bg--image-abs + div {
    position: relative;
}

/********** Box Shadow **********/

/********** Border Radius **********/
.rounded-12 {
    border-radius: 12px;
}
.rounded-24 {
    border-radius: 24px;
}

/********** Swiper Slider **********/
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tertiary);
    transform: scale(1);
    top: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
    border-radius: 50%;
    outline: none !important;
    overflow: hidden;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    border-color: var(--primarydark);
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "";
    display: block;
    background-image: url("../images/arrow-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: -75px;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: -75px;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    transform: rotate(180deg);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.swiper-pagination {
    position: relative;
    margin-top: 48px;
    line-height: 0;
    top: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet {
    background-color: var(--white);
    width: 8px;
    height: 8px;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
}
.swiper-pagination-bullet {
    vertical-align: middle;
    background-color: var(--gray);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: var(--primarydark);
    width: 11px;
    height: 11px;
}

@media screen and (max-width: 991px) {
    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        opacity: 0;
        transform: scale(1);
    }
}
@media screen and (max-width: 767px) {
    .swiper-pagination {
        margin-top: 36px;
    }
}

/********** Accordion **********/
.accordion-item {
    border-top: 1px solid var(--gray) !important;
    border-radius: 0;
}
.accordion-item .accordion-header {
    position: relative;
    padding: 18px 60px 18px 30px;
    cursor: pointer;
}
.accordion-item:last-child {
    border-bottom: 1px solid var(--gray);
}
.accordion-item .accordion-header::before,
.accordion-item .accordion-header::after {
    content: "";
    display: block;
    position: absolute;
    right: 23px;
    top: 50%;
    width: 16px;
    height: 2px;
    margin-top: -1px;
    background-color: var(--primary);
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}
.accordion-item .accordion-header::after {
    transform: rotate(90deg);
}
.accordion-item .accordion-header.active::after {
    transform: rotate(0deg);
}
.accordion-item .accordion-header h4 {
    font-family: var(--body);
    font-weight: 300;
}
.accordion-item .accordion-content .editor-content {
    padding: 5px 60px 30px 30px;
}
.accordion-item .accordion-content {
    display: none;
}
@media screen and (max-width: 767px) {
    .accordion-item .accordion-header {
        padding: 11px 40px 11px 15px;
    }
    .accordion-item .accordion-header::before,
    .accordion-item .accordion-header::after {
        right: 15px;
    }
}

/********** Contact Form 7 **********/
input::-webkit-input-placeholder {
    opacity: 1;
}
input::-moz-placeholder {
    opacity: 1;
}
input:-ms-input-placeholder {
    opacity: 1;
}
input:-moz-placeholder {
    opacity: 1;
}
.wpcf7 p {
    margin: 0;
}
.form-group {
    margin-bottom: 15px;
}
.form-group .wpcf7-form-control-wrap {
    display: block;
}
.form-group label {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 6px;
}
.form-group .wpcf7-form-control:not(.wpcf7-acceptance, .wpcf7-file, .wpcf7-checkbox),
.custom-form-group .form-control {
    display: block;
    width: 100%;
    background-color: var(--gray);
    border-radius: 8px;
    outline: none;
    box-shadow: none;
    border: 0;
    padding: 9px 15px;
}
.form-group textarea.wpcf7-form-control {
    height: 141px;
    resize: none;
}
.wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-list-item-label {
    font-size: 16px;
    flex: 1;
    vertical-align: middle;
}
.wpcf7-list-item-label a {
    color: #44b5f1;
    text-decoration: underline;
}
.wpcf7-list-item [type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
.custom-check .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 10px;
}
.custom-check .wpcf7-list-item input {
    opacity: 0;
}
.custom-check .wpcf7-list-item .wpcf7-list-item-label::before,
.custom-check .wpcf7-list-item .wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: 4px;
}
.custom-check .wpcf7-list-item .wpcf7-list-item-label::after {
    background-image: url("../images/checked-white-icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    opacity: 0;
    background-color: var(--primary);
}
.custom-check .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}
.wpcf7-form-control.wpcf7-submit {
    /* color: var(--white); */
    background-color: var(--primary);
    display: inline-block;
    vertical-align: top;
    /* font-size: 20px; */
    /* line-height: 1.2; */
    padding: 10px 55px;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    color: #fff;
    text-align: center;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: background ease 0.3s;
}
.wpcf7-form-control.wpcf7-submit:hover,
.wpcf7-form-control.wpcf7-submit:focus,
.wpcf7-form-control.wpcf7-submit:active {
    text-decoration: none;
    background: #f16a6a;
}
.wpcf7-form-control.wpcf7-file {
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    /* .wpcf7-form-control.wpcf7-submit {
        font-size: 18px;
    } */
}
