:root {
    --accent-font: "Light", sans-serif;
    --header-cl: #000000;
    --white-cl: #ffffff;
    --border-cl: rgba(0, 0, 0, 0.20);
    --section-cl: #F3F9FF;
    --accent-cl-txt: #2F2F2F;
    --sacondary-cl-txt: #0F0F0F;
    --btn-cl: rgb(0, 102, 255);
    --modal-anim: 1000ms linear;
    --hover-anim: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --btn-cl-hover: #449DEE;
    --btn-cl-active: #156FC1;
}

@font-face {
    font-family: "Bold";
    src: local("Gilroy"), url("../fonts/Gilroy-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Medium";
    src: local("Gilroy"), url("../fonts/Gilroy-Medium.ttf");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Regular";
    src: local("Gilroy"), url("../fonts/Gilroy-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Light";
    src: local("Gilroy"), url("../fonts/Gilroy-Light.ttf");
    font-weight: 300;
    font-display: swap;
}
body {
    font-family: var(--accent-font);
    color: var(--accent-cl-txt);
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.72px;
    overflow: auto;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
body {
    margin: 0;
}

a {
    text-decoration: none;
    color: currentColor;
    cursor: pointer;
}

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

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ol {
    padding: 0;
    margin: 0;
}


.no-scroll {
    overflow: hidden;
}

.section {
    padding: 60px 30px 60px 30px;
}

.accord {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
@media only screen and (min-width: 768px) {
    .section {
        padding: 60px 80px;
    }
}
@media only screen and (min-width: 1280px) {
    .section {
        padding: 100px 80px;
    }
}

.btn {
    color: var(--white-cl);
    background-color: var(--btn-cl);
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
}
.btn:hover {
    background-color: var(--btn-cl-hover);
    border-color: var(--btn-cl-hover);
}
.btn:active {
    background-color: var(--btn-cl-active);
}
@media only screen and (min-width: 1280px) {
    .btn {
        font-size: 22px;
    }
}
.text-change {
    height: 80px;
    display: block;
}

@media only screen and (min-width: 768px) {
    .text-change {
        margin-top: 30px;
        font-size: 50px;
    }
}
.link {
    color: var(--btn-cl);
}

.title {
    color: var(--header-cl);
    font-size: 32px;
    letter-spacing: 2.16px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .title {
        font-size: 57px;
    }
}
@media only screen and (min-width: 1280px) {
    .title {
        font-size: 72px;
    }
}

.super-btn {
    position: relative;
    color: var(--white-cl);
    border: 2px solid var(--btn-cl);
    background: var(--btn-cl);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}
.super-btn:hover {
    -webkit-filter: contrast(1.1);
    filter: contrast(1.1);
}
.super-btn:active {
    -webkit-filter: contrast(0.9);
    filter: contrast(0.9);
}
.super-btn::before, .super-btn::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--btn-cl);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-animation: clippath 3s infinite linear;
    animation: clippath 3s infinite linear;
}

.super-btn::after {
    -webkit-animation: clippath 3s infinite -1.5s linear;
    animation: clippath 3s infinite -1.5s linear;
}

@-webkit-keyframes clippath {
    0%, 100% {
        -webkit-clip-path: inset(0 0 98% 0);
        clip-path: inset(0 0 98% 0);
    }
    25% {
        -webkit-clip-path: inset(0 98% 0 0);
        clip-path: inset(0 98% 0 0);
    }
    50% {
        -webkit-clip-path: inset(98% 0 0 0);
        clip-path: inset(98% 0 0 0);
    }
    75% {
        -webkit-clip-path: inset(0 0 0 98%);
        clip-path: inset(0 0 0 98%);
    }
}

@keyframes clippath {
    0%, 100% {
        -webkit-clip-path: inset(0 0 98% 0);
        clip-path: inset(0 0 98% 0);
    }
    25% {
        -webkit-clip-path: inset(0 98% 0 0);
        clip-path: inset(0 98% 0 0);
    }
    50% {
        -webkit-clip-path: inset(98% 0 0 0);
        clip-path: inset(98% 0 0 0);
    }
    75% {
        -webkit-clip-path: inset(0 0 0 98%);
        clip-path: inset(0 0 0 98%);
    }
}
.bg::before {
    background: var(--btn-cl);
}

.logo {
    width: auto;
    height: 40px;
}
@media only screen and (min-width: 768px) {
    .logo {
        height: 80px;
    }
}

.up {
    position: fixed;
    right: 10px;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
@media only screen and (max-width: 768px) {
    .up{
        bottom: 65px;
    }
}
@media only screen and (min-width: 768px) {
    .file-upload {
        right: 30px;
        bottom: 30px;
    }
}
.arrow {
    display: none;
    bottom: 120px;

}

@media only screen and (min-width: 768px) {
    .arrow {
        bottom: 105px;
    }
}

.file-upload {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 4px solid #FFFFFF;
    overflow: hidden;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, var(--btn-cl)), color-stop(50%, #FFFFFF));
    background-image: linear-gradient(to bottom, var(--btn-cl) 50%, #FFFFFF 50%);
    background-size: 100% 200%;
    -webkit-transition: all 1s;
    transition: all 1s;
    color: #FFFFFF;
    font-size: 40px;
}

@media only screen and (min-width: 768px) {
    .file-upload {
        height: 60px;
        width: 60px;
    }
}

.file-upload:hover {
    background-position: 0 -100%;
    color: var(--btn-cl);
}


.footer {
    background-color: var(--header-cl);
    color: var(--white-cl);
    padding-top: 25px;
    padding-bottom: 16px;
    flex-direction: column;
    display: flex;
}

@media only screen and (min-width: 768px) {
    .footer {
        padding: 60px 80px;
        justify-content: center;
    }
}

.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (min-width: 768px) {
    .footer_container {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 123px;
    }
}

.footer a {
    transition: var(--hover-anim);
}

.footer_logo {
    margin-bottom: 16px;
    width: 115px;
}

@media only screen and (min-width: 768px) {
    .footer_logo {
        width: 228px;
    }
}

.footer_address {
    max-width: 250px;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 16px;
    font-family: "Regular";
    line-height: 31px;
}

@media only screen and (min-width: 768px) {
    .footer_address {
        font-size: 18px;
    }
}

.footer_email {
    margin-bottom: 20px;
}

.footer_sity {
    font-weight: 700;
    display: block;
}

.footer_list {
    display: flex;
    justify-content: center;
    margin-bottom: 23px;
    margin-top: 20px;
}

.footer li:not(:last-child) {
    margin-right: 20px;
}

.footer_text {
    text-align: center;
    letter-spacing: 0;
}

.footer span {
    font-family: "Regular";
    line-height: 20px;
    font-size: 14px;
}

@media only screen and (min-width: 768px) {
    .footer span {
        font-size: 16px;
    }
}

.footer svg:hover {
    fill: currentColor
}

.footer a:hover {
    color: var(--btn-cl-hover);
}

.footer_politic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

@media only screen and (min-width: 768px) {
    .footer_politic {
        display: block;
    }
}

.footer_container_social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
}

header {
    background-color: var(--header-cl);
    padding: 17px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5;
    margin-left: auto;
    margin-right: auto;
    font-size: 26px;
}

@media only screen and (max-width: 450px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
    }
}
@media only screen and (min-width: 768px) {
    header {
        height: 120px;
    }
}

header svg:hover {
    fill: var(--btn-cl);
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
    cursor: pointer;
}

.container-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.menu_b {
    height: 50px;
    position: absolute;
    width: 50px;
}

@media only screen and (min-width: 768px) {
    .menu_b {
        height: 80px;
        width: 80px;
    }
}

.plates {
    z-index: 50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plates:hover {
    color: var(--btn-cl);
}

.plate {
    height: 50px;
    width: 50px;
}

@media only screen and (min-width: 768px) {
    .plate {
        height: 80px;
        width: 80px;
    }
}

.line {
    fill: none;
    stroke: currentColor;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50%;
    transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
}

.active .line {
    transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, transform 500ms;
}


/* Die vierte teller */
.plate4 .x {
    transition: transform 400ms;
}
.plate4 .line {
    transform-origin: 50%;
    transition: transform 400ms 100ms;
}
.active.plate4 .line {
    transition: transform 400ms;
}
.line {
    z-index: 1000;
    position: relative;
    top: 0;
    left: 0;
}
.active.plate4 .line1 {
    transform: translateX(18px) translateY(-3px) rotate(-45deg) scale(.7);
}
.active.plate4 .line2 {
    transform: translateX(-18px) translateY(-3px) rotate(45deg) scale(.7);
}
.active.plate4 .line3 {
    transform: translateY(0px) rotate(45deg) scale(.7);
}
.active.plate4 .line4 {
    transform: translateY(0px) rotate(-45deg) scale(.7);
}
.active.plate4 .line5 {
    transform: translateX(18px) translateY(3px) rotate(45deg) scale(.7);
}
.active.plate4 .line6 {
    transform: translateX(-18px) translateY(3px) rotate(-45deg) scale(.7);
}
.active.plate4 .x {
    transition: transform 400ms 100ms;
    transform: scale(1);
}
/* Den femte rätten */

.hero {
    max-width: 2300px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(../img/hero.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/hero.jpg);
    background-position: center;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white-cl);
    margin-left: auto;
    margin-right: auto;
    padding: 120px 50px 50px 50px;
}
@media only screen and (min-width: 768px) {
    .hero {
        padding: 40px 65px 130px 65px;
        height: 600px;

    }
}
@media only screen and (min-width: 1280px) {
    .hero {
        padding: 60px 250px;
        height: 730px;

    }
}
.hero_title {
    text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
    .hero_title {
        font-size: 30px;
    }
}
@media only screen and (min-width: 1280px) {
    .hero_title {
        font-size: 50px;
    }
}
.hero_number-one {
    font-family: "Medium";
}
.hero_text {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.36px;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
    .hero_text {
        line-height: 30px;
        font-size: 16px;
    }
}
.hero_tagline {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.96px;
}
@media only screen and (min-width: 768px) {
    .hero_tagline {
        font-size: 26px;
    }
}
@media only screen and (min-width: 1280px) {
    .hero_tagline {
        font-size: 32px;
    }
}
.hero_btn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    outline: 1px solid #F9E219;
    color: var(--white-cl);
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    margin-top: 30px;
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
}
.hero_btn:hover {
    background-color: #F9E219;
    outline: none;
    color: var(--sacondary-cl-txt);
}
.hero_btn:active {
    background-color: #DBC717;
    outline: none;
    color: var(--sacondary-cl-txt);
}

@media only screen and (min-width: 1280px) {
    .hero_btn {
        font-size: 22px;
        margin-left: 27px;
    }
}
.hero_btn-container {
    text-align: center;
    max-width: 400px;
}
@media only screen and (min-width: 1280px) {
    .hero_btn-container {
        text-align: left;
        max-width: 800px
    }
}

.menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--header-cl);
    z-index: 10;
    color: var(--white-cl);
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1.44px;
    -webkit-transition: var(--hover-anim);
    opacity: 1;
}

