/* IMPORT */


/* GENERAL SETTINGS */
* {
    transition: all 0.2s;
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    background: url('../assets/watermark.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* TEXT STYLES */
a {
    color: #cedc00;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}


p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    margin:0;
    padding: 0;
    color: #666;
}

h2 {
    font-size: 3rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
    color: #193b44;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #666;
}


/* TEXT ALIGN */

.text-center {
    text-align: center;
}


/* SELECTION */
::selection {
    color:white;
    background: #193b44;  /* WebKit/Blink Browsers */
}

::-moz-selection {
    color: white;
    background: #193b44; /* Gecko Browsers */
}

/* CUSTOM SCROLL - ONLY CHOME */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #193b44;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(23,132,161,.7); 
}


/* FLOAT RESET */
.clear {
    clear: both;
}


/* OTHERS */
svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* INPUTS & BUTTONS & label */

input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #a9a9a9;
    padding: 10px 0px;
    margin-bottom: 30px;
}

input:focus {
    outline: none;
    padding-left: 10px;
    border-bottom: 1px solid #cedc00;
}

input:active {
    outline: none;
}

label {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    margin:0;
    padding: 0;
    color: #666;
    display: flex;
}

input[type=checkbox] {
    width: 30px;
}

.check-fix {
    display: inline-block;
    width: calc(100% - 30px);
}

button {
    border: none;
    width: 100%;
    background: #a9a9a9;
    color: white;
    padding: 20px;
}

button:hover {
    background: #cedc00;
}

/* MAIN CSS */
.main-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.logo {
    background: url('../assets/logo.png');
    background-size: cover;
    background-position: center;
    width: 151px;
    height: 93px;
}

.right-align {
    display: flex;
    justify-content: flex-end;
}

.right-align p {
    font-weight: 600;
}

.line-break {
    height: 1px;
    width: 100%;
    background: #d9dee0;
    margin-top: 10px;
}

.text-section h2 {
    margin-bottom: 30px;
}

p a {
    text-decoration: none; 
    font-weight: 600;
}

.send-button {
    margin-top: 20px;
}

.bolder {
    font-weight: 600;
}

.success-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    text-align: center;
    max-width: 400px;
}

.success-bg {
    background: white;
    height: 100vh;
    width: 100%;
}

.alert-success {
    background: #cedc00;
    border: none;
}

.alert-success a {
    color: white;
}

#google_translate_element {
    margin: 20px;
}

/* =====---- MEDIA QUERIES ----===== */

@media (max-width: 1199px) {
    
    
    
}


@media (max-width: 991px) {
    
}


@media (max-width: 767px) {
    .text-section h2 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .check-position {
        top: 0px; 
    }
    
    
}

