@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700;1,900&display=swap");

.btn-sm {
    background: none;
    border: none;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    padding: 0 20px;
    position: relative;
    z-index: 0;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
    min-width: 100px;
    font-size: 16px;
}

.btn-sm.white-filled {
    background: #fff;
    color: #00aef0;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 15px 0;
}

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

.header .menu-btn {
    display: none;
    padding: 4px;
}

.header .menu-btn.opened span:nth-child(2) {
    opacity: 0;
}

.header .menu-btn.opened span:nth-child(1) {
    -moz-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.header .menu-btn.opened span:nth-child(3) {
    -moz-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}

.header .menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    display: block;
    border-radius: 3px;
    margin: 4px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 55px;
}

.header .menu-item {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 17px;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    text-align: center;
}

.header .menu-item:hover {
    opacity: 0.7;
}

.header .menu-item.active {
    color: #fff;
}

.btn-book-meeting {
    border: 2px solid #fff;
    padding: 0 6px;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
}

.header .logo {
    display: inline-block;
    height: 45px;
}

.header .logo:hover {
    opacity: 0.7;
}

.header .logo-img {
    height: 100%;
    width: auto;
}

@media (max-width: 1280px) {
    .header .menu-item {
        min-width: auto;
        padding: 0 20px;
        font-size: 16px;
    }

    .header .logo {
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 8px 0;
    }

    .header .menu-btn {
        display: inline-block;
    }

    .header .menu-wrap {
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        position: fixed;
        top: 50px;
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        z-index: 100;
        background: rgba(34, 33, 33, 0.95);
        width: 100%;
        height: calc(100% - 50px);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow-y: auto;
    }

    .header .menu-wrap.opened {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    .header .menu-wrap.opened .menu-item {
        opacity: 1;
    }

    .header .menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
    }

    .header .menu-list li {
        margin-bottom: 20px;
    }

    .header .menu-item {
        line-height: 30px;
        padding: 4px 25px;
        opacity: 0;
        -webkit-transition: 0.3s ease 0.1s;
        -o-transition: 0.3s ease 0.1s;
        transition: 0.3s ease 0.1s;
    }

    .header .logo {
        height: 33px;
    }
}