/***************************************
*General
****************************************/

body {
    font-family: "Karla", sans-serif;
    color: #474747;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
    font-style: normal;
    overflow-x: hidden;
}

.sect-title {
    position: relative;
}

.sub-title {
    color: #35B81A;
    font-size: clamp(16px, 1rem + 0.4vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2272727em;
    text-transform: uppercase;
    margin-bottom: clamp(30px, 1rem + 3.4vw, 80px);
    margin-bottom: clamp(30px, 1rem + 2.3vw, 60px);
}

.sect-title h2,
.sect-title .h2,
.sect-title .bloc-title {
    font-family: "Newsreader", serif;
    color: #080808;
    font-size: clamp(28px, 1rem + 1.3vw, 40px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em;
    margin-bottom: clamp(30px, 1rem + 1.3vw, 40px);
}

.sect-title h1,
.sect-title .h1,
.page-title {
    font-family: "Newsreader", serif;
    color: #080808;
    font-size: clamp(28px, 1rem + 1.3vw, 40px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em;
    margin-bottom: clamp(30px, 1rem + 1.3vw, 40px);
}


/* Preloader */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 140px;
}


/** Animation **/

.splt-txt.animated .char {
    -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.splt-txt .whitespace {
    width: 8px;
}

.mask-skew {
    overflow: hidden;
    position: relative;
}

.mask-skew .mask {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    z-index: 100;
    width: 120%;
    animation-fill-mode: forwards;
}

.mask-skew .mask .inside {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    transform: skewX(-10deg);
    transform-origin: bottom;
}


.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}



/** Slider **/

.owl-theme .owl-nav [class*=owl-] {
    padding: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.owl-theme .owl-nav [class*=owl-].disabled {
    cursor: default;
}

.owl-theme .owl-nav [class*=owl-],
.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    background-color: transparent;
}

.owl-prev {
    left: -3rem;
}

.owl-next {
    right: -3rem;
}

.nav-inside.owl-theme .owl-nav {
    margin-top: 0;
}

.nav-inside .owl-prev {
    left: 15px;
}

.nav-inside .owl-next {
    right: 15px;
}

.nav-square.owl-theme .owl-nav [class*=owl-] {
    width: 68px;
    height: 68px;
    border: #080808 1px solid;
    background: transparent;
    margin: 0;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.nav-square.owl-theme .owl-nav [class*=owl-]:hover:not(.disabled) {
    background: #080808;
}

.nav-square .arrow {
    position: relative;
    width: 22px;
    height: 38px;
}

.nav-square .arrow-top,
.nav-square .arrow-bottom {
    background-color: #080808;
}

.nav-square .arrow-top:after,
.nav-square .arrow-bottom:after {
    background-color: #ffffff;
}

.nav-white-red.owl-theme .owl-nav [class*=owl-] {
    border-color: #ffffff;
    background: #ffffff;
}

.nav-white-red.owl-theme .owl-nav [class*=owl-]:hover:not(.disabled) {
    background: #35B81A;
    border-color: #35B81A;
}

.nav-white-orange.owl-theme .owl-nav [class*=owl-] {
    border-color: #ffffff;
}

.nav-white-orange.owl-theme .owl-nav [class*=owl-]:hover:not(.disabled) {
    background: #35B81A;
    border-color: #35B81A;
}

.nav-white-orange .arrow-top,
.nav-white-orange .arrow-bottom {
    background-color: #ffffff;
}

@media (min-width: 1600px) {
    .nav-inside .owl-prev {
        left: 3.75rem;
    }

    .nav-inside .owl-next {
        right: 3.75rem;
    }
}

.arrow {
    width: 22px;
    height: 38px;
    margin-left: auto;
    margin-right: auto;
}

.arrow-top,
.arrow-bottom {
    background-color: #FFF;
    height: 4px;
    left: -10%;
    position: absolute;
    top: 50%;
    width: 100%;
    border-radius: 2px;
}

.arrow-top:after,
.arrow-bottom:after {
    background-color: #35B81A;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.15s;
}

.arrow-top {
    transform: rotate(45deg);
    transform-origin: bottom right;
}

.arrow-top:after {
    left: 100%;
    right: 0;
    transition-delay: 0s;
}

.arrow-bottom {
    transform: rotate(-45deg);
    transform-origin: top right;
}

.arrow-bottom:after {
    left: 0;
    right: 100%;
    transition-delay: 0.15s;
}

.owl-prev:not(.disabled):hover .arrow-top:after,
.owl-next:not(.disabled):hover .arrow-top:after {
    left: 0;
    transition-delay: 0.15s;
}

.owl-prev:not(.disabled):hover .arrow-bottom:after,
.owl-next:not(.disabled):hover .arrow-bottom:after {
    right: 0;
    transition-delay: 0s;
}

.arrow:active {
    transform: scale(0.9);
}

.owl-prev .arrow {
    transform: scaleX(-1);
}

.owl-prev .arrow:active {
    transform: scaleX(-1) scale(0.9);
}


/** Colors **/

.color--1 {
    color: #fff !important;
}

.color--2 {
    color: #35B81A !important;
}

.color--3 {
    color: #F0F0F0 !important;
}

.color--4 {
    color: #080808 !important;
}

.color--5 {
    color: #DCEDD8 !important;
}

.color--6 {
    color: #2E4B9A !important;
}

.color--7 {
    color: #000 !important;
}


/** Background **/

.background--1 {
    background-color: #fff !important;
}

.background--2 {
    background-color: #35B81A !important;
}

.background--3 {
    background-color: #F0F0F0 !important;
}

.background--4 {
    background-color: #080808 !important;
}

.background--5 {
    background-color: #DCEDD8 !important;
}

.background--6 {
    background-color: #2E4B9A !important;
}

.background--7 {
    background-color: #000 !important;
}


/** Socials **/

.social-link {
    outline: none;
    position: relative;
}

.social-link:hover svg path {
    fill: #A37D61 !important;
}

.social-txt {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 1.178rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1318em;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 13px;
}


/** Variables **/

p {
    margin-bottom: 26px;
}

section {
    padding-top: clamp(50px, 1rem + 7.8vh, 100px);
    padding-bottom: clamp(50px, 1rem + 7.8vh, 100px);
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

figure {
    margin: 0;
}

a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

.form-group {
    margin-bottom: 25px;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

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

*::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

.form-control,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
    font-family: "Karla", sans-serif;
    color: #474747;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    vertical-align: middle;
    width: 100%;
    text-transform: inherit;
    outline: none !important;
    height: 36px;
    padding: 0 0 10px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #474747;
    background-color: transparent;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #474747;
    border: 0;
    border-bottom: 1px solid #474747;
    background-color: transparent;
}

input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #474747 !important;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 110.1+ */
    color: #474747 !important;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #474747 !important;
}

textarea::placeholder {
    color: #474747 !important;
}

.btn-1,
button,
input[type="submit"],
input[type="button"] {
    font-family: "Karla", sans-serif;
    color: #FFF;
    font-size: clamp(16px, 1rem + 0.3vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.4em;
    text-transform: none;
    padding: 10px 25px;
    text-align: center;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    background: #35B81A;
    border: 0;
    height: 100%;
    z-index: 1;
    gap: 10px;
    overflow: hidden;
}

.btn-1 {
    min-height: 48px;
}

.btn-1:before {
    content: "";
    background-color: #080808;
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 5px 5px 0 0;
}

.btn-1:after {
    content: "";
    background-color: #080808;
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 0 0 5px 5px;
}

.btn-1:hover:before,
.btn-1:hover:after {
    width: 100%;
}

.btn-1:hover,
button:hover,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
    background: #35B81A;
    outline: none;
    color: #fff;
}

.text-align-last {
    -moz-text-align-last: center;
    text-align-last: center;
}

.text-hyphens {
    -ms-hyphens: auto;
    hyphens: auto;
}

.box-shadow {
    box-shadow: 0 -5px 25px -48px rgba(0, 0, 0, 0.06);
}

.overlay {
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    opacity: 0.5;
}

.opacity-10 {
    opacity: 0.10;
}

.opacity-20 {
    opacity: 0.20;
}

.opacity-30 {
    opacity: 0.30;
}

.opacity-0 {
    opacity: 0;
}

.border-0 {
    border: 0;
}

.width-50 {
    width: 50%;
}

.width-45 {
    width: 45%;
}

.flex--1 {
    -ms-flex: 1;
    flex: 1;
}

.z-index--1 {
    z-index: 1 !important;
}

.z-index--2 {
    z-index: 2 !important;
}

.z-index--auto {
    z-index: auto !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.font-weight-800 {
    font-weight: 900 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.text-normal {
    text-transform: none !important;
}

.text-underline {
    text-decoration: underline !important;
}

.text-transform-none {
    text-transform: none !important;
}

.margin-b-30px {
    margin-bottom: 30px;
}

.margin-l-neg15px {
    margin-left: -15px;
}

.margin-r-neg15px {
    margin-right: -15px;
}

.border-radius-5px {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.border-radius-10px {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.border-8px {
    border: 8px solid #EDDBC5;
}

.border-ligth-8px {
    border: 8px solid #F6EDE2;
}

.v-middle {
    transform: translateY(-50%);
    top: 50%;
}

.h-middle {
    transform: translateX(-50%);
    left: 50%;
}

.hv-middle {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.bg-gradient {
    background: linear-gradient(180deg, #DCEDD8 0%, #F8F8F8 100%);
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.obj-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.obj-fit-pos-t {
    object-position: top;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-pos-tc {
    background-position: top center;
}

.bg-pos-tl {
    background-position: top left;
}

.bg-pos-bl {
    background-position: bottom left;
}

.bg-pos-tr {
    background-position: top right;
}

.bg-pos-br {
    background-position: bottom right;
}

.bg-pos-center {
    background-position: center center;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.top-0 {
    top: 0 !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.right-0 {
    right: 0 !important;
}

.gap-30px {
    gap: 30px;
}

.column-gap-30px {
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.column-gap-100px {
    -moz-column-gap: 100px;
    -webkit-column-gap: 100px;
    column-gap: 100px;
}

.column-count-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.txt-stroke {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    color: transparent;
}


.offset-right-1 {
    margin-right: 8.333333%;
}


/** Transition **/

img,
svg,
svg * {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


/** Extra Outer **/

body .page {
    position: relative;
    background: #F8F8F8;
    overflow: hidden;
}

body .site-main {
    background: #F8F8F8;
    z-index: 200;
    position: relative;
}


/***************************************
* Header
****************************************/
.site-navigation__menu,
.site-navigation__inner,
.main-header .site-navigation .menu ul li,
.site-header-menu__inner,
.main-header__wrap {
    position: relative;
}

.main-menu-toggle input[type=checkbox],
.main-menu-toggle {
    display: none;
}

.site-header-menu {
    position: relative;
    z-index: 1;
}

.main-header {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: absolute;
    z-index: 999;
    background-color: transparent;
}

.main-header .site-navigation .menu>ul>li>a {
    color: #FFF;
    font-size: clamp(16px, 1rem + 0.3vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.3em;
    text-transform: uppercase;
    position: relative;
    display: flex;
    text-decoration: none;
    text-align: center;
    align-items: center;
}

.main-header .site-navigation .menu ul ul>li a {
    color: #080808;
    font-size: clamp(16px, 1rem + 0.2vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.45em;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    display: block;
}

.main-header .site-navigation .menu>ul>li.active>a,
.main-header .site-navigation .menu>ul>li:hover>a,
.main-header .site-navigation .menu>ul>li.hover>a {
    color: #fff;
}

.main-header .site-navigation .menu ul ul>li.active>a,
.main-header .site-navigation .menu ul ul>li:hover>a,
.main-header .site-navigation .menu ul ul>li.hover>a {
    color: #35B81A;
}

.other-links .menu__client-area-link:hover svg path {
    fill: #CDCDCD !important;
}

.intern .other-links .menu__client-area-link svg path,
.sticked-menu .other-links .menu__client-area-link svg path {
    fill: #080808 !important;
}


/** Header top **/

.main-header__top {
    position: relative;
    display: flex;
    background: #E6E6E6;
    height: 80px;
    z-index: 1;
}

.main-header__top-inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.main-header__top-items {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    flex: 1;
}

.main-header__top-items:nth-child(2) {
    justify-content: end;
}

.layer-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 35px);
    height: 80px;
    background-color: #35B81A;
    z-index: -1;
}

.layer-shape:before {
    width: 0;
    height: 0;
    border-width: 80px 33px 0 0;
    border-color: #E6E6E6 transparent transparent transparent;
    border-style: solid;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.main-header__top-item>a,
.main-header__top-item {
    color: #080808;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.625em;
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.main-header__top-items:nth-child(2) .main-header__top-item a {
    color: #FFFFFF;
}

.main-header__top-item a:hover {
    color: #35B81A;
    font-weight: 700;
}

.main-header__top-items:nth-child(2) .main-header__top-item a:hover {
    color: #CDCDCD;
}

.main-header__top-items:nth-child(2) .main-header__top-item a:hover svg path {
    fill: #CDCDCD !important;
}

.blk-language ul {
    display: flex;
    align-items: center;
    gap: 10px;
}


/***************************************
* Footer
****************************************/

.footer {
    position: relative;
}

.fixed-footer .footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.footer-title {
    color: #35B81A;
    font-family: "Newsreader", serif;
    font-size: clamp(18px, 1rem + 0.4vw, 22px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.091em;
    text-transform: uppercase;
    margin-bottom: 25px;
}


/***************************************
* Bloc text / image
****************************************/

.bloc-text {
    font-family: "Karla", sans-serif;
    color: #474747;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
}

.bloc-text p:last-of-type {
    margin-bottom: 0;
}

.bloc-text p+ul {
    margin-top: -1.625em;
}

.bloc-text ul {
    margin-bottom: 1.625em;
    padding-left: 20px;
}

.bloc-text ul li {
    position: relative;
    padding-left: 10px;
}

.bloc-text ul li:before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #1C1C1C;
    position: absolute;
    top: 10px;
    border-radius: 4px;
    left: 0;
}

.bloc-text h3,
.bloc-text .h3 {
    color: #1C1C1C;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 25px;
    padding-top: 23px;
}

.page .font-size-24px {
    font-size: clamp(18px, 1rem + 0.5vw, 24px);
    line-height: normal;
}

.bloc-text p img,
.bloc-text h2 img {
    display: none;
}

.bloc-text h2 {
    font-family: "Newsreader", serif;
    color: #080808;
    /*font-size: clamp(28px, 1rem + 1.3vw, 40px);*/
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em;
    margin-bottom: clamp(30px, 1rem + 1.3vw, 40px);
}