@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');
h1 {
    font-family: Merriweather;
    font-style: normal;
    font-weight: normal;
    font-size: 34px;
    line-height: 45px;
}
h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.3px;
}
body,
input,
button,
p,
.btn > span,
#navbar button {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.3px;
}
body {
    margin: 0;
    padding-top: 60px;
    color: #403f4c;
}
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
th {
    outline: 0 !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
}
input {
    outline: 0 !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
}
h1 {
    margin-bottom: 80px;
    text-align: center;
    word-break: break-word;
}
h2 {
    text-align: center;
}
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
.container {
    max-width: 1280px;
    padding: 0 20px;
    margin: auto;
}
.block {
    padding: 80px 0;
}
.d-flex {
    display: flex;
}
.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.d-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn {
    display: inline-block;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 8px;
    filter: drop-shadow(0px 8px 6px rgba(255, 203, 60, 0.5));
    transition: filter 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
}
.btn > span {
    display: box;
    display: -ms-flexbox;
    display: flex;
    box-orient: horizontal;
    box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding: 12px 20px;
    border: none;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    transition: ease 0.3s;
    transition: ease 0.3s;
    background: linear-gradient(180deg, #fff 0%, #ffcb3c 100%);
    border: 1px solid #ffcb3c;
    box-sizing: border-box;
    border-radius: 8px;
}
.btn:active {
    filter: drop-shadow(0px 6px 6px rgba(255, 203, 60, 0.5));
}
.btn:active span {
    transform: translate(0, 5px);
}
.btn > span:after {
    content: '';
    display: block;
    width: 20px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 0.7) 0%,
        #fff 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
    background: linear-gradient(
        top,
        rgba(255, 255, 255, 0.7) 0%,
        #fff 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.7) 0%,
        #fff 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ffffff', endColorstr='#b3ffffff',GradientType=0 );
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.1s;
    transition: all 0.1s;
    animation-name: slideme;
    animation-name: slideme;
    animation-duration: 3s;
    animation-duration: 3s;
    animation-delay: 0.05s;
    animation-delay: 0.05s;
    animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0px;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}
#navbar .container {
    height: 60px;
}
#navbar .menu-btn {
    display: none;
    margin-left: auto;
    padding: 10px;
}
#navbar .nav-link {
    margin-right: 40px;
    color: #403f4c;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 3px solid #fff;
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
    border-bottom: 3px solid #ffcb3c;
}
#navbar button {
    padding: 8px 24px;
    border: 1px solid #ffcb3c;
    box-sizing: border-box;
    border-radius: 18px;
    background: none;
    cursor: pointer;
}
@media (max-width: 770px) {
    #navbar #navbar-menu {
        display: none;
    }
    #navbar #navbar-menu.collapse {
        display: flex;
        position: absolute;
        flex-direction: column;
        align-items: center;
        width: 100%;
        top: 60px;
        left: 0;
        padding-top: 20px;
        background: #fff;
    }
    #navbar #navbar-menu.collapse .nav-link {
        margin: 0 auto 30px;
        font-family: Montserrat;
        font-size: 24px;
        line-height: 36px;
        width: 80%;
        text-align: center;
        z-index: 1001;
    }
    #navbar #navbar-menu.collapse .fade {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    #navbar .menu-btn {
        display: block;
    }
    #navbar .logo {
        z-index: 1;
    }
    #navbar .btn {
        margin-left: 48px;
        z-index: 1;
    }
}
@media (max-width: 420px) {
    #navbar .btn {
        margin-left: 4px;
    }
}
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0 10px;
    background: #403f4c;
    color: #fff;
}
footer .column-1,
footer .column-2,
footer .column-3 {
    display: flex;
    flex-direction: column;
}
footer .column-1 {
    width: 400px;
}
footer .column-2 {
    width: 400px;
}
footer a,
footer span {
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
    opacity: 0.9;
    text-decoration: underline;
}
footer .copyright {
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    border-top: 2px solid rgba(255, 255, 255, 0.35);
}
@media (max-width: 900px) {
    footer {
        padding-top: 80px;
    }
    footer .d-flex {
        flex-direction: column;
    }
    footer .column-1,
    footer .column-2,
    footer .column-3 {
        width: auto;
        margin-bottom: 40px;
    }
    footer a,
    footer span,
    footer .copyright {
        margin-bottom: 40px;
        font-weight: 500;
        font-size: 24px;
        line-height: 29px;
    }
    footer .copyright {
        padding-bottom: 40px;
        margin-bottom: 20px;
        border-top: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.35);
    }
}
