main {
    overflow: hidden;
}

section {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section#home {
    height: 70vh;
    min-height: 662px;
}

section#about {
    margin-top: 40px;
}

section#images {
    margin-top: 170px;
}

section#benefits {
    margin-top: 150px;
}

section#articles {
    margin-top: 100px;
}

section#ratings {
    margin-top: 200px;
}

section#works {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
    margin-bottom: 110px;
}



.social-links {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    top: 35%;
    -webkit-transform: translateY(-35%);
        -ms-transform: translateY(-35%);
            transform: translateY(-35%);
}

.social-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid transparent;
    padding: 5px;
    border-radius: 15px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    position: relative;
    top: 0;
}

.social-links a:first-child {
    -webkit-animation: socials 1.3s ease-in-out;
            animation: socials 1.3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: .6s;
            animation-delay: .6s;
    left: -300px;
}

.social-links a:nth-child(2) {
    -webkit-animation: socials 1.3s ease-in-out;
            animation: socials 1.3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: .9s;
            animation-delay: .9s;
    left: -300px;
}

.social-links a:nth-child(3) {
    -webkit-animation: socials 1.3s ease-in-out;
            animation: socials 1.3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
    left: -300px;
}

@-webkit-keyframes socials {
 from { left: -300px; }
 to { left: 0; }
}

@keyframes socials {
 from { left: -300px; }
 to { left: 0; }
}



.social-links a:hover {
    border-color: var(--mainColor);
    top: -2px;
}

.section-links.fixed {
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 9999;
}