.is-hidden {
    visibility: hidden;
    -webkit-transition: 300ms linear;
    transition: 300ms linear;
    opacity: 0;
}
@media only screen and (min-width: 768px) {
    .menu {
        font-size: 40px;
    }
}
@media only screen and (min-width: 1280px) {
    .menu {
        font-size: 48px;
    }
}
.menu_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 17px 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    widows: 100wv;
    height: 84px;
}
@media only screen and (min-width: 768px) {
    .menu_header {
        height: 120px;
    }
}

.menu_list {
    display: inline-block;
}
.menu_list a {
    display: block;
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    height: 40px;
}
.menu_list li:not(:last-child) {
    font-weight: 30px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 1280px) {
    .menu_list li:not(:last-child) {
        margin-bottom: 40px;
    }
}
@media only screen and (min-width: 1280px) {
    .menu_list li {
        height: 50px;
        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;
        max-width: 500px;
    }
}
.menu_list li a:hover {
    font-family: "Bold";
    font-weight: 60px;
    letter-spacing: 1.8px;
    color: var(--btn-cl);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.menu_close {
    cursor: pointer;
    height: 30px;
    fill: var(--white-cl);
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
}
.menu_close:hover {
    fill: var(--btn-cl);
}

.work {
    color: var(--sacondary-cl-txt);
    font-size: 36px;
    letter-spacing: 1.16px;
}

.work h2 {
    font-weight: 300;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .work h2 {
        font-size: 57px;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 1280px) {
    .work h2 {
        font-size: 72px;
    }
}

.work h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    border-radius: 2px;
    background-color: var(--border-cl);
    margin-left: 60px;
}

.work_text-theses {
    font-size: 23px;
    letter-spacing: 1.08px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .work_text-theses {
        font-size: 29px;
    }
}

@media only screen and (min-width: 1280px) {
    .work_text-theses {
        font-size: 36px;
    }
}

.work_text-cooperation {
    font-size: 15px;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
    line-height: 1.5;
}

@media only screen and (min-width: 768px) {
    .work_text-cooperation {
        font-size: 19px;
        margin-bottom: 80px;
    }
}

@media only screen and (min-width: 1280px) {
    .work_text-cooperation {
        font-size: 24px;
        margin-bottom: 100px;
    }
}

.work_list {
    display: none;
}

@media only screen and (min-width: 768px) {
    .work_list {
        display: flex;
        justify-content: space-around;
        width: 100%;
        gap: 20px;
    }
}

.work_item {
    border: 2px solid var(--border-cl);
    padding: 10px;
}

@media only screen and (min-width: 768px) {
    .work_item {
        padding: 30px;
    }
}

.work_list-title {
    color: #0F0F0F;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.08px;
    margin-bottom: 15px;
    margin-top: 15px;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .work_list-title {
        text-align: left;
        font-size: 24px;
        margin-bottom: 30px;
        margin-top: 50px;
    }
}

@media only screen and (min-width: 1280px) {
    .work_list-title {
        font-size: 36px;
    }
}

.work_list-text {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.54px;
}

@media only screen and (min-width: 1280px) {
    .work_list-text {
        font-size: 18px;
    }
}

.work img {
    margin-left: auto;
    margin-right: auto;
}

.work_from-btn {
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slide-container {
    position: relative;
    margin: 50px auto;
    border: 1px solid #ccc;
    z-index: 0;
    list-style: none;
    overflow: hidden;
    max-width: 100% !important;
}
@media only screen and (min-width: 768px) {
    .slide-container {
        overflow: visible;
        border: none;
    }
}

.slide-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    transition-property: transform;
}

@media only screen and (min-width: 768px) {
    .slide-wrapper {
        display: flex;
        justify-content: space-around;
        width: 100%;
        gap: 20px;
    }
}
@media only screen and (min-width: 1550px) {
    .slide-wrapper {
        display: flex;
        justify-content: space-around;
        width: 100%;
        gap: 60px;
    }
}

.slide-container .slide-item {
    z-index: 1;
    padding: 30px 45px;
    text-align: left;
    position: relative;
    float: left;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    user-select: none;
}

@media only screen and (min-width: 768px) {
    .slide-container .slide-item  {
        height: 488px;
        width: 230px;
        border: 1px solid #ccc;
        padding: 30px 15px;
    }
}
@media only screen and (min-width: 1000px) {
    .slide-container .slide-item  {
        width: 300px;
        height: 450px;
    }
}
@media only screen and (min-width: 1280px) {
    .slide-container .slide-item  {
        width: 400px;
        padding: 30px 45px;
        height: 488px;
    }
}

.slide-navbar {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 18px;
    text-align: center;
    font-size: 0;
    z-index: 2;
}

@media only screen and (min-width: 768px) {
    .slide-navbar {
        display: none;
    }
}

.dot {
    display: inline-block;
    margin: 0 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--btn-cl);
}

