/*FONTS*/

@font-face {
    font-family: 'AbrilFatFace';
    src: url("/fonts/AbrilFatface-Regular.ttf") format('truetype');
}

.font-AbrilFatFace {
    font-family: 'AbrilFatFace';
}

@font-face {
    font-family: 'LatoRegular';
    src: url("/fonts/Lato-Regular.ttf") format('truetype');
}

.font-LatoRegular {
    font-family: 'LatoRegular';
}

@font-face {
    font-family: 'PlayfairDisplay-BlackItalic';
    src: url("/fonts/PlayfairDisplay-BlackItalic.ttf") format('truetype');
}

.font-PlayfairDisplay-BlackItalic {
    font-family: 'PlayfairDisplay-BlackItalic';
}

@font-face {
    font-family: 'PlayfairDisplay-Regular';
    src: url("/fonts/PlayfairDisplay-Regular.ttf") format('truetype');
}

.font-PlayfairDisplay-Regular {
    font-family: 'PlayfairDisplay-Regular';
}

@font-face {
    font-family: 'Lato-Thin';
    src: url("/fonts/Lato-Thin.ttf") format('truetype');
}

.font-Lato-Thin {
    font-family: 'Lato-Thin';
}

@font-face {
    font-family: 'PlayfairDisplay-SemiBold';
    src: url("/fonts/PlayfairDisplay-SemiBold.ttf") format('truetype');
}

.font-PlayfairDisplay-SemiBold {
    font-family: 'PlayfairDisplay-SemiBold';
}

@font-face {
    font-family: 'Merriweather-Regular';
    src: url("/fonts/Merriweather-Regular.ttf") format('truetype');
}

.font-Merriweather-Regular {
    font-family: 'Merriweather-Regular';
}

@font-face {
    font-family: 'Merriweather-Light';
    src: url("/fonts/Merriweather-Light.ttf") format('truetype');
}

.font-Merriweather-Light {
    font-family: 'Merriweather-Light';
}


/*FONT SIZE*/

.fs-175 {
    font-size: 175%;
}

.fs-125 {
    font-size: 125%;
}

.fs-250 {
    font-size: 250%;
}

.fs-350 {
    font-size: 350%;
}

.fs-40px {
    font-size: 40px;
}

.fs-20px {
    font-size: 20px;
}


/*BACKGROUND COLORS*/

.bg-white {
    background-color: white;
}

.bg-dark-purple {
    background-color: #14112e;
}

.bg-orange {
    background-color: #fe5405;
}

.bg-yellow {
    background-color: #fede10;
}

.bg-tomato {
    background-color: tomato;
}

.bg-dark {
    background-color: #00010f !important;
}

.bg-primary {
    background-color: #000AFF !important;
}

.bg-blue {
    background-color: #000AFF;
}

