/*-------------
   VARIABLES
--------------*/
:root {
    --primary-white: #FFFFFF;
    --primary-purple: #c70b72;
    --secondary-purple: #E1115E;
    --primary-red: #f2144f;
    --primary-orange: #FE600D;
    --primary-yellow: #FFB102;
}

/*-------------
    FONTS
--------------*/

@font-face {
    font-family: CircularStdBlack;
    src: url("../fonts/CircularStd-Black.otf");
}

@font-face {
    font-family: CircularStdBlackItalic;
    src: url("../fonts/CircularStd-BlackItalic.otf");
}

@font-face {
    font-family: CircularStdBold;
    src: url("../fonts/CircularStd-Bold.otf");
}

@font-face {
    font-family: CircularStdBoldItalic;
    src: url("../fonts/CircularStd-BoldItalic.otf");
}

@font-face {
    font-family: CircularStdBook;
    src: url("../fonts/CircularStd-Book.otf");
}

@font-face {
    font-family: CircularStdBookItalic;
    src: url("../fonts/CircularStd-BookItalic.otf");
}

@font-face {
    font-family: CircularStdMedium;
    src: url("../fonts/CircularStd-Medium.otf");
}

@font-face {
    font-family: CircularStdMediumItalic;
    src: url("../fonts/CircularStd-MediumItalic.otf");
}

/*-------------
    GLOBALS
--------------*/

*, *:hover {
    transition: 0.2s all;
}

body, html {
    overflow-x: hidden;
    width: 100%;
    background: url("../images/main-background.png") no-repeat center;
    background-size: cover;
}

.container-fluid {
    padding: 0 100px;
}

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

span.dot,
a.purple {
    color: var(--primary-purple);
}

span.purple {
    color: var(--secondary-purple);
}

a.red {
    color: var(--primary-red);
}

a.purple-underline,
a.red-underline {
    position: relative;
    width: 100%;
}

a.red-underline::after,
a.purple-underline::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 40px;
    left: 0;
}

a.red-underline::after {
    background: var(--primary-red);
}

a.purple-underline::after {
    background: var(--primary-purple);
}

a.underlined-purple,
span.underlined-purple {
    color: var(--primary-purple);
    text-decoration: underline !important;
}

a.line-through-purple,
span.line-through-purple {
    color: var(--primary-purple);
    text-decoration: line-through !important;
}

.btn.btn-primary,
.btn.btn-transparent {
    border: 0;
    border-radius: 60px;
    padding: 18px 86px;
    font-family: CircularStdMedium, sans-serif;
    font-size: 24px;
}