.dot-active {
    width: 20px;
    border-radius: 6px;
    background-color: var(--btn-cl);
}

.slide-button-prev,
.slide-button-next {
    border: 1px solid rgba(21, 127, 225, 0.8);
    display: inline-block;
    position: absolute;
    background-color: rgba(21, 127, 225, 0.8);
    top: 50%;
    width: 40px;
    height: 60px;
    z-index: 2;
    color: var(--btn-cl);
    padding: 10px;
}

.slide-button-prev {
    left: 0;
    transform: translateY(-50%);
}

.slide-button-next {
    right: 0;
    transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
    .slide-button-prev,
    .slide-button-next {
        display: none;
    }
}
.portfolio {
    background-color: var(--sacondary-cl-txt);
    text-align: center;
    overflow: hidden;
    padding: 0 30px 60px 30px;
}

.portfolio_title {
    color: var(--white-cl);
    text-align: center;
    margin-bottom: 10px;
}

.portfolio_sub-title {
    color: var(--white-cl);
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.72px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .portfolio_sub-title {
        font-size: 20px;
        margin-bottom: 80px;
    }
}

@media only screen and (min-width: 1280px) {
    .portfolio_sub-title {
        font-size: 24px;
    }
}

.portfolio_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 768px) {
    .portfolio_list {
        margin-bottom: 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.portfolio_btn {
    display: block;
    color: var(--white-cl);
    font-family: "Medium";
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    padding: 12px 20px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--white-cl);
    margin-bottom: 10px;
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
    cursor: pointer;
    width: 260px;
}

@media only screen and (min-width: 768px) {
    .portfolio_btn {
        font-size: 12px;
        width: 250px;
    }
}
@media only screen and (min-width: 1280px) {
    .portfolio_btn:hover {
        -webkit-box-shadow: inset 22em 0 0 0 var(--btn-cl);
        box-shadow: inset 22em 0 0 0 var(--btn-cl);
    }
}
@media only screen and (min-width: 1280px) {
    .portfolio_btn:active {
        border-color: var(--sacondary-cl-txt);
        color: var(--sacondary-cl-txt);
    }
}

.portfolio_list-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    right: 200%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    margin-bottom: 40px;
    -webkit-transition: 500ms linear;
    transition: 500ms linear;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 70%;
}

