/*==========  section header ==========*/
header {
  position: fixed;
  width: 100%;
  z-index: 3;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  padding: 33px 0; }
  header .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }

.logo {
  max-width: 359px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto; }
  .menu li {
    margin: 0 24px 0 0; }
    .menu li:last-child {
      margin: 0; }
    .menu li a {
      color: #000000; }
      .menu li a:hover {
        color: #B42024; }

.header-box p {
  font-size: 14px;
  color: #B42024;
  margin: 0 0 2px; }

.phone {
  font-size: 20px;
  font-weight: 500;
  color: #000; }
  .phone:hover {
    color: #B42024; }

.list-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 52px 0 57px; }
  .list-social li {
    margin: 0 20px 0 0; }
    .list-social li:last-child {
      margin: 0; }
    .list-social li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }

.btn-burger {
  display: none;
  width: 20px;
  height: 16px;
  margin: 0 0 0 20px; }
  .btn-burger span {
    display: block;
    width: 100%;
    background: #B42024;
    height: 2px;
    border-radius: 2px;
    margin: 0 0 3px; }
    .btn-burger span:last-child {
      margin: 0; }

/*==========  section header end  ==========*/
/*==========  section mobile-menu ==========*/
.mobile-menu {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 280px;
  height: 100%;
  overflow-y: auto;
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 7px 22px rgba(180, 32, 36, 0.2);
          box-shadow: 0px 7px 22px rgba(180, 32, 36, 0.2);
  display: none; }
  .mobile-menu .menu {
    text-align: center;
    margin: 30px auto; }
    .mobile-menu .menu li {
      width: 100%;
      margin: 0 0 10px; }
      .mobile-menu .menu li a {
        width: 100%;
        text-align: center; }
  .mobile-menu .logo {
    max-width: 150px;
    margin: 0 auto 20px; }
  .mobile-menu .header-box {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .mobile-menu .list-social {
    margin: 20px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .mobile-menu .phone {
    margin: 0 auto; }

.btn-close-menu {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer; }
  .btn-close-menu:before, .btn-close-menu:after {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    background: #B42024;
    border-radius: 2px;
    width: 2px;
    height: 100%; }
  .btn-close-menu:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .btn-close-menu::after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg); }

/*==========  section mobile-menu end  ==========*/
