﻿@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

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

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

@font-face {
    font-family: Prompt-Bold;
    src: url('../font/Prompt-Bold.ttf') format('truetype');
}

@font-face {
    font-family: Greyst;
    src: url('../font/FontsFree-Net-Greyst-Regular.ttf') format('truetype');
}

:root,
[data-jb-theme="dark"] {
    /* --font-family: 'IBM Plex Sans Thai', sans-serif;
    --font-mono: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono',
      'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace; */

    /* Default */
    --jb-blue-200: #9BC5FF;
    --jb-blue-200: 155, 197, 255;
    --jb-orange-50: #FFF8F1;
    --jb-orange-300: #FBAD60;
    --jb-orange-300-rgb: 251, 173, 96;
    --jb-orange-500: #FF7F00;
    --jb-orange-500-rgb: 255, 127, 0;
    --jb-deep-brown-900: #251D15;
    --jb-deep-brown-900-rgb: 37, 29, 21;

    --white: #FFFFFF;
    --white-rgb: 255, 255, 255;
    --black: #000000;
    --black-rgb: 0, 0, 0;

    /* News Joyboy theme */
    --jb-base-bg: var(--black);
    --jb-primary: var(--white);
    --jb-primary-bg: rgba(var(--jb-orange-300-rgb), 0.1);
    --jb-primary-emphasis: var(--white);
    --jb-primary-highlight: var(--jb-deep-brown-900);
    --jb-secondary: rgba(var(--white-rgb), 0.70);
    --jb-secondary-bg: rgba(var(--jb-orange-300-rgb), 0.20);
    --jb-tertiary: rgba(var(--white-rgb), 0.50);
    --jb-accent: var(--jb-orange-500);
    --jb-accent-rgb: var(--jb-orange-500-rgb);
    --jb-gradient-start: var(--jb-orange-500);
    --jb-gradient-end: var(--jb-orange-300);

    /* Old */
    --primary: #262626;
    --secondary: #999999;
    --auxiliar: #FFFFFF;
    --alternate: #FFFFFF;
    --success: #0F9A73;
    --warning: #FFA439;
    --error: #F44336;

    --light-gray: #EBEBEB;
    --gray: #B3B3B3;
    --dark-gray: #515151;

    --bg-primary: #000;
    --bg-secondary: #38393A;
    --text-primary: #FFF;
    --text-secondary: #858787;
    --text-placeholder: #5D5F5F;
    --border-primary: #858787;
    --line-primary: var(--text-primary);
}

[data-jb-theme="light"] {
    /* News Joyboy theme */
    --jb-base-bg: var(--white);
    --jb-primary: var(--black);
    --jb-primary-bg: var(--jb-orange-50);
    --jb-primary-highlight: var(--jb-orange-50);
    --jb-primary-emphasis: var(--jb-deep-brown-900);
    --jb-secondary: rgba(0, 0, 0, 0.50);
    --jb-secondary-bg: var(--white);
    --jb-tertiary: rgba(112, 58, 4, 0.20);


    /* Old */
    --bg-primary: #FFF;
    --bg-secondary: #FFF;
    --text-primary: #38393A;
    --text-secondary: #5D5F5F;
    --text-placeholder: #D1D3D4;
}

/* News Joyboy theme */
/* Mobile first */
/* Colors */
.primary {
    color: var(--jb-primary);
}

.primary-emphasis {
    color: var(--jb-primary-emphasis);
}

.secondary {
    color: var(--jb-secondary);
}

.hint {
    color: var(--jb-tertiary);
}

.accent {
    color: var(--jb-accent);
}

