@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Luxia';
    src: url('../fonts/Luxia-Display.woff2') format('woff2'),
        url('../fonts/Luxia-Display.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body {
    color: #222222;
}

h1 {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1px;
}

h2 {
    font-family: "Luxia", system-ui;
    font-weight: 300;
    font-style: normal;
    letter-spacing: -1px;
    font-size: 48px;
    line-height: 1.2;
}

h3 {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 34px;
    line-height: 1.2;
}

h4 {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
}

h5 {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 1.3;
}

p,
li {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 1.8;
}

span {
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
}

strong {
    font-weight: 700;
}

.glass-filter {
    z-index: 0;
    backdrop-filter: blur(2px);
    position: absolute;
    inset: 0;
}

.glass-overlay {
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    position: absolute;
    inset: 0;
}

.glass-specular {
    z-index: 2;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75), inset 0 0 15px rgba(255, 255, 255, 0.75);
    position: absolute;
    inset: 0;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    background-color: #FFF;
    padding: 8px 20px 10px 16px !important;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
    background-color: #FFF;
    padding: 8px 16px 10px 20px !important;
}

.owl-carousel .owl-nav .owl-prev svg,
.owl-carousel .owl-nav .owl-next svg {
    transform: scale(1.4);
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.owl-carousel .owl-dots {
    position: absolute;
    width: 100%;
    bottom: -50px;
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 10px;
    background-color: #F4E6DC;
    margin: 0 4px;
}

.owl-carousel .owl-dots .owl-dot.active {
    background-color: #D5B3AE;
}

.beacons {
    position: absolute;
    background-color: transparent;
    height: 1.2vw;
    width: 1.2vw;
    border-radius: 50%;
    opacity: 0;
}

.beacons.active {
    -webkit-animation: grow .4s 1 linear;
    animation: grow .4s 1 linear;
    opacity: 1;
}

.beacons:before {
    position: absolute;
    content: "";
    height: 1.2vw;
    width: 1.2vw;
    background-color: transparent;
    border-radius: 50%;
    top: 0%;
    left: 0%;
}

.beacons:before {
    box-shadow: 0px 0px 10px 15px #b95243;
}

.beacons.active:before {
    -webkit-animation: active 2s infinite linear;
    animation: active 2s infinite linear;
}

@keyframes grow {
    0% {
        transform: scale(.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes active {
    0% {
        transform: scale(.1);
        opacity: 1;
    }

    70% {
        transform: scale(2.5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

#float-icon {
    position: fixed;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

#float-register,
#float-whatsapp,
#float-waze {
    display: block;
}

#float-register .box,
#float-whatsapp .box,
#float-waze .box {
    position: relative;
    backdrop-filter: blur(2px) saturate(180%);
    border-radius: 100%;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.5);
}

#float-register .box:after,
#float-whatsapp .box:after,
#float-waze .box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1), inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
    border-radius: 100%;
}


#float-register .box img {
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
}

#float-whatsapp .box img {
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
}

#float-waze .box img {
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
}

.modal-dialog {
    max-width: 90vw;
    margin: 0 auto;
}

.navbar .nav-item>.nav-link {
    text-transform: uppercase;
    font-family: "Poppins", system-ui;
    font-weight: 300;
}

.navbar .nav-item:not(:last-child)>.nav-link {
    padding: 0.5rem 1rem;
}

.navbar .nav-item>.nav-link.active,
.navbar .nav-item>.nav-link:hover {
    color: #2B432F;
}

.navbar .nav-item>.nav-link.active {
    font-weight: 700;
}

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #222222;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}

/* State when the navbar is collapsed */

.navbar-toggler.collapsed .top-bar {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    position: absolute;
    top: 10px;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}

/* when navigation is clicked */

.navbar-toggler .top-bar {
    top: inherit;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    top: inherit;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    top: inherit;
    transform: rotate(-135deg);
}

/* Color of 3 lines */

.navbar-toggler.collapsed .toggler-icon {
    background: #222222;
}

#banner {
    background-color: #2B432F;
}

#banner #logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#banner #ijm-logo {
    max-width: 140px;
}

#banner #banner-video-container:after,
#banner #banner-video-mobile-container:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

#banner #banner-video-container {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

#banner #banner-video-container #banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#banner #banner-video-mobile-container {
    width: 100%;
    padding-top: 160%;
    position: relative;
}

#banner #banner-video-mobile-container #banner-video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#banner #title {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