.bg-light-blue {
    background-image: linear-gradient(#ebecfd, #d6d9ff);
}


/*FONT COLORS*/

.color-white {
    color: white;
}

.color-dark-purple {
    color: #14112e;
}

.text-dark {
    color: #00010f !important;
}

.color-dark {
    color: #00010f;
}


/*BIG CLASSES*/

.double-column {
    column-count: 2;
}

.triple-column {
    column-count: 3;
}

.horizontal-center {
    margin: auto;
}

.linkOrange {
    color: white;
}

.linkOrange:hover {
    color: #fe5405;
    text-decoration-color: #000AFF;
}

.opacity0 {
    opacity: 0;
}

.zindex0 {
    z-index: 0;
}

.linkBlue {
    color: white;
}

.linkBlue:hover {
    color: #000AFF;
    text-decoration-color: #fe5405;
}

.bg-blue-grad {
    background: linear-gradient(#010470, #000AFF);
}

.bg-purple-grad {
    background: linear-gradient(#00010f, #120f2b);
}

.bg-orange-grad {
    background: linear-gradient(#7e2a03, #fe5405);
}

.bg-yellow-grad {
    background: linear-gradient(#ffbb00, #ffee00);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.quote {
    background-image: url("/images/quotegradient.png");
    background-repeat: no-repeat;
}


/*New Container Class*/

@media (min-width: 0px) and (max-width: 767.99px) {
    .newContainer {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {
    .newContainer {
        width: 720px;
        margin: auto;
    }
}

@media (min-width: 1024px) and (max-width: 1439.99px) {
    .newContainer {
        width: 960px;
        margin: auto;
    }
}

@media (min-width: 1440px) and (max-width: 2559.99px) {
    .newContainer {
        width: 1350px;
        margin: auto;
    }
}

@media (min-width: 2560px) {
    .newContainer {
        width: 2400px;
        margin: auto;
    }
}


/*JUMBOTRON NEW*/

#jumbotronNew {
    height: fit-content;
    padding: 25px 0 50px 0;
}

#jumbotronText {
    width: 80%;
    opacity: 0;
    animation-name: get-text;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes get-text {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#jumbotronLogo {
    height: 200px;
    width: 200px;
}

@media (min-width: 768px) {
    #jumbotronNew {
        display: flex;
        margin: auto;
    }
    #jumbotronText {
        width: 50%;
    }
    #jumbotronLogo {
        width: 200px;
    }
}

#main-logo {
    animation-name: main-logo-rotate-360;
    animation-duration: 2s;
    animation-delay: 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes main-logo-rotate-360 {
    from {
        transform: rotateY(0deg);
        opacity: 0;
    }
    to {
        transform: rotateY(360deg);
        opacity: 1;
    }
}

#jumbotron-cover {
    width: 100%;
    height: 200vh;
    left: 0;
    top: 0;
    z-index: 50;
    position: absolute;
    animation-name: jumbotron-cover-change-background;
    animation-duration: 1s;
    background-image: linear-gradient(#ebecfd, #d6d9ff);
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

@keyframes jumbotron-cover-change-background {
    0% {
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    74% {
        width: 100%;
        height: 0;
        z-index: 1;
    }
    75% {
        margin: auto;
        height: 0;
        z-index: -1;
    }
    100% {
        height: 100vh;
        z-index: -1;
    }
}


/*JUMBOTRON*/

#main-logo {
    animation-name: main-logo-rotate-360;
    animation-duration: 2s;
    animation-delay: 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes main-logo-rotate-360 {
    from {
        transform: rotateY(0deg);
        opacity: 0;
    }
    to {
        transform: rotateY(360deg);
        opacity: 1;
    }
}

#jumbotron {
    margin: 0;
}

#jumbotron-content {
    padding: 4rem 2rem;
}

#jumbotron-cover {
    width: 100%;
    height: 200vh;
    left: 0;
    top: 0;
    z-index: 50;
    position: absolute;
    animation-name: jumbotron-cover-change-background;
    animation-duration: 1s;
    background-image: linear-gradient(#ebecfd, #d6d9ff);
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

@keyframes jumbotron-cover-change-background {
    0% {
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    74% {
        width: 100%;
        height: 0;
        z-index: 1;
    }
    75% {
        margin: auto;
        height: 0;
        z-index: -1;
    }
    100% {
        height: 100vh;
        z-index: -1;
    }
}

#top-divition {
    opacity: 0;
    animation-name: get-text;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes get-text {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*NAVBAR*/

#navbar {
    overflow: hidden;
    width: auto;
    height: 60px;
    z-index: 0;
    background-color: white;
    animation-name: navbar-change-black;
    animation-duration: 0.01s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

.nav-content {
    overflow: hidden;
}

.nav-content a:not(:first-child) {
    display: block;
}

.nav-content a.icon {
    display: none;
    color: white;
}

@media (max-width: 992px) {
    .nav-content a:not(:first-child) {
        display: none;
    }
    .nav-content a.icon {
        display: block;
        font-size: 250%;
    }
}

@media (max-width: 359px) {
    #brand-name {
        font-size: 33px;
    }
}

@keyframes navbar-change-black {
    from {
        background-color: white;
        z-index: 0;
    }
    to {
        background-color: #00010f;
        z-index: 10;
    }
}

#navbar-cover {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 60px;
    background-color: transparent;
    animation-name: navbar-black-fill;
    animation-duration: 1s;
    animation-delay: .5s;
}

@keyframes navbar-black-fill {
    from {
        z-index: 0;
        width: 0%;
        background-color: #00010f;
    }
    to {
        z-index: 0;
        width: 100%;
        background-color: #00010f;
    }
}

#navbar-content {
    z-index: 1;
}

#navbar-text {
    opacity: 0;
    animation-name: navbar-text-opacity;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

@keyframes navbar-text-opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*NAVBAR OVERLAY*/

.overlay {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay a {
    text-decoration: none;
    color: white;
    display: block;
    font-weight: bolder;
    padding-top: 15px;
    font-size: xx-large;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.overlay a:hover,
.overlay a:focus {
    color: #fe5405;
}

.overlay .closebtn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 45px;
}

.overlay .closebtn span {
    color: black;
    font-size: 25px;
    font-weight: normal;
}

#brandName {
    color: white;
    font-size: 50px;
    letter-spacing: 3px;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

#brandNameSmall {
    color: white;
    font-size: 40px;
    letter-spacing: 3px;
    margin-top: 60px;
}


/*BLUE CONTENT*/

#data-bar {
    opacity: 0;
    animation-name: swing-bar;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes swing-bar {
    0% {
        opacity: 0;
    }
    25% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    50% {
        transform: rotateX(-80deg);
        opacity: 1;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.button-services {
    background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
    background-size: 400%;
    padding: 1% 3% 1% 3%;
    border-radius: 50px;
    box-shadow: -5px +5px 15px black;
    -webkit-animation: anime 16s linear infinite;
    animation: anime 16s linear infinite;
    font-weight: bolder;
}

.button-services:hover {
    box-shadow: inset 7px 7px 15px rgba(55, 84, 170, .15), inset -7px -7px 20px rgba(0, 0, 0, 0.411), 0px 0px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

@-webkit-keyframes anime {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes anime {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 359px) {
    .button-services {
        font-size: larger;
        padding: 2% 4% 2% 4%;
    }
}

@media (min-width: 0px) and (max-width: 768px) {
    #blue-text {
        padding: 0 20px 0 20px;
    }
}

#button-blue {
    width: fit-content;
    min-width: 50%;
    margin: auto;
    font-size: 110%;
    background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
    background-size: 400%;
    padding: 5px 15px 5px 15px;
    border-radius: 50px;
    box-shadow: 4px 4px 0 0px #ffc107;
    text-shadow: 1px 1px 2px black;
    -webkit-animation: anime 16s linear infinite;
    animation: anime 16s linear infinite;
    font-weight: bolder;
}

#button-blue:hover {
    box-shadow: 0 0 #ffc107;
    text-decoration: none;
    color: white;
}

#button-blue:hover a {
    text-decoration: none;
    color: white;
}

.blue-text {
    padding: 10px;
    font-size: 175%;
    width: 100%;
    text-shadow: 2px 2px 4px black;
}

@media (min-width: 375px) and (max-width: 425.99px) {
    #button-blue {
        font-size: 120%;
    }
}

@media (min-width: 426px) and (max-width: 767.99px) {
    #button-blue {
        font-size: 150%;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {
    #button-blue {
        font-size: 190%;
    }
}

@media (min-width: 1024px) and (max-width: 1439.99px) {
    #button-blue {
        font-size: 190%;
    }
}

@media (min-width: 1440px) and (max-width: 2559.99px) {
    #button-blue {
        font-size: 190%;
    }
}