.accent-gradient {
    background: -webkit-linear-gradient(var(--jb-gradient-start), var(--jb-gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography */
.font-greyst {
    font-family: Greyst;
}

.semi-bold {
    font-family: Prompt-SemiBold;
}

.bold {
    font-family: Prompt-Bold;
}

.container-primary {
    color: var(--jb-primary);
    background-color: var(--jb-primary-bg);
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (desktops, 992px and up)*/
@media only screen and (min-width: 992px) {
    .heading {
        font-size: 36px;
    }

    .subheading {
        font-size: 24px;
    }

    .title {
        font-size: 22px;
    }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media only screen and (min-width: 1200px) {
    .h1 {
        font-size: calc(2.5rem + 4px);
    }

    .h2 {
        font-size: calc(2rem + 4px);
    }

    .h3 {
        font-size: calc(1.75rem + 4px);
    }

    .h4 {
        font-size: calc(1.5rem + 4px);
    }

    .h5 {
        font-size: calc(1.25rem + 4px);
    }

    .h6 {
        font-size: calc(1rem + 4px);
    }
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media only screen and (min-width: 1400px) {}

html {
    position: relative;
    min-height: 100%;
}

body {
    min-height: 100vh;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    color: var(--jb-primary);
    background: linear-gradient(var(--jb-primary-bg), var(--jb-primary-bg)), var(--jb-base-bg);
}

/* body {
    background-image: url(../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: inherit;
} */

.main-container {
    background-image: url(../images/background.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: inherit;
    padding-bottom: 460px;
}

/* Components */
/* Icon */
.icon {
    width: 40px;
    height: 40px;
}

.icon-md {
    width: 55px;
    height: 55px;
}

/* Button */
.clickable {
    cursor: pointer;
}

.btn {
    /* color: var(--jb-primary); */
    border-radius: 10px;
    padding: 8px 32px;
}

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

.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(var(--jb-accent-rgb), 0.2);
}

.btn:disabled,
.btn.disabled {
    pointer-events: none;
}

.btn-primary {
    font-weight: 700;
    color: var(--white);
    padding: 8px 32px;
    background: linear-gradient(90deg, var(--jb-gradient-start) 0%, var(--jb-gradient-end) 100%);
    border: unset;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: unset;
}

.btn-primary:hover {
    color: rgba(var(--white-rgb), 0.70);
    background: linear-gradient(90deg, var(--jb-gradient-start) 0%, var(--jb-gradient-end) 100%);
    box-shadow: unset;
}

.btn-primary:focus,
.btn-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(var(--jb-accent-rgb), 0.2);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: var(--white);
    background: linear-gradient(90deg, var(--jb-gradient-start) 0%, var(--jb-gradient-end) 100%);
    border: unset;
    pointer-events: none;
    opacity: 0.5;
}


.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: unset;
}

.btn-secondary {
    font-weight: 700;
    color: var(--white);
    background: rgba(var(--jb-accent-rgb), 0.20);
    padding: 8px 32px;
    border-radius: 10px;
    border: unset;
    box-shadow: 0px 0px 0px 1px rgba(var(--jb-accent-rgb), 0.20) inset;
    outline: 0;
}

.btn-secondary:hover {
    color: rgba(var(--white-rgb), 0.70);
    background: rgba(var(--jb-accent-rgb), 0.20);
    border: unset;
    box-shadow: 0px 0px 0px 1px rgba(var(--jb-accent-rgb), 0.30) inset;
    outline: 0;
}

.btn-secondary:focus,
.btn-secondary.focus {
    border: unset;
    box-shadow: 0px 0px 0px 1px rgba(var(--jb-accent-rgb), 0.20) inset;
    outline: 0;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: var(--white);
    background: rgba(var(--jb-accent-rgb), 0.20);
    border: unset;
    box-shadow: 0px 0px 0px 1px rgba(var(--jb-accent-rgb), 0.20) inset;
    pointer-events: none;
    opacity: 0.5;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle {
    color: var(--white);
    background: rgba(var(--jb-accent-rgb), 0.20);
    border: unset;
    box-shadow: 0px 0px 0px 1px rgba(var(--jb-accent-rgb), 0.20) inset;
    outline: 0;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    border: unset;
    box-shadow: 0px 0px 0px 1px rgba(var(--jb-accent-rgb), 0.20) inset;
    outline: 0;
}

.btn-white {
    color: var(--jb-orange-300);
    background: var(--white);
    border-radius: 10px;
    padding: 8px 32px;
    font-weight: 700;
}

.btn-white:hover {
    color: rgba(var(--jb-orange-300-rgb), 0.70);
}

.btn-outline {
    color: var(--white);
    background: var(rgba(var(--jb-deep-brown-900-rgb), 0.10));
    border-radius: 10px;
    padding: 8px 32px;
    font-weight: 700;
    border: 1px solid var(--white);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    color: rgba(var(--white-rgb), 0.70);
}

.btn-icon {
    border-radius: unset;
    min-width: 24px;
    min-height: 24px;
    padding: 4px;
}

/* Dropdown */
.dropdown-item {
    color: var(--jb-primary);
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--jb-primary);
    text-decoration: none;
    background-color: var(--jb-primary-highlight);
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--jb-primary);
    text-decoration: none;
    background-color: transparent;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

/* Link */
a,
a:hover {
    color: var(--jb-accent);
}

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

.link-text:hover {
    color: var(--jb-secondary);
}

/* Modal */
.jb-modal {
    background: var(--jb-orange-50);
    color: var(--black);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 20px;
}

.jb-modal>.modal-body {
    max-height: 65vh;
    overflow-y: auto;
}

.jb-modal-title {
    font-family: Greyst;
    font-size: 32px;
    text-align: center;
}

.jb-modal-close-btn {
    color: rgba(var(--jb-deep-brown-900-rgb), 0.5);
}

/* Old */
.text-primary {
    color: var(--text-primary) !important;
}

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

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

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

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

.text-ligth-gray {
    color: var(--light-gray);
}

.landing {
    background-image: url(../images/landing-desktop.jpg);
    /*background-image: url(../images/background.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.landing .register-section {
    /*bottom: 30%;
        right: 20%;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        position: fixed;*/
    bottom: 10%;
    /* right: 20%; */
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: fixed;
}

.nav-left {
    width: 70%;
}

.banner-joyboy {
    background-image: url(../images/landing-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    min-height: 100vh;
}

.banner-content {
    width: 100%;
}

.banner-shadow {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.55) 25.52%, rgba(0, 0, 0, 0.00) 100%);
    backdrop-filter: blur(1px);
}

.banner-logo {
    margin-top: 10%;
    width: 50%;
}

.banner-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--gray);
}

.banner-sub-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    color: var(--gray);
}

