﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #444444;
    background-color: #44678d;
}

li {
    list-style: none;
}

a {
    color: #2d4464;
    text-decoration: none;
}

    a:hover {
        color: #44678d;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}

.mobile_order_now {
    display: none;
}

.p-upper {
    text-transform: uppercase;
}

.p-bold {
    font-weight: bold;
}

.p-bold-size {
    font-size: 1.2rem;
    font-weight: bold;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #44678d;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #2d4464;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #44678d;
        border-top-color: #e7e4fe;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .mobile_order_now {
        display: block;
    }
}


