:root {
    --primary-color-transparent: rgba(247, 198, 0, 0.97);
    --secondary-color: #f7c600;
    --primary-color: #570f81;

    /* --primary-color: #f7c600;
    --secondary-color: #00486c; */
}

html {
    overflow-x: hidden;
}
body {
    /* background: #E5E5E5; */
    background: #faf9f5;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}
a {
    text-decoration: none !important;
}

.btn-color {
    background-color: #570f81 !important;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
/** Header **/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}
header .desktop .top {
    width: 100%;
    height: 135px;
    /* background: linear-gradient(270deg, rgba(247, 198, 0, 0.97) 29.69%, rgba(247, 198, 0, 0.97) 38.02%, rgba(247, 198, 0, 0.87) 77.08%); */
    background: var(--primary-color);
}
header .desktop .top .container {
    display: flex;
    justify-content: space-between;
}
@media (min-width: 1300px) {
    header .desktop .top .container {
        padding: 0 180px;
    }
}
@media (max-width: 1300px) {
    header .desktop .top .container {
        padding: 0 15px;
    }
}
header .desktop .top .nav nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: 100%;
}
header .mobile {
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.85);
}
header .desktop .top .nav nav ul li {
    margin: 0 7px;
}
header .desktop .top .nav nav ul li a {
    color: #fff;
}
header .desktop .top .nav nav ul li a:hover {
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
    text-decoration: none;
}
header .desktop .top .nav nav ul li .active {
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
    text-decoration: none;
}

header .desktop .logoArea {
    width: 100%;
    max-width: 120px;
    margin-top: 10px;
}
header .desktop .logoArea img {
    width: 100%;
}

header .mobile .top {
    padding: 0 15px;
}
header .mobile .top .logoArea {
    position: absolute;
    right: 15px;
    width: 100%;
    max-width: 120px;
    margin-top: 10px;
}
header .mobile .top .logoArea img {
    width: 100%;
}
header .mobile {
    display: none;
}
header .desktop {
    display: block;
}
@media (max-width: 500px) {
    header .mobile {
        display: block;
    }
    header .desktop {
        display: none;
    }
}

/*** footer **/
footer {
    width: 100%;
    min-height: 185px;
    /* background: linear-gradient(270deg, rgba(247, 198, 0, 0.97) 29.69%, rgba(247, 198, 0, 0.87) 77.08%); */
    background: var(--primary-color);
}
footer .follow {
    width: 100%;
    max-width: 100px;
    margin: 0 auto;
}

footer .follow .title p {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-weight: bold;
}
footer .follow .icons a {
    font-size: 20px;
    color: #fff;
    margin-right: 5px;
}
footer .follow .icons a:hover {
    text-shadow: 0 0 4px #fff;
}
footer .links {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
footer .links .top {
    margin-right: 40px;
}
footer .links .top,
footer .links .bottom {
    display: inline;
}
footer .links .top a,
footer .links .bottom a {
    color: #fff;
    text-decoration: none;
    display: block;
}
footer .links .top a:hover,
footer .links .bottom a:hover {
    font-weight: bold;
}
footer .links .top a i,
footer .links .bottom a i {
    margin-right: 15px;
}

@media (max-width: 500px) {
    footer {
        padding: 20px 0;
    }
    footer .links {
        display: block;
    }
    footer .links .top {
        text-align: center;
        margin: 0;
        display: block;
    }
    footer .links .bottom {
        display: block;
        text-align: center;
        margin-top: 20px;
    }
}

.copy {
    width: 100%;
    min-height: 35px;
    padding: 5px 0;
    display: flex;
    /* background: linear-gradient(270deg, rgba(46, 57, 137, 1) 38.02%, rgba(22, 70, 144, 1) 77.08%); */
    background: var(--secondary-color);
}
.copy .copyArea {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copy .copyArea p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    margin-right: 15px;
}
.copy .copyArea p i {
    margin-right: 5px;
}
.copy .copyArea p a {
    color: var(--primary-color);
    text-decoration: none;
}
.copy .copyArea p a:hover {
    font-weight: bold;
}
@media (max-width: 500px) {
    .copy .copyArea {
        flex-wrap: wrap;
    }
}
