:root {
    --primary-color: #FF7F00;
    --secondary-color: #53CFF3;
    --color-error: #E23A05;
}
.btn-primary {
    background-color: var(--primary-color);
}

@media (min-width: 1400px) {
    .container-lg, .container-md, .container-sm, .container {
      max-width: 1100px;
    }
  }
body {
    font-family: 'Montserrat', sans-serif;
}

.app-header {
    background: #FFFFFF;
    box-shadow: 0px 0px 20.4203px rgba(0, 0, 0, 0.15);
}

.app-header .navbar-nav {
    margin-left: auto;
}

.app-header .navbar-nav .nav-link {
    font-style: normal;
    font-weight: 500;
    font-size: 14.5946px;
    line-height: 18px;
    padding-left: 1rem;
    padding-right: 1rem;

    /* identical to box height */
    letter-spacing: -0.03em;

    color: #161616;
}

.app-header .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.app-header .navbar-nav .nav-item .avatar {
    text-decoration: none;
    height: 40px;
    width: 40px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}

.app-header .navbar-nav .nav-item.profile {
    margin-left: 100px;
}

.app-header .profile .dropdown .dropdown-menu{
    overflow: hidden;
    padding: 1rem 0px;
}
.app-header .profile .dropdown .dropdown-menu li:last-child {
    /* padding-top: 10px; */
    /* border-top: 1px solid #eaeaea; */
}
.app-header .profile .dropdown .dropdown-menu a {
    text-decoration: none;
    color: inherit;
    transition: .7s;
    padding: 10px 1rem;
}

.app-header .profile .dropdown .dropdown-menu a:hover {
    text-decoration: none;
    color: var(--primary-color);
    transition: .4s;
    padding: 0 calc(1rem - 3px);
}

.app-header .profile .dropdown .dropdown-menu li:hover {

    border-left: 3px solid var(--primary-color);
}

.app-preheader .banner-contact a {
    color: #CCCCCC;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14.45px;
    line-height: 27px;
    transition: .7s;
}

.app-preheader .banner-contact a:hover {
    color: var(--primary-color);
    transition: .7s;
}

.app-preheader .title {
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    line-height: 65px;

    /* or 118% */
    letter-spacing: -0.03em;

    color: #32464F;
}

.text-required {
    color: #E23A05;
}

@media (max-width: 408px) {
    .app-preheader .row .row:first-child {
        display: none;
    }
  }

@media (max-width: 978px) {
    .app-header .navbar-nav .nav-item.profile {
        margin-left: 0px;
    }
  }
