.head--regular {
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 150%;
    letter-spacing: 0.04em;
    text-transform: uppercase;   
  }
  
  #menu__toggle {
    display: none; 
  }
  
  .container {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .body {
    height: 100%;
    margin: 0 auto;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;    
  }
      
  .d-flex {
    display: flex;
  }
      
  .d-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
      
  a {
    color: var(--color-black);
  }
      
  .header {
    border-bottom: 1px solid var(--color_1);
    box-shadow: 0px 5px 5px 0px rgba(71, 71, 71, 0.25);
    margin-bottom: 5px;
    padding: 0 15px;
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 4
  }
  
  #top-menu-mobile {
    display: none;
  }
  
  .menu {
    margin-right: 20px;
    margin-left: -20px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
  }
      
      /* top-menu */
  .top-menu {
    min-height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;    
  }
      
  .top-menu__left ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    min-width: 360px;
    margin: 0;
    padding: 0;
  }
      
  .top-menu__left a {
    font-family: 'PT Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-black);
  }
  
  .menu-left li:hover {
    color: #83C2D5;
  }
  
  .top-menu__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-width: 200px;
  }
  
  .menu-right--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
  }
  
  .menu-right__contacts_list li:hover {
    color: #83C2D5;
  }
  
  .icon img {
    max-width: 1rem;
    max-height: 1rem;
  }
  
  .menu-right--icon img:hover {
    transform: scale(1.5);
  }
  
  .menu-left__item {
    padding-top: 5px;
    padding-bottom: 7px;
    position: relative;
    overflow: hidden;
  }
  
  .menu-left__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    width: 100%;
    border-top: 2px solid var(--color_1);
    transition: all 0.3s;
  }
  
  .menu-left__item::before {
    content: '';
    position: absolute;
    top: 85%;
    left: -100%;
    opacity: 0;
    width: 100%;
    border-bottom: 2px solid var(--color_1);
    transition: all 0.3s;
  }
  
  .menu-left__item:hover::after {
    opacity: 1;
    left: 0;
  }
  
  .menu-left__item:hover::before {
    opacity: 1;
    left: 0;
  }
  
  .menu-right {
    position: relative;
    margin: 0 10px;
  }
  
  .menu__icon {
    display: flex;
  }
  
  .menu-right__contacts_list {
    font-size: 1.3rem;
    color: #000;
    align-items: center;
  }
  
  .menu-right__contacts_list li {
    list-style: none;
  }
  
  .menu-right__contacts_list a {
    transition: all .3s ease-in-out;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'PT Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-black);
    vertical-align: baseline;
    box-sizing: border-box;
    text-decoration: none;
  }
  
  .top-menu__logo {
    margin-bottom: -90px;
    text-align: center;
    width: 155px;
    border: none;
    outline: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }