html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

@font-face {
    font-family: "Spinnaker";
    src: url("../css/fonts/Spinnaker-Regular.ttf");
    font-weight: normal;
}

@font-face {
    font-family: 'Netflix';
    src: url("../css/fonts/NetflixSans-Th.ttf"),
        url(../css/fonts/NetflixSans-Rg.woff),
        url(../css/fonts/NetflixSans-Rg.woff2);
    font-weight: normal;
}

@font-face {
    font-family: 'Netflix bold';
    src: url("../css/fonts/NetflixSans-Bd.ttf"),
        url(../css/fonts/NetflixSans-Bd.woff),
        url(../css/fonts/NetflixSans-Bd.woff2);
}

body {
    font-family: 'Netflix';
    font-size: 20px;
    letter-spacing: 0;
    background-color: #7B5E7B;
    color: #FFFFFF;
}

.burger {
    display: none;
    position: absolute;
    border: none;
    background: transparent;
    width: 30px;
    height: 30px;
    margin: 0 0 0 auto;
    right: 100px;
    top: 90px;
    gap: 8px;
    flex-direction: column;
}

.burger-line {
    background-color: #FFFFFF;
    width: 30px;
    border: 1.5px solid;
    border-radius: 3px;
}

.close {
    background-image: url(../css/img/close.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 100px;
    top: 90px;
    display: none;
}

.flex {
    display: flex;
}

.text {
    margin: 0 0 15px;
}

.list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn-reset {
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.container {
    margin: 0 auto;
    padding: 50px 0;
}

.ellipse {
    background-color: #2E7BE1;
    width: 600px;
    height: 400px;
    rotate: 34.15deg;
    border-radius: 450px/450px;
    filter: blur(200px);
    animation: anim 3s infinite;
    position: fixed;
    z-index: -1;
}

@keyframes anim {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(100%, 0);
    }

    50% {
        transform: translate(100%, -50%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.card-top {
    width: 400px;
    height: 200px;
    border-radius: 30px;
    background-color: #fff;
    position: absolute;
    animation: rotate-around 5s infinite;
}

.top-panel {
    margin: 0 auto;
    width: 100%;
    align-items: center;
    height: 100px;
    background-image: url(../css/img/logo.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100px;
    max-width: 1200px;
}

.title-1 {
    font-size: 30px;
    padding-left: 120px;
    font-family: Spinnaker;
    font-weight: 100;
    margin: 0;
    max-width: 400px;
    vertical-align: middle;
    text-align: center;
}

.links {
    margin: 0 0 0 auto;
    gap: 40px;
    text-align: right;
    position: relative;
}

.link {
    display: flex;
    margin-right: 0;
}

.intro {
    padding: 100px 0 60px 100px;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.intro-1 {
    font-size: 64px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #00000044;
    padding-left: 80px;
}

.intro-2 {
    font-size: 40px;
    text-shadow: 2px 2px 4px #00000044;
}

.intro-3 {
    width: 580px;
    height: 60px;
    padding-left: 40px;
}

.intro-4 {
    font-size: 40px;
    text-shadow: 2px 2px 4px #00000044;
    padding-left: 150px;
}

.description {
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 100px;
    margin-bottom: 90px;
}

.intro-text {
    margin: 0;
    max-width: 500px;
    text-align: center;
    font-size: 17px;
    margin-bottom: 70px;
}

.button-top-box {
    gap: 20px;
    flex-wrap: wrap;
}

.button {
    color: #FFFFFF;
    border: 1px solid;
    border-radius: 20px;
    border-color: #FFFFFF;
    font-size: 20px;
    padding: 7px 15px;
    position: relative;
    overflow-x: hidden;
    margin-right: 80px;
}

.button:hover {
    background-color: #F8F7FF;
    color: #7B5E7B;
}

.button:active {
    background-color: #0000007d;
    color: #fff;
}

.button .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    animation: btnanim;
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: btnanim 2s infinite linear;
}

@keyframes btnanim {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.cookie-block {
    background-color: #151f2c;
    border-radius: 40px;
    width: 35%;
    position: fixed;
    right: 30px;
    bottom: 30px;
    padding: 20px 40px;
    gap: 30px;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    z-index: 5;
    border: #fff solid 1px;
    display: none;
    align-items: center;
}

.cookie-text {
    margin: 0;
    text-align: center;
}

.btn-ok {
    background-color: #FFFFFF;
    color: #000;
    padding: 10px;
    border-radius: 20px;
}

.myForm {
    display: none;
    flex-direction: column;
    margin: 0 auto;
    z-index: 15;
    padding: 100px 50px;
    justify-content: center;
    gap: 20px;
    max-width: 70%;
    min-width: 250px;
    position: fixed;
    top: 30%;
    left: 200px;
    right: 200px;
    background-color: #151f2c;
    border-radius: 10px;
    justify-content: center;
}

.alert-success {
    padding: 10px;
    border: #00ad14 solid 1px;
    color: #00ad14;
    margin: 0 auto;
}

.btn-close {
    background-image: url(../css/img/close.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.success {
    display: none;
    color: #D9D9D9;
    font-size: 40px;
}

.send:active.success {
    display: flex;
}

.form-p {
    font-size: 15px;
    color: #70798f;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

.form-example {
    justify-content: center;
}

.form-data {
    margin-right: 20px;
    flex-wrap: nowrap;
}

.data {
    border-radius: 10px;
    padding: 5px;
}

.button-sign-up {
    border: 1px solid;
    border-radius: 20px;
    border-color: #FFFFFF;
    font-size: 20px;
    padding: 7px 15px;
    color: #FFFFFF;
}

.button-sign-up:hover {
    background-color: #F8F7FF;
    color: #151f2c;
}

.btn-form {
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
    margin: 0 auto;
}

.toast {
    display: flex;
}

.services {
    background-color: #F8F7FF;
    padding: 100px 0;
    color: #000;
    gap: 80px;
    justify-content: center;
}

.card {
    background-image: url(..//css/img/ekologia-svezii-pysnyi-prirodnyi-priroda.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 150%;
    min-width: 35%;
    min-height: 100%;
    position: relative;
}

.sticker {
    background-color: #D9D9D9;
    box-shadow: 2px 4px 10px #00000044;
    font-size: 18px;
    padding: 10px 30px;
    max-width: 200px;
    text-align: center;
    margin: 0;
}

.sticker-1 {
    position: absolute;
    left: -40px;
    top: -20px;
}

.sticker-2 {
    position: absolute;
    right: -20px;
    bottom: -20px;
}

.title-2 {
    font-size: 30px;
    margin: 0;
    color: #000;
}

.list {
    background-image: url(..//css/img/галка.png);
    background-repeat: no-repeat;
    background-size: 20px;
    padding: 0 0 30px 30px;
    text-align: left;
}

.services-text {
    margin: 0;
}

.list-serv {
    flex-direction: column;
    max-width: 500px;
    text-align: center;
    gap: 30px;
    padding-top: 40px;
}

.btn-serv {
    background-color: #2E7BE1;
    background-image: url(..//css/img/ctrelka.png);
    background-repeat: no-repeat;
    background-position: 180px center;
    right: 5px;
    background-size: 15px;
    padding: 15px 40px 15px 30px;
    border-radius: 30px;
    box-shadow: 2px 4px 10px #00000044;
    border: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    justify-items: center;
    margin: 0 auto;
}

.advantages {
    padding: 100px 50px;
    margin: 0 auto;
    max-width: 1200px;
}

.list-adv {
    font-size: 16px;
    padding: 70px 15px 15px;
    border: 1px solid;
    width: 200px;
    text-align: center;
    min-height: 200px;
    background-color: #ffffff33;
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 10%;
    background-size: 40px;
}

.ul-adv {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.adv-1 {
    background-image: url(..//css/img/wow_4498681.png);
}

.adv-2 {
    background-image: url(..//css/img/heart_7931398.png);
}

.adv-3 {
    background-image: url(..//css/img/world_8542026.png);
}

.adv-4 {
    background-image: url(..//css/img/check_8836270.png);
}

.adv-5 {
    background-image: url(..//css/img/arrows_5275085.png);
}

.websites {
    background-color: #F8F7FF;
    padding: 50px;
    text-align: center;
}

.ul-site {
    flex-wrap: wrap;
    gap: 50px;
    padding: 30px 0;
    justify-content: center;
}

.list-site {
    width: 35%;
    height: 250px;
    background-repeat: no-repeat;
    background-size: 40%;
    background-position-y: 45%;
    background-position-x: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: #151f2c;
    mix-blend-mode: multiply;
    gap: 10px;
    justify-content: center;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Netflix Bold';
}

.list-site:hover {
    background-image: none;
}

.site-1 {
    background-image: url(..//css/img/одностр.png);
}

.site-2 {
    background-image: url(../css/img/корп.png);
}

.site-3 {
    background-image: url(../css/img/каталог.jpg);
}

.site-4 {
    background-image: url(../css/img/упак.jpg);
}

.more-details {
    display: none;
    margin: 0 auto;
    font-size: 17px;
    font-family: 'Netflix';
}

.btn-details {
    background-color: #7B5E7B;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-details:hover {
    background-color: #2E7BE1;
    color: #FFFFFF;
}

.btn-details:active {
    background-color: #151f2c;
}

.more {
    font-style: italic;
    font-size: 15px;
    margin: auto 0 0;
    font-family: 'Netflix';
}

.list-site:hover .more-details {
    display: flex;
}

.list-site:hover .more {
    display: none;
}

.li-package {
    background-color: #C7D8FF;
    border-radius: 25px;
    color: #000;
    padding: 20px 5px;
    min-width: 200px;
    min-height: 200px;
    font-size: 17px;
    justify-content: center;
    text-align: center;
    vertical-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 50%;
    margin: auto;
}

.li-package-1 {
    background-image: url(../css/img/1pac.png);
}

.li-package-2 {
    background-image: url(../css/img/2pac.png);
}

.li-package-3 {
    background-image: url(../css/img/3pac.png);
}

.li-package-4 {
    background-image: url(../css/img/4pac.png);
}

.li-package-5 {
    background-image: url(../css/img/5pac.png);
}

.li-package-6 {
    background-image: url(../css/img/6pac.png);
}

.li-package-7 {
    background-image: url(../css/img/7pac.png);
}

.li-package-8 {
    background-image: url(../css/img/8pac.png);
}

.li-package-9 {
    background-image: url(../css/img/9pac.png);
}

.ul-package {
    gap: 20px;
    will-change: transform;
    animation: scrolling 50s linear infinite;
    padding-right: 20px;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.carousel {
    padding: 50px 0;
    overflow: hidden;
}

.carousel {
    &:hover .ul-package {
        animation-play-state: paused;
    }
}

.title-portfolio {
    color: #FFFFFF;
}

.portfolio {
    padding: 50px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.list-portfolio {
    border-radius: 25px;
    width: 350px;
    height: 280px;
    background-color: #ffffff42;
    text-align: right;
    background-repeat: no-repeat;
    position: relative;
    background-size: 70%;
    padding: 10px;
    background-position-x: 50%;
    background-position-y: 40%;
}

.port-1 {
    background-image: url(../css/img/port1.png);
}

.port-2 {
    background-image: url(../css/img/port2.png);
}

.port-3 {
    background-image: url(../css/img/port3.png);
}

.port-4 {
    background-image: url(../css/img/port4.png);
}

.port-5 {
    background-image: url(../css/img/port5.png);
}

.port-6 {
    background-image: url(../css/img/port6.png);
}

.ul-portfolio {
    flex-wrap: wrap;
    gap: 50px;
    padding: 40px 40px;
    justify-content: center;
    flex-direction: row;
}

.btn-port {
    margin: 0;
}

.line {
    height: 2px;
    width: 1000px;
    text-align: center;
    background-color: #FFFFFF;
}

.portfolio-text {
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.line {
    width: 80%;
    border-bottom: #FFFFFF 2px solid;
    margin: 0 auto;
    margin-bottom: 40px;
}

.rules {
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
}

.ul-contacts {
    gap: 60px;
    margin-bottom: 40px;
}

.contacts {
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.img-rewiews {
    width: 20%;
    height: 20%;
}

.reviews {
    gap: 30px;
    padding: 30px 60px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}