@media (min-width: 2560px) {
    #button-blue {
        font-size: 200%;
    }
}


/*YELLOW*/

#yellow-text {
    font-size: 150%;
    font-weight: 600;
    padding-top: 30px;
}

@media (min-width: 1px) and (max-width: 374.99px) {
    #yellow-title {
        font-size: 180%;
        text-shadow: .5px .5px 1px black;
    }
    .yellow-icon {
        width: 43px;
        margin-right: 10px;
    }
    #yellow-text {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 375px) and (max-width: 424.99px) {
    #yellow-title {
        font-size: 220%;
        text-shadow: 1px 1px 2px black;
    }
    .yellow-icon {
        width: 50px;
        margin-right: 15px;
    }
    #yellow-text {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 425px) and (max-width: 519.99px) {
    #yellow-title {
        font-size: 255%;
        text-shadow: 1px 1px 2px black;
    }
    .yellow-icon {
        width: 53px;
        margin-right: 20px;
    }
    #yellow-text {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 520px) and (max-width: 767.98px) {
    #yellow-title {
        font-size: 300%;
        text-shadow: 2px 2px 4px black;
    }
    .yellow-icon {
        width: 65px;
        margin-right: 25px;
    }
    #yellow-text {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #yellow-title {
        font-size: 400%;
        text-shadow: 2px 2px 4px black;
    }
    .yellow-icon {
        width: 75px;
        margin-right: 35px;
    }
    #yellow-text {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #yellow-title {
        font-size: 550%;
        text-shadow: 2px 2px 4px black;
    }
    .yellow-icon {
        width: 85px;
        margin-right: 65px;
    }
    #yellow-text {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {
    #yellow-title {
        font-size: 600%;
        text-shadow: 2px 2px 4px black;
    }
    .yellow-icon {
        width: auto;
        margin-right: 65px;
    }
    #yellow-text {
        padding-left: 80px;
        padding-right: 80px;
    }
}

#yellow-section {
    background-image: linear-gradient(#ebecfd, #d6d9ff);
}


/*Testimonials*/

@media (min-width: 1px) and (max-width: 374.99px) {
    #testimonials-title {
        font-size: 220%;
    }
    .text-testimonials {
        letter-spacing: -1px;
        font-weight: 500;
    }
    .testimonials-text {
        font-size: 120%;
    }
}

