@charset "utf-8";
@import url('body.css');

:root {
    --pri-color: #142d85ff;
    --sec-color: #fedf2dff;
    --std-color: #5a5a5aff;

    --pri-color-transparent: #142d85f7;
    --sec-color-transparent: #fedf2df0;
    --white-transparent: #fffffff5;

    --soft: #e4e4e4;
    --gray: #ccccccff;
    --white: #ffffffff;
    --black: #000000ff;
}

* {
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
    scroll-margin-top: 100px;
    font-family: 'Rubik', sans-serif;
    color: var(--std-color);
}

/* Scrollbar Remover Desktop */
body *::-webkit-scrollbar {display: none;}
body * {-ms-overflow-style: none; scrollbar-width: none;}

body {
    background-image: url('../../media/template/default_background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    color: var(--pri-color);
}

h2 {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    color: var(--pri-color);
    text-transform: uppercase;
}

h3 {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    color: var(--pri-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

img {
    display: block;
    width: 100%;
}

li {
    list-style: none;
    font-size: 1.1rem;
}

button {
    background-color: transparent;
}

iframe {
    display: block;
}

.wrapper {
    width: 100%;
}

.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 1%;
}

/* DEFAULT BUTTON */
.btn {
    background-color: var(--pri-color);
    border: 1px solid var(--pri-color);
    border-radius: 4px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: fit-content;
    padding: 7px 14px;
    transition: all ease 0.3s;
    cursor: pointer;
}

.btn:hover {
    color: var(--pri-color);
    background-color: transparent;
}

.btn.active {
    color: var(--pri-color);
    background-color: transparent;
}

/* Responsive Video */
.video-responsive {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.video-responsive video,
.video-responsive iframe {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position:absolute;
    border-radius: 7px;
}

/* RESPONSIVE */
@media screen and (max-width: 1200px) {
    .content {
        padding: 30px 4%;
    }
}