@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@600,500,300,400&display=swap');

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

h2 {
    font-size: 15pt;
}

a {
    color: #37424a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

section {
    display: block;
}

body {
    margin: 0;
    padding: 0;
    font-family: "SourceSansPro", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8rem;
    color: #353535;

}

.alert-box {
    padding: 15px;
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #FFBCBC;
    background: #FFEDED;
    margin: 30px;
    background-image: url(../assets/svgs/alert-box-icon.svg);
    background-repeat: no-repeat;
    background-position: 10px 15px;
}

.notice-box {
    padding: 15px;
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #B1E3FF;
    background-color: #EEF9FF;
    margin: 30px;
    background-image: url(../assets/svgs/notice-box-icon.svg);
    background-repeat: no-repeat;
    background-position: 10px 15px;
}

.tips-box {
    padding: 15px;
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #C8EBBC;
    background: #EEFFE8;
    margin: 30px;
    background-image: url(../assets/svgs/tips-box-icon.svg);
    background-repeat: no-repeat;
    background-position: 10px 15px;
}

.notice-box h5,
.tips-box h5,
.alert-box h5 {
    margin-bottom: 30px;
    color: #2A2F35;
}

.logo-nav {
    width: 20%;
}

.title-nav {
    width: 60%;
}

.title-text {
    text-align: center;
}

.nav__list {
    width: 20%;
}

.btn {
    padding: 8px 20px;
    border-radius: 50px;
    background-color: #ff9900;
    color: #000716;
    transition: all .3s ease;
}

.btn:hover {
    background-color: #eb5f07;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.w-full {
    width: 100%;
}


.header {
    background-color: #37424a;
    color: white;
}

.nav {
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: inline-flex;
    color: white;
    gap: 12px;
}

.nav-list a:not(.btn) {
    color: inherit;
    transition: all .3s ease;
}

.nav-list a:not(.btn):hover {
    color: #ff9900
}

.nav__logo {
    font-size: 0;
    line-height: 0;
}


.gradient {
    background-image: linear-gradient(120deg, rgba(130, 92, 246, .7) 7.63%, rgba(231, 21, 123, .5) 37.94%, rgba(237, 113, 0, .7) 65.23%, rgba(189, 65, 202, .5) 92.12%);
    background-size: 400% 400%;
}

.layout {
    padding: 50px 20px 0;
    width: 100%;
    min-height: calc(100vh - 104px);
    display: grid;
    grid-template-rows: 1fr auto;
}

.layout__container {
    max-width: 1200px;
    margin: auto;
}

.layout__header {
    margin-bottom: 40px;
}

.featured-block {
    padding: 30px 40px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
}

.featured-block__title {
    margin-bottom: 40px;
}

.featured-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}


.featured-item {
    display: flex;
    gap: 12px;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
}

.featured-item:hover {
    background-color: #fdfdfd;
}

.featured-item__img {
    margin: auto;
}

.featured-item__content {
    text-align: center;
}

a .featured-item__content p {
    color: #353535;
}

a .featured-item__content p:hover {
    color: #37424a;
    text-decoration: none;
}

.featured-item h6 {
    margin-bottom: 4px;
}

.featured-item p {
    margin: 0;
}

.featured-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.featured-links li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ebed;
}

.featured-sidebar {
    margin-top: 24px;
}


.footer {
    background-color: #37424a;
    padding: 20px;
    color: #fff;
}

.footer a,
.footer .copyright {
    color: #bdc0c4;
}

.footer a:hover {
    text-decoration: none;
}

.footer p {
    margin: 0 0 1rem;
    text-align: center;
}

.footer p:last-child {
    margin: 0;
}

.d-none {
    display: none;
}

@media screen and (min-width: 992px) {
    .d-lg-block {
        display: block;
    }

    .layout {
        padding: 80px 40px 0;
    }

    .featured-grid {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 24px;
    }

    .featured-block__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .featured-sidebar {
        margin-top: 0;
    }

    .footer {
        padding: 15px 40px;
    }
}

@media screen and (max-width: 767px) {
    .logo-nav {
        width: 50%;
    }

    .title-nav {
        width: 50%;
    }

    .nav__list {
        display: none;
    }
}
