:root {
    --primary: #002F6D;
    --primary-rgb: 0, 47, 109;
    --secondary: #ff5d37;
    --secondary-rgb: 255, 93, 55;
    --terthiary: #00D2C4;
    --tertiary-rgb: 0, 210, 196;
    --navbar-bg: #eef0f4;
    --navbar-secondary: #eaf2ff;
    --light: #ffffff;
    --hyper: #eaf2ff;
    --text-color: #707070;
}

html {
    overflow: hidden !important;
}

body {
    overflow: auto;
    height: 100vh;
}

* {
    font-family: "Sintony";
}

h2 {
    font-size: 30px !important;
}

h3 {
    font-size: 22px !important;
}

p {
    font-size: 16px;
}

nav {
    background-color: var(--navbar-bg);
    height: 100px;
    border-bottom: 1px solid var(--primary);
    padding: 0 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

footer {
    background-color: var(--navbar-bg);
    padding: 20px 50px;
}

footer a {
    white-space: nowrap;
    color: var(--primary);
    font-size: 14px;
}

footer span {
    font-size: 14px !important;
}

footer span span {
    font-family: Arial;
}

footer .img-singularity {
    height: 40px;
}

footer .img-rs {
    height: 60px;
}

.border-primary-right {
    border-right: 2px solid var(--primary);
}

nav img {
    height: 60px;
}

nav .menu {
    background-color: var(--light);
    border-radius: 5px;
    height: 50px;
}

nav .menu p {
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 5px;
}

nav .menu .active p {
    background-color: var(--navbar-secondary);
}

.bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#contact-button {
    width: fit-content;
    background-color: #e4e6ef;
    color: var(--primary);
    border-radius: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    font-weight: bold;
    font-size: 14px;
}

#contact-form {
    padding: 45px;
    border-radius: 10px;
    background-color: #f6f7f9;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.15);
    margin-top: -50px;
}

.pointer:hover {
	cursor: pointer;   
}

.btn {
    width: fit-content;
    background-color: var(--light);
    border-radius: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    transition: .2s;
}

.btn.cta:hover {
    transform: scale(1.2);
    transform-origin: center;
}

.btn p {
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

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

.btn.primary p {
    color: var(--light);
}

.primary, .primary strong {
    color: var(--primary);
}

.normal {
 	color: var(--text-color);   
}

.secondary, .secondary strong {
    color: var(--secondary);
}

.tertiary, .tertiary strong {
    color: var(--terthiary);
}

.is-width-100 {
    width: 100%;
}

.section-100 {
    height: 100vh;
    width: 100%;
}

.section-1 {
    height: calc(100vh - 100px);
    background-color: #f1f3f6;
}

.section-1 > div {
    width: 60%;
}

.section-1 .rs-card {
    width: 85%;
}

.rs-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
}

.rs-button {
    width: fit-content;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--primary);
    background-color: var(--terthiary);
    border-radius: 5px;
    padding: 17px 25px;
    box-shadow: 10px 10px 0 0 rgba(var(--tertiary-rgb), .3);
    transition: .2s;
}

.rs-button:hover {
    box-shadow: 0 0 0 0 rgba(var(--tertiary-rgb), .3);
    transform: translate(5px, 5px);
}

.rs-button p {
    color: var(--light);
    font-size: 14px;
    font-weight: bold;
}

.section-2 {
    background-color: var(--light);
}

.section-2 > div {
    max-width: 1200px;
    margin-top: -40px;
}

.section-2 .rs-card-shadow-secondary {
    transform: rotate(2deg);
}

.section-2 .rs-card-shadow-tertiary {
    transform: rotate(-2deg);
}

.rs-card-shadow {
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(var(--primary-rgb), .4);
    background-color: #e5eaf0;
    box-shadow: 10px 10px 0 0 rgba(var(--primary-rgb), .2);
    height: 100%;
}

.rs-card-shadow h3 {
    font-weight: bold;
    font-size: 17px !important;
    color: var(--primary);
}

