*{
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: .3s font-size;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
a {
    text-decoration: none;
    display: inline-block;
    color: black;
}
ul,
li{
    list-style: none;
    margin: 0;
    padding: 0;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
p {
    margin: 0;
    padding: 0;
}
button, input {
    border: unset;
}
:where(figure),
.wp-block-image figcaption {
    margin: 0 !important;
}
[type="checkbox"],
[type="radio"] {
    accent-color: #45994C;
}
input[type='checkbox'] {
    border-radius: 0;
}
h1,h2,h3,h4,h5 {
    padding: 0;
    margin: 0;
}

/* additional styles */
@media (min-width: 980px) {
    .container {
        margin: 0 100px;
    }
}
@media (max-width: 980px) {
    .container {
        margin: 0 16px;
    }
}
@media (min-width: 1300px) {
    .container {
        width: 1200px;
        margin: 0 auto;
    }
}
.green {
    font-weight: 600;
    color: #45994C;
}

/* To override style for allow cookies button */
.cky-btn-revisit-wrapper {
    display: none !important;
}
.cky-btn-accept {
    background: #45994C !important;
    color: #fff;
    border: 2px solid #45994C !important;
}
.cky-btn-reject,
.cky-btn-customize {
    color: #45994C !important;
    background: transparent;
    border: 2px solid #45994C !important;
}

/* body style */
body {
    font-family: 'Avenir', 'sans-serif';
    /* font-family: 'Helvetica', 'sans-serif';
    font-family: 'Proxima', 'sans-serif';
    font-family: 'SF', 'sans-serif';
    font-family: 'Times', 'serif'; */
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
}

/* loading page style */
#loading__screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loading__screen__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.loading__block__logo {
    position: absolute;
    width: 130px;
}
.loading__block {
    width: 276px;
    height: 276px;
    transform: rotate(-90deg);
}
.loading__block__background {
    stroke-dasharray: 863;
    stroke-dashoffset: 0;
}
.loading__block__foreground {
    stroke-dasharray: 863;
    stroke-dashoffset: 863;
}
.loading__circle {
    transition: stroke-dashoffset 2s linear;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}
#main__content {
    display: block;
}

/* Phone banner */
@media (min-width: 980px) {
    .tel__banner {
        display: none;
    }
}
@media (max-width: 980px) {
    .tel__banner {
        display: inline-block;
        width: 100%;
        height: 40px;
        cursor: pointer;
        background-color: #45994C;
        position: fixed;
        padding: 10px 0;
        bottom: 0;
        z-index: 999;
        text-align: center;
        text-transform: uppercase;
        line-height: 122%;
        letter-spacing: -0.5px;
        color: white;
        font-size: 16px;
        font-weight: 300;
    }
}

/* all styles */

.header {
    margin: 0;
    padding: 0;
    width: 100%;
    position: fixed;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0);
    transition: .3s background-color;
}
.header.fixed {
    position: fixed;
    background-color: white;
    border-bottom: 1px solid #00000026;
}
.nav__active a {
    border-bottom: 2px solid #45994C;
}

/* Header-block style for desktop devices */
@media (min-width: 980px) {
    .green {
        padding-top: 12px;
    }

    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__burger {
        display: none;
    }
    .header__menu {
        display: block;
        font-weight: 100;
        position: relative;
    }
    .header__logo {
        display: block;
    }
    .header__logo svg {
        width: 146px;
    }
    .header__main__menu {
        color: #000000;
        font-size: 20px;
        line-height: 122%;
    }
    .header__main__menu ul {
        display: flex;
    }
    .header__main__menu li {
        padding: 20px 0;
    }
    .header__main__menu li:not(:last-child) {
        padding-right: 48px;
    }
    .header__main__menu a {
        padding: 6px 2px;
        transition: .3s all;
        border-bottom: 2px solid #45994c00;
    }
    .h__m__m__item a.active {
        border-bottom: 2px solid #45994C;
    }
    .h__m__m__item a svg {
        display: none;
    }
    .header__main__menu a:hover {
        border-bottom: 2px solid #45994C;
    }
    .header__sub__menu {
        visibility: hidden;
        opacity: 0;
        transition: visibility .3s, opacity .3s;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
        text-align: left;
        color: #000000;
        font-size: 18px;
        line-height: 122%;
        background-color: white;
    }
    .header__sub__menu__inner {
        position: relative;
        padding: 15px 0 70px 0;
    }
    .header__sub__menu__inner ul {
        flex-direction: column;
    }
    .header__sub__menu__inner li:not(:first-child) {
        padding: 24px 0 0 0;
    }
    .header__sub__menu__inner li a {
        padding: 0;
        margin: 0;
    }
    .header__sub__menu.active {
        visibility: visible;
        opacity: 1;
    }
    .header__sub__menu a {
        transition: .3s all;
        border-bottom: 2px solid #45994c00;
    }
    .header__sub__menu a:hover {
        border-bottom: 2px solid #45994C;
    }
    .languages__list {
        visibility: hidden;
        opacity: 0;
        transition: visibility .3s, opacity .3s;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
        text-align: left;
        color: #000000;
        font-size: 18px;
        line-height: 122%;
        background-color: white;
    }
    .languages__list__inner {
        display: flex;
        flex-direction: column;
        position: relative;
        padding-bottom: 30px;
    }
    .languages__list.active {
        visibility: visible;
        opacity: 1;
    }
    .current__language {
        padding: 26px 0;
    }
}
/* Header-block style for mobile devices */
@media (max-width: 980px) {
    .header .container {
        margin: 0 20px;
    }
    .header__inner {
        display: flex;
    }
    .header__logo {
        z-index: 10;
        position: absolute;
        left: 50%;
        top: 25%;
        transform: translateX(-50%);
    }
    .header__logo svg {
        width: 132px;
    }
    .header__menu {
        font-size: 20px;
        z-index: 5;
        display: none;
        position: fixed;
        left: 0;
        width: 100%;
        padding: 100px 0 100px 16px;
        background-color: white;
    }
    .header__menu li {
        padding-bottom: 24px;
    }
    .header__sub__menu {
        margin-left: 24px;
        display: none;
    }
    .header__sub__menu__inner li {
        padding: 24px 0 0 0;
    }
    .h__m__m__item a {
        width: 100%;
    }
    .h__m__m__item a svg {
        position: absolute;
        right: 16px;
    }
    .header__burger {
        z-index: 10;
        width: 18px;
        height: 12px;
        position: relative;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        cursor: pointer;
        margin: 28px 0;
    }
    .header__burger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background-color: #000000;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    .header__burger span.white {
        background-color: white;
    }
    .header__burger span:nth-child(1) {
        top: 0px;
    }
    .header__burger span:nth-child(2),
    .header__burger span:nth-child(3) {
        top: 5px;
    }
    .header__burger span:nth-child(4) {
        top: 10px;
    }
    .header__burger.stage2 span:nth-child(1),
    .header__burger.stage3 span:nth-child(1) {
        top: 5px;
        width: 0%;
        left: 50%;
    }
    .header__burger.stage2 span:nth-child(2),
    .header__burger.stage3 span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header__burger.stage2 span:nth-child(3),
    .header__burger.stage3 span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header__burger.stage2 span:nth-child(4),
    .header__burger.stage3 span:nth-child(4) {
        top: 5px;
        width: 0%;
        left: 50%;
    }
    .header__overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 3;
    }
    .languages__list {
        display: none;
    }
    .languages__list.active {
        display: block;
    }
    .current__language {
        padding-bottom: 26px;
    }
}