.section-links.fixed ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.section-links.fixed a {
    text-decoration: none;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 4px;
    height: 4px;
    margin: 0 auto;
    padding: 16px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.section-links.fixed a:hover {
    color: var(--mainColor);
}

.section-links li {
    border: 1px solid transparent;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border-radius: 50%;
    margin-bottom: -9px;
}

.section-links li.active {
    margin: 18px 0 9px;
    border-color: #000;
}

.triangle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.triangle-1 {
    border: 33px solid transparent;
    border-right: 33px solid #C4C4C4;
    border-bottom: 33px solid #C4C4C4;
    left: -300px;
    z-index: 11;
    top: calc(50% + 20px);
    -webkit-animation: triangle-1 1.2s ease-in-out;
            animation: triangle-1 1.2s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
}

@-webkit-keyframes triangle-1 {
 from { left: -300px; }
 to { left: 88px; }
}

@keyframes triangle-1 {
 from { left: -300px; }
 to { left: 88px; }
}

.triangle-2 {
    border: 78px solid transparent;
    border-right: 78px solid var(--mainColor);
    border-bottom: 78px solid var(--mainColor);
    left: -300px;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 0px rgb(202 202 202);
            box-shadow: 0px 0px 0px rgb(202 202 202);
    -webkit-animation: triangle-2 1.4s ease-in-out;
            animation: triangle-2 1.4s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: .3s;
            animation-delay: .3s;
}

@-webkit-keyframes triangle-2 {
 0% { left: -300px; }
 50% { -webkit-box-shadow: 0px 0px 0px rgb(202 202 202); box-shadow: 0px 0px 0px rgb(202 202 202); }
 100% { left: 88px; -webkit-box-shadow: 10px 10px 10px rgb(202 202 202); box-shadow: 10px 10px 10px rgb(202 202 202); }
}

@keyframes triangle-2 {
 0% { left: -300px; }
 50% { -webkit-box-shadow: 0px 0px 0px rgb(202 202 202); box-shadow: 0px 0px 0px rgb(202 202 202); }
 100% { left: 88px; -webkit-box-shadow: 10px 10px 10px rgb(202 202 202); box-shadow: 10px 10px 10px rgb(202 202 202); }
}

.home-heading {
    font-size: 150px;
    font-weight: bold;
    color: var(--grayColor);
    line-height: .9;
    text-transform: uppercase;
    left: 380px;
    top: 70px;
    position: absolute;
    z-index: 1;
}

.home-heading span {
    display: block;
    color: var(--mainColor);
}

.home-heading .home-desc {
    font-size: 20px;
    max-width: 300px;
    margin-top: 30px;
    line-height: 1.3;
}

.back-img {
    position: absolute;
    right: 20%;
    top: 25%;
}

.home-image {
    position: absolute;
    right: 0;
}

.home-image {
    position: absolute;
    right: 150px;
    z-index: 2;
}

.decorative {
    position: absolute;
    right: 50px;
    top: 50px;
    -webkit-animation: lines 1s ease-in-out;
            animation: lines 1s ease-in-out;
}

@-webkit-keyframes lines {
 from { right: -500px; top: -500px; }
 to { right: 50px; top: 50px; }
}

@keyframes lines {
 from { right: -500px; top: -500px; }
 to { right: 50px; top: 50px; }
}

.play-block {
    position: absolute;
    bottom: 65px;
    left: 35%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 1px;
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 10;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.play-btn {
    padding: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
}

.play-btn svg {
    width: 26px;
    height: 26px;
    display: block;
    position: relative;
    left: 5px;
}

.play-btn:hover {
    border-color: var(--mainColor);
}

.play-btn:hover svg path {
    fill: var(--mainColor);
}

.play-line {
    width: 0%;
    border-bottom: 1px solid #000;
    height: 1px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-animation: playline 2s ease-in-out;
            animation: playline 2s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: .6s;
            animation-delay: .6s;
}

@-webkit-keyframes playline {
 from { width: 0%; }
 to { width: 100%; }
}

@keyframes playline {
 from { width: 0%; }
 to { width: 100%; }
}

.about-wrapper > div {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(380px, 1fr) 7fr;
    grid-template-columns: minmax(380px, 1fr) 7fr;
}

.about-wrapper .number {
    color: white;
    text-shadow: -1px -1px 0 rgb(128 128 128), 1px -1px 0 rgb(128 128 128), -1px 1px 0 rgb(128 128 128), 1px 1px 0 rgb(128 128 128);
    font-weight: bold;
    font-size: 100px;
    line-height: 1;
    padding-top: 35px;
}

.about-content .list-item-name {
    font-size: 45px;
    line-height: 118.5%;
    max-width: 800px;
    font-weight: 500;
}

.about-content .list-item-name span {
    color: var(--mainColor);
}

.about-us {
    font-weight: bold;
    font-size: 20px;
    line-height: 102.1%;
    text-transform: uppercase;
    margin: 84px 0 104px;
}

.about-content-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 75px 2fr;
    grid-template-columns: 1fr 2fr;
    -ms-grid-rows: 1fr 75px 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 75px;
}

.about-content-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.about-content-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.about-content-grid > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.about-content-grid > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.about-content-grid .triangle {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    width: 65px;
    height: 65px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    left: 0;
    border-right: 33px solid var(--mainColor);
    border-bottom: 33px solid var(--mainColor);
    -webkit-box-shadow: 6px 6px 6px rgb(202 202 202);
            box-shadow: 6px 6px 6px rgb(202 202 202);
}

.about-content-grid > div:first-child {
    font-size: 18px;
    line-height: 190.5%;
    font-weight: 500;
}

.about-content-grid > div:nth-child(2) {
    font-size: 15px;
    line-height: 190.5%;
    padding-right: 60px;
}

.features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
    line-height: 149.3%;
    font-weight: 500;
}

.features > div {
    width: 50%;
}

.features span {
    font-size: 30px;
    line-height: 102.1%;
    color: var(--mainColor);
}

.second-block {
    margin-top: 220px;
}

.images-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.images-wrapper > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    position: relative;
}

.images-wrapper img {
    -webkit-box-shadow: 12px 12px 12px rgb(202 202 202);
            box-shadow: 12px 12px 12px rgb(202 202 202);
}

.images-wrapper span {
    font-size: 15px;
    line-height: 190.5%;
    font-weight: 500;
    color: #000;
    margin-top: 50px;
}

.images-wrapper > div:first-child span {
    text-align: right;
    max-width: 385px;
}

.images-wrapper > div:nth-child(2):before {
    content: '';
    border: 78px solid transparent;
    border-right: 78px solid var(--mainColor);
    border-bottom: 78px solid var(--mainColor);
    display: block;
    position: absolute;
    top: -80px;
    left: -80px;
    -webkit-transition:.2s;
    -o-transition:.2s;
    transition:.2s;
}