.rs-card-shadow h2 {
    font-weight: bold;
    font-size: 22px !important;
}

.rs-card-shadow h1 {
    font-size: 40px;
}

.rs-card-shadow .entry {
    border-radius: 90px;
    padding: 10px 20px;
}

.rs-card-shadow.rs-card-shadow-secondary .entry {
    background-color: #fff3ef;
}

.rs-card-shadow.rs-card-shadow-primary .entry {
    background-color: #f4f8ff;
}

.rs-card-shadow.rs-card-shadow-tertiary .entry {
    background-color: #edfafa;
}

.rs-card-shadow.rs-card-shadow-tertiary h2 {
    border-bottom: 2px solid var(--terthiary);
}

.rs-card-shadow.rs-card-shadow-primary h2 {
    border-bottom: 2px solid var(--primary);
}

.rs-card-shadow.rs-card-shadow-secondary h2 {
    border-bottom: 2px solid var(--secondary);
}

.rs-card-shadow p {
    font-size: 14px;
}

.section-2 .rs-card-shadow.rs-card-shadow-primary {
    transform: translateY(-15px);
}

.rs-card-shadow.rs-card-shadow-secondary {
    border: 2px solid rgba(var(--secondary-rgb), .4);
    background-color: #ffe7e0;
    box-shadow: 10px 10px 0 0 rgba(var(--secondary-rgb), .2);
}

.rs-card-shadow.rs-card-shadow-tertiary {
    border: 2px solid rgba(var(--tertiary-rgb), .4);
    background-color: #dcf5f5;
    box-shadow: 10px 10px 0 0 rgba(var(--tertiary-rgb), .2);
}

.rs-card-simple-shadow {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .2);
    height: 100%;
}

.rs-card-simple-shadow h3 {
    font-weight: bold;
    font-size: 17px !important;
    color: var(--primary);
}

.rs-card-simple-shadow img {
    width: 20px;
    height: 20px;
}

.rs-card-simple-shadow p {
    font-size: 14px;
}

.rs-card-simple-shadow span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 5px;
    background-color: var(--secondary);
    color: var(--light);
}

.rs-card-simple-shadow.upper {
    transform: translateY(-30px);
}

.section-3 > div {
    max-width: 1600px;
}

.section-3 h3 {
    max-width: 60%;
}

.section-4 > div {
    max-width: 1200px;
}

.rs-card-hyper {
    background-color: var(--hyper);
    color: var(--primary);
    border-radius: 10px;
    padding: 45px 55px;
}

.rs-card-hyper p {
    font-size: 18px;
}

.section-5 {
    background-color: #dcf4f4;
}

.section-5 > div {
    max-width: 1200px;
    padding: 80px 0;
}

.section-5 h3 {
    font-size: 24px !important;
}

.section-5 img {
    width: 300px;
}

.section-5 p {
    font-size: 18px;
}

.section-6 > div {
    max-width: 1200px;
}

.section-7 > div {
    max-width: 1200px;
}

.custom-checkbox {
    width: 315px;
    height: 40px;
}

.custom-checkbox input#status {
    display: none;
}

.custom-checkbox input#status + label {
    height: 100%;
    width: 100%;
}

.custom-checkbox input#status + label > .status-switch {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f4f8ff;
    color: var(--primary);
    transition: all 0.5s ease;
    padding: 3px;
    border-radius: 90px;
}

.custom-checkbox input#status + label > .status-switch:before, .custom-checkbox input#status + label > .status-switch:after {
    border-radius: 90px;
    height: calc(100% - 6px);
    width: calc(50% - 3px);
    display: flex;
    align-items: center;
    position: absolute;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-checkbox input#status + label > .status-switch:before {
    background-color: var(--primary);
    color: var(--light);
    left: 3px;
    z-index: 10;
    content: attr(data-unchecked);
}

.custom-checkbox input#status + label > .status-switch:after {
    right: 0;
    content: attr(data-checked);
    font-weight: bold;
}

