@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: #fff;
  }

  :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;
    background-color: #181818;
  }

  a{
    text-decoration: none;
  }

  .link{
    cursor: pointer;
  }

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

  header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #000;
    z-index: 99;
    padding: 10px 0;
    transition: all .5s ease;
  }

 header.active{
    height: 140px;
 }

  header .wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .header_logo img{
    width: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .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: 11%;
}

.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%);
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 60px;
    transform: all .5s ease;
}

nav ul {
    display: flex;
    gap: 20px;
    width: 50%;
}

nav ul li{
    list-style-type: none;
    text-align: center;
    font-weight: 600;
    width: 50%;
}

nav ul li a:hover{
    color:#B96122;
}

.options{
    margin-top: 200px;
}

.options ul {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.options ul li {
    list-style-type: none;
    background-color: #B96122;
    padding: 15px 20px;
    transform: rotate(45deg); 
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.options ul li a svg {
    transform: rotate(-45deg); 
    width: 60px; 
    height: 60px;
    fill: #fff;
}


.text_section{
    margin-top: 80px;
}

.text_section a{
    color: #B96122;
}

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

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

.text_section ul{
    margin: 20px;
    list-style: none;
}


ol {
    counter-reset: list-counter; 
    list-style: none;
    margin: 20px 0;
}

ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 20px;
}

ol li::before {
    content: counter(list-counter) ". "; 
    position: absolute;
    left: 0;
    color: #B96122; 
    font-weight: bold; 
}

.text_section ul li,
.text_section ol li{
    position: relative;
}

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

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

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

.text_section .img_wrapp img{
    border-radius: 5px;
}

.text_section .img_wrapp img,
.img_wrapp .content{
    width: 50%;
}

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

footer p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    opacity: .8;
}

.mob_menu{
    position: fixed;
    top: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    border-top: 1px solid #363435;
    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: #B96122;
}

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

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

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

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

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{
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
  
  .txt_btn a {
    font-size: 1.5rem;
    padding: 1rem 5rem;
    color: #f4f4f4;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #B96122;
    position: relative;
    overflow: hidden; 
    box-sizing: border-box;
    display: inline-block;
    width: auto; 
  }
  
  .txt_btn a:hover {
    box-shadow: 1px 1px 25px 10px #B96122;
  }
  
  .txt_btn a:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(185, 97, 34, 0.4),
      transparent
    );
    opacity: 0;
    transition: all 650ms;
  }
  
  .txt_btn a:hover:before {
    left: 100%;
    opacity: 1;
  }

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

    header.active{
        height: 100px;
    }

    .header_logo img{
        width: 100px;
        top: 0;
    }

    nav{
        gap: 100px
    }

    .options{
        margin-top: 180px;
        margin-bottom: 60px;
    }
    
}
@media(max-width: 1200px)
{
    .text_section h1{
        font-size: 3rem;
        line-height: 3.2rem;
    }
}

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

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

    header .wrapper{
        justify-content: space-between;
    }

    nav{
        display: none;
    }

    .burger_wrapper{
        display: flex;
    }

    .header_logo img{
        position: relative;
        width: 80px;
    }

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

    .text_section .img_wrapp .content,
    .text_section .img_wrapp img{
        width: 100%;
    }
}

@media(max-width: 767px)
{
    .options{
        margin-top: 140px;
    }
    
    .options ul {
        display: flex;
        justify-content: center;
        gap: 40px;
    }
    
    .options ul li {
        list-style-type: none;
        background-color: #B96122;
        padding: 15px 20px;
        transform: rotate(45deg); 
        width: 60px; 
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .options ul li a svg {
        transform: rotate(-45deg); 
        width: 30px; 
        height: 30px;
    }

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

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

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

    table.table-wrap {
        border: 0;
    }

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

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

    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 #B96122;
    }

    table.table-wrap td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #B96122;
        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;
    }
}

@media(max-width: 424px){
    .options{
        margin-bottom: 40px;
    }
    .options ul li {
        width: 50px; 
        height: 50px;
    }
    
    .options ul li a svg {
        width: 25px; 
        height: 25px;
    }

    .text_section{
        margin-top: 0px;
    }
}

@media(max-width: 374px)
{

    nav ul {
        gap: 10px;
    }

    nav ul li a svg{
        width: 35px;
        height: 35px;
    }

    footer a img{
        width: 100px;
    }

    .mob_menu{
        border-top: none;
    }

    .options ul li {
        width: 40px; 
        height: 40px;
    }
    
    .options ul li img {
        width: 20px; 
        height: 20px;
    }
}