*,*:before,*:after {
    padding: 0;
    margin: auto;
    border: 0;
    box-sizing: border-box;
}

html,body {
    height: 100%;
}

.wrapper {
    width: 1400px;
    padding: 10px;
    overflow: hidden;
}

a {
    text-decoration: none;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: #FFFFFF;
    display: flex;
    
    align-content: center;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
}

.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 10px;
}

.header_body {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: auto;
    align-items: center;
}

.header_logo {
    overflow: hidden;
    position: relative;
    z-index: 3;

    display: grid;
    grid-row-gap: 5px;
}

.logo {
    max-height: 90%;
    max-width: 90%;
}

.header_burger {
    display: none;
}

.header_list {
    display: flex;
    position: relative;
    z-index: 2;
}

.header_list li {
    list-style: none;
    margin: 0px 0px 0px 20px;
}

.header_link {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.header_link p {
    display: flex;
    justify-content: center;
}

.information_tel_info {
    font-size: 36px;
}

.information_tel_info a {
    color: #BC35BE;
}

.content {
    padding: 150px 0px 0px 0px;
}

.information_btn_face {
    width: 100%;
    min-height: 100%;
    height: 100%;
    overflow: hidden;

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

    justify-content: center;
    align-items: center;
}

.btn_link:hover {
    border-radius: 10px;

    
    transition: all 0.8s ease 0.2s;
    -webkit-transition: all 0.8s ease 0.2s;
    -moz-transition: all 0.8s ease 0.2s;
    -ms-transition: all 0.8s ease 0.2s;
    -o-transition: all 0.8s ease 0.2s;

    -webkit-box-shadow: 0 0 40px rgba(73, 115, 255, 0.6);
    box-shadow: 0 0 40px rgba(73, 115, 255, 0.6);
}

.btn_link:hover .btn_waves{ 
    top: -50px;
}

.btn_link {
    width: 280px;
    height: 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

    overflow: hidden;

    position: relative;

    transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;

    justify-content: center;
    align-items: center;

    border-radius: 0 0 10px 10px; 
}

.btn_text {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #000000;
    text-transform: uppercase;
    
    font-weight: 700;
    font-size: 14px; 
    letter-spacing: 4px;

    position: relative;
    z-index: 1;
}

.btn_waves {
    position: absolute;
    width: 280px;
    height: 280px;
    background-color: #bc35beb0;
    top: 0;
    left: 0;
    -webkit-box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);

    transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
}

.btn_waves:after,
.btn_waves:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 250%;
    height: 250%;

    transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    -moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    -ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    -webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    -o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
}

.btn_waves:before{
    background-color: #CCF3BE; 
    border-radius: 48%;

    animation: waves 5s infinite linear;
    -webkit-animation: waves 5s infinite linear;
    -moz-animation: waves 5s infinite linear;
    -o-animation: waves 5s infinite linear;
}

.btn_waves:after{
    background-color: rgba(135, 230, 127, 0.5); 
    border-radius: 44%;

    animation: waves 10s infinite linear;
    -webkit-animation: waves 10s infinite linear;
    -moz-animation: waves 10s infinite linear;
    -o-animation: waves 10s infinite linear;
}

@keyframes waves{
    0%{
        transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    }
    100%{
        transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
    }
}
@-webkit-keyframes waves{
    0%{
        transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    }
    100%{
        transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
    }
}
@-moz-keyframes waves{
    0%{
        transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    }
    100%{
        transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
    }
}
@-o-keyframes waves{
    0%{
        transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
    }
    100%{
        transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
    }
}

.information_the_text_under_the_btn {
    font-weight: 700;
}

.advantages {
    background-color: #CCF3BE;
    height: auto;
    padding: 15px 10px 10px 10px;
    display: flex;
}

.advantages_banner {
    width: 100%;
    height: 100%;
    padding-left: 200px;
}

.advantages_description {
    color: #000000; 
    font-family: Arial;
    font-weight: bold;
    font-size: 20px; 
    line-height: 1.1875;
    text-align: left;

    padding-right: 150px;
}

.advantages_description h1 {
    text-align: center;
    font-size: 32px;
}

.advantages_description_1 {
    width: 550px;
    height: 181px;
}

.advantages_description_1 img {
    width: 22px;
    height: 20px;
}

.statistics {
    background-color: #ffffff;
    width: auto;
    height: auto;
}

.statistics_numbers {
    display: flex;
    padding: 2%;
}

.statistics_numbers th {
    color: #000000; 
    font-family: Arial;
    font-weight: bold;
    font-size: 24px; 
    line-height: 1.1875;
    text-align: center;
}

.statistics_numbers font {
    font-size: 48px; 
    padding-right: 20px;
}

.catalog {
    background-color: #CCF3BE;
    
    display: flex;

    align-items: center;
    justify-content: center;
    justify-items: center;

    padding: 20px;
}

.catalog_description h1 {
    text-align: center;
    font-size: 32px;
}