.header__language {
    position: relative;
    display: inline-block;
}
.current__language {
    display: flex;
    position: relative;
    cursor: pointer;
}
.current__language span {
    margin-right: 8px;
}
.current__language svg {
    margin: auto;
}
.languages__list li {
    padding: 0;
}
.languages__list a {
    margin-bottom: 20px;
}

#scrollToTopBtn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.scroll__top {
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #45994C;
}
@media (min-width: 980px) {
    .scroll__top {
        bottom: 20px;
    }
}
@media (max-width: 980px) {
    .scroll__top {
        bottom: 50px;
    }
}

.scroll__top img {
    transform: rotate(-90deg);
}

.general {
    position: relative;
    overflow: hidden;
    min-height: 750px;
    color: white;
}
.general__parallax__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    transform: scale(1);
    z-index: -1;
    transition: .3s background-position;
}
.general__parallax__bg video {
    user-select: none;
    filter: opacity(60%);
}
.general__content {
    padding-top: 220px;
    max-width: 525px;
    text-align: left;
    margin: 0;
}
.general__title {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 122%;
    /* color: black; */
    font-weight: 500;
}
.general__text {
    padding: 25px 0;
    line-height: 122%;
    letter-spacing: -0.5px;
    /* color: black; */
    font-weight: 600;
}
.general__btn {
    text-align: center;
    min-width: 258px;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    line-height: 122%;
    font-size: 16px;
    letter-spacing: -0.5px;
    /* color: black; */
    color: white;
    font-weight: 500;
    padding: 16px 46px;
    /* border: 2px solid black; */
    border: 2px solid white;
    background-color: transparent;
    transition: all .3s;
}
.general__btn:hover {
    background-color: #45994C;
    color: white;
    border: 2px solid #45994C;
}

/* General-block style for desktop devices */
@media (min-width: 980px) {
    .general__text {
        font-size: 50px;
    }
    .general__parallax__bg {
        background-position: center;
    }
    .general__parallax__bg video {
        width: 100%;
    }
}
/* General-block style for mobile devices */
@media (max-width: 980px) {
    .general__text {
        font-size: 34px;
    }
    .general__parallax__bg {
        background-position: 40%;
    }
    .general__parallax__bg video {
        height: 100%;
    }
}