.logo {
    max-height: 60px;
}

.main-header {
    background: #000;
    /*background-image: url(../images/bg-header.png);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-header {
    position: absolute;
    top: 0;
    z-index: 1;
}

.main-header-logo {
    width: 152px;
    height: 34px;
}

.col-header ul {
    margin: unset;
}

#auditeeform {
    color: var(--text-primary);
}

#auditeeform .card {
    background-color: var(--bg-secondary);
}

.main-content {
    padding-top: 150px;
    padding-bottom: 150px;
}

.cgold {
    color: #B5AB96 !important;
}

.cgold-light {
    color: #EFE8D8 !important;
}

.cpurple {
    color: #B5AB96 !important;
}

.cpurple-light {
    color: #B5AB96 !important;
}

.morgan {
    font-family: Prompt !important;
}

.eq {
    font-family: Prompt !important;
}

.fs2re {
    font-size: 2.3rem;
}

.fs3re {
    font-size: 3rem;
}

.fs16p {
    font-size: 16px;
}

.fsup {
    letter-spacing: 5px;
    text-transform: uppercase;
}

.fs85 {
    font-size: 0.85rem;
}

.fs-ss {
    font-size: 70%;
}

.tidt5 {
    text-indent: 5%;
}

hr {
    color: #fbe1e4;
}

.error {
    color: red !important;
    font-size: 1.25rem;
}

.text-danger {
    color: red !important;
    font-size: 1.25rem;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-register {
    border-radius: 10px;
    background: var(--white);
    border: unset;
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    padding-inline: 20px;
}

.btn-register:hover {
    color: var(--black);
}

.btn-register-dark {
    border-radius: 10px;
    background: var(--black);
    border: unset;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    padding-inline: 20px;
}

.btn-register-dark:hover {
    color: var(--white);
}


.btn-gold-rouded {
    border-radius: 50px;
    background: #B5AB96;
    border: unset;
    color: #FFF;
    font-weight: 500;
}

.btn-gold-rouded:hover {
    color: #FFF;
}

.btn-gold {
    border-radius: 10px;
    border: unset;
    color: #FFF;
    font-weight: 700;
    border: 1px solid #B5AB96;
    background: rgba(181, 171, 150, 0.50);
    padding-inline: 20px;
}

.btn-gold:hover {
    color: #FFF;
}

.btn-outlined-rouded {
    border-radius: 50px;
    border: 1px solid #FFF;
    background: rgba(181, 171, 150, 0.20);
    color: #fff !important;
    font-weight: 700;
}

.btn-email {
    cursor: pointer;
    background-color: #B5AB96;
    color: #fff;
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
}

.btn-email:hover {
    color: #fff;
}

.btn-suggest {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    padding-inline: 20px;
}

.btn-suggest:hover {
    color: var(--white);
}

.txt-suggest {
    text-decoration: underline;
    font-weight: bold;
}

.btn-brother {
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-brother:hover {
    color: #fff;
}

.btn-brother-outline {
    background-color: #ffffff;
    color: #262626;
    /* border: 1px solid #B5AB96; */
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-brother-outline:hover {
    color: #262626;
}

.btn-primary-round {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 60px;
    border: 2px solid #B5AB96;
    background: #FFF;
    color: #B5AB96;
    font-weight: 700;
}

.btn-primary-round:hover,
.btn-primary-round:focus {
    background: #FFF;
    color: #B5AB96;
}

.btn-secondary-round {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #FFF;
    border-radius: 60px;
    background: #B5AB96;
    font-weight: 700;
}

.btn-secondary-round:hover,
.btn-secondary-round:focus {
    color: #FFF;
    background: #B5AB96;
}

.card-brother {
    min-height: 450px;
    font-family: Prompt !important;
    border-radius: 20px;
    border: 2px solid var(--joy-boy-egg-shell-es-200, #CAC6BD);
    background: #FFF;
    color: #38393A;
    box-shadow: 20px 20px 0px 0px #2B2B2B;
}

.card-brother-sec {
    /* border-radius: 5px;
    border: 2px solid #B5AB96; */
    /*box-shadow: 0px 13px 0px #b39962, 0 12px 0 #000 inset;*/
    background-color: #38393A;
    font-family: Prompt !important;
}

.card-success {
    padding: 40px 0px;
    border-radius: 20px;
    border: 3px solid #CAC6BD;
    background: #FFF;
    font-family: Prompt !important;
}

.file-upload {
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #FFF;
}

.form-control {
    background-color: transparent !important;
    color: var(--text-primary);
}

input.form-control {
    font-family: Prompt;
    border-radius: 20px;
    border: 1px solid var(--border-primary);
}

.form-control.br-0 {
    border-right: 0px !important;
}

.form-control[readonly] {
    background-color: #f7f7f7;
}

.input-group-text {
    background-color: transparent;
    border-radius: 0px 25px 25px 0px;
    border: 1px solid var(--border-primary);
    border-left: 0px;
    color: #D1D3D4;
}

textarea.form-control {
    border-radius: 10px;
    font-family: Prompt;
    background: #f7f7f7;
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
}

select.form-control {
    font-family: Prompt;
    background: #f7f7f7;
    border-radius: 25px;
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
}

.md-brother hr {
    border-top: 2px solid #B5AB96
}

.md-brother {
    border-radius: 5px;
    border: 2px solid #B5AB96;
    /*box-shadow: 0px 13px 0px #b39962, 0 12px 0 #000 inset;*/
}

.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

label#Weight-error {
    left: 0px;
    position: absolute;
    bottom: -35px;
}

label#Height-error {
    left: 0px;
    position: absolute;
    bottom: -33px;
}