#freedom {
    background: url('../images/freedom-background.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 20rem 0 10rem;
}

#freedom .box {
    position: relative;
    backdrop-filter: blur(2px) saturate(180%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem;
    display: inline-block;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 10px rgba(255, 255, 255, 0.5);
}

#freedom .box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 20px -11px rgba(255, 255, 255, 1), inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}

#freedom .box h4 {
    position: relative;
    z-index: 1;
}

#pleasure {
    background: url('../images/pleasure-background.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 10rem 0 10rem;
}

#pleasure .box {
    background-color: #F4E6DC;
    padding: 3rem;
}

#nature {
    background: url('../images/nature-background.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 10rem 0 10rem;
}

#nature .box {
    position: relative;
    backdrop-filter: blur(2px) saturate(180%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.8);
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.5);
}

#nature .box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1), inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}

#nature .box h5 {
    position: relative;
    z-index: 1;
}

#rooms {
    background-color: #D5B3AE;
    overflow: hidden;
}

#rooms h2 {
    font-size: 36px;
}

#rooms #rooms-video-container {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    margin: 4rem 0;
}

#rooms #rooms-video-container #rooms-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#rooms .background {
    background-color: #F4E6DC;
    padding: 4rem 0;
}

/*#rooms .background .box {
    border: 1px solid #D5B3AE;
    padding: 0.75rem;
    display: inline-block;
    min-width: 280px;
}
*/

#rooms .background .box {
    position: relative;
    backdrop-filter: blur(2px) saturate(100%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem;
    display: inline-block;
    min-width: 280px;
    box-shadow: 0 8px 12px rgba(31, 38, 135, 0.2), inset 0 4px 10px rgba(255, 255, 255, 0.5);
}

#rooms .background .box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1), inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(2px 4px 6px white) brightness(115%);
}

#rooms .background .box h4 {
    position: relative;
    z-index: 1;
    color: #885355;
}

#rooms h2 {
    color: #885355;
}

#gallery {
    background: url('../images/gallery-background.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 10rem 0 10rem;
}

#gallery .btn {
    border: none;
    border-radius: 0;
    appearance: none;
    padding: 0;
    min-width: 260px;
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 1.8;
}

#gallery .btn .box {
    position: relative;
    backdrop-filter: blur(2px) saturate(180%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.8);
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

#gallery .btn .box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1), inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}

#gallery .btn.active {
    background-color: #D5B3AE;
}

#gallery .background {
    background-color: #F4E6DC;
    padding: 1rem;
}

#gallery .background #virtual-show-house #iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

#gallery .background #virtual-show-house #iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

#sitemap {
    background: #283B6B;
    background: linear-gradient(90deg, rgba(40, 59, 107, 1) 0%, rgba(40, 59, 107, 1) 35%, rgba(247, 247, 247, 1) 35%, rgba(247, 247, 247, 1) 100%);
    overflow: hidden;
    padding: 10rem 0 10rem;
}

#sitemap .btn {
    border: none;
    border-radius: 0;
    appearance: none;
    padding: 0;
    min-width: 260px;
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 1.8;
}

#sitemap .btn .box {
    position: relative;
    backdrop-filter: blur(2px) saturate(180%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.8);
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

#sitemap .btn .box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1), inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}

#sitemap .btn.active {
    background-color: #D5B3AE;
}

#sitemap .background {
    min-height: 760px;
}

#sitemap ol {
    padding-left: 17px;
}

#sitemap ol li.active {
    text-shadow: -0.3px 0 #222222, 0.3px 0 #222222;
}

#location {
    position: relative;
}

#location:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: 10%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

#location #content {
    position: absolute;
    top: 10%;
    width: 100%;
}

#location #sovana {
    position: absolute;
    top: 53%;
    left: 61%;
}

#location #sovana #marker {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 20px;
    background-color: #FFFFFF;
    position: relative;
}

#location #sovana #marker:after {
    position: absolute;
    display: block;
    content: '';
    height: 270px;
    width: 3px;
    border-left: 3px dotted #FFFFFF;
    border-radius: 9999px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#location #sovana img {
    position: absolute;
    top: calc(53% - 310px);
    left: calc(61% - 90px);
}

#location #suria-park {
    position: absolute;
    z-index: 2;
    left: 18%;
    top: 77%;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

#location #skate-park {
    position: absolute;
    z-index: 2;
    left: 55%;
    top: 87%;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

#siteplan {
    background-color: #ECE3DC;
    overflow: hidden;
    padding: 4rem 0;
}