.btn.btn-primary {
    background: transparent linear-gradient(268deg, #9C0195 0%, #FE1746 100%) 0% 0% no-repeat padding-box;
}

.btn.btn-transparent {
    background: var(--primary-white);
    color: var(--primary-orange);
}

body.sala-turismo .btn.btn-primary {
    background: transparent linear-gradient(250deg, #FFC400 0%, #FE1717 100%) 0% 0% no-repeat padding-box;
}

.orange-text {
    color: var(--primary-orange);
}

.yellow-text {
    color: var(--primary-yellow) !important;
}

.yellow-underline {
    color: var(--primary-yellow) !important;
    text-decoration: underline !important;
}

.orange-underline {
    color: var(--primary-orange) !important;
    text-decoration: underline !important;
}


/*-----------------
     HEADER
------------------*/

header {
    transition: 0.5s all;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: transparent linear-gradient(118deg, #9C0195 0%, #FE1746 100%) 0% 0% no-repeat padding-box;
    z-index: 9999;
}

header::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

header::-webkit-scrollbar-thumb ,
header::-webkit-scrollbar-track {
    background: transparent;
}

header .wrapper {
    position: relative;
    height: 100%;
}

header footer {
    width: 100%;
}

header .navbar::after {
    display: none;
}

header .navbar::before {
    left: 60%;
    top: -125%;
    opacity: 1;
}

header .close-menu {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 0;
    box-shadow: none !important;
    outline: none;
}

header .close-menu, .toggle-menu {
    z-index: 100;
}

.header .links {
    padding: 68px 0;
}

header .links ul li {
    list-style-type: none;
}

header .links ul li a {
    color: var(--primary-white);
    font-family: CircularStdBlack, sans-serif;
    font-size: 80px;
}

header p {
    color: #888888;
}

/*-----------------
     NAVBAR
------------------*/

.navbar {
    margin-top: 55px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 96px;
    position: relative;
}

.navbar::before {
    content: " ";
    position: absolute;
    left: 40%;
    top: -95%;
    width: 400px;
    height: 400px;
    opacity: .5;
    display: block;
    background: url("../images/free-form-01.svg") no-repeat center;
    background-size: contain;
}

/*
.navbar::after {
    content: " ";
    position: absolute;
    right: 15%;
    top: -90%;
    width: 200px;
    height: 200px;
    display: block;
    background: url("../images/circle-04.svg") no-repeat center;
    background-size: contain;
}
*/

body.sala-turismo .navbar::after {
    top: -120%;
    width: 300px;
    height: 300px;
    background: url("../images/circle-04-salaturismo.svg") no-repeat center;
    background-size: contain;
}

.navbar .navbar-brand {
    cursor: pointer;
}

.navbar .navbar-brand img {
    width: 200px;
    max-height: 60px;
}

.navbar .toggle-menu {
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
}

.navbar .toggle-menu img {
    height: 40px;
}

/*---------------
     FOOTER
---------------*/

footer .border-top {
    padding-bottom: 72px;
    padding-top: 40px;
    display: flex;
    align-items: center;
    border-color: #CCCCCC;
}

footer .logo {
    width: 170px;
    height: 50px;
    position: relative;
    left: -15px;
}

footer p {
    color: var(--primary-white);
    font-family: CircularStdBook, sans-serif;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    top: 15px;
}

.socials a {
    padding-right: 25px;
}

.socials a:last-of-type {
    padding-right: 0;
}

.socials a,
.socials i {
    font-size: 25px;
    color: var(--primary-white);
}

/*---------------
     SLICK
---------------*/

.slick-dots li.slick-active button {
    background: #EA1357 !important;
}

/*
body.sala-turismo .slick-dots li.slick-active button {
    background: var(--primary-yellow) !important;
}
*/

ul.slick-dots {
    bottom: 25px;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li,
.slick-dots li button {
    width: 87px;
}

.slick-dots li button {
    height: 2px;
    background: white;
    padding: 0;
}

button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
    z-index: 101;
    position: absolute;
    top: 100%;
}

button.slick-arrow::before {
    content: " ";
    background: url("../images/triangle.png") no-repeat center;
    background-size: contain;
    height: 37px;
    width: 43px;
    display: block;
}

button.slick-prev.slick-arrow:before {
    transform: rotateZ(-30deg);
}

button.slick-next.slick-arrow:before {
    transform: rotateZ(30deg);
}

button.slick-prev.slick-arrow {
    margin-left: 134px;
}

button.slick-next.slick-arrow {
    left: 0;
    margin-left: 160px;
}

/*---------------
  CONTACT FORM
---------------*/

.form-section input,select {
    height: 100px !important;
    border-color: black !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-left: 23px !important;
    font-size: 18px !important;
    font-family: CircularStdBlack,sans-serif;
}

.form-section input::placeholder, select {
    font-family: CircularStdBlack,sans-serif;
    color: #aaa !important;
    font-size: 18px !important;
}

.form-section select {
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
}

.form-section select {
    position: relative;
    background: url("../images/triangle-down.svg") no-repeat 95% center;
    background-size: 20px;
}

/*----------------------
    CUSTOM CHECKBOX
-----------------------*/

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 40px;
}

.checkbox-container span {
    font-size: 12px;
    position: relative;
    left: 20px;
    top: -5px;
    display: block;
    line-height: 1.5;
    font-family: CircularStdMedium, sans-serif;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #000000;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--secondary-purple);
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*-------------------
CUSTOM RADIOBUTTON
----------------------*/

table .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

table .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

table .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border: 2px solid var(--primary-white);
    border-radius: 50%;
    margin-left: 20px;
    margin-top: -20px;
}

table .container:hover input ~ .checkmark {
    border: 0;
    background-image: linear-gradient(#FFC400, #FE1717);
}

table .container input:checked ~ .checkmark {
    border: 0;
    background-image: linear-gradient(#FFC400, #FE1717);
}
