@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
    text-decoration: none;
    color: #fff;
}

/*html {
    scroll-behavior: smooth;
}
*/
.section {
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.section .sec {
    width: 45%;
    height: 80%;
    display: flex;
    align-items: center;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 80px;
    backdrop-filter: blur(5px);
}

header h1 {
    position: relative;
    font-size: 1.9em;
    padding-left: 45px;
}

header h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url("../img/logo-white.png") no-repeat center center;
    background-size: cover;
}

header .links {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

header .links nav a {
    position: relative;
    padding-right: 10px;
    margin-right: 40px;
    font-weight: 600;
    transition: all .5s ease;
}

header .links nav a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    opacity: 0;
    height: 2px;
    background-color: #fff;
    transition: .5s ease;
}

header .links nav a::after {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 0;
    opacity: 0;
    height: 2px;
    background-color: #fff;
    transition: .5s ease;
}

header .links nav a:hover:before,
header .links nav a:hover:after {
    opacity: 1;
    width: 50%;
}

.intro {
    position: relative;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.9));
    height: 700px;
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url("../img/bg.jpg") no-repeat fixed center center;
    background-size: cover;
}

.intro .sec {
    justify-content: center;
    flex-direction: column;
}

.intro h1 {
    position: relative;
}

.intro h1::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 60px;
    width: 80px;
    height: 80px;
    background: url("../img/logo-white.png") no-repeat center center;
    background-size: cover;
}

.intro p {
    margin-top: 3px;
}

.intro a {
    margin-top: 10px;
    padding: 15px 40px;
    color: #000;
    font-weight: bolder;
    background: #fff;
    border: 1px solid transparent;
    transition: .5s ease;
}

.intro a:hover {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}

.contents .post {
    width: 100%;
    height: 650px;
    background-color: rgb(243, 243, 243);
}

.contents .post .sec {
    overflow: hidden;
    justify-content: center;
    height: 100%;
    width: 50%;
    color: #000;
    justify-content: center;
    flex-direction: column;
}

.contents .post img {
    height: 100%;
}

.contents .post h1 {
    color: rgb(0, 0, 50);
}

.contents .post p {
    font-weight: bold;
    padding: 0 100px;
    text-align: center;
    color: #000;
}

.contents .post li {
    color: black;
}

.contents .post a {
    color: rgb(0, 0, 50);
    text-decoration: underline;
}

.contents .post .play {
    margin: 10px;
}

.contents .post .play li {
    padding: 10px 0;
    list-style-type: circle;
}

.contents .post .text i {
    font-size: 1em;
}

.contents .features {
    height: 400px;
    background: #fff;
}

.contents .features .section {
    position: relative;
    background: url(../img/post-img-1.jpg) no-repeat fixed center;
    background-size: cover;
}

.contents .features .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.contents .features .sec {
    width: 70%;
    padding: 10px;
    z-index: 1;
}

.contents .features h1 {
    font-size: 3em;
}

.contents .features p {
    text-align: center;
    font-size: 1.5em;
    color: #000;
}

.contents .howto {
    position: relative;
    height: auto;
    background: url("../img/howto-bg.jpg") no-repeat fixed center;
    background-size: cover;
}

.contents .howto .sec {
    z-index: 10;
    height: auto;
    padding: 30px 0;
    margin: 30px 0;
    background: #fff;
    border-radius: 25px;
}

.contents .howto::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
}

.contents .howto h1 {
    padding: 20px 0;
    text-align: center;
    text-decoration: underline;
}

.contents .howto strong {
    color: black;
}

.contents .howto li {
    margin: 10px 0;
    padding: 20px;
    background: rgb(250, 250, 250);
    list-style-type: decimal;
}

.contents .howto p {
    text-align: left;
}

.contents .about .pic {
    position: relative;
    background: url(../img/about-bg.jpg) no-repeat center center;
    background-size: cover;
}

.contents .about .pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .7);
}

.contents .about .circle {
    position: absolute;
    width: 50%;
    height: 58%;
    border: 10px solid rgba(255, 182, 133, 0.4);
    border-radius: 1000px;
}

.contents .about img {
    width: 45%;
    height: auto;
    clip-path: circle();
}

.contents .about .text h1 {
    margin: 30px 0;
}

.contents .about .text .links {
    border-top: 1px solid #000;
    padding: 15px 50px;
    margin: 20px 0 0 0;
}

.contents .about .text i {
    color: rgb(83, 61, 0);
}

.contents .about .text i:hover {
    color: rgb(0, 0, 44);
}

.contents .about .text a {
    font-size: 2em;
    margin: 20px 0;
    padding: 10px;
}

footer {
    position: relative;
    background: linear-gradient(180deg, black 70%, rgba(0, 0, 0, 0.5));
    height: 300px;
    display: flex;
    flex-direction: column;
}

footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    height: 40%;
    width: 100%;
    background: url("../img/bg.jpg") no-repeat center center;
    background-size: cover;
}

footer .sec {
    justify-content: center;
}

footer h1 {
    position: relative;
    font-size: 1.9em;
    padding-left: 45px;
}

footer h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url("../img/logo-white.png") no-repeat center center;
    background-size: cover;
}

footer a {
    padding: 5px;
    margin-left: 5px;
    font-size: 2em;
}

footer a i,
footer .credit a {
    transition: .3s ease;
}

footer a i:hover,
footer .credit a:hover {
    color: grey;
}

footer .credit {
    font-size: .8em;
    height: 20%;
}

footer .credit a {
    padding: 3px;
    text-decoration: underline;
    font-size: 1em;
}