.types {
    background-image: url(../img/bg/background_types.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.types__title {
    text-align: center;
    color: white;
    letter-spacing: -0.5px;
    font-weight: 600;
    margin: auto 0;
}
.types__cell:hover {
    z-index: 1;
}
.types__cell:hover .cell__img img {
    filter: brightness(0) invert(1);
}
.types__cell:hover::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    background-color: #45994C;
    z-index: -1;
}
.types__cell:hover::before a {
    position: absolute;
    width: 100%;
    height: 100%;
}
.cell__img {
    padding: 0;
    min-width: 120px;
    min-height: 120px;
    display: flex;
    justify-content: center;
}
.cell__title {
    color: white;
    padding: 24px 0;
    font-size: 18px;
    text-align: center;
    line-height: 122%;
    text-transform: uppercase;
    font-weight: 400;
}
.cell__text {
    max-width: 350px;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: -0.5px;
    color: white;
    font-weight: 100;
}

/* Types-block style for desktop devices */
@media (min-width: 980px) {
    .types__title {
        font-size: 50px;
        line-height: 122%;
        padding: 50px 0;
    }
    .types__table {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 0 75px 0;
        border-collapse: collapse;
    }
    .types__row {
        display: flex;
    }
    .types__cell {
        flex: 1;
        padding: 50px 40px;
        border: 1px solid #767561;
        position: relative;
    }
    .types__cell:not(:last-child) {
        border-right: none;
    }
    .types__row:not(:last-child) .types__cell {
        border-bottom: none;
    }
}
/* Types-block style for mobile devices */
@media (max-width: 980px) {
    .types__inner {
        margin: 0 16px;
    }
    .types__title {
        font-size: 30px;
        line-height: 100%;
        padding: 56px 0 32px 0;
    }
    .types__table {
        margin: 0 auto;
        padding-bottom: 48px;
        border-collapse: collapse;
    }
    .types__row {
        display: flex;
        flex-direction: column;
    }
    .types__cell {
        flex: 1;
        padding: 32px 16px;
        border: 1px solid #767561;
        position: relative;
    }
    .types__row .types__cell {
        border-bottom: none;
    }
    .types__row:last-child .types__cell:last-child {
        border-bottom: 1px solid #767561;
    }
}

.clients {
    background: white;
    min-height: 585px;
}
.clients__title {
    text-align: center;
    color: black;
    letter-spacing: -0.5px;
    font-weight: 600;
    margin: auto 0;
}
.clients__row {
    display: flex;
    min-height: 168px;
    border-top: none;
}
.clients__cell {
    flex: 1;
    border: 1px solid #E6E6E6;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* To exclude doubling borders */
.clients__cell:not(:last-child) {
    border-right: none;
}
.clients__row:not(:last-child) .clients__cell {
    border-bottom: none;
}
/* To remove top and bottom row borders */
.clients__row:first-child .clients__cell {
    border-top: none;
}
.clients__row:last-child .clients__cell {
    border-bottom: none;
}
/* To remove right and left row borders */
.clients__cell:last-child {
    border-right: none;
}
.clients__cell:first-child {
    border-left: none;
}
.clients__row:first-child .clients__cell img {
    padding-top: 60px;
    padding-bottom: 35px;
    width: 130px;
}
.clients__row:not(:first-child) .clients__cell img {
    padding-top: 35px;
    padding-bottom: 35px;
    width: 130px;
}

/* Clients-block style for desktop devices */
@media (min-width: 980px) {
    .clients__title {
        font-size: 50px;
        line-height: 122%;
        padding: 50px 0;
    }
    .clients__table {
        max-width: 1400px;
        margin: 0 auto;
        padding: 10px 0 85px 0;
        border-collapse: collapse;
    }
}
/* Clients-block style for mobile devices */
@media (max-width: 980px) {
    .clients__inner {
        margin: 0 23px;
    }
    .clients__title {
        font-size: 30px;
        line-height: 100%;
        padding: 56px 0 40px 0;
    }
    .clients__table {
        margin: 0 auto;
        padding-bottom: 48px;
        border-collapse: collapse;
    }
}

.reviews {
    background-color: #CCC8A5;
}
.reviews__title {
    text-align: left;
    color: black;
    letter-spacing: -0.5px;
    font-weight: 600;
}
.slider {
    position: relative;
    user-select: none;
}
.reviews__content {
    position: relative;
    z-index: 1;
}
.reviews__quotes__1,
.reviews__quotes__2 {
    font-family: 'BigShouldersDisplay', 'sans-serif';
    font-weight: 900;
    color: #E6E4D2;
    position: absolute;
    z-index: 0;
    user-select: none;
}
.reviews__text {
    color: black;
    margin: 0 auto;
    max-width: 725px;
}
.reviews__name {
    line-height: 23px;
    font-weight: 400;
    color: black;
    margin: 0 auto;
}
.reviews__inner .slider .slider__item {
    object-fit: cover;
    width: 100%;
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {
        opacity: 0.4
    }
    to {
        opacity: 1
    }
}
.slider__indicators {
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.reviews__indicator {
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    background-size: cover;
    margin: 0 10px;
    border: 1.5px solid #A19F9F;
}
.reviews__indicator.active {
    background-color: #A19F9F;
}
.slider__indicators__block .slider__indicators .reviews__indicator {
    border: 1.5px solid white;
}
.slider__indicators__block .slider__indicators .reviews__indicator.active {
    background-color: white;
}

/* Reviews-block style for desktop devices */
@media (min-width: 980px) {
    .reviews__content {
        min-height: 350px;
    }
    .reviews__inner {
        padding: 220px 0 100px 0;
        width: 550px;
        margin: 0 auto;
    }
    .reviews__title {
        font-size: 50px;
        line-height: 122%;
        padding: 30px 0;
        white-space: nowrap;
    }
    .reviews__text {
        font-size: 24px;
        line-height: 32px;
        font-weight: 300;
    }
    .reviews__name {
        font-family: 'Proxima' 'sans-serif';
        font-weight: 600;
        font-size: 18px;
        padding: 40px 0;
    }
    .slider__indicators__block {
        padding: 0;
    }
    .reviews__indicator {
        width: 12px;
        height: 12px;
    }
    .reviews__quotes__1 {
        font-size: 400px;
        line-height: 122%;
        top: -300px;
        right: 650px;
    }
    .reviews__quotes__2 {
        font-size: 300px;
        line-height: 122%;
        top: 0px;
        right: -200px;
    }
}
/* Reviews-block style for mobile devices */
@media (max-width: 980px) {
    .reviews__content {
        min-height: 170px;
    }
    .reviews {
        padding: 10px 0;
    } 
    .reviews__title {
        font-size: 30px;
        line-height: 100%;
        padding: 56px 0 105px 0;
    }
    .reviews__text {
        font-size: 18px;
        line-height: 23px;
        font-weight: 300;
        padding-bottom: 24px;
    }
    .reviews__name {
        font-size: 16px;
    }
    .reviews__inner .slider {
        padding-bottom: 80px;
    }
    .reviews__inner .slider__indicators__block .slider__indicators > li {
        margin-bottom: 80px;
    }
    .reviews__indicator {
        width: 10px;
        height: 10px;
    }
    .reviews__quotes__1 {
        font-size: 200px;
        left: -5px;
        top: -5px;
    }
    .reviews__quotes__2 {
        font-size: 150px;
        bottom: 70px;
        right: -5px;
    }
}

.reviews__all {
    text-align: right;
    font-size: 18px;
    line-height: 28px;
    font-weight: 200;
    color: #676666;
    margin: 0 auto;
    transition: .3s all;
}
.reviews__all a {
    display: inline-flex;
    align-items: center;
    color: #676666;
    border-bottom: solid 1px transparent;
    transition: color 0.3s, border-bottom 0.3s;
}
.reviews__all svg {
    margin: 0 10px;
    transition: margin 0.3s;
}
.reviews__all a:hover {
    color: #45994C;
    border-bottom: solid 1px #45994C;
}
.reviews__all a:hover svg {
    margin: 0 12px;
}

.form {
    background: #000000;
}
.form__inner {
    max-width: 400px;
    margin: 0 auto;
}
.form__title {
    text-align: center;
    padding-top: 22px;
    color: white;
    font-weight: 300;
}
.form__block p {
    margin: 0;
    padding: 0;
}
.form__input {
    width: 100%;
    margin-top: 35px;
    background-color: transparent;
    border: 0;
    font-size: 16px;
    padding: 7px 0;
    line-height: 20px;
    letter-spacing: -0.5px;
    text-align: left;
    font-weight: 100;
    color: white;
    caret-color: #45994C;
    border-bottom: solid 1px white;
    appearance: none !important;
    border-radius: 0px !important;
    -webkit-appearance: none !important;
    -webkit-border-radius: 0px !important;
}
.form__input:focus {
    border-bottom: solid 1px #45994C;
}
.form__input::placeholder{
    color: white;
}
.form__btn {
    margin-top: 56px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    height: 48px;
    font-weight: 300;
    color: white;
    background-color: #45994C;
    transition: .3s all;
    display: flex;
    justify-content: center;
    align-items: center;
    appearance: none !important;
    border-radius: 0px !important;
    -webkit-appearance: none !important;
    -webkit-border-radius: 0px !important;
}
.form__btn:hover {
    background-color: #45994C;
}
/* Remove wpcf7-spinner from form */
.wpcf7-spinner {
    visibility: hidden !important;
}
.wpcf7 form .wpcf7-response-output {
    border: none;
    margin: 0;
    padding: 0;
    color: white;
}
.wpcf7 form.init .wpcf7-response-output {
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450; /* Green */
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    color: #dc3232; /* Red */
}
.wpcf7 form.spam .wpcf7-response-output {
    color: #f56e28; /* Orange */
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    color: #ffb900; /* Yellow */
}

/* Form-block style for desktop devices */
@media (min-width: 980px) {
    .form__title {
        font-size: 40px;
        line-height: 126%;
    }
    .form {
        padding: 100px 0;
    }
    .footer__input {
        width: 220px;
        height: 40px;
    }
    .footer__content {
        padding: 40px 0;
    }
}
/* Form-block style for mobile devices */
@media (max-width: 980px) {
    .form__title {
        font-size: 30px;
        line-height: 15px;
    }
    .form {
        padding: 70px 0;
    }
    .footer__input {
        width: 160px;
        height: 40px;
    }
    .footer__content {
        padding: 40px 0 60px 0;
    }
}

.footer {
    background: #363839;
    min-height: 292px;
}
.footer__content {
    display: flex;
    justify-content: space-between;
}
.footer__title {
    font-size: 14px;
    line-height: 122%;
    text-transform: uppercase;
    color: white;
}
.footer__text {
    font-size: 14px;
    line-height: 122%;
    color: white;
    font-weight: 200;
    padding-bottom: 16px;
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.footer__logo {
    padding-bottom: 8px;
}
.footer__logo svg {
    width: 122px;
    color: white;
}
.footer__icons a {
    margin-right: 5px;
}
.footer__icons img {
    height: 32px;
}
.footer__form {
    display: flex;
    justify-content: left;
}
.footer__input {
    border: 0;
    font-size: 14px;
    line-height: 122%;
    padding: 0 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    background-color: #4A4C4C;
    appearance: none !important;
    border-radius: 0px !important;
    -webkit-appearance: none !important;
    -webkit-border-radius: 0px !important;
}
.footer__form__btn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #45994C;
    transition: .3s all;
    display: flex;
    justify-content: left;
    background-image: url(../img/icons/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    appearance: none !important;
    border-radius: 0px !important;
    -webkit-appearance: none !important;
    -webkit-border-radius: 0px !important;
}
.footer__form__btn button {
    border: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    --webkit-appearance: none;
    --moz-appearance: none;
}
.footer__block form p {
    display: flex;
}

/* Footer-block style for desktop devices */
@media (min-width: 1000px) {
    .footer__text a {
        opacity: 50%;
        color: white;
        transition: .3s all;
    }
    .footer__text a:hover {
        opacity: 75%;
    }
    .footer__text:not(:has(a)) {
        opacity: 50%;
    }
    .footer__title {
        padding-bottom: 25px;
    }
    .footer__icons {
        margin-top: 17px;
    }
}
/* Footer-block style for mobile devices */
@media (max-width: 1000px) {
    .footer__text {
        color: #9B9B9C;
    }
    .footer__text a {
        color: #9B9B9C;
        transition: .3s all;
    }
    .footer__content {
        flex-direction: column;
    }
    .footer__title {
        padding: 32px 0 22px 0;
    }
}

/* service.html */

.service__general {
    background-color: #a3bdc2;
    padding-bottom: 55px;
}
.content__title {
    line-height: 122%;
    letter-spacing: -0.5px;
    color: black;
}
.content__text {
    line-height: 122%;
    letter-spacing: -0.5px;
    color: black;
    font-weight: 300;
}
.service__table__row {
    display: flex;
    justify-content: space-between;
}

/* Service-block style for desktop devices */
@media (min-width: 980px) {
    .block__content {
        padding-top: 144px;
        text-align: left;
        margin-bottom: 70px;
    }
    .service__inner .block__content .content__text {
        padding-top: 25px;
        margin: 50px 0 0 450px;
    }
    .content__title {
        font-size: 100px;
        font-weight: 600;
    }
    .content__text {
        border-top: solid 5px black;
        font-size: 24px;
    }
    .service__table {
        margin: 120px auto;
        max-width: 1040px;
    }
    .service__table__cell {
        width: 294px;
    }
    .service__cell__icon {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        width: 130px;
        height: 130px;
        border: dashed 2px #676666;
        border-radius: 25px;
    }
    .service__cell__icon img {
        margin: auto 0;
    }
    .service__cell__title {
        margin: 32px 0;
        text-align: center;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 24px;
        line-height: 126%;
        letter-spacing: -0.5px;
    }
    .service__table__row:not(:first-child) {
        margin-top: 44px;
    }
}
/* Service-block style for mobile devices */
@media (max-width: 980px) {
    .block__content {
        padding-top: 95px;
        text-align: left;
        margin-bottom: 8px;
    }
    .content__title {
        font-size: 40px;
        font-weight: 600;
    }
    .content__text {
        padding-top: 25px;
        font-size: 18px;
    }
    .service__table {
        margin: 0 auto;
    }
    .service__table__row {
        flex-direction: column;
    }
    .service__table__cell {
        display: flex;
        padding-top: 32px;
    }
    .service__cell__icon {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        border: dashed 2px #676666;
        border-radius: 15px;
    }
    .service__cell__icon img {
        width: 60%;
    }
    .service__cell__title {
        padding-left: 16px;
        margin: auto 0;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 16px;
        line-height: 126%;
        letter-spacing: -0.5px;
    }
}

.about__general {
    background-color: #CCC8A5;
}
.about__overview {
    display: flex;
    justify-content: space-between;
}
.founder__title {
    line-height: 122%;
    font-weight: 300;
}
.founder__sub__title {
    color: #676666;
    font-weight: 300;
}
.achievements__table__row {
    display: flex;
}
.achievements__cell__number {
    line-height: 122%;
    letter-spacing: -0.5px;
}

/* About-general-block style for desktop devices */
@media (min-width: 1100px) {
    .about__overview {
        margin-bottom: 50px;
    }
    .about__achievements .content__text {
        margin-left: 105px;
        padding: 20px 0 90px 0;
        border-top: solid 5px black;
        font-size: 24px;
    }
    .achievements__table {
        margin-left: 100px;
    }
    .achievements__table__row:not(:first-child) {
        margin-top: 50px;
    }
    .achievements__table__cell:not(:first-child) {
        margin-left: 50px;
    }
    .achievements__cell__number {
        font-size: 60px;
    }
    .achievements__cell__title {
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 400;
        line-height: 122%;
        padding: 8px 0 12px 0;
        border-bottom: solid 1px black;
    }
    .founder__photo img {
        width: 532px;
    }
    .founder__title {
        padding-top: 20px;
        font-size: 30px;
    }
    .founder__sub__title {
        padding-top: 15px;
        font-size: 20px;
    }
}
/* About-general-block style for mobile devices */
@media (max-width: 1100px) {
    .about__general .content__title {
        text-align: center;
    }
    .about__overview {
        flex-direction: column;
    }
    .about__achievements {
        order: 1;
    }
    .achievements__table {
        margin: auto;
    }
    .achievements__table__cell {
        width: 148px;
        padding-top: 24px;
        border-bottom: solid 1px black;
    }
    .achievements__table__row {
        justify-content: space-around;
    }
    .achievements__cell__title {
        text-align: center;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 400;
        line-height: 122%;
        padding: 8px 0 12px 0;
    }
    .achievements__cell__number {
        text-align: center;
        font-weight: 500;
        font-size: 40px;
    }
    .about__founder {
        order: 2;
        padding-top: 55px;
    }
    .founder__photo {
        position: relative;
        margin: 0 -16px;
    }
    .founder__photo img {
        width: 100%;
    }
    .founder__title {
        padding-top: 16px;
        font-size: 18px;
    }
    .founder__sub__title {
        padding-top: 8px;
        font-size: 16px;
    }
}

.about__history__title {
    text-align: center;
    letter-spacing: -0.5px;
    font-weight: 700;
}
.about__history__text {
    line-height: 122%;
    letter-spacing: -0.5px;
    font-weight: 200;
}

/* About-history-block style for desktop devices */
@media (min-width: 980px) {
    .about__history {
        margin: 70px 0 120px 0;
    }
    .about__history__title {
        font-size: 60px;
        margin-bottom: 65px;
    }
    .about__history__text {
        margin: 0 92px;
        font-size: 24px;
    }
}
/* About-history-block style for mobile devices */
@media (max-width: 980px) {
    .about__history {
        margin: 56px 0;
    }
    .about__history__title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .about__history__text {
        font-size: 18px;
        padding-bottom: 10px;
    }
}

.about__advantages {
    border-top: solid 3px black;
}
.about__advantages__title {
    letter-spacing: -0.5px;
    font-weight: 600;
}
.advantages__table__row {
    display: flex;
    justify-content: space-between;
}
.advantages__table__cell__icon {
    display: flex;
    justify-content: center;
    border: dashed 2px #676666;
}
.advantages__table__cell__title {
    line-height: 122%;
    letter-spacing: -0.5px;
    font-weight: 400;
    text-transform: uppercase;
}
.advantages__table__cell__text {
    line-height: 122%;
    letter-spacing: -0.5px;
    font-weight: 200;
}

/* About-advantages-block style for desktop devices */
@media (min-width: 980px) {
    .about__advantages {
        padding-bottom: 130px;
    }
    .about__advantages__table {
        /* min-height: 100vh; */
        margin-left: 300px;
    }
    .about__advantages__title {
        font-size: 60px;
        margin: 65px 0;
    }
    .advantages__table__row:not(:first-child) {
        margin-top: 100px;
    }
    .advantages__table__cell {
        width: 400px;
    }
    .advantages__table__cell__icon {
        width: 130px;
        height: 130px;
        border-radius: 25px;
    }
    .advantages__table__cell__icon img{
        margin: auto 0;
    }
    .advantages__table__cell__title {
        font-size: 24px;
        margin: 30px 0;
    }
    .advantages__table__cell__text {
        font-size: 24px;
    }
}
/* About-advantages-block style for mobile devices */
@media (max-width: 980px) {
    .about__advantages__title {
        text-align: center;
        font-size: 40px;
        margin: 65px 0;
    }
    .advantages__table__row {
        flex-direction: column;
    }
    .advantages__table__cell {
        padding-bottom: 48px;
    }
    .advantages__table__cell__icon {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        border-radius: 15px;
    }
    .advantages__table__cell__icon img{
        width: 60%;
        margin: auto;
    }
    .advantages__table__cell__group {
        display: flex;
    }
    .advantages__table__cell__inner {
        padding-left: 16px;
    }
    .advantages__table__cell__title {
        font-size: 16px;
    }
    .advantages__table__cell__text {
        font-size: 18px;
        padding-top: 8px;
    }
}

.contacts__general {
    background-color: #000000;
    color: white;
}
.contacts__general .container {
    display: flex;
    justify-content: space-around;
}
.contacts__item {
    width: 260px;
    display: flex;
}
.contacts__item:not(:first-child) {
    margin-top: 36px;
}
.contacts__text {
    font-size: 20px;
    line-height: 23px;
    font-weight: 200;
    padding-left: 25px;
}
.contacts__text a {
    color: white;
    transition: color .2s;
}
.contacts__text a:hover {
    color: rgba(255, 255, 255, 0.728);
}

/* Contacts-block style for desktop devices */
@media (min-width: 1100px) {
    .contacts__general__inner {
        display: flex;
    }
    .contacts__general {
        min-height: 100vh;
        padding: 170px 0 60px 0;
    }
    .contacts__inner:first-child {
        margin-left: 100px;
    }
    .contacts__inner:not(:first-child) {
        border-left: solid 1px rgba(255, 255, 255, 0.5);
    }
    .contacts__block {
        margin: 60px;
    }
    .contacts__form__block {
        width: 400px;
        margin: 0 60px 50px 160px;
    }
}
/* Contacts-block style for mobile devices */
@media (max-width: 1100px) {
    .contacts__general {
        padding: 100px 0;
    }
    .black .header {
        border-bottom: 1px solid #A19F9F;
    }
    .contacts__general .container {
        flex-direction: column;
    }
    .contacts__block {
        padding-top: 40px;
        margin: 0 auto;
    }
    .contacts__form__block {
        padding-top: 80px;
    }
}
.contacts__item .contacts__text {
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.card__general {
    background: linear-gradient(to bottom, #f1f1f1, #e4e3e3);
    position: relative;
    overflow: hidden;
}
.card__link {
    position: relative;
    z-index: 4;
}
.card__link a {
    display: inline-flex;
    align-items: center;
    color: #676666;
    border-bottom: solid 1px transparent;
    transition: color 0.3s, border-bottom 0.3s;
}
.card__link svg {
    margin: 0 10px 0 0;
    transition: margin 0.3s;
}
.card__link a:hover {
    color: #45994C;
    /* border-bottom: solid 1px #45994C; */
}
.card__link a:hover svg {
    margin: 0 12px 0 4px;
}
.card__general__image {
    position: relative;
    display: inline-block;
}
.card__general__image img {
    z-index: 2;
}
.c__g__i__b__image {
    position: absolute;
}
.c__g__i__b__360 img {
    position: relative;
    width: 100%;
    height: 100%;
}
/* the image shadow */
/* .card__general__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-90%) rotate(190deg);
    width: 60%;
    height: 10%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    filter: blur(34px);
    z-index: 1;
} */
.c__g__i__block img {
    user-select: none;
    -moz-user-select: none;
}
#c__g__i__ghost {
    display: none;
}
.c__g__i__b__loader {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0
}
.card__general__title {
    line-height: 126%;
    text-transform: uppercase;
    color: black;
}
.card__general__text {
    line-height: 126%;
    color: black;
}
.card__general__btn {
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    line-height: 122%;
    font-size: 16px;
    letter-spacing: -0.5px;
    color: white;
    font-weight: 500;
    padding: 16px 85px;
    border: 2px solid #45994C;
    background-color: #45994C;
    transition: all .3s;
}
.card__general__btn a {
    color: white;
}
.card__general__btn:hover {
    background-color: transparent;
    border: 2px solid #45994C;
    color: #45994C;
}

.c__a__l__c__element img {
    width: 64px;
    height: 64px;
    margin-right: 20px;
}
/* Card style for desktop devices */
@media (min-width: 980px) {
    .card__general {
        padding: 120px 0;
    }
    .c__g__i__block {
        width: 50%;
    }
    .c__g__i__b__360 {
        position: relative;
        z-index: 1;
        top: 120px;
    }
    .c__g__i__b__360 img {
        width: 575px;
    }
    .c__g__i__b__image {
        height: 540px;
        object-fit: cover;
        object-position: center;
        left: -200px;
        top: -230px;
    }

    .card__link {
        font-size: 18px;
    }
    .card__general__inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .card__general__image {
        padding-right: 25px;
    }
    .card__general__content {
        max-width: 540px;
        padding: 60px 0 80px 95px;
        text-align: left;
        margin: 0;
        border-left: solid 1px rgba(0, 0, 0, 0.3);
    }
    .card__general__title {
        font-size: 30px;
        font-weight: 600;
    }
    .card__general__text {
        font-size: 24px;
        padding: 30px 0 20px 0;
        font-weight: 300;
    }

    .card__header {
        padding: 30px 0;
        background-color: #000000;
    }
    .card__header__menu {
        display: flex;
        justify-content: space-between;
        padding: 0;
    }
    .card__header__menu ul {
        display: flex;
        padding-left: 0;
        width: 100%;
        justify-content: space-between;
        list-style: none;
    }
    .card__header__menu li {
        position: relative;
    }
    .card__header a {
        font-size: 20px;
        text-transform: uppercase;
        color: white;
        line-height: 122%;
        text-decoration: none;
        display: block;
        transition: all .2s;
    }
    .card__header .active a {
        color: #45994C;
    }
    .card__header a:hover {
        color: #45994C;
    }

    .card__title {
        line-height: 122%;
        font-size: 50px;
        font-weight: 600;
    }

    .card__advantage {
        padding-top: 80px;
        background-color: white;
    }
    .card__advantage__list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px 0;
    }
    .c__a__l__c__element {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .card__characteristics {
        padding: 80px 0 70px 0;
    }
    .card__characteristics__content__inner .card__title {
        text-align: center;
    }
    .card__characteristics__block {
        margin-top: 65px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: stretch;
        height: 100%;
    }
    .card__characteristics__image {
        position: relative;
        margin: auto 0;
        display: grid;
        grid-gap: 14px;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        grid-auto-rows: 100px;
        padding-right: 40px;
    }
    .card__characteristics__image img {
        width: 100px;
        height: 100px;
        margin: 0;
        padding: 0;
    }
    .c__c__l__element {
        font-size: 20px;
        grid-gap: 35px;
    }
    .card__characteristics__btn {
        display: block !important;
        width: 30%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .card__video {
        padding: 75px 0;
        background-color: white;
        color: #000000;
    }
    .card__video__content__inner {
        padding: 0 100px;
    }
    .card__video__block {
        position: relative;
        padding: 0;
        width: 100%; 
        height: 0;
        padding-bottom: 56.25%; /* 16:9; 100/16*9 = 56.25 */
        overflow: hidden;
    }
    .card__video__block iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .card__description {
        padding: 80px 0 80px 0;
        background-color: #EFEFEF;
        color: #000000; 
    }
    .card__description__content__inner {
        padding: 0 100px;
    }
    .card__description__text {
        margin-top: 24px;
        font-weight: 200;
        /* padding-left: 140px; */
        font-size: 24px;
        line-height: 122%;
    }

    .card__gallery__slider {
        justify-content: space-between;
    }
    .card__gallery__slider .slider {
        margin: 0 5%;
    }
    .card__gallery__slider .slider .slider__item {
        padding: 0 15px;
    }
    .card__gallery__items {
        padding: 45px 0;
    }
    .slider__item img {
        width: 100%;
    }
    .slider__left,
    .slider__right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: black;
        z-index: 2;
    }
    .slider__left {
        left: 0;
    }
    .slider__right {
        right: 0;
    }
}
/* Card style for mobile devices */
@media (max-width: 980px) {
    .card__general {
        padding: 90px 0 48px 0;
    }
    #c__g__i__b__content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .c__g__i__b__360 {
        position: absolute;
        width: 100%;
        z-index: 1;
        bottom: 0;
    }
    .card__general__image img {
        position: relative;
    }
    .c__g__i__b__image {
        scale: 1.5;
        object-fit: cover;
        object-position: center;
    }

    .card__link {
        font-size: 18px;
        padding-bottom: 60px;
    }
    .card__general__inner {
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .card__general__content {
        padding-top: 50px;
        text-align: left;
        margin: 0;
    }
    .card__general__title {
        display: flex;
        flex-direction: column;
        font-size: 20px;
        font-weight: 500;
    }
    .card__general__text {
        font-size: 16px;
        padding: 24px 0;
        font-weight: 300;
    }
    .card__general__btn {
        width: 100%;
    }

    .card__header {
        display: none;
    }

    .card__title {
        line-height: 122%;
        font-size: 30px;
        font-weight: 500;
        text-align: center;
        margin: 0 auto;
    }

    .card__advantage {
        padding: 40px 0 20px 0;
        background-color: white;
    }
    .card__advantage__list {
        display: flex;
        flex-direction: column;
        padding: 30px 0;
    }
    .c__a__l__c__element {
        font-size: 16px;
    }
    .card__characteristics {
        padding: 60px 0;
    }
    .card__characteristics__block {
        padding-top: 40px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .card__characteristics__image {
        position: relative;
        display: flex;
        padding-bottom: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .card__characteristics__image img {
        width: 60px;
        height: 60px;
        margin: 0;
        padding: 0;
    }
    .card__characteristics__list  {
        padding-bottom: 30px;
    }
    .c__c__l__element {
        grid-gap: 16px;
        font-size: 14px;
    }
    .card__characteristics__btn {
        width: 100%;
    }

    .card__video {
        padding: 40px 0 60px 0;
        background-color: white;
        color: #000000;
    }
    .card__video__block {
        position: relative;
        padding: 0;
        width: 100%; 
        height: 0;
        padding-bottom: 56.25%; /* 16:9; 100/16*9 = 56.25 */
        overflow: hidden;
    }
    .card__video__block iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .card__description {
        padding: 60px 0 35px 0;
        background-color: #EFEFEF;
        color: #000000; 
    }
    .card__description__content__inner  .card__title {
        text-align: left;
    }
    .card__description__text {
        margin-top: 30px;
        font-weight: 300;
        font-size: 16px;
        line-height: 122%;
    }

    .card__gallery__slider {
        justify-content: space-around;
    }
    .card__gallery__items {
        padding: 20px 0 35px 0;
    }
    .slider__item img {
        width: 100%;
    }
    .slider__left,
    .slider__right {
        display: none;
    }
}

.c__a__l__c__element {
    line-height: 122%;
    display: flex;
    align-items: center;
}
.card__characteristics {
    background-color: #EFEFEF;
    color: #000000;
}
.card__characteristics__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.c__c__l__element {
    display: grid;
    grid-template-columns: repeat(2, minmax(40%, 1fr));
    width: 100%;
}
.c__c__l__element:not(:last-child) {
    margin-bottom: 20px;
}
.c__c__l__element p {
    margin: 0;
    padding: 0;
}
.c__c__l__value {
    font-weight: 200;
    color: #676666;
}
.card__characteristics__btn {
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    line-height: 122%;
    font-size: 18px;
    letter-spacing: -0.5px;
    color: black;
    font-weight: 500;
    padding: 16px 46px;
    border: 2px solid black;
    background-color: transparent;
    transition: all .3s;
}
.card__characteristics__btn:hover {
    background-color: black;
    color: white;
}
.card__characteristics__btn:hover a {
    color: white;
}

.card__gallery {
    padding-top: 60px;
    background-color: white;
    color: #000000; 
}
.card__gallery__content__inner {
    position: relative;
}
/* slider main block */
.card__gallery__slider .slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* slider items */
.card__gallery__slider .slider .slider__item {
    display: none;
    user-select: none;
}
.slider__item img {
    pointer-events: none;
}
.slider__item.active {
    display: block;
}
.slider__item p {
    margin: 0;
    padding: 0;
}

.card__gallery__indicator {
    width: 10px;
    height: 10px;
}

/* Catalog page */
.catalog__general {
    background-color: white;
}
.catalog__general__inner {
    display: flex;
    justify-content: space-around;
}
.catalog__filter__link {
    position: relative;
}
.catalog__filter__link a {
    font-size: 18px;
    line-height: 122%;
    display: inline-flex;
    align-items: center;
    color: #676666;
    border-bottom: solid 1px transparent;
    transition: color 0.3s, border-bottom 0.3s;
}
.catalog__filter__link svg {
    margin: 0 10px 0 0;
    transition: margin 0.3s;
}
.catalog__filter__link a:hover {
    color: #45994C;
    /* border-bottom: solid 1px #45994C; */
}
.catalog__filter__link a:hover svg {
    margin: 0 12px 0 4px;
}
.catalog__filter__line {
    transition: all .3s;
}
.catalog__filter__main {
    margin: 40px 40px 0 40px;
}
.c__f__t__title {
    font-size: 18px;
    line-height: 122%;
    color: black;
    font-weight: 400;
    padding-bottom: 24px;
}
.c__f__t__checkbox {
    font-size: 16px;
    line-height: 122%;
    color: black;
    letter-spacing: -0.5px;
    padding-bottom: 48px;
}
.c__f__t__checkbox label {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 16px;
}
.c__f__t__checkbox input {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    /* appearance: none;
    -webkit-appearance: none; */
}

.catalog__main {
    width: 100%;
    position: relative;
}
.catalog__title {
    font-size: 24px;
    line-height: 122%;
    font-weight: 400;
}
.catalog__description {
    font-size: 20px;
    line-height: 122%;
    font-weight: 200;
}
.c__c__i__image {
    position: relative;
    display: flex;
    justify-content: space-around;
    margin-bottom: 8px;
}
.c__c__i__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(224 224 224), rgb(224 224 224));
    background-size: cover;
    z-index: 1;
}
.c__c__i__image img {
    height: 297px;
    z-index: 2;
}
.c__c__i__title {
    font-size: 18px;
    line-height: 122%;
    color: black;
    font-weight: 400;
    margin-bottom: 4px;
}
.c__c__i__description {
    font-size: 14px;
    font-weight: 200;
    line-height: 122%;
    color: #676666;
}

/* Catalog style for desktop devices */
@media (min-width: 980px) {
    .catalog__general {
        padding-top: 80px;
    }
    .catalog__general__inner {
        flex-direction: row;
        justify-content: space-around;
    }
    .catalog__filter {
        width: 360px;
        margin-left: -100px;
        border-right: solid 1px #D9D9D9;
    }
    .catalog__filter__link {
        padding: 32px 0;
    }
    .catalog__filter__link a {
        margin-left: 40px;
    }
    .catalog__filter__main {
        display: block;
    }
    .catalog__main {
        margin-left: 40px;
    }
    .catalog__title {
        padding: 32px 0;
        text-align: center;
    }
    .catalog__description {
        margin: 0 auto;
        width: 80%;
        padding-bottom: 40px;
    }
    .catalog__filter__button {
        display: none;
    }
    .catalog__content a {
        display: inline-block;
        vertical-align: top;
        margin-right: 3%;
    }
    .catalog__content__item {
        width: 250px; /* TODO - when filters will be enabled, need to change 250px to 280px - width: 280px; */
        margin-bottom: 52px;
    }
    .c__c__i__image img {
        width: 100%;
    }
}
/* Catalog style for mobile devices */
@media (max-width: 980px) {
    .catalog__general {
        padding-top: 72px;
    }
    .catalog__general__inner {
        flex-direction: column;
    }
    .catalog__title {
        text-align: left;
    }
    .catalog__filter__link {
        padding: 16px 0;
    }
    .catalog__filter__line {
        width: 100%;
    }
    .catalog__filter__main {
        display: none;
    }
    .catalog__title {
        padding: 16px 0;
    }
    .catalog__filter__button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
        width: 107px;
        height: 32px;
        padding: 0;
        text-transform: uppercase;
        cursor: pointer;
        color: black;
        background-color: transparent;
        font-size: 14px;
        letter-spacing: -0.5px;
        line-height: 122%;
        font-weight: 400;
        border: solid 1px black;
        transition: all .3s;
        position: relative;
    }
    .catalog__filter__button svg {
        margin-right: 8px;
    }
    .catalog__filter__button:hover {
        color: white;
        background-color: black;
    }
    .catalog__content {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
    }
    .catalog__content__item {
        width: 100%;
        margin-bottom: 32px;
    }
}

.blog__more__button {
    display: block;
    width: max-content;
    margin: 0 auto;
    grid-column: 1 / -1;
    width: 285px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 122%;
    font-size: 16px;
    letter-spacing: -0.5px;
    color: white;
    font-weight: 500;
    transition: all .3s;
    background-color: #45994C;
    padding: 15px 0;
    /* margin-top: 20px; */
}
.b__i__c__link a {
    color: #45994C;
}
.blog__item__image img {
    height: 175px;
    width: 100%;
}
/* Blog style for desktop devices */
@media (min-width: 980px) {
    .blog__general {
        padding: 145px 0 85px 0;
    }
    .blog__general .container {
        margin: 0 auto;
    }
    .blog__list {
        display: grid;
        margin: 0 auto;
        grid-gap: 35px;
        grid-template-columns: repeat(3, minmax(285px, 285px));
        justify-content: center;
    }
    .blog__item {
        transition: width .3s, height .3s;
        display: inline-block;
        vertical-align: top;
        width: 285px;
        min-height: 365px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    }
    .blog__item__content {
        height: 100%;
        padding: 24px 16px;
    }
    .b__i__c__title {
        width: 100%;
        min-height: 140px;
        font-size: 20px;
        font-weight: 400;
        color: black;
        line-height: 122%;
        text-align: left;
    }
    .b__i__c__link {
        text-align: right;
        font-size: 18px;
    }
}
/* Blog style for mobile devices */
@media (max-width: 980px) {
    .blog__general {
        padding: 100px 0 55px 0;
    }
    .blog__general .container {
        margin: 0 16px;
    }
    .blog__list {
        display: grid;
        margin: 0 auto;
        grid-gap: 35px;
        grid-template-columns: repeat(1, minmax(328px, 328px));
        justify-content: center;
    }
    .blog__item {
        transition: width .3s, height .3s;
        display: inline-block;
        vertical-align: top;
        width: 328px;
        min-height: 320px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    }
    .blog__item__content {
        padding: 24px;
    }
    .b__i__c__title {
        width: 100%;
        min-height: 140px;
        font-size: 20px;
        font-weight: 400;
        color: black;
        line-height: 122%;
        text-align: left;
    }
    .b__i__c__link {
        text-align: right;
        font-size: 18px;
    }
}

/* Post style for desktop devices */
@media (min-width: 1300px) {
    .post__general__content {
        margin: 0 160px !important;
    }
}
@media (min-width: 980px) {
    .post__general {
        padding: 145px 0 50px 0;
    }
    .post__title {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 45px;
    }
    .post__title__text {
        width: 50%;
        font-size: 50px;
        font-weight: 600;
        line-height: 122%;
        letter-spacing: -0.5px;
        margin-right: 65px;
    }
    .post__title__image {
        display: flex;
        justify-content: center;
    }
    .post__title__image img {
        width: 100%;
    }
    .post__general__content {
        margin: 0 auto;
    }
    .post__content {
        padding: 0 80px 32px 80px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgb(103 102 102 / 50%);
    }
    .post__content__inner {
        font-size: 18px;
        line-height: 122%;
    }
    .post__content__inner ul {
        margin-left: 40px;
    }
    .post__content__inner li {
        list-style: disc;
    }
    .post__content__inner a {
        text-decoration: underline;
    }
    .post__content__inner p:empty {
        display: block;
        visibility: hidden;
        margin-bottom: 24px;
        height: 0;
    }
    .post__content__inner p strong {
        display: block;
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 24px;
    }
    .post__content__inner figure {
        display: flex;
        margin: 40px 0 32px 0 !important;
    }
    .post__content__inner figcaption {
        margin-left: 24px !important;
    }
    .post__footer_posts {
        margin-top: 52px;
        display: flex;
        justify-content: space-between;
    }
}
/* Post style for mobile devices */
@media (max-width: 980px) {
    .post__general {
        padding: 100px 0 40px 0;
    }
    .post__title {
        display: block;
    }
    .post__title__text {
        font-size: 28px;
        font-weight: 500;
        line-height: 122%;
        letter-spacing: -0.5px;
    }
    .post__title__image img {
        margin: 32px 0;
        width: 100%;
    }
    .post__content {
        margin-bottom: 24px;
    }
    .post__content__inner {
        font-size: 18px;
        line-height: 122%;
    }
    .post__content__inner ul {
        margin-left: 40px;
    }
    .post__content__inner li {
        list-style: disc;
    }
    .post__content__inner a {
        text-decoration: underline;
    }
    .post__content__inner p:empty {
        display: block;
        visibility: hidden;
        margin-bottom: 24px;
        height: 0;
    }
    .post__content__inner p strong {
        display: block;
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 16px;
    }
    .post__content__inner figure {
        display: flex;
        flex-direction: column;
    }
    .post__content__inner figure img {
        width: 100% !important;
        margin: 32px 0;
        order: 2;
    }
    .post__footer_posts {
        display: grid;
        margin: 0 auto;
        grid-gap: 35px;
        grid-template-columns: repeat(1, minmax(100%, 100%));
        justify-content: center;
    }
    .post__footer_posts .blog__item {
        width: 100%;
    }
}

/* 404 style for desktop devices */
@media (min-width: 650px) {
    .not__found {
        margin: 0;
        padding: 0;
        height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        color: black;
    }
    .not__found__inner {
        text-align: center;
    }
    .not__found__code {
        font-size: 350px;
        line-height: 122%;
        font-weight: 400;
    }
    .not__found__text {
        font-size: 48px;
        line-height: 122%;
        font-weight: 400;
        margin-bottom: 28px;
    }
    .not__found__button {
        width: 225px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 122%;
        text-align: center;
        text-transform: uppercase;
        font-weight: 400;
        cursor: pointer;
        border: 1px solid black;
        background-color: transparent;
        color: black;
        padding: 14px 18px;
        transition: .3s all;
    }
    .not__found__button:hover {
        border: 1px solid white;
        background-color: black;
        color: white;
    }
}
/* 404 style for mobile devices */
@media (max-width: 650px) {
    .not__found {
        margin: 0;
        padding: 0;
        height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        color: black;
    }
    .not__found__inner {
        text-align: center;
    }
    .not__found__code {
        font-size: 150px;
        line-height: 122%;
        font-weight: 400;
    }
    .not__found__text {
        font-size: 30px;
        line-height: 122%;
        font-weight: 400;
        margin-bottom: 16px;
    }
    .not__found__button {
        width: 225px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 122%;
        text-align: center;
        text-transform: uppercase;
        font-weight: 400;
        cursor: pointer;
        border: 1px solid black;
        background-color: transparent;
        color: black;
        padding: 14px 18px;
        transition: .3s all;
    }
    .not__found__button:hover {
        border: 1px solid white;
        background-color: black;
        color: white;
    }
}

@media (min-width: 980px) {
    .jobs__general {
        position: relative;
        overflow: hidden;
        min-height: 750px;
        padding: 80px 0;
        line-height: 122%;
    }
    .jobs__header {
        font-size: 100px;
        color: black;
        line-height: 122%;
        padding: 100px 0;
    }
    .jobs__list {
        padding: 0 120px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-gap: 40px 90px;
    }
}
@media (max-width: 980px) {
    .jobs__general {
        position: relative;
        overflow: hidden;
        min-height: 750px;
        padding: 80px 0;
        line-height: 122%;
    }
    .jobs__header {
        font-size: 50px;
        color: black;
        line-height: 122%;
        padding: 50px 0;
    }
    .jobs__list {
        display: flex;
        flex-direction: column;
    }
    .jobs__list a {
        margin: 5px;
    }
}
.job_header {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 25px;
    background-color: #CCC8A5;
}
.job__title__text {
    padding: 40px 0;
    line-height: 122%;
    font-size: 50px;
    color: black;
}
.job__description__text {
    line-height: 122%;
    font-size: 24px;
    color: black;
    font-weight: 300;
    margin-right: 20%;
}
@media (min-width: 1200px) {
    .job__apply__form {
        border-radius: 10px;
        top: -5%;
        right: 5%;
        width: 480px;
        color: black;
        padding: 50px 40px 20px 40px;
        background-color: white;
        position: absolute;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    }
    .job__content {
        margin-right: 45%;
    }
}
@media (max-width: 1200px) {
    .job__apply__form {
        border-radius: 10px;
        width: 480px;
        color: black;
        padding: 50px 40px 20px 40px;
        background-color: white;
        position: relative;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    }
    .job__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.job__apply__form__title {
    font-size: 24px;
    color: black;
    line-height: 122%;
    padding: 0;
    text-align: center;
}
.job__apply__form__input {
    width: 100%;
    margin-top: 35px;
    background-color: transparent;
    border: 0;
    font-size: 16px;
    padding: 7px 0;
    line-height: 20px;
    letter-spacing: -0.5px;
    text-align: left;
    font-weight: 100;
    color: black;
    caret-color: #45994C;
    border-bottom: solid 1px black;
    appearance: none !important;
    border-radius: 0px !important;
    -webkit-appearance: none !important;
    -webkit-border-radius: 0px !important;
}
.job__apply__form__input:focus {
    border-bottom: solid 1px #45994C;
}
.job__apply__form__input::placeholder{
    color: black;
}
.job__apply__form__file {
    margin-top: 35px;
}
.job__apply {
    display: inline-block;
    padding: 25px 0;
}
.job__apply__btn {
    text-align: center;
    min-width: 258px;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    line-height: 122%;
    font-size: 16px;
    letter-spacing: -0.5px;
    color: white;
    font-weight: 500;
    padding: 12px 46px;
    border: 2px solid #45994C;
    background-color: #45994C;
    transition: all .3s;
}
.job__apply__btn:hover {
    background-color: #45994C;
    color: white;
    border: 2px solid #45994C;
}
.job__general {
    padding: 50px 0;
}
.jobs__item {
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    cursor: pointer;
    /* width: 455px; */
    font-size: 24px;
    height: 100px;
    font-weight: 300;
    background-color: white;
    color: black;
    text-align: left;
    line-height: 122%;
    text-transform: uppercase;
    padding: 0 50px 0 40px;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 10%);
    transition: all .2s;
}
.jobs__item:hover {
    background-color: #45994C;
    color: white;
}
.jobs__item span {
    position: absolute;
    top: 16px;
    right: 16px;
    color: white;
}
.job__description__text h3 {
    font-size: 24px;
    color: black;
}
.job__content__inner {
    color: black;
    line-height: 122%;
    font-size: 20px;
    font-weight: 300;
}
.job__content__inner h5 {
    color: #A19F9F;
    font-size: 20px;
    text-align: left;
    font-weight: 300;
    text-transform: uppercase;
    padding: 25px 0;
}

.wpcf7-form-control.wpcf7-file {
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.custom__file__upload {
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border: 1px dashed #D9D9D9;
    border-radius: 5px;
    background-color: #F2F2F2;
    color: #A19F9F;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.custom__file__upload:hover {
    background-color: #fbfbfb;
}
.custom__file__upload .upload-icon {
    font-size: 18px;
    margin-right: 8px;
}
.custom__file__upload .upload__text {
    color: #A19F9F;
    line-height: 20px;
    font-weight: 100;
}
.file__label {
    margin-top: 35px;
    font-size: 14px;
    line-height: 20px;
    color: black;
    font-weight: 100;
    text-align: left;
    font-size: 16px;
}