.section-content {
    min-height: auto;
}

.section-timeline {
    padding-top: 20px;
    min-height: 100vh;
}

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

.thumbnail-timeline {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 200px 200px 20px 20px;
    background: var(--white);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.thumbnail-timeline img {
    width: 89px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-timeline-description {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    color: #262626;
    font-size: 24px;
    font-weight: 500;
    padding-inline: 20px;
}

.btn-timeline-description:hover {
    color: #262626;
}

.how-to-title {
    color: var(--black);
    font-size: 22px;
    font-weight: 700;
}

.how-to-sub-title {
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}

.how-to-description {
    color: var(--secondary);
    font-size: 16px;
}

.thumbnail-container {
    max-width: 300px;
    width: 100%;
    padding-bottom: 133.33%;
    position: relative;
    overflow: hidden;

}

.thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 160px 160px 10px 10px;
}

.how-to-description-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    width: 90%;
    text-align: center;
}

.how-to-description-sub-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.professor-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.professor-sub-title {
    font-size: 14px;
    font-weight: 400;
}

.thumbnail-4-3 {
    width: 100%;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}

.thumbnail-4-3 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail-3-4 {
    max-width: 400px;
    width: 100%;
    padding-bottom: 133.33%;
    position: relative;
    overflow: hidden;
}

.thumbnail-3-4 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.section-suggestion {
    min-height: 100vh;
}