@media (min-width: 375px) and (max-width: 424.99px) {
    #testimonials-title {
        font-size: 260%;
    }
    .text-testimonials {
        letter-spacing: -1px;
        font-weight: 600;
    }
    .testimonials-text {
        font-size: 130%;
    }
}

@media (min-width: 425px) and (max-width: 519.99px) {
    #testimonials-title {
        font-size: 290%;
    }
    .text-testimonials {
        letter-spacing: -1px;
        font-weight: 600;
    }
    .testimonials-text {
        font-size: 130%;
    }
}

@media (min-width: 520px) and (max-width: 767.98px) {
    #testimonials-title {
        font-size: 330%;
    }
    .text-testimonials {
        letter-spacing: -1px;
        font-weight: 600;
    }
    .testimonials-text {
        font-size: 140%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #testimonials-title {
        font-size: 360%;
    }
    .text-testimonials {
        letter-spacing: -1px;
        font-weight: 600;
    }
    .testimonials-text {
        font-size: 150%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #testimonials-title {
        font-size: 420%;
    }
    .text-testimonials {
        letter-spacing: -1px;
        font-weight: 600;
    }
    .testimonials-text {
        font-size: 150%;
    }
}

@media (min-width: 1200px) {
    #testimonials-title {
        font-size: 420%;
    }
    .text-testimonials {
        letter-spacing: -1px;
        font-weight: 600;
    }
    .testimonials-text {
        font-size: 150%;
    }
}


/*Display in Screen
 *Only display if window
 *bigger than 991px*/

.screen-disp {
    display: none;
}

@media(min-width: 992px) {
    .screen-disp {
        display: block;
    }
}


/*Display in Mobile
 *Only display if window
 *below 992px*/

.mobile-disp {
    display: none;
}

@media(max-width: 991.99px) {
    .mobile-disp {
        display: none;
    }
}


/*Contact button*/

#contactButtonfr {
    background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
    background-size: 400%;
    border-radius: 50px;
    box-shadow: -5px +5px 15px black;
    -webkit-animation: anime 16s linear infinite;
    animation: anime 16s linear infinite;
    font-weight: bolder;
    position: fixed;
    right: -120px;
    bottom: 20%;
    z-index: 50;
    height: 40px;
    width: 320px;
    background-color: #FE5405;
    border-radius: 50px;
    transform: rotate(-90deg);
}

#contactButtonfr a span {
    text-shadow: #000000 1px 1px 2px;
    color: white;
}

#contactButtonfr:hover {
    box-shadow: inset 7px 7px 15px rgba(55, 84, 170, .15), inset -7px -7px 20px rgba(0, 0, 0, 0.411), 0px 0px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

@-webkit-keyframes anime {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes anime {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 992px) {
    #contactButton {
        display: none;
    }
    #contactButtonfr {
        display: none;
    }
}

@media (min-width: 993px) {
    #contactButton {
        right: -90px;
    }
}

@media (min-width: 1270px) {
    #contactButton {
        left: 87.5vw;
    }
}

#contactButton {
    background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
    background-size: 400%;
    border-radius: 50px;
    box-shadow: -5px +5px 15px black;
    -webkit-animation: anime 16s linear infinite;
    animation: anime 16s linear infinite;
    font-weight: bolder;
    position: fixed;
    right: 1%;
    bottom: 15%;
    z-index: 50;
    height: 40px;
    width: 250px;
    background-color: #FE5405;
    border-radius: 50px;
    transform: rotate(-90deg);
}

#contactButton a span {
    text-shadow: #000000 1px 1px 2px;
    color: white;
}

#contactButton:hover {
    box-shadow: inset 7px 7px 15px rgba(55, 84, 170, .15), inset -7px -7px 20px rgba(0, 0, 0, 0.411), 0px 0px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

@-webkit-keyframes anime {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes anime {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 992px) {
    #contactButton {
        display: none;
    }
}

@media (min-width: 993px) {
    #contactButton {
        right: -90px;
    }
}

@media (min-width: 1270px) {
    #contactButton {
        left: 87.5vw;
    }
}


/*CONSULATION BUTTON*/

#consutaltionButton {
    font-size: 200%;
    box-shadow: 1vh 1vh #ffc107;
    text-shadow: 1px 1px 2px black;
    min-width: 50%;
}

#consutaltionButton:hover {
    box-shadow: 0vh 0vh #ffc107;
}


/*Footer*/

@media (max-width: 768px) {
    #footer img {
        display: none;
    }
}