@media screen and (max-width: 1020px) {
  .header .notification {
    padding: 8px 20px;
  }
  .header .container {
    padding: 0;
  }
  .header .container .nav-header {
    position: relative;
  }
  .header .container .nav-header .brand {
    margin-left: 20px;
    gap: 5px;
  }
  .header .container .nav-header .brand .logo {
    width: 150px;
  }
  .header .container .nav-header .brand h1 {
    font-size: 16px;
  }
  .header .container .nav-header .nav-menu {
    transition: linear 0.23s;
    display: none;
    position: absolute;
    top: 85px;
    right: 0;
    left: 0;
    background-color: white;
    height: 100vh;
  }
  .header .container .nav-header .nav-menu .links {
    flex-direction: column;
    padding-top: 50px;
  }
  .header .container .nav-header .nav-menu .btn-blue:hover {
    background-color: white;
    border: 1px solid #2A2D7C;
    color: #2A2D7C;
  }
  .header .container .nav-header .nav-toggle {
    margin-right: 20px;
    display: block;
    cursor: pointer;
  }
  .header .container .nav-header .nav-fixed {
    position: fixed;
    display: grid;
    place-content: center;
    visibility: hidden;
    height: 100%;
    width: 100%;
    background-color: rgba(52, 98, 226, 0.6509803922);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .header .container .nav-header .nav-fixed a {
    color: #2A2D7C;
  }
  .header .container .nav-header .nav-fixed .fixed-nav-links {
    background-color: #f6f9fe;
    border-radius: 10px;
    width: 90vw;
    padding: 20px 10px;
  }
  .header .container .nav-header .nav-fixed .fixed-nav-links .link {
    padding: 1rem;
  }
  .header .container .nav-header .nav-fixed .fixed-nav-links .contact-btn {
    background-color: #2A2D7C;
    color: #f6f9fe;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 40vw;
    border-radius: 10px;
    padding: 10px 25px;
  }
  .header .container .nav-header .nav-fixed .fixed-nav-links .contact-btn a {
    color: #f6f9fe;
  }
  .header .container .nav-header .nav-fixed .fixed-nav-links .contact-btn img {
    width: 30px;
    height: 30px;
  }
  .header .container .nav-header .nav-close-btn {
    margin-right: 20px;
    display: none;
    position: relative;
    cursor: pointer;
  }
}
@media screen and (max-width: 1047px) {
  .footer .container .col {
    flex-direction: column;
    justify-content: flex-start;
  }
}/*# sourceMappingURL=mobile.css.map */