.section-suggestion-top {
    width: 100%;
    background: url(../images/home/bg-suggestion-mobile-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.section-suggestion-top div {
    position: absolute;
    text-align: left;
    left: 5%;
    top: 15%;
    margin-left: 2rem;
    width: 75%;
}

.section-suggestion-bottom {
    width: 100%;
    background: url(../images/home/bg-suggestion-mobile-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.section-suggestion-bottom div {
    position: absolute;
    text-align: right;
    right: 5%;
    bottom: 15%;
    margin-right: 2rem;
    width: 75%;
}

.suggestion-title {
    font-size: 18px;
    color: var(--white);
}

.suggestion-sub-title {
    font-size: 14px;
    color: var(--white);
}

.highlight-title {
    font-size: 48px;
    font-weight: 700;
}

.open-now-title {
    font-size: 18px;
    font-weight: 700;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap {
    row-gap: 1.25rem;
}

.col-gap {
    column-gap: 1.25rem;
}

.bg-gold-gradient {
    background: linear-gradient(180deg, #EFE8D8 47.15%, #FFF 100%);
}

.container-ratio-3-2 {
    width: 100%;
    padding-bottom: 66.67%;
    position: relative;
    overflow: hidden;
}

.container-ratio-3-2 div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container-ratio-3-2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-ios-app-img {
    width: 90px;
}

.btn-android-app-img {
    width: 100px;
}

.object-contain {
    object-fit: contain;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

footer {
    position: absolute;
    bottom: 0;
    z-index: 1;
    min-height: 60px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    backdrop-filter: blur(10px);
}

footer ul.social li a i {
    color: var(--white);
    margin-right: 5px;
    font-size: 30px;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

footer .social a i {
    color: var(--white);
    margin-right: 5px;
    font-size: 30px;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

.footer-contact {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Reponsive */
/* Extra smallll */
@media only screen and (min-width: 390px) {
    .banner-joyboy {
        /* background-image: url(../images/landing-mobiles-xs.png); */
    }

    .btn-email {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .banner-logo {
        width: 375px;
    }

    .btn-ios-app-img {
        width: 90px;
    }

    .btn-android-app-img {
        width: 100px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-sub-title {
        font-size: 20px;
    }

    .how-to-title {
        font-size: 22px;
    }

    .how-to-sub-title {
        font-size: 26px;
    }

    .how-to-description {
        font-size: 16px;
    }

    .suggestion-title {
        font-size: 18px;
    }

    .suggestion-sub-title {
        font-size: 12px;
    }

    .apply-now-title {
        font-size: 36px;
    }

    .how-to-description-title {
        font-size: 24px;
    }

    .how-to-description-sub-title {
        font-size: 16px;
    }

    .professor-title {
        font-size: 16px;
    }

    .professor-sub-title {
        font-size: 14px;
    }

    .open-now-title {
        font-size: 22px;
    }

    .section-suggestion-top {
        background: url(../images/home/bg-suggestion-mobile-1.png);
    }

    .section-suggestion-top div {
        left: 5%;
        top: 15%;
        width: 70%;
    }

    .section-suggestion-bottom {
        background: url(../images/home/bg-suggestion-mobile-2.png);
    }

    .section-suggestion-bottom div {
        right: 5%;
        bottom: 15%;
        width: 70%;
    }
}

/* Small */
@media only screen and (min-width: 576px) {
    .main-container {
        padding-bottom: 364px;
    }

    .banner-joyboy {
        background-image: url(../images/landing-tablet.png);
    }

    .banner-content {
        width: 70%;
    }

    .btn-email {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .banner-logo {
        width: 75%;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-sub-title {
        font-size: 20px;
    }

    .btn-ios-app-img {
        width: 70px;
    }

    .btn-android-app-img {
        width: 60px;
    }

    .how-to-title {
        font-size: 22px;
    }

    .how-to-sub-title {
        font-size: 26px;
    }

    .how-to-description {
        font-size: 16px;
    }

    .suggestion-title {
        font-size: 28px;
    }

    .suggestion-sub-title {
        font-size: 16px;
    }

    .apply-now-title {
        font-size: 32px;
    }

    .how-to-description-title {
        font-size: 24px;
    }

    .how-to-description-sub-title {
        font-size: 16px;
    }

    .professor-title {
        font-size: 16px;
    }

    .professor-sub-title {
        font-size: 14px;
    }

    .open-now-title {
        font-size: 24px;
    }

    .section-suggestion-top {
        background: url(../images/home/bg-suggestion-mobile-1.png);
    }

    .section-suggestion-bottom {
        background: url(../images/home/bg-suggestion-mobile-2.png);
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .main-container {
        padding-bottom: 340px;
    }

    .banner-joyboy {
        background-image: url(../images/landing-tablet.png);
    }

    .banner-content {
        width: 60%;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-sub-title {
        font-size: 24px;
    }

    .btn-ios-app-img {
        width: 60px;
    }

    .btn-android-app-img {
        width: 70px;
    }

    .how-to-title {
        font-size: 32px;
    }

    .how-to-sub-title {
        font-size: 28px;
    }

    .how-to-description {
        font-size: 12px;
    }

    .suggestion-title {
        font-size: 28px;
    }

    .suggestion-sub-title {
        font-size: 16px;
    }

    .apply-now-title {
        font-size: 48px;
    }

    .how-to-description-title {
        font-size: 26px;
    }

    .how-to-description-sub-title {
        font-size: 20px;
    }

    .professor-title {
        font-size: 16px;
    }

    .professor-sub-title {
        font-size: 16px;
    }

    .section-content {
        min-height: 40vh;
    }

    .section-timeline,
    .section-suggestion {
        min-height: 50vh;
    }


    .open-now-title {
        font-size: 36px;
    }


    .section-suggestion-top {
        background: url(../images/home/bg-suggestion-tablet-1.png);
    }

    .section-suggestion-bottom {
        background: url(../images/home/bg-suggestion-tablet-2.png);
    }

    .jb-modal {
        border-radius: 50px;
    }
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .main-container {
        padding-bottom: 269px;
    }

    .nav-left {
        width: 80%;
    }

    .banner-joyboy {
        background-image: url(../images/landing-desktop.jpg);
    }

    .banner-shadow {
        background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.55) 25.52%, rgba(0, 0, 0, 0.00) 100%);
        backdrop-filter: blur(1px);
    }

    .banner-title {
        font-size: 48px;
    }

    .banner-sub-title {
        font-size: 32px;
    }

    .how-to-title {
        font-size: 36px;
    }

    .how-to-sub-title {
        font-size: 32px;
    }

    .how-to-description {
        font-size: 16px;
    }

    .suggestion-title {
        font-size: 36px;
    }

    .suggestion-sub-title {
        font-size: 24px;
    }

    .apply-now-title {
        font-size: 64px;
    }

    .how-to-description-title {
        font-size: 26px;
    }

    .how-to-description-sub-title {
        font-size: 20px;
    }

    .professor-title {
        font-size: 24px;
    }

    .professor-sub-title {
        font-size: 18px;
    }

    .section-suggestion-top {
        background: url(../images/home/bg-suggestion1.png);
    }

    .section-suggestion-bottom {
        background: url(../images/home/bg-suggestion2.png);
    }

    .thumbnail-4-3 {
        width: 80%;
        padding-bottom: 60%;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .main-container {
        padding-bottom: 272px;
    }

    .nav-left {
        width: 85%;
    }

    .banner-joyboy {
        /* background-image: url(../images/landing-desktop.jpg); */
    }

    .section-content {
        min-height: 80vh;
    }

    .section-timeline,
    .section-suggestion {
        min-height: 100vh;
    }

    .banner-title {
        font-size: 64px;
    }

    .banner-sub-title {
        font-size: 48px;
    }

    .how-to-title {
        font-size: 48px;
    }

    .how-to-sub-title {
        font-size: 40px;
    }

    .how-to-description {
        font-size: 20px;
    }

    .suggestion-title {
        font-size: 48px;
    }

    .suggestion-sub-title {
        font-size: 32px;
    }

    .apply-now-title {
        font-size: 64px;
    }

    .how-to-description-title {
        font-size: 32px;
    }

    .how-to-description-sub-title {
        font-size: 20px;
    }

    .professor-title {
        font-size: 28px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {
    .main-container {
        padding-bottom: 196px;
    }

    .main-content {
        padding-top: 200px;
        padding-bottom: 200px;
    }

    .nav-left {
        width: 90%;
    }

    .btn-register {
        font-size: 24px;
        font-weight: 700;
    }

    .btn-register-dark {
        font-size: 24px;
        font-weight: 700;
    }

    .btn-gold-rouded {
        font-weight: 700;
    }

    .btn-suggest {
        font-size: 24px;
        font-weight: 700;
    }

    .banner-joyboy {
        /* background-image: url(../images/landing-desktop.jpg); */
    }

    .btn-ios-app-img {
        width: 60px;
    }

    .btn-android-app-img {
        width: 70px;
    }

    .professor-title {
        font-size: 28px;
    }
}