.images-wrapper div:nth-child(2):hover:before {
    -webkit-box-shadow: 10px 10px 10px rgb(202 202 202 / 0.4);
            box-shadow: 10px 10px 10px rgb(202 202 202 / 0.4);
    top: -83px;
}

.benefits-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 100px;
}

.benefits-heading h2 {
    margin: 0;
    line-height: 1;
}

.benefits-heading a {
    font-weight: bold;
    font-size: 15px;
    line-height: 190.5%;
    color: var(--mainColor);
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.benefits-heading a svg {
    margin-right: 20px;
}

.benefits-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
}

.benefit-item {
    border: 1px solid #E4E4E4;
    padding: 47px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.benefit-item:hover {
    background: var(--mainColor);
}

.benefit-img {
    width: 55px;
    height: 55px;
}

.benefit-name {
    font-size: 20px;
    line-height: 118.5%;
    font-weight: 500;
    color: #2C2C2C;
    margin: 30px 0 20px;
}

.benefit-desc {
    font-size: 15px;
    line-height: 190.5%;
    color: var(--grayColor);
}

.benefit-item:hover .benefit-name, .benefit-item:hover .benefit-desc {
    color: #fff;
}

.benefit-item:hover .benefit-img img {
    -webkit-filter: brightness(5);
            filter: brightness(5);
}

#ratings h2 {
    margin: 0 0 109px 0;
}

.video-block {
    max-width: 991px;
    margin: 0 auto;
    position: relative;
}

.play-video {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    padding: 40px;
    border: 1px solid #fff;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 107px;
    height: 107px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}

.play-video:hover {
    border-color: var(--mainColor);
}

.play-video:hover svg path {
    fill: var(--mainColor);
}

#articles .main-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

#articles .main-category > div {
    width: 33%;
    max-width: 330px;
    font-size: 15px;
    line-height: 28px;
    color: var(--grayColor);
}

.category_posts_name {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--mainColor);
    letter-spacing: -0.01em;
}

#articles .main-category > div a,
#works a,
#news .readmore {
    font-weight: 600;
    font-size: 15px;
    line-height: 32px;
    letter-spacing: -0.01em;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    padding-right: 30px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

#articles .main-category > div a:hover,
#works a:hover,
#news .readmore:hover {
    color: var(--mainColor);
    padding-right: 50px;
    border-color: var(--mainColor);
}

.ratings-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 100px;
}

.ratings-block > div {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
}

.rating-info {
    padding-top: 30px;
}