.portfolio_list-img li {
    position: relative;
}
.portfolio_list-img .portfolio_arrow {
    opacity: 0;
}

@media only screen and (min-width: 768px) {
    .portfolio_list-img {
        margin-bottom: 87px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0;
    }
}
@media only screen and (min-width: 1280px) {
    .portfolio_list-img {
        margin-bottom: 187px;
    }
}

.portfolio_list-img li {
    width: 350px;
}

.portfolio_list-img-title {
    color: var(--white-cl);
    font-size: 18px;
    font-weight: "Bold";
    letter-spacing: 1.08px;
    max-width: 400px;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) {
    .portfolio_list-img-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1280px) {
    .portfolio_list-img-title {
        font-size: 30px;
    }
}

.portfolio_list-img-text {
    color: var(--white-cl);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.72px;
}

@media only screen and (min-width: 768px) {
    .portfolio_list-img-text {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1280px) {
    .portfolio_list-img-text {
        font-size: 24px;
    }
}

.portfolio_link {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    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;
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
}

.portfolio_link:hover .portfolio_arrow {
    opacity: 1;
    cursor: pointer;
    display: block;
}

.portfolio_link:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.portfolio_container {
    position: relative;
    display: none;
}

@media only screen and (min-width: 768px) {
    .portfolio_container {
        opacity: 0;
    }
}

@media only screen and (min-width: 1280px) {
    .portfolio_container {
        height: 480px;
        overflow: hidden;
        margin-bottom: 50px;
    }
}

.portfolio_arrow {
    -webkit-transition: var(--hover-anim);
    opacity: 0;
}

.hidden {
    opacity: 0;
    position: absolute;
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
}

.slide-container-port {
    position: relative;
    margin: 40px auto 50px;
    border: 1px solid #ccc;
    z-index: 0;
    list-style: none;
    overflow: hidden;
    max-width: 100% !important;
    height: 350px;
}

@media only screen and (min-width: 768px) {
    .slide-container-port {
        border: none;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 1280px) {
    .slide-container-port {
        margin-bottom: 50px;
        margin-top: 80px;
    }
}


.slide-wrapper-port {
    position: relative;
    z-index: 1;
    display: flex;
    transition-property: transform;
}

.slide-container-port .slide-item-port {
    z-index: 1;
    padding: 20px;
    text-align: left;
    position: relative;
    float: left;
    flex-shrink: 0;
    width: 250px;
    max-height:  260px;
    user-select: none;
}

@media only screen and (min-width: 768px) {
    .slide-container-port .slide-item-port {
        width: 180px;
        padding: 10px;

    }
}
@media only screen and (min-width: 1280px) {
    .slide-container-port .slide-item-port {
        width: 300px;
    }
}
@media only screen and (min-width: 1550px) {
    .slide-container-port .slide-item-port {
        max-width: 460px;
    }
}

.slide-navbar-port {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 18px;
    text-align: center;
    font-size: 0;
    z-index: 2;
}
@media only screen and (min-width: 768px) {
    .slide-navbar-port {
        display: none;
    }
}

.dot-port {
    display: inline-block;
    margin: 0 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--btn-cl);
}

.dot-active-port {
    width: 20px;
    border-radius: 6px;
    background-color: var(--btn-cl);
}

.slide-button-prev-port,
.slide-button-next-port {
    border: 1px solid rgba(21, 127, 225, 0.8);
    display: inline-block;
    position: absolute;
    background-color: rgba(21, 127, 225, 0.8);
    top: 50%;
    width: 40px;
    height: 60px;
    z-index: 2;
    color: var(--btn-cl);
    padding: 10px;
}

@media only screen and (min-width: 768px) {
    .slide-button-prev-port,
    .slide-button-next-port {
        display: none;
    }
}

.slide-button-prev-port {
    left: 0;
    transform: translateY(-50%);
}

.slide-button-next-port {
    right: 0;
    transform: translateY(-50%);
}

.tablet {
    display: none;
}

@media only screen and (min-width: 768px) {
    .tablet {
        display: flex;
    }
}

.cooperation {
    background-color: var(--section-cl);
}

.cooperation_title {
    font-size: 23px;
    color: var(--sacondary-cl-txt);
    letter-spacing: 1.08px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .cooperation_title {
        font-size: 29px;
    }
}

@media only screen and (min-width: 1280px) {
    .cooperation_title {
        font-size: 36px;
    }
}

.cooperation_text {
    color: var(--header-cl);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.72px;
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
    .cooperation_text {
        font-size: 19px;
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 1280px) {
    .cooperation_text {
        font-size: 24px;
        margin-bottom: 100px;
    }
}

.cooperation_list {
    display: none;
}

@media only screen and (min-width: 768px) {
    .cooperation_list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        margin-left: auto;
        margin-right: auto;
        max-width: 800px;
    }
}

@media only screen and (min-width: 1480px) {
    .cooperation_list {
        max-width: 1500px;
        justify-content: space-between;
    }
}

.cooperation_list li {
    border: 1px solid var(--border-cl);
    max-width: 300px;
    height: 300px;
    padding: 20px;
}
@media only screen and (min-width: 768px) {
    .cooperation_list li {
        width: 280px;
    }
}

.cooperation_item-title {
    color: var(--btn-cl);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 1.08px;
    margin-bottom: 20px;
}

.cooperation_item-text {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.54px;
}

@media only screen and (min-width: 768px) {
    .cooperation_item-text {
        font-size: 18px;
    }
}

.services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (min-width: 1280px) {
    .services {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

/*slider*/
.slide-container-coop {
    position: relative;
    margin: 50px auto;
    border: 1px solid #ccc;
    z-index: 0;
    list-style: none;
    overflow: hidden;
    max-width: 100% !important;
    background-color: white;
}

@media only screen and (min-width: 768px) {
    .slide-container-coop {
        background-color: rgba(0, 0, 0, 0);
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
        margin-left: auto;
        margin-right: auto;
        border: none;
        align-items: center;
        justify-content: center;
    }
}

.slide-wrapper-coop {
    position: relative;
    z-index: 1;
    display: flex;
}
@media only screen and (min-width: 768px) {
    .slide-wrapper-coop {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        transition: none;
    }
}

@media only screen and (min-width: 1550px) {
    .slide-wrapper-coop{
        grid-template-columns: repeat(4, 1fr);
    }
}

.slide-container-coop .slide-item-coop {
    z-index: 1;
    padding: 20px 45px;
    text-align: left;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    float: left;
    flex-shrink: 0;
    width: 100%;
    height: 300px;
    user-select: none;
}

@media only screen and (min-width: 768px) {
    .slide-container-coop .slide-item-coop{
        width: 340px;
    }
}

.slide-navbar-coop {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 18px;
    text-align: center;
    font-size: 0;
    z-index: 2;
}
@media only screen and (min-width: 768px) {
    .slide-navbar-coop {
        display: none;
    }
}

.dot-coop {
    display: inline-block;
    margin: 0 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--btn-cl);
}

.dot-active-coop {
    width: 20px;
    border-radius: 6px;
    background-color: var(--btn-cl);
}

.slide-button-prev-coop,
.slide-button-next-coop {
    border: 1px solid rgba(21, 127, 225, 0.8);
    display: inline-block;
    position: absolute;
    background-color: rgba(21, 127, 225, 0.8);
    top: 50%;
    width: 40px;
    height: 60px;
    z-index: 2;
    color: var(--btn-cl);
    padding: 10px;
}
@media only screen and (min-width: 768px) {
    .slide-button-prev-coop,
    .slide-button-next-coop {
        display: none;
    }
}

.slide-button-prev-coop {
    left: 0;
    transform: translateY(-50%);
}

.slide-button-next-coop {
    right: 0;
    transform: translateY(-50%);
}
/*slider*/
.services_title {
    text-align: center;
    margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
    .services_title {
        margin-bottom: 65px;
    }
}
.services_list {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.08px;
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .services_list {
        font-size: 30px;
    }
}
@media only screen and (min-width: 1280px) {
    .services_list {
        font-size: 36px;
    }
}

.services_list li {
    padding-top: 40px;
    padding-bottom: 40px;
}
.services_list li:not(:last-child) {
    border-bottom: 2px solid var(--border-cl);
}
@media only screen and (min-width: 768px) {
    .services_list li:not(:last-child) {
        padding-bottom: 40px;
    }
}
@media only screen and (min-width: 1280px) {
    .services_list li:not(:last-child) {
        padding-bottom: 50px;
    }
}
.services_img {
    display: none;
}
@media only screen and (min-width: 1280px) {
    .services_img {
        margin-left: 80px;
        max-width: 670px;
        display: block;
    }
}

.advantages {
    background-color: var(--sacondary-cl-txt);
    color: var(--white-cl);
}


.advantages_title {
    color: var(--white-cl);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    max-width: 1072px;
}
.advantages_text {
    text-align: center;
    font-size: 16px;
    letter-spacing: 1.08px;
    margin-bottom: 30px;
    font-weight: "Medium";
    padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .advantages_text {
        font-size: 20px;
    }
}
@media only screen and (min-width: 1280px) {
    .advantages_text {
        font-size: 30px;
    }
}
.accordeon {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.accordeon__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.accordeon__head {
    width: 100%;
    display: flex;
    align-items: flex-start;
    display: inline-block;
    padding: 20px 25px 20px 0;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
    user-select: none;
    font-size: 16px;
    font-family: 'Bold';
    letter-spacing: 1.08px;
    display: block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    bottom: 0;
    margin: auto;
    transition: 400ms linear;

}
@media only screen and (min-width: 768px) {
    .accordeon__head {
        padding: 30px;
        font-size: 36px;
    }
}

.accordion_link-sacond {
    text-decoration: underline;
    font-family: 'Medium';
    transition: var(--hover-anim);
}

.accordion_link-sacond:hover {
    color: var(--btn-cl-hover);
}
.accordion {
    max-width: 1900px;
}
.accordion li:not(:last-child) {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2)
}

.accordion li p {
    display: none;
    padding: 0 25px 30px 0;
    color: var(--white-cl);
    font-size: 16px;
    letter-spacing: 0.72px;
}

@media only screen and (min-width: 768px) {
    .accordion_link {
        font-size: 19px;
        padding: 0 20px 25px 0;
    }
}
@media only screen and (min-width: 1280px) {
    .accordion_link {
        font-size: 24px;
    }
}

.accordion_link {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    user-select: none;
    color: var(--white-cl);
    font-size: 20px;
    font-family: "Medium";
    letter-spacing: 1.08px;
    padding: 30px 0;
}

@media only screen and (min-width: 768px) {
    .accordion_link {
        font-size: 30px;
        padding: 40px 0;

    }
}
@media only screen and (min-width: 1280px) {
    .accordion_link {
        font-size: 36px;
        padding: 50px 0;
    }
}

.accordion_link:after {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    right: 10px;
    content: " ";
    top: 17px;
    rotate: -45deg;
    transition: all 0.2s ease-in-out;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.accordion_link.active:after {
    transform: rotate(90deg);
    transition: all 0.2s ease-in-out;
}

.reviews {
    text-align: center;
    position: relative;
    background-color: var(--section-cl);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.reviews_title {
    color: var(--sacondary-cl-text);
    text-align: left;
    margin-bottom: 50px;
    font-family: "Regular";
}

.reviews_lang {
    color: var(--btn-cl);
    font-family: "Medium";
    margin-bottom: 10px;
    margin-top: 20px;
}

.reviews_name {
    color: var(--sacondary-cl-text);
    font-size: 26px;
    font-family: "Regular";
    letter-spacing: 1.08px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .reviews_name {
        font-size: 36px;
    }
}

.reviews_position {
    font-size: 18px
}

@media only screen and (min-width: 768px) {
    .reviews_name {
        font-size: 24px
    }
}

.reviews_list {
    display: none;
}


.reviews_link {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    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;
    -webkit-transition: var(--hover-anim);
    transition: var(--hover-anim);
}
.reviews_link .portfolio_arrow {
    opacity: 0;
    cursor: pointer;
}
.reviews_link {
    background-color: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1280px) {
    .reviews_link .portfolio_arrow {
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) {
    .reviews_list {
        max-width: 900px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 1600px) {
    .reviews_list {
        max-width: 1500px;
    }
}

.reviews_item {
    width: 320px;
    gap: 20px;
    padding-bottom: 20px;
}

.reviews_play {
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.reviews_container {
    position: relative;
    max-height: 450px;
    overflow: hidden;
}

.reviews_img {
    width: 100%;
}

.overlayR {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.76);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 1s 0s, visibility 0s 0s;
    transition: opacity 1s 0s, visibility 0s 0s;
}

.overlayR.hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1s 0s, visibility 0s 0.5s;
    transition: opacity 1s 0s, visibility 0s 0.5s;
}

.modal-w {
    width: 100%;
    max-width: 650px;
    position: fixed;
    z-index: 100;
}

.animate {
    left: 50%;
    top: 50%;
    z-index: 999999;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 01s 0s, visibility .5s 0s, -webkit-transform 1s;
    transition: opacity 01s 0s, visibility .5s 0s, -webkit-transform 1s;
    transition: opacity 01s 0s, visibility .5s 0s, transform 1s;
    transition: opacity 01s 0s, visibility .5s 0s, transform 1s, -webkit-transform 1s;
}

.animate.hiden {
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate(-50%, -70%);
    transform: translate(-50%, -70%);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.slide-container-rev {
    position: relative;
    margin: 0 auto 50px auto;
    border: 1px solid #ccc;
    z-index: 0;
    list-style: none;
    overflow: hidden;
    max-width: 100% !important;
}
@media only screen and (min-width: 768px) {
    .slide-container-rev {
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }
}

.slide-wrapper-rev {
    position: relative;
    z-index: 1;
    display: flex;
    transition-property: transform;
}

@media only screen and (min-width: 768px) {
    .slide-wrapper-rev {
        align-items: center;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media only screen and (min-width: 1400px) {
    .slide-wrapper-rev {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slide-container-rev .slide-item-rev {
    z-index: 1;
    padding: 15px;
    text-align: left;
    background-color: #fff;
    position: relative;
    float: left;
    flex-shrink: 0;
    max-width: 280px;
    height: 500px;
    user-select: none;
}
@media only screen and (min-width: 768px) {
    .slide-container-rev .slide-item-rev {
        width: 340px;
        height: 450px;

    }
}

.slide-navbar-rev {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 18px;
    text-align: center;
    font-size: 0;
    z-index: 2;
}
@media only screen and (min-width: 768px) {
    .slide-navbar-rev {
        display: none;
    }
}

.dot-rev {
    display: inline-block;
    margin: 0 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--btn-cl);
}

.dot-active-rev {
    width: 20px;
    border-radius: 6px;
    background-color: var(--btn-cl);
}

.slide-button-prev-rev,
.slide-button-next-rev{
    border: 1px solid rgba(21, 127, 225, 0.8);
    display: inline-block;
    position: absolute;
    background-color: rgba(21, 127, 225, 0.8);
    top: 50%;
    width: 40px;
    height: 60px;
    z-index: 2;
    color: var(--btn-cl);
    padding: 10px;
}
@media only screen and (min-width: 768px) {
    .slide-button-prev-rev,
    .slide-button-next-rev {
        display: none;
    }
}

.slide-button-prev-rev {
    left: 0;
    transform: translateY(-50%);
}

.slide-button-next-rev {
    right: 0;
    transform: translateY(-50%);
}
.modal-close {
    color: #000;
    font-size: 50px;
    position: absolute;
    top: -20px;
    right: -45px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.modal-close span {
    width: 2px;
    height: 25px;
    background: #fff;
    display: block;
    position: absolute;
}

.modal-close span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 4px;
    left: 14px;
}

.modal-close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 4px;
    left: 14px;
}

.hide {
    opacity: 1;
    animation-name: a1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.modal-show{
    opacity: 0;
    z-index: 1;
    border-radius: 50%;
    padding: 0;
    border: none;
}


.order_title {
    text-align: center;
    margin-bottom: 20px;
}

.order_sub-title {
    color: var(--header-cl);
    font-size: 18px;
    letter-spacing: 1.08px;
    margin-bottom: 30px;
    text-align: center;

}

@media only screen and (min-width: 768px) {
    .order_sub-title{
        font-size: 29px;
        margin-bottom: 60px;
    }

}
@media only screen and (min-width: 1280px) {
    .order_sub-title{
        font-size: 36px;
        margin-bottom: 88px;
    }
}

.order_input {
    font-family: 'Regular';
    margin-top: 20px;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    font-size: 18px;
    letter-spacing: 0.72px;
    padding: 16px 0 16px 15px;
    border-color: rgba(0, 0, 0, 0.10);
}
@media only screen and (min-width: 768px) {
    .order_input{
        font-size: 18px;
        margin-bottom: 60px;
        padding: 16px 0 16px 40px;
        letter-spacing: 0.72px;
        font-family: 'Regular';
    }
}
@media only screen and (min-width: 1280px) {
    .order_input{
        height: 60px;
        padding: 16px 0 16px 40px;
    }

}
.order_input::placeholder {
    padding-left: -40px;
    font-size: 18px;
    letter-spacing: 0.72px;
    color: rgba(47, 47, 47, 0.50);

}

@media only screen and (min-width: 768px) {
    .order_input::placeholder {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1280px) {
    .order_input::placeholder {
        font-size: 19px;
    }
}

.order_star {
    color: var(--btn-cl);
}

.order_container {
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10%;
}

@media only screen and (min-width: 768px) {
    .order_container {
        margin-bottom: 43px;
    }
}

@media only screen and (min-width: 1280px) {
    .order_container {
        margin-bottom: 54px;
    }
}

.order_sub-container {
    display: flex;
    flex-direction: column;
}


.order_button {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.order_confirmation {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
    .order_confirmation {
        margin-bottom: 80px;
    }
}

@media only screen and (min-width: 1280px) {
    .order_confirmation {
        margin-bottom: 106px;
    }
}


.order_politic {
    font-size: 14px;
    cursor: pointer;

}

@media only screen and (min-width: 768px) {
    .order_politic {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1280px) {
    .order_politic {
        font-size: 24px;
    }
}
.order_link {
    color: var(--btn-cl);
    text-decoration: underline;
}

.order_lable {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.72px;
}

@media only screen and (min-width: 768px) {
    .order_lable {
        font-size: 19px;

    }
}

@media only screen and (min-width: 1280px) {
    .order_lable {
        font-size: 24px;
    }
}
.order_lable-coment {
    width: 100%;
}


.order_form {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
    .order_form {
        max-width: 500px;
    }
}
@media only screen and (min-width: 1280px) {
    .order_form {
        max-width: 660px;
    }
}

#click {
    display: none;
}
#click1 {
    display: none;
}
#click2 {
    display: none;
}


.marker {
    fill: var(--white-cl);
    outline: 2px solid rgba(0, 0, 0, 0.20);
    margin-right: 20px;
    cursor: pointer;
    max-width: 25px;
    max-height: 25px;
}

.label_check {
    display: flex;
    align-items: center;
    justify-content: center;
}

#click:checked+.marker {
    background-color: var(--btn-cl);
    outline: none;
}
#click1:checked+.marker {
    background-color: var(--btn-cl);
    outline: none;
}
#click2:checked+.marker {
    background-color: var(--btn-cl);
    outline: none;
}


#rev-iframe  {
    max-width: 95%;

}
body::-webkit-scrollbar {
    width: 10px;  /* Ширина полосы прокрутки */
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;  /* Цвет фона полосы прокрутки */
}

body::-webkit-scrollbar-thumb {
    background-color: #449DEE;
    ;  /* Цвет полосы прокрутки */
    border-radius: 5px;  /* Радиус скругления полосы прокрутки */
}
main {
    position: relative;
}
.popup {
    position: fixed;
    left: 0;
    bottom: -400px;
    z-index: 10;
    width: 352px;
    margin: 0 0 10px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    grid-template-columns: 56px 1fr;
    grid-gap: 16px;
    -ms-flex-align: center;
    box-sizing: border-box;
    border: 3px solid rgba(216,217,226,.9);
    box-shadow: 10px 20px 40px 0 rgba(36,35,40,.9);
    padding: 13px;
    height: 88px;
    pointer-events: auto;
    overflow: hidden;
    background-color: #FFF;
    line-height: 1em;
    animation: slideText 9s 3s infinite;
}
@keyframes slideText {
    0% {
        bottom: -400px;
    }
    3% {
        bottom: 0px;
    }
    69% {
        bottom: 0px;
    }

    100% {
        bottom: -400px;
    }
}

.popup_close {
    fill: rgb(255, 0, 255);
    transition: var(--hover-anim);
    cursor: pointer;
}
.popup_close:hover {
    fill: var(--btn-cl);
}
@media only screen and (max-width: 1000px) {
    .popup {
        display: none;
    }
}

.inviz {
    left: 10px;
}
.popup:hover {
    box-shadow: 0 0 0 4px rgba(144,164,174,.2);
}


.popup_number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: rgb(255, 0, 255);
    outline: 10px solid rgba(255, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-cl);
    margin-right: 20px;
}
.popup_container {
    font-size: 16px;
}
.popup_verifity {
    color: var(--btn-cl);
}
.popup_sub_container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_sub_container img{
    margin-right: 5px;
}
.popup_container_from_hover {
    display: flex;
    align-items: center;
    justify-content: left;
    opacity: 1;
    transition: var(--hover-anim);
    cursor: default;
    width: 100%;
}
.popup:hover  .popup_container_from_hover{
    opacity: 0;
}
.popup:hover  .popup_coment{
    opacity: 1;
}

.popup_coment {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%,50%);
    font-size: 16px;
    line-height: 1;
    text-align: center;
    font-family: 'Medium';
    transition: var(--hover-anim);
    opacity: 0;
    cursor: default;
    width: 80%;
}
.popup_close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.page_error {
    padding: 100px 30px;
}
.page_error p{
    margin-bottom: 30px;
}
.page_error h1{
    font-size: 46px;
    margin-bottom: 50px;
}
.page_error h2{
    margin-bottom: 50px;
}

@media only screen and (min-width: 1280px) {
    .page_error {
        padding: 200px 100px;
    }
}
@media only screen and (max-width: 1280px) {
    .page_error h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 1280px) {
    .page_error h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 1280px) {
    .page_error p {
        font-size: 20px;
    }
}
.btn_error {
    max-width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.icon_telegramm {
    fill: currentColor;
}

.message {
    z-index: 20;
    display: block;
    position: fixed;
    bottom: 5px;
    right: 0px;
    background-color: #fff;
    border: 2px solid rgba(204, 204, 204, 0.2);
    padding: 5px;
    transition: 300ms linear;
    width: 270px;

}

@media only screen and (max-width: 1200px) {
    .message {
        display: none;
    }
}
.hide_message {
    display: none;
}

.message-content {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
}
.message-content_mac {
    display: flex;
    flex-direction: row-reverse;
    max-width: 400px;
}

.close-message {
    z-index: 100;
    float: right;
    padding: 5px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    color: rgba(0, 0, 0, 0.3);
    display: flex;
    line-height: 13px;
    align-items: center;
}

.avatar {
    height: 55px;
    border-radius: 50%;
    margin-right: 12px;
}
.popup_telegram {
    height: 45px;
    border-radius: 7px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 10px;
}

.message_text {
    display: inline-block;
    font-size: 12px;
    font-family: 'Regular';
    margin-top: 7px;
    color: rgba(0, 0, 0, 0.3);
}

.message_name {
    font-family: 'Regular';
    font-size: 12px;
}
.message_name_mac {
    font-family: 'Regular';
    font-size: 15px;
}
.message_text_mac {
    display: inline-block;
    font-size: 15px;
    font-family: 'Light';
    margin-top: 7px;
    color: rgba(0, 0, 0);
    margin-bottom: 30px;
}

.messageMac {
    position: fixed;
    top: 10px;
    right: 0;
    background-color: rgba(230, 230, 230);
    border: 2px solid rgba(200, 200, 200, 0.7);
    padding:10px 15px;
    transition: 300ms linear;
    width: 420px;
    border-radius: 20px;
    z-index: 1001;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
    transition: 200ms linear;
}

.hide_messageMac {
    right: -500px;
}

.messageMac:hover .close-messageMac {
    opacity: 1;
}
.messageMac:hover .popup_ansew_link {
    opacity: 1;
}

.messageMac:hover .popup_ansew_mac {
    opacity: 1;
}
.close-messageMac {
    z-index: 100;
    float: right;
    padding: 6px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: -8px;
    left: -8px;
    display: flex;
    line-height: 13px;
    align-items: center;
    border: 2px solid rgba(200, 200, 200, 0.7);
    border-radius: 50%;
    background-color: rgba(230, 230, 230);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: 200ms linear;
}
.popup_ansew_mac {
    color: gray;
    position: absolute;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 7px;
    background-color: rgba(200, 200, 200, 0.7);
    font-family: "Roboto", sans-serif;
    line-height: 10px;
    transition: 200ms linear;
}

.popup_ansew_link{
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    transition: 200ms linear;
}
@media only screen and (max-width: 1200px) {
    .messageMac {
        display: none;
    }
}
.popup_mac_link {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #000 !important;
    align-items: center;
}
.messageMac:hover .avatar_mac {
    opacity: 0;
}

.avatar_mac {
    height: 42px;
    border-radius: 50%;
    margin-left: 25px;
    margin-top: 25px;
    transition: 200ms linear;
}

