/*********************************************

FONTS
Imported Google Fonts, via Google Api.

*********************************************/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

body {
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

/*********************************************

COLORS

*********************************************/

:root {
    --primary: #030268;
    --secondary: #f9e524;
    --alt: #f2f2f2;
}

::selection { background: yellow; }
::-moz-selection { background: yellow; }

/*********************************************

LISTS

*********************************************/

.ul-line{
    list-style-type: none;
    display: flex;
}
.ul-space li{
    padding-right: 20px;
}

ul {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

/*********************************************

HEIGHT SPACES

*********************************************/

.space10h { height: 10px; }
.space20h { height: 20px; }
.space30h { height: 30px; }
.space40h { height: 40px; }
.space50h { height: 50px; }
.space60h { height: 60px; }
.space70h { height: 70px; }
.space80h { height: 80px; }
.space90h { height: 90px; }
.space100h { height: 100px; }
.space200h { height: 200px; }

/*********************************************

TITLES

*********************************************/
.uptitle {
    font-size: 35px;
    font-weight: 400;
}
.title {
    font-size: 50px;
    font-weight: bolder !important;
    line-height: 0.9;
}
.finetitle {
    font-size: 30px;
    font-weight: 300 !important;
    line-height: 0.9;
}

@media (orientation: portrait) {
    .uptitle {
        font-size: 25px;
    }
    .title {
        font-size: 40px;
    }
}

/*********************************************

INPUTS

*********************************************/

.input-group{
    position: relative;
    margin-bottom: 10px;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    pointer-events: none;
}

.input-icon i {
    font-size: 20px;
    color: var(--primary);
}

.input-design {
    width: 100%; 
    height: 40px;
    font-size: 12px; 
    text-transform: uppercase;
    border-radius: 30px; 
    border: 1px solid var(--primary);
    padding-left: 40px;
}

.input-design:focus {
    outline: none; 
    border-color: var(--secondary); 
}

/*********************************************

INPUT SELECT

*********************************************/
select{
    width: 100%; 
    height: 40px;
    font-size: 12px; 
    text-transform: uppercase;
    border-radius: 30px; 
    border: 1px solid var(--primary);
    padding-left: 40px;
    background-color: white;
}

select:focus {
   outline: none; 
   border-color: var(--secondary);
}

/*********************************************

INPUT RADIO

*********************************************/
.input-radio {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.input-radio .btn{
    background-color: transparent !important;
    color: black;
}

input[type="radio"].toggle {
    display: none;
}

input[type="radio"].toggle:checked + label {
    display: flex;
    background-color: var(--secondary) !important;
    box-shadow: inset 0 1px 6px rgba(41, 41, 41, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);
    color: var(--primary);
    border-color: transparent;
    font-weight: bold;
}

input[type="radio"].toggle + label {
    width: 100px;
    border-radius: 10px;
    padding: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

input[type="radio"].toggle:checked + label.btn:hover {
    background-color: inherit;
    background-position: 0 0;
    transition: none;
}

input[type="radio"].toggle-left + label {
    cursor: pointer;
}

input[type="radio"].toggle-right + label {
    cursor: pointer;
}

/*********************************************

BUTTONS

*********************************************/

.btn {
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    background-color: var(--primary);
    color: aliceblue;
    width: auto;
    height: 40px;
    border-radius: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.5s ease-in-out;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    text-decoration: none !important;
}

.btn:hover {
    color: var(--primary);
    background-color: var(--secondary);
}

.btn-alt{
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    background-color: var(--secondary);
    color: black;
    width: auto;
    height: 40px;
    border-radius: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.5s ease-in-out;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}

.btn-alt:hover {
    color: var(--primary);
    background-color: var(--alt);
}

.btn-alt i{
    font-size: 20px;
}

@media (orientation: portrait) {

}

/*********************************************

MODAL

*********************************************/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
    font-family: "Montserrat", sans-serif;
}
.modal-center {
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/*********************************************

FIX

*********************************************/

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    font-weight: normal;
}



p {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

small {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

strong {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

button {
    border: 0;
    text-decoration: none;
    cursor: pointer;
}