.rating-img {
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 172px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.rating-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 45px;
    line-height: 118.5%;
    font-weight: 500;
    color: var(--mainColor);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.rating-stars img {
    margin-top: 20px;
    margin-bottom: 38px;
}

.magazine {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    max-width: 286px;
    text-align: right;
    color: #000;
}

.works-heading {
    font-size: 45px;
    line-height: 118.5%;
    text-transform: uppercase;
    font-weight: 500;
    color: #060606;
    margin-bottom: 68px;
}

.works-wrapper {
    position: relative;
}

.control,
.controls {
    position: absolute;
    bottom: 160px;
    left: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.controls {
    right: 8%;
    left: unset;
    top: 10px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}

.control img,
.controls img {
    cursor: pointer;
    padding: 7px 5px;
    border-radius: 12px;
    position: relative;
    bottom: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.control img:hover,
.controls img:hover {
    -webkit-box-shadow: 5px 3px 15px rgb(46 75 149 / 40%);
            box-shadow: 5px 3px 15px rgb(46 75 149 / 40%);
    bottom: -2px;
}

.control img:active,
.controls img:active {
    border: 1px solid var(--mainColor);
    -webkit-box-shadow: 5px 3px 15px 5px rgb(46 75 149 / 40%);
            box-shadow: 5px 3px 15px 5px rgb(46 75 149 / 40%);
}

.works-wrapper .category_posts {
    max-width: 993px;
    padding-bottom: 10px;
}

.works-wrapper .slick-track {
    gap: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#works .category_posts_name {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: #000;
    max-width: 50%;
}

#works a {
    font-weight: 500;
}

#about_us {
    border-top: 1px solid #D5D5D5;
    padding-top: 110px;
}

.works-heading p {
    max-width: 425px;
    margin: 0;
}

.about_us-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about_us-wrapper > div {
    width: 50%;
}

.reviews {
    position: relative;
}

.glsr-review-title h3 {
    font-size: 45px;
    line-height: 118.5%;
    font-weight: 500;
    color: var(--mainColor);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

.reviews .glsr-review-rating,
.reviews .glsr-default .glsr-review>.glsr-review-date {
    display: none;
}

.glsr-default .glsr-review>.glsr-review-content p {
    font-size: 15px;
    line-height: 18px;
    color: var(--grayColor);
    font-style: italic;
    max-width: 670px;
    line-height: 1.7;
}
.glsr-default .glsr-review>.glsr-review-content br {
    display: none;
}

.glsr-default .glsr-review>.glsr-review-content p:before,
.glsr-default .glsr-review>.glsr-review-content p:after {
    content: '';
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='24' viewBox='0 0 34 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.2 0L24 0L19.2 9.6L19.2 24H33.6V9.6H26.4L31.2 0ZM12 0L4.8 0L0 9.6L0 24H14.4L14.4 9.6L7.2 9.6L12 0Z' fill='black'/%3E%3C/svg%3E%0A");
    width: 34px;
    height: 24px;
    display: block;
    margin-bottom: 38px;
    margin-top: 20px;
}

.glsr-default .glsr-review>.glsr-review-content p:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    position: relative;
    left: 100%;
}

.glsr-default .glsr-review>.glsr-review-avatar {
    padding: 10px;
    border: 1px solid var(--mainColor);
    border-radius: 50%;
}

.glsr-default .glsr-review>.glsr-review-avatar img {
    border-radius: 50%;
}

.glsr-default .glsr-review .glsr-review-author {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: #000;
}

.glsr-default .glsr-review>.glsr-review-author {
    position: relative;
    top: -20px;
}

#about_us .review-form {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: 12px 12px 12px rgb(202 202 202);
            box-shadow: 12px 12px 12px rgb(202 202 202);
    border: 1px solid rgb(202 202 202);
    z-index: 9999;
}

#about_us .review-form.active {
    display: block;
    opacity: 0;
    -webkit-animation: formfade .5s ease-in-out;
            animation: formfade .5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes formfade {
 from { opacity: 0; }
 to { opacity: 1; }
}

@keyframes formfade {
 from { opacity: 0; }
 to { opacity: 1; }
}

#about_us .review-form .closebtn {
    position: absolute;
    top: 20px;
    right: 20px;
    text-transform: uppercase;
    line-height: 1;
    text-decoration: none;
    color: #000;
    font-size: 22px;
    font-weight: 500;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.glsr-default form.glsr-form [type=submit] {
    font-size: 15px;
    line-height: 14px;
    color: #fff;
    border: 1px solid var(--mainColor);
    background: var(--mainColor);
    padding: 18px 36px;
    display: inline-block;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border-radius: 5px;
    cursor: pointer;
}

#about_us .review-form .closebtn:hover {
    border-color: var(--mainColor);
    color: var(--mainColor);
}

#about_us .reviews .formbtn,
#news .formbtn {
    font-size: 15px;
    line-height: 14px;
    color: #fff;
    text-decoration: none;
    border: 1px solid var(--mainColor);
    background: var(--mainColor);
    padding: 28px 52px;
    border-radius: 5px;
    margin: 54px 0;
    display: inline-block;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

#news .formbtn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

#news .formbtn:hover,
#about_us .reviews .formbtn:hover,
.glsr-default form.glsr-form [type=submit]:hover {
    background: transparent;
    color: var(--mainColor);
}

#offer {
    background: var(--mainColor);
    color: #fff;
}

.offer-form-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.offer-form-block > div {
    width: 50%;
}

#offer .heading {
    font-size: 45px;
    line-height: 118.5%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
}

#offer .heading + p {
    text-align: center;
    color: #DBDBDB;
    font-size: 15px;
    line-height: 1;
}

div.wpforms-container-full .wpforms-form textarea,
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form input[type=text] {
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #DBDBDB !important;
    border-radius: 0 !important;
    min-width: 600px;
    max-width: 600px;
    padding-left: 0 !important;
}

div.wpforms-container-full .wpforms-form textarea::-webkit-input-placeholder, div.wpforms-container-full .wpforms-form input::-webkit-input-placeholder {
    color: #fff;
    font-size: 15px;
    line-height: 14px;
}

