@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    color: #000;
  }

  :root {
    --bg-mobile-menu: #151424;
    --bg-header-block: #151424;
    --bg-producer: #151424;
    --bg-sidebar: #151424;
    --border-radius: 0.625rem;
    --margin: 0 10px;
    --transition-duration: .3s;
}
  
  body{
    overflow-x: hidden;
    line-height: 1.5;
  }

  a{
    text-decoration: none;
  }

  .link{
    cursor: pointer;
  }

  .container{
     width: 80%;
     height: 100%;
     margin: 0 auto;
   }

  header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 99;
    padding: 10px 0;
  }

  header .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }


  nav {
    display: flex;
    gap: 20px;
  }
  .header_logo img{
    width: 60px;
  }

  .burger_wrapper{
    padding: 10px 10px;
    background-color: #363435;
    border-radius: 50%;
    display: none;
  }

  .burger__menu{
    z-index: 999;
    display: block;
    position: relative;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.burger__menu span, .burger__menu::before, .burger__menu::after{
    left: 0;
    position: absolute;
    height: 15%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #fff;
    border-radius: 5px
}

.burger__menu::after{
    height: 17%;
}

.burger__menu::before, .burger__menu::after{
    content: "";
}

.burger__menu::before {
    top: 0;
}

.burger__menu::after{
    bottom:0;
}

.burger__menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
}

.burger__menu._active span {
    transform: scale(0) translate(0px, -50%);
}

.burger__menu._active::before{
    top: 50%;
    transform: rotate(45deg) translate(0px, -50%);
}

.burger__menu._active::after{
    bottom: 48%;
    transform: rotate(-45deg) translate(0px, 50%);
}


section{
    margin-top: 120px;
}

section a{
    color: #FF3939;
    text-decoration: underline;
}

section h1{
    font-size: 4rem;
    line-height: 4.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

section h2{
    margin: 10px 0;
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 900;
}

section ul,
section ol {
    list-style: none;
    margin: 20px;
}

section ul li,
section ol li{
    position: relative;
}

section ul li::before {
    content: "\2022";
    color: #FF3939;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

section img{
    display: block;
    margin: 10px auto;
    width: 100%;
}

.img_wrapp{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin: 20px 0;
}

section .img_wrapp img{
    width: 50%;
}

footer{
    background-color: #F2F2F2;
    margin-top: 40px;
    padding: 20px 0px;
}

footer .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer a>img{
    width: 100px;
}

.social_links{
    display: flex;
    gap: 16px;
}

footer p{
    text-align: center;
    font-size: 12px;
    width: 30%;
    margin: 0 auto;
    margin-top: 20px;
}

.mob_menu{
    position: fixed;
    top: -100%;
    width: 100%;
    background: #fff;
    transition: all .5s ease;
    padding: 40px;
}

.mob_menu._active{
    top: 83px;
}

.mob_menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.mob_menu ul li {
    list-style-type: none;
    position: relative;
    text-align: center;
}

.mob_menu ul li::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #363435;
    border-radius: 15px;
    transition: all .5s ease;
}

.mob_menu ul li:hover::after{
    width: 100%;
}


table {
    margin: 20px auto;
}


table {
    width: 100%;
    table-layout: fixed;
}


.tbl-header {
    background-color: #A81317;
}

.table {
    margin-top: 0px;
    margin: 40px auto;
}

table .title {
    background-color: #A81317;
}

table .title p strong{
    color: #fff !important; 
}

th{
    padding: 10px 8px;
    text-align: left;
    font-weight: 500;
    color: #A81317;
    text-transform: uppercase;
    border: 1px solid #A81317;
}

td {
    padding: 5px;
    text-align: left;
    vertical-align: middle;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
}

.txt_btn{
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.txt_btn a{
    display: block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-family: sans-serif;
    text-decoration: none;
    color: #fff;
    border: 2px solid #333;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    transition: all .35s;
  }
  
  .txt_btn a span{
    position: relative;
    z-index: 2;
    
  }
  
  .txt_btn a:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #A81317;
    transition: all .35s;
    
  }
  
  .txt_btn a:hover{
        border: 2px solid #A81317;
  }
  .txt_btn a:hover span{
    color: #fff;
  }
  
  .txt_btn a:hover:after{
    width: 100%;
  }

@media(max-width: 1200px)
{
    .container{
        width: 90%;
    }

    section h1{
        font-size: 3rem;
    }
}

@media(max-width: 769px)
{
    .container{
        width: 95%;
    }

    header{
        border-bottom: 1px solid #363435;
    }

    .header_logo img{
        width: 50px;
    }

    nav {
        display: none;
    }

    .burger_wrapper{
        display: block;
    }
    
}

@media(max-width: 767px)
{
   

    .img_wrapp{
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin: 20px 0;
    }

    section h1{
        font-size: 2.225rem;
        line-height: 2.5rem;
    }

    section h2{
        font-size: 1.725rem;
        line-height: 2rem;
    }

    section .img_wrapp img{
        width: calc(50% - 10px);
    }

    table.table-wrap {
        border: 0;
    }

    table.table-wrap tr.title {
        display: none;
    }

    table.table-wrap td.colored {
        background-color: #A81317;
    }

    table.table-wrap td.colored p {
        color: #fff;
    }

    table.table-wrap thead {
        display: none;
    }

    table.table-wrap tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #ddd;
        border-right: 1px solid #A81317;
    }

    table.table-wrap td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #A81317;
        border-right: 1px solid transparent;
    }

    table.table-wrap td:last-child {
        border-bottom: 0;
    }

    table.table-wrap td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    
    footer a img{
        width: 150px;
    }

    footer .social_links img{
        width: 25px;
        height: 25px;
    }

    footer p{
        width: 80%;
    }
}

@media(max-width: 374px)
{

    nav ul {
        gap: 10px;
    }

    nav ul li img{
        width: 35px;
        height: 35px;
    }

    footer a img{
        width: 100px;
    }

    .mob_menu{
        border-top: none;
    }
}