

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

html, body {
    max-height: 100%;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: black;
}

span {
    white-space: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0 0 24px 0;
    padding: 0;
    color: #ffffff;
}

p {
    color: #ffffff;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 32px 0px;
}

a {
    transition: all 0.3s;
}

a * {
    transition: all 0.3s;
}

@media(max-width: 992px) {
    h2 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.text-center {
    text-align: center;
    vertical-align: middle;
}

.visibility-hidden {
    visibility: hidden;
}

.visibility-visible {
    visibility: visible;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 16px;
}

#footer .social-links {
    width: 100%;
    background: #575757;
    
    margin: 0;
    padding: 8px 0;
}

#footer .social-links > div {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: fit-content;
    margin: 0 auto;
}

#footer .social-links p {
    display: block;
    text-align: center;
    height: fit-content;

    color: #ffffff;
    font-weight: 500;
    font-size: 16px;

    padding: 0;
    margin: 0 8px 0 0;
}

#footer .social-links a {
    display: block;
    height: 40px;
    width: 40px;

    padding: 0;
    margin: 0 8px 0 0;
}

#footer .social-links img {
    width: 100%;
    object-fit: cover;
}

#footer .footer-top {
    background: #111;
    padding: 60px 0 60px 0;
    font-size: 16px;
}

#footer .row {
    flex-wrap: wrap;
}

#footer .footer-row {
    justify-content: center;
}

#footer .footer-top h3 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 28px;
    color: #18d26e;

    position: relative;
    margin: 0;
    padding: 0 2px 4px 2px;
    width: fit-content;

    margin: 0 0 12px 0;
}

#footer .footer-top h3::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    
    background: #737373;
}

#footer .footer-logo a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

#footer .footer-logo img {
    height: 100%;

    object-fit: contain;
}

#footer .useful-link {
    width: fit-content;
    margin: 0 auto;
}

#footer .useful-link ul {
    list-style: none;
    margin: 0;
}

#footer .useful-link a,
#footer .useful-link a:active {
    color: #ffffff;
    text-decoration: none;
}

#footer .useful-link a:hover {
    color: #18d26e;
    font-weight: 700;
}

#footer .contact-us {
    width: fit-content;
    margin: 0 auto;
}

#footer .contact-us p {
    margin: 0;
}

#footer .copyright {

    text-align: center;
    padding-top: 30px;
    font-size: 12px;
    color: #ccc;

}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd;
}

@media(max-width: 992px) {
    #footer .footer-top {
        padding: 48px 0;
    }

    #footer .footer-row {
        justify-content: start;
    }

    #footer .useful-link {
        margin-left: 0;
    }

    #footer .contact-us {
        margin-right: 0;
    }
}

@media(max-width: 576px) {
    #footer .footer-top {
        padding: 32px 0;
    }

    #footer .footer-row {
        justify-content: center;
    }

    #footer .footer-logo a {
        align-items: center;
    }

    #footer .useful-link {
        margin: 0 auto;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    #footer .contact-us {
        margin: 0 auto;
    }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;

    z-index: 9998;
    overflow: hidden;
    background: #000;
}

#preloader .preloader-div {
    height: 48px;
    width: 48px;
    overflow: hidden;
    position: fixed;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    z-index: 9999;
}

#preloader img {
    width: 100%;
    object-fit: cover;
}