#siteplan .zoom p {
    color: #222222;
}

#siteplan h5 {
    min-width: 110px;
}

#siteplan .type {
    width: 70px;
    height: 30px;
}

#siteplan .type#intermediate {
    background-color: #DFBAC1;
}

#siteplan .type#end-lot {
    background-color: #D19889;
}

#siteplan .type#corner-lot {
    background-color: #BE899C;
}

#register {
    background-color: #D5B3AE;
    padding: 4rem 0 3rem;
    overflow: hidden;
}

#register #form-container form label {
    color: #222222;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

#register #form-container form input {
    border: 1px solid #F4E6DC;
    border-radius: 0;
    background-color: #F4E6DC;
    color: #222222;
    padding: 2.35rem .75rem 1.15rem;
    height: 100%;
}

#register #form-container form select {
    border: 1px solid #F4E6DC;
    border-radius: 0;
    background-color: #F4E6DC;
    color: #222222;
    padding: 2.25rem .75rem 1rem;
}

#register #form-container form label[for="country-code"] {
    position: absolute;
    top: 0.75rem;
    left: 0.45rem;
}

#register #form-container form input~label {
    color: #222222;
}

#register #form-container form input~label:after {
    background-color: transparent;
}

#register #form-container form .form-check input {
    padding: 5px;
    width: 30px;
    height: 30px;
    display: inline-block;
    float: none;
}

#register #form-container form .form-check input:checked[type="checkbox"] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFC222' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

#register #form-container form .form-check label {
    top: -35px;
    left: -10px;
    position: relative;
}

#register #form-container form button[type="submit"] {
    border-radius: 0;
    background-color: #F4E6DC;
    color: #222222;
    font-size: 18px;
    padding: 1rem 2.25rem;
    transition: all 0.4s ease;
}

#register #form-container form button[type="submit"]:hover {
    background-color: #e8c6ae;
}

#register a {
    color: #FFFFFF;
}

footer {
    background-color: #F7F7F7;
    padding: 4rem 0;
    overflow: hidden;
}

footer h4 {
    font-size: 24px;
}

footer a#waze img,
footer a#google-map img {
    max-width: 40px;
}

footer #terms a {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 1.3;
    color: #222222;
    text-decoration: none;
}

footer .adpl {
    line-height: 1.2;
}

@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {

    .navbar .nav-item>.nav-link {
        font-size: 13px;
    }

    #rooms .background {
        margin-bottom: 4rem;
    }

    #sitemap .background {
        min-height: 660px;
    }

}


@media (max-width: 991.98px) {

    h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 17px;
    }

    h5 {
        font-size: 15px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        padding: 4px 10px 5px 8px !important;
    }

    .owl-carousel .owl-nav button.owl-next {
        padding: 4px 8px 5px 10px !important;
    }

    .owl-carousel .owl-nav .owl-prev svg,
    .owl-carousel .owl-nav .owl-next svg {
        transform: scale(1);
    }

    .navbar .nav-item:first-child>.nav-link {
        padding-top: 1.5rem;
    }

    .navbar .nav-item>.nav-link {
        padding: 0.5rem 1rem;
        font-size: initial;
    }

    #banner #title img {
        max-width: 260px;
    }

    #freedom {
        padding: 20rem 0 5rem;
    }

    #pleasure {
        background-position: 30% center;
        padding: 20rem 0 4rem;
    }

    #nature {
        padding: 3rem 0;
    }

    #rooms #rooms-video-container {
        margin-bottom: 2rem;
    }

    #gallery {
        padding: 4rem 0;
    }

    #gallery .btn .box {
        padding: 0.8rem;
    }

    #gallery .background {
        padding: 0.6rem;
    }

    #sitemap {
        background: none;
        background-color: #283B6B;
        padding: 4rem 0;
    }

    #sitemap .background {
        background-color: #F7F7F7;
        min-height: auto;
    }

    #sitemap .btn .box {
        padding: 0.8rem;
    }

    #sitemap .btn .box h4 {
        font-size: 17px;
    }

    #sitemap ol li {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 0.1rem;
    }

    #register {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {

    #banner #ijm-logo {
        max-width: 90px;
    }

    #banner .background #title {
        padding: 15vh 0 25vh;
    }

    #banner .background h4 {
        font-size: 18px;
    }

    #banner .background #title img {
        max-width: 260px;
    }

    #register h3 {
        font-size: 22px;
    }

}