@charset "utf-8";

@import url('header.css');
@import url('main.css');
@import url('feature.css');
@import url('comments.css');
@import url('resources.css');
@import url('support.css');
@import url('cases.css');
@import url('faq.css');
@import url('photos.css');
@import url('footer.css');
@import url('whatsapp.css');

:root {
    --pri-color: #e96b00ff;
    --sec-color: #2873b5ff;
    --std-color: #1a1a1aff;
    
    --soft: #e4e4e4;
    --gray: #4d4d4dff;
    --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: 50px;
    font-family: 'Roboto', 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/bg-site-gray.jpg);
    background-repeat: repeat;
    background-size: 1000px 1000px;
    background-position: center top;
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
}

h2 {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
}

p {
    font-weight: 300;
}

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

li {
    list-style: none;
}

.wrapper {
    width: 100%;
    background-color: #fffffff3;
}

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

.content > div {
    padding-top: 7%;
}

/* DEFAULT BUTTON */
.btn {
    background-color: var(--pri-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: fit-content;
    padding: 10px 20px;
    transition: all ease 0.3s
}

.btn:hover {
    padding: 10px 25px;
}

.btn .icon {
    width: 15px;
    height: 15px;
    background-image: url(../media/template/icon-whatsapp-white.svg);
    background-size: 15px;
}

.btn .text {
    color: var(--white);
    font-weight: normal;
    font-size: 18px;
}

/* Responsive Video */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    width: 100%;
}

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

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