div.wpforms-container-full .wpforms-form textarea::-moz-placeholder, div.wpforms-container-full .wpforms-form input::-moz-placeholder {
    color: #fff;
    font-size: 15px;
    line-height: 14px;
}

div.wpforms-container-full .wpforms-form textarea:-ms-input-placeholder, div.wpforms-container-full .wpforms-form input:-ms-input-placeholder {
    color: #fff;
    font-size: 15px;
    line-height: 14px;
}

div.wpforms-container-full .wpforms-form textarea::-ms-input-placeholder, div.wpforms-container-full .wpforms-form input::-ms-input-placeholder {
    color: #fff;
    font-size: 15px;
    line-height: 14px;
}

div.wpforms-container-full .wpforms-form textarea::placeholder,
div.wpforms-container-full .wpforms-form input::placeholder {
    color: #fff;
    font-size: 15px;
    line-height: 14px;
}
div.wpforms-container-full .wpforms-form label.wpforms-error {
    background: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 5px;
    margin-top: 3px;
    font-size: 14px;
}

#offer .wpforms-submit-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 600px;
    font-size: 12px;
    line-height: 160%;
    color: var(--grayColor);
}

#offer .wpforms-submit-container button {
    font-size: 15px;
    line-height: 14px;
    color: #000;
    text-decoration: none;
    border: 1px solid #FDFDFD;
    background: #FDFDFD;
    padding: 27px 75px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 25px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    font-weight: 500;
}

#offer .wpforms-submit-container button:hover {
    background: var(--mainColor);
    color: #FDFDFD;
}

#offer .wpforms-field-container > div:not(:last-child) {
    margin-bottom: 40px;
}

section#news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#news .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 110px 0 80px;
}

#news .heading p {
    font-size: 45px;
    line-height: 118.5%;
    font-weight: 500;
    text-transform: uppercase;
    color: #060606;
    margin: 0;
}

#news .heading a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--mainColor);
    text-decoration: none;
    font-size: 15px;
    line-height: 190.5%;
}

#news .heading a svg {
    margin-right: 20px;
}

#news .news-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(557px, 1fr) 40px 1fr 40px 1fr;
    grid-template-columns: minmax(557px, 1fr) 1fr 1fr;
    -ms-grid-rows: 1fr 40px 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
}

#news .news-wrapper > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

#news .news-wrapper > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

#news .news-wrapper > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

#news .news-wrapper > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

#news .news-wrapper > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

#news .news-wrapper > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}

#news .news-wrapper .category_posts:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
}

#news .category_posts_name {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.03em;
    color: #000;
    font-weight: 100;
    margin: 50px 0 40px;
}

#news .excerpt {
    color: var(--grayColor);
}

#news .news-wrapper .category_posts .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

#news .news-wrapper .category_posts:first-child .links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}


#news .news-wrapper .category_posts .author {
    font-size: 12px;
    line-height: 160%;
    color: var(--mainColor);
    font-style: italic;
}

#news .category_post-img {
    position: relative;
}

#news .category_post-img span {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #E9EDF4;
    font-size: 12px;
    padding: 20px 60px 5px;
    color: #1A1A1A;
}

#news .category_posts a {
    text-decoration: none;
}

#news .category_posts a:hover .category_posts_name {
    color: var(--mainColor);
}


























/* MODAL */

.modal__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: opacity0 .2s ease-in;
  -o-transition: opacity0 .2s ease-in;
  transition: opacity0 .2s ease-in;
}

.modal__content {
  position: relative;
  width: auto;
  margin: 10px;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}

@media (min-width: 576px) {
  .modal__content {
    max-width: 500px;
    margin: 50px auto;
  }
}
@media (min-width: 1024px) {
  .modal__content {
    max-width: 900px;
    margin: 50px auto;
  }
}

.modal__show .modal__backdrop,
.modal__show .modal__content {
  opacity: 1;
  z-index: 1050;
  pointer-events: auto;
}

.modal__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.modal__title {
  display: none;
}

.modal__btn-close {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: -35px;
    background: var(--mainColor);
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    top: 0;
}

.modal__btn-close:focus,
.modal__btn-close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}

.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: auto;
}

.modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