.custom-checkbox input#status:checked + label > .status-switch:after {
    left: 0;
    content: attr(data-unchecked);
}

.custom-checkbox input#status:checked + label > .status-switch:before {
    left: 50%;
    content: attr(data-checked);
}

/* The container must be positioned relative: */
.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select .options {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: #f4f8ff;
}

.select-selected > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
}

.custom-select img {
    border-radius: 100%;
    width: 30px;
    height: 30px;
}

.custom-select p {
    color: var(--primary);
    font-size: 14px;
    font-weight: bold;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 20px;
    right: 17px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--primary) transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--primary) transparent;
    top: 12px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    border-radius: 50px;
    color: var(--primary);
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    border-radius: 50px;
    position: absolute;
    background-color: #f4f8ff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-items > div {
    padding: 0 !important;
    border: none !important;
}

.select-items > div > div {
    padding-right: 30px;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.price {
    font-weight: bold;
}

#cta-modal.hide {
    display: none;
}

#cta-modal {
    z-index: 10000000;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.2);
}

#cta-modal > div {
    position: relative;
}

#cta-modal > div > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cta-modal > div > div > div {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    padding: 40px;
    background-color: #f4f8ff;
    border-radius: 10px;
    align-items: center;
}

#cta-modal h1 {
    font-size: 33px;
}

#cta-modal img {
    width: 40%;
}

.about-us-section-1 {
    height: calc(100vh - 100px);
	background: linear-gradient(0deg, rgba(238,240,244,1) 0%, rgba(255,255,255,1) 100%);
}

.about-us-section-1 > div {
    width: 100%;
    max-width: 1200px;
}

.about-us-section-2 > div {
    max-width: 1200px;
    padding: 80px 0;
}

.about-us-section-2 h3 {
    font-size: 24px !important;
}

.about-us-section-2 img {
    width: 300px;
}

.about-us-section-2 p {
    font-size: 18px;
}

.faq-section-1 {
    padding: 60px 0;
	background: linear-gradient(0deg, rgba(238,240,244,1) 0%, rgba(255,255,255,1) 100%);
}

.faq-section-1 > div {
    width: 100%;
    max-width: 1200px;
}

.faq-section img {
    width: 45px;
}

.faq-body-hidden {
	display: none !important;  
}

.faq-section > div {
	width: 100%;
}

.faq-section .rs-card-hyper .columns {
	margin-bottom: 0 !important;
}

@media (max-width: 768px) {

    nav {
        padding: 0 5px;
    }

    footer {
        padding: 0 5px;
    }

    footer .column {
        justify-content: center;
    }

    .section-1 {
        height: auto;
        padding: 30px 0;
        background-color: #f1f3f6;
    }

    .section-1 > div {
        width: 100%;
        padding: 20px;
    }

    .section-2 {
        padding: 15px 15px 15px 5px;
    }

    .section-2 .rs-card-shadow-secondary {
        transform: rotate(0);
    }

    .section-2 .rs-card-shadow-tertiary {
        transform: rotate(0);
    }

    .section-2 > div {
        margin-top: 0;
    }

    .section-2 .rs-card-shadow.rs-card-shadow-primary {
        transform: translateY(0);
    }

    .section-3 h3 {
        max-width: 90%;
    }

    .rs-card-simple-shadow.upper {
        transform: translateY(0);
    }

    .border-primary-right {
        border-right: none;
    }
    
    .section-5 > div {
        padding: 20px 0;
    }
    
    .section-5 .column:first-child {
        padding-top: 0;
    }
    
    .rs-card-hyper {
        padding: 20px;
    }
    
    .rs-card-hyper p {
        padding: 20px;
    }
    
    .faq-section .rs-card-hyper p {
        padding: 20px 0 0 0;
    }
    
    .section-1 .rs-card {
        width: 100%
    }
    
    .about-us-section-1 {
        height: auto;
     }

}