/*==========================================*/

/*                   Body                   */

/*==========================================*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: auto;
}

/*==========================================*/

/*                 Loader                   */

/*==========================================*/

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 3px 5px 14px 0px rgb(30 30 30 / 75%);
    width: 30%;
    padding: 90px 70px;
    text-align: center;
    border-radius: 25px;
}

#loader .spinner-border {
    width: 3em;
    height: 3em;
    color: #237280;
}

#loader .title {
    font-size: 20px;
    margin: 20px 0 -10px 0;
}

.loader-hide {
    opacity: 0;
    transition: opacity 0.4s ease-out;
    display: none;
}

.post-loader-hide {
    display: none;
}

@media screen and (max-width: 1200px){
    #loader {
        width: 90%;
    }
}

/*==========================================*/

/*                  NavBar                  */

/*==========================================*/

nav {
    background: white;
    transition: all 0.25s ease-in;
}

nav .navbar-brand img {
    width: 70px;
    height: auto;
}

nav .navbar-brand i {
    color: #237280;
    margin-left: 20px;
}

nav .navbar-brand span {
    font-weight: 200;
    font-size: 15px;
}

nav .navbar-toggler {
    color: black;
}

nav ul, nav .collapse, nav .dropdown-menu {
    text-align: center;
}

nav .nav-link {
    color: #646464;
    letter-spacing: 1px;
    margin-right: 5px;
    font-weight: 200;
    transition: .2s all ease;
}

nav .nav-link:hover {
    color: #40b398;
    font-weight: 500;
    cursor: pointer;
}

.stuck .navbar.sticky-top {
    background: white !important;
    padding: .8em 0 !important;
    box-shadow: 0 7px 11px -8px rgba(0,0,0,0.45) !important;
    border-radius: 0 0 15px 15px;
}

nav .navbar-toggler:focus {
    box-shadow: none;
}

/*==========================================*/

/*                Copyright                 */

/*==========================================*/

#copyright {
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -7px 11px -8px rgba(0,0,0,0.45);
    font-size: 14px;
    color: #646464;
    padding: 20px 0;
    margin-top: 20px;
}

#copyright .col-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#copyright .col-image img {
    width: 70px;
    height: auto;
}

#copyright .copy-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #40b398;
}

#copyright .copy-p {
    margin-bottom: -1px;
}

#copyright span {
    font-weight: bold;
}

#copyright .col-links {
    display: flex;
    flex-direction: column;
}

#copyright .col-links a {
    color: #646464;
    text-decoration: none;
}

#copyright .col-links a:hover {
    color: #40b398;
}

#copyright .copyright {
    text-align: center;
    margin-bottom: 0;
}

#copyright .copyright span {
    font-weight: bold;
    text-transform: uppercase;
    color: #40b398;
}

#copyright .conditions {
    display: flex;
    justify-content: center;
    color: rgba(30, 30, 30, 0.5);
    text-decoration: none;
    transition: .2s all ease;
}

#copyright .conditions:hover {
    text-decoration: underline;
    color: rgba(30, 30, 30, 1);
}

@media screen and (max-width: 1200px) {
    #copyright {
        text-align: center;
    }

    #copyright .col-2, #copyright .col-1, #copyright .col-3 {
        width: 100%;
    }

    #copyright .col-2, #copyright .col, #copyright .col-1, #copyright .col-3 {
        flex: none;
        margin: 5px;
    }

    #copyright .col-3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }

    #copyright .copyright {
        margin-top: 10px;
    }
}

/*==========================================*/

/*                TopButton                 */

/*==========================================*/

#topBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 22px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(to right top, #40b398, #2ba396, #1e9392, #1d828b, #237280);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    border-radius: 50px;
    z-index: 1000;
}

#topBtn:focus {
    outline: transparent;
}

/*==========================================*/

/*                  Button                  */

/*==========================================*/

.btn-custom, .btn-custom-invert {
    border: 1px solid #40b398 !important;
    background: none;
}

.btn-custom, .btn-custom-invert, .btn-custom-white, .btn-cancel {
    border-radius: 15px;
    padding: 10px 20px;
    font-weight: bold !important;
    transition: .2s all ease;
    text-decoration: none;
    outline: none;
}

.btn-cancel {
    border: 1px solid #d33e3e !important;
    color: white;
    background: #d33e3e;
}

.btn-custom {
    color: #40b398 !important;
}

.btn-cancel:hover {
    color: #d33e3e;
    background: white;
}

.btn-custom:hover {
    color: white !important;
    background-image: linear-gradient(to right top, #40b398, #2ba396, #1e9392, #1d828b, #237280);
    font-weight: bold !important;
}

.btn-custom-invert {
    background-image: linear-gradient(to right top, #40b398, #2ba396, #1e9392, #1d828b, #237280);
    color: white !important;
}

.btn-custom-invert:hover {
    color: #40b398 !important;
    background: white;
    font-weight: bold !important;
}

.btn-custom-white {
    color: white;
    border: 1px solid white !important;
}

.btn-custom-white:hover {
    background: white;
    color: #40b398 !important;
}

/*==========================================*/

/*              Title / Desc                */

/*==========================================*/

.title, .title_inverse, .title_center {
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.title_inverse {
    text-align: end;
}

.title_center {
    text-align: center;
}

.desc, .desc_inverse, .desc_center {
    color: #237280;
    text-transform: uppercase;
    font-weight: 300;
    margin: -20px 0 20px 0;
}

.desc_inverse {
    text-align: end;
}

.desc_center {
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .title, .title_inverse, .desc {
        text-align: center;
    }
}

/*==========================================*/

/*                 Spacer                   */

/*==========================================*/

.spacer {
    width: 200px;
    height: 2px;
    background: rgba(0,0,0,0.45);
    margin: 30px auto 10px auto;
}

/*==========================================*/

/*               Notifications              */

/*==========================================*/

#notification {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 25px;
    left: 25px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 25px;
    animation: hideAnim 5s forwards;
}

#notification i {
    margin-right: 10px;
}

#notification .btn-close {
    padding: 0;
    position: relative;
    margin-left: 10px;
}

@keyframes hideAnim {
    0%   {opacity: 1;}
    90%  {opacity: 1;}
    100% {opacity: 0;}
}

/*==========================================*/

/*                Condition                 */

/*==========================================*/

#conditions {
    padding: 20px 40px;
}

#conditions h2, #conditions h3 {
    font-weight: bold;
}

#conditions h2 {
    text-transform: uppercase;
    font-size: 40px;
    text-align: center;
    margin-top: 30px;
}