.phone-fixed {
  position: fixed;
  bottom: 15px;
  right: 40px;
  background-color: var(--primary);
  padding: 15px;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}

.phone-fixed img {
  width: 22px;
}

.phone-fixed.active {
  right: 320px;
}

.phone-fixed-info {
  position: fixed;
  bottom: 15px;
  right: 40px;
  background-color: white;
  padding: 12px 12px 12px 40px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
}

.phone-fixed-info .text {
  margin-right: 15px;
  font-family: var(--roomy-bold);
  font-size: var(--xs);
}

.phone-fixed-info .btn-corporate {
  padding: 5px 15px;
  height: auto;
  width: auto;
  font-size: var(--xs);
}

.menu-nav-box-desktop {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  padding: 10px 25px;
  color: white;
  border: none;
  border-radius: 25px;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  z-index: 1500;
}

.menu-nav-box-desktop .logo-roomy {
  max-width: 100px;
}

.menu-nav-box-desktop .logo-roomy img {
  max-width: 100px;
}

.menu-nav-box-desktop .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

.menu-nav-box-desktop .links a.linkMenu {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 0 10px;
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

.menu-nav-box-desktop .links a.linkMenu:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

@media (max-width: 1200px) {
  .menu-nav-box-desktop .links {
    display: none;
  }
}

.menu-nav-box-desktop .menu-responsive {
  display: none;
}

@media (max-width: 1200px) {
  .menu-nav-box-desktop .menu-responsive {
    display: initial;
  }
}

@media (max-width: 1200px) {
  .menu-nav-box-desktop {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    margin-top: 0px;
    border-radius: 0px;
  }
}

header.container {
  -webkit-transition: top 1s linear;
  transition: top 1s linear;
  height: 8rem;
}

header.menu-scroll {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 2;
  position: relative;
}

header.menu-scroll .menu-nav-box-desktop {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  margin-top: 0px;
  border-radius: 0px;
}

#menuToggle {
  display: block;
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  padding: 18px 15px 12px 15px;
  background: #FEEFED;
  border-radius: 100%;
}

#menuToggle input {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -7px;
  left: 1px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 29px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: var(--primary);
  border-radius: 3px;
  z-index: 1;
  -webkit-transform-origin: 4px 0px;
          transform-origin: 4px 0px;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menuToggle span:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-7px, -14px);
          transform: rotate(45deg) translate(-7px, -14px);
  background: var(--primary);
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(-3px, 11px);
          transform: rotate(-45deg) translate(-3px, 11px);
}

.menu-responsive-links {
  z-index: 1500;
  position: fixed;
  right: -380px;
  padding: 70px;
  text-align: right;
  font-family: var(--roomy-bold);
  color: white;
  background-color: var(--primary);
  top: 74px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  height: 100vh;
  -webkit-box-shadow: -15px 18px 60px -20px #000000f5;
          box-shadow: -15px 18px 60px -20px #000000f5;
}

.menu-responsive-links.visual {
  right: 0px;
}

.menu-responsive-links a.linkMenu {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 0 10px;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
  font-family: var(--roomy-bold);
}

.menu-responsive-links a.linkMenu:hover {
  color: var(--secondary);
}

.box-footer {
  background-color: var(--primary);
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  color: white;
}

.box-footer .log-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-footer .log-links .links {
  font-family: var(--roomy-bold);
}

.box-footer .log-links .links a {
  margin: 0px 10px;
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

.box-footer .log-links .links a:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

.box-footer .rrss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.box-footer hr {
  background-color: white;
  opacity: .6;
  margin: 0;
  border-radius: 15px;
}

.box-footer .legals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: var(--roomy-light);
}

.box-footer .legals a {
  margin: 0 15px;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.box-footer .legals a:hover {
  color: white;
  font-weight: bold;
}

.box-footer .legals .private-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 992px) {
  .box-footer .log-links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .box-footer .log-links .log {
    margin-bottom: 15px;
  }
  .box-footer .log-links .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .box-footer .log-links .links a {
    margin-bottom: 10px;
  }
  .rrss {
    margin: 10px 0px !important;
  }
}

@media (max-width: 768px) {
  .box-footer .log-links {
    display: block;
  }
  .box-footer .log-links .links {
    display: -ms-inline-grid;
    display: inline-grid;
  }
  .box-footer .legals {
    display: block;
  }
  .box-footer .legals .private-terms {
    display: -ms-inline-grid;
    display: inline-grid;
  }
  .box-footer .legals .private-terms a {
    margin: 10px 0px;
  }
}
