/* common */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
@import url('../fonts/fonts.css');

.cakra {
    font-family: Cakra, sans-serif;
}

main section img {
    max-width: 100%;
}

body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 20px;
}
body section {
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    max-width: 1104px;
    margin: auto;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0);
    transition: background .4s, padding .4s;
}
header .hat {
    max-height: 38px;
    overflow: hidden;
    font-size: .78em;
    padding: .3em 0;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid #888;
    transition: color .4s, padding .4s, max-height .4s;
}
header .hat i {
    margin-left: 10%;
    font-size: 1.2em;
    vertical-align: middle;
}
header .hat .signin {
    font-size: .86em;
}
header .main-header {
    height: 4em;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid #888;
    transition: color .4s;
}
header .main-header .container {
    max-width: calc( 1277px + 10% ) ;
    padding: 0 5%;
    height: 100%;
    display: flex;
    align-items: center;
}
header .main-header .logo img {
    width: 200px;
}
header .main-header .menu,
header .main-header .menu div,
header .main-header .menu div ul{
    height: 100%;
}
header .main-header .menu div ul li,
header .main-header .menu div ul li a{
    height: 100%;
    display: flex;
    align-items: center;
}
header .main-header .menu div ul li a {
    transition: background-color .3s;
    position: relative;
}
header .main-header .menu div ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color .3s;
}
header .main-header .menu div ul li a:hover::after {
    background-color: rgba(255, 255, 255, 1);
}
header.scrolled .main-header .menu div ul li a::after {
    background-color: rgba(0, 0, 0, 0);
}
header.scrolled .main-header .menu div ul li a:hover::after {
    background-color: rgba(0, 0, 0, .8);
}


header .main-header .menu ul {
    font-size: .8em;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    height: 100%;
    gap: 1.1em;
    align-items: center;
}
header.scrolled {
    background-color: rgba(255, 255, 255, 1);
}
header.scrolled .main-header,
header.scrolled .hat {
    /* border-color: #555; */
    background-color: transparent;
    color: #1F1717;
}
header.scrolled .hat {
    max-height: 0;
    padding: 0;
}
header.scrolled .main-header {
    height: 3em;
}

@media screen and (min-width: 992px) {
    header .main-header .menu ul {
        gap: 1.1em;
    }
    header .main-header .logo img {
        width: 270px;
    }
}
@media screen and (min-width: 1200px) {
    header .main-header .menu ul {
        gap: 2.1em;
    }
}

main section section {
    padding: 2em 0;
}





footer {
    background-color: #BC5D58;
    padding: 2em 0;
    color: #fff;
}
footer .logo {
    max-width: 270px;
    margin-bottom: .5em;
}
footer ul.menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1em;
    text-align: center;
    margin-bottom: .5em;
    padding-top: 1em;
}
@media screen and (min-width: 576px) {
    footer ul.menu {
        flex-direction: row;
        justify-content: center;
    }
}


/* gold slice */
@media screen and (min-width: 992px) {
    .col-g-b {
        width: 62%;
        max-width: 62%;
        min-width: 62%;
    }
    .col-g-s {
        width: 38%;
        max-width: 38%;
        min-width: 38%;
    }

}

.btn.btn-primary {
    font-weight: 600;
    background-color: #35B4D6;
    border-color: #35B4D6;
}

.card {
    border-radius: 1.3em;
    border: 0;
    overflow: hidden;
}
@media screen and (min-width: 1200px) {
    .btn.btn-primary,
    .form-control {
        font-size: 1.1em;
    }
}