.catalog_description {
    color: #000000; 
    font-family: Arial;
   
    font-size: 20px; 
    line-height: 1.1875;
    text-align: center;
}

.catalog_btn {
    background-color: #CCF3BE;
    display: flex;
    
    align-items: center;
    justify-content: center;
    justify-items: center;

    padding: 10px;
    height: 70px;
}

.catalog_btn_face {
    background-color: #CCF3BE;
}

.freedom_btn_link {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-decoration: none;
    position: relative;
    display: inline-block;
    width: 300px;
    height: 95px;
}

.freedom_btn_link:before,
.freedom_btn_link:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #BC35BE;
    top: -10px;
    left: 50%;
    z-index: 1;
    transition: all 0.8s ease 0s;
    margin: 0px 0px 0px -40px;
}

.freedom_btn_link:before{
    animation: rotate 20s linear infinite;
}
.freedom_btn_link:after{
    animation: rotate 25s linear infinite;
}

.freedom_btn_text {
    position: relative;
    height: 40px;
    display: flex;
    
    padding: 0 10px;
    border-radius: 50px;
    
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    
    color: #000000;
    
    text-transform: uppercase;
    
    font-weight: 700;
    font-size: 14px; 
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    
    transition: all 1s ease 0s; 
    top: 0;
    overflow: hidden;
}

.freedom_btn_text:before,
.freedom_btn_text:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #eee;
    transition: all 0.8s ease 0s;
}
.freedom_btn_text:before {
    left: 0;
    z-index: 2;
}
.freedom_btn_text:after {
    right: 0;
}
.freedom_btn_text span {
    position: relative;
    z-index: 2;
}

.freedom_btn_link:hover:before,
.freedom_btn_link:hover:after {
    left: 100%;
    opacity: 0;
}

.freedom_btn_link:hover .freedom_btn_text{
    top: -10px; 
    color: #fff;
    transition: all 0.5s ease 0s; 
    box-shadow: 0 5px 0px 0 #0c5b52;
}

.freedom_btn_link:hover .freedom_btn_text:before, 
.freedom_btn_link:hover .freedom_btn_text:after{
    background-color: #BC35BE;
}

.freedom_btn_link:hover .freedom_btn_text:before {
    width: 100%;
}

.freedom_btn_link:active .freedom_btn_text { 
    top: -7px;
    transition: all 0.1s ease 0s;
    box-shadow: 0 2px 0px 0 #0c5b52;
}

@keyframes rotate { 
    0%{
        transition: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.product {
    background-color: #CCF3BE;
    padding: 15px;
}

.product_table {
    display: grid;

    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    grid-auto-flow: row;
    
    gap: 20px;
}

.product_list {
    position: relative;
    width: 370px;
}

.product_img {
    width: 370px;
    height: 645px;

    box-shadow: 10px 10px grey;
    border-radius: 5%;
}

.product_list .product_button_face {
    position: absolute;
    top: 93%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.feedback {
    background-color: #FFFFFF;
    padding: 20px;

    display: flex;
    
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.feedback_title {
    color: #000000;
    font-family: Arial;
    font-weight: 700;
    font-size: 26px; 
    line-height: 1.1875;
    text-align: center;
}

.feedback_btn {
    background-color: #FFFFFF;
    display: flex;
    
    align-items: center;
    justify-content: space-between;
    justify-items: center;

    padding: 10px;
    height: 70px;
}

.feedback_btn_face {
    background-color: #FFFFFF;
}

.feedback_text {
    background-color: #FFFFFF;
    padding: 15px;
}

.feedback_table {
    display: grid;

    grid-template-columns: auto auto auto;
    grid-auto-flow: row;
    
    gap: 20px;
}

.feedback_list {
    background-color: rgba(188, 53, 190, 0.25);
    position: relative;
    border-radius: 5%;
    width: 408px;
    height: 350px;
    padding: 30px;
    text-align: left;
}

.feedback_img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}

.feedback_list p {
    padding-bottom: 40px;
}

.feedback_list_table {
    margin: 0;
}

.contacts {
    background-color: #CCF3BE;
    padding: 20px;

    display: flex;
    
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.contacts_link {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

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

.contacts_link p {
    display: flex;
    justify-content: center;
}

.contacts_link h1 {
    text-align: center;
    font-size: 32px;
}

.information {
    height: auto;
    background-color: #FFFFFF;
    display: flex;
    
    align-content: center;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
}

.author {
    padding: 10px;
}

.author p {
    color: #000000;
    font-family: Arial;
    font-weight: normal;
    font-size: 14px; 
    line-height: 1.1875;
    text-align: left;
}

#myBtn {
  display: none; 
  position: fixed; 
  bottom: 20px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: #687e61; 
  color: rgb(0, 0, 0); 
  cursor: pointer; 
  padding: 15px; 
  border-radius: 10px; 
  font-size: 20px; 
}

#myBtn:hover {
  background-color: #BC35BE; 
}