﻿/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. welcome
06. features
07. demo-carousel
08. contact
09. footer
10. preloader

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #fff;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}

ul {
    margin-bottom: 0px;
}

p {
    font-size: 15px;
    line-height: 25px;
    color: #888;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
    background-image: radial-gradient(circle at 29% 55%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 4%,transparent 4%, transparent 44%,transparent 44%, transparent 100%), radial-gradient(circle at 85% 89%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 51%,transparent 51%, transparent 52%,transparent 52%, transparent 100%), radial-gradient(circle at 6% 90%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 53%,transparent 53%, transparent 64%,transparent 64%, transparent 100%), radial-gradient(circle at 35% 75%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 6%,transparent 6%, transparent 98%,transparent 98%, transparent 100%), radial-gradient(circle at 56% 75%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 16%,transparent 16%, transparent 23%,transparent 23%, transparent 100%), radial-gradient(circle at 42% 0%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 3%,transparent 3%, transparent 26%,transparent 26%, transparent 100%), radial-gradient(circle at 34% 28%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 62%,transparent 51%, transparent 75%,transparent 75%, transparent 100%), radial-gradient(circle at 77% 21%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 35%,transparent 35%, transparent 55%,transparent 55%, transparent 100%), radial-gradient(circle at 65% 91%, hsla(191,89%,70%,0.05) 0%, hsla(191,89%,70%,0.05) 46%,transparent 46%, transparent 76%,transparent 76%, transparent 100%), linear-gradient(45deg, rgb(2, 65, 55),rgb(5, 138, 145));
    font-family: 'Poppins', sans-serif;
}

::selection {
    background: #f1556a;
    color: #fff;
}

::-moz-selection {
    background: #f1556a;
    color: #fff;
}

@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }

    .mobile-top-fix {
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .mobile-bottom-fix {
        margin-bottom: 30px;
    }

    .mobile-bottom-fix-big {
        margin-bottom: 60px;
    }
}

a.main-button-slider {
    font-size: 14px;
    border-radius: 25px;
    padding: 15px 25px;
    background-color: #fba70b;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    a.main-button-slider:hover {
        background-color: #f1556a;
    }

a.main-button {
    font-size: 14px;
    border-radius: 25px;
    padding: 15px 25px;
    background-color: #f4813f;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    a.main-button:hover {
        background-color: #f1556a;
    }

button.main-button {
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 25px;
    padding: 15px 25px;
    background-color: #f4813f;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    button.main-button:hover {
        background-color: #f1556a;
    }

.center-heading {
    margin-bottom: 70px;
}

    .center-heading h2 {
        margin-top: 0px;
        text-align: center;
        font-size: 42px;
        font-weight: 700;
        color: #1e1e1e;
        margin-bottom: 25px;
    }

        .center-heading h2 em {
            font-style: normal;
            color: #f4813f;
        }

    .center-heading p {
        font-size: 15px;
        color: #888;
        text-align: center;
    }


/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.background-header {
    background-color: #146367;
    height: 80px !important;
    position: fixed !important;
    top: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15) !important;
}

    .background-header .logo,
    .background-header .main-nav .nav li a {
        color: #1e1e1e !important;
    }

    .background-header .main-nav .nav li:hover a {
        color: #d1e4f9 !important;
    }

    .background-header .nav li a.active {
        color: #d1e4f9 !important;
    }

.header-area {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 0px 0px 0px 0px;
    z-index: 100;
    height: 110px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

    .header-area .main-nav {
        min-height: 110px;
        background: transparent;
    }

    .header-area .logo_background {
        width: 100%;
        height: 100vh;
        min-height: 136px;
        background-repeat: no-repeat;
        background-position: left top;
    }

    .header-area .main-nav .logo {
        line-height: 100px;
        color: #191a20;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 7px 0px 0px 10px;
        float: left;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .header-area .main-nav .nav {
        float: left;
        margin-top: 27px;
        margin-left: 15%;
        margin-right: 0px;
        padding: 0px 20px;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        position: relative;
        z-index: 999;
    }

        .header-area .main-nav .nav li {
            padding-left: 20px;
            padding-right: 20px;
        }

            .header-area .main-nav .nav li:last-child {
                padding-right: 0px;
            }

            .header-area .main-nav .nav li a {
                display: block;
                font-weight: 500;
                font-size: 13px;
                color: #010101;
                text-transform: uppercase;
                -webkit-transition: all 0.3s ease 0s;
                -moz-transition: all 0.3s ease 0s;
                -o-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
                height: 40px;
                line-height: 40px;
                border: transparent;
                letter-spacing: 1px;
            }

            .header-area .main-nav .nav li:hover a {
                color: #d1e4f9;
            }

            .header-area .main-nav .nav li.submenu {
                position: relative;
                padding-right: 35px;
            }

                .header-area .main-nav .nav li.submenu:after {
                    font-family: FontAwesome;
                    content: "\f107";
                    font-size: 12px;
                    color: #7a7a7a;
                    position: absolute;
                    right: 18px;
                    top: 12px;
                }

                .header-area .main-nav .nav li.submenu ul {
                    position: absolute;
                    width: 300px;
                    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
                    overflow: hidden;
                    top: 40px;
                    opacity: 0;
                    transform: translateY(-2em);
                    visibility: hidden;
                    z-index: -1;
                    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
                }

                    .header-area .main-nav .nav li.submenu ul li {
                        margin-left: 0px;
                        padding-left: 0px;
                        padding-right: 0px;
                    }

                        .header-area .main-nav .nav li.submenu ul li a {
                            display: block;
                            background: #048A91;
                            color: #0e0e0e !important;
                            padding-left: 20px;
                            height: 40px;
                            line-height: 40px;
                            -webkit-transition: all 0.3s ease 0s;
                            -moz-transition: all 0.3s ease 0s;
                            -o-transition: all 0.3s ease 0s;
                            transition: all 0.3s ease 0s;
                            position: relative;
                            font-size: 13px;
                            border-bottom: 1px solid #f5f5f5;
                        }

                            .header-area .main-nav .nav li.submenu ul li a:before {
                                content: '';
                                position: absolute;
                                width: 0px;
                                height: 40px;
                                left: 0px;
                                top: 0px;
                                bottom: 0px;
                                -webkit-transition: all 0.3s ease 0s;
                                -moz-transition: all 0.3s ease 0s;
                                -o-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                                background: #d1e4f9;
                            }

                            .header-area .main-nav .nav li.submenu ul li a:hover {
                                background: #163A3C;
                                color: #d1e4f9 !important;
                                padding-left: 25px;
                            }

                                .header-area .main-nav .nav li.submenu ul li a:hover:before {
                                    width: 3px;
                                }

                .header-area .main-nav .nav li.submenu:hover ul {
                    visibility: visible;
                    opacity: 1;
                    z-index: 1;
                    transform: translateY(0%);
                    transition-delay: 0s, 0s, 0.3s;
                }

    .header-area .main-nav .menu-trigger {
        cursor: pointer;
        display: block;
        position: absolute;
        top: 23px;
        width: 32px;
        height: 40px;
        text-indent: -9999em;
        z-index: 99;
        right: 40px;
        display: none;
    }

        .header-area .main-nav .menu-trigger span,
        .header-area .main-nav .menu-trigger span:before,
        .header-area .main-nav .menu-trigger span:after {
            -moz-transition: all 0.4s;
            -o-transition: all 0.4s;
            -webkit-transition: all 0.4s;
            transition: all 0.4s;
            background-color: #fff;
            display: block;
            position: absolute;
            width: 30px;
            height: 2px;
            left: 0;
        }

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #fff;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #fff;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #fff;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    content: "";
}

.header-area .main-nav .menu-trigger span {
    top: 16px;
}

    .header-area .main-nav .menu-trigger span:before {
        -moz-transform-origin: 33% 100%;
        -ms-transform-origin: 33% 100%;
        -webkit-transform-origin: 33% 100%;
        transform-origin: 33% 100%;
        top: -10px;
        z-index: 10;
    }

    .header-area .main-nav .menu-trigger span:after {
        -moz-transform-origin: 33% 0;
        -ms-transform-origin: 33% 0;
        -webkit-transform-origin: 33% 0;
        transform-origin: 33% 0;
        top: 10px;
    }

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
    background-color: transparent;
    width: 100%;
}

    .header-area .main-nav .menu-trigger.active span:before {
        -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
        -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
        -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
        transform: translateY(6px) translateX(1px) rotate(45deg);
        background-color: #fff;
    }

.background-header .main-nav .menu-trigger.active span:before {
    background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
    -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    transform: translateY(-6px) translateX(1px) rotate(-45deg);
    background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
    background-color: #fff;
}

.header-area.header-sticky {
    min-height: 110px;
}

    .header-area.header-sticky .nav {
        margin-top: 20px !important;
    }

        .header-area.header-sticky .nav li a.active {
            color: #d1e4f9;
        }

@media (max-width: 1200px) {
    .header-area .main-nav .nav li {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-area .main-nav:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .logo {
        text-align: center;
        float: none !important;
    }

    .header-area {
        background-color: #146367;
        padding: 0px 15px;
        height: 80px;
        box-shadow: none;
        text-align: center;
    }

        .header-area .container {
            padding: 0px;
        }

        .header-area .logo {
            margin-left: 30px;
        }

        .header-area .menu-trigger {
            display: block !important;
        }

        .header-area .main-nav {
            overflow: hidden;
        }

            .header-area .main-nav .nav {
                float: none;
                width: 100%;
                margin-top: 0px !important;
                display: none;
                -webkit-transition: all 0s ease 0s;
                -moz-transition: all 0s ease 0s;
                -o-transition: all 0s ease 0s;
                transition: all 0s ease 0s;
                margin-left: 0px;
            }

                .header-area .main-nav .nav li:first-child {
                    border-top: 1px solid #eee;
                }

                .header-area .main-nav .nav li {
                    width: 100%;
                    background: #fff;
                    border-bottom: 1px solid #eee;
                    padding-left: 0px !important;
                    padding-right: 0px !important;
                }

                    .header-area .main-nav .nav li a {
                        height: 50px !important;
                        line-height: 50px !important;
                        padding: 0px !important;
                        border: none !important;
                        background: #146367 !important;
                        color: #191a20 !important;
                    }

                        .header-area .main-nav .nav li a:hover {
                            background: #163A3C !important;
                            color: #d1e4f9 !important;
                        }

                    .header-area .main-nav .nav li.submenu ul {
                        position: relative;
                        visibility: inherit;
                        opacity: 1;
                        z-index: 1;
                        transform: translateY(0%);
                        transition-delay: 0s, 0s, 0.3s;
                        top: 0px;
                        width: 100%;
                        box-shadow: none;
                        height: 0px;
                    }

                        .header-area .main-nav .nav li.submenu ul li a {
                            font-size: 12px;
                            font-weight: 400;
                        }

                            .header-area .main-nav .nav li.submenu ul li a:hover:before {
                                width: 0px;
                            }

                        .header-area .main-nav .nav li.submenu ul.active {
                            height: auto !important;
                        }

                    .header-area .main-nav .nav li.submenu:after {
                        color: #3B566E;
                        right: 25px;
                        font-size: 14px;
                        top: 15px;
                    }

                    .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
                        height: 0px;
                    }
}

@media (min-width: 992px) {
    .header-area .main-nav .nav {
        display: flex !important;
    }
}

/* 
---------------------------------------------
welcome
--------------------------------------------- 
*/
.welcome-area {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}

    .welcome-area .header-text {
        width: 80%;
        margin-left: 5%;
    }

        .welcome-area .header-text .left-text {
            position: relative;
            align-self: center;
            transform: none !important;
        }

        .welcome-area .header-text h1 {
            font-weight: 900;
            font-size: 52px;
            line-height: 80px;
            letter-spacing: 1px;
            margin-bottom: 30px;
            color: #191a20;
        }

            .welcome-area .header-text h1 em {
                font-style: normal;
                color: #d1e4f9;
            }

        .welcome-area .header-text p {
            font-weight: 300;
            font-size: 17px;
            color: #fff;
            line-height: 30px;
            letter-spacing: 0.25px;
            margin-bottom: 40px;
            position: relative;
        }

            .welcome-area .header-text p a {
                color: #ffcc87;
            }

                .welcome-area .header-text p a:hover {
                    color: #4dced4;
                }

@media (max-width: 1420px) {
    .welcome-area .header-text {
        width: 70%;
        margin-left: 5%;
    }
}

@media (max-width: 1320px) {
    .welcome-area .header-text .left-text {
        margin-top: 50%;
    }

    .welcome-area .header-text {
        width: 50%;
        margin-left: 5%;
    }
}

@media (max-width: 1140px) {
    .welcome-area {
        height: auto;
    }

        .welcome-area .header-text {
            width: 92%;
            padding-top: 793px;
        }

            .welcome-area .header-text .left-text {
                margin-top: 5%;
                transform: none !important;
            }
}

@media (max-width: 991px) {
    .welcome-area {
        background-size: contain;
    }

        .welcome-area .header-text {
            padding-top: 50px;
        }

    .container-fluid .col-md-12 {
        margin-right: 0px;
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .glass-card {
        max-width: 871px;
        max-height: 500px;
        border-radius: 20px;
        border: 1px solid #ffcc87;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
        position: relative;
        overflow: hidden;
        filter: blur(0.5px);
    }
}

@media (min-width: 992px) {
    .glass-card {
        width: 871px;
        height: 500px;
        border-radius: 20px;
        border: 1px solid #ffcc87;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
        position: relative;
        overflow: hidden;
        filter: blur(0.5px);
    }
}

/*
---------------------------------------------
about
---------------------------------------------
*/

.about-us {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}

    .about-us .header-text {
        width: 100%;
        padding-top: 60px;
    }

        .about-us .header-text h1 {
            color: #fff;
            margin-bottom: 2rem;
        }

        .about-us .header-text p {
            color: #fff;
        }

    .about-us .card {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-color: #ffcc87;
        background-clip: border-box;
        border: 1px solid rgba(0, 0, 0, 0.125);
        border-radius: 1.5rem;
    }

    .about-us .header-text .shadow {
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.475) !important;
    }

    .about-us p {
        color: #fff;
        margin-bottom: 1rem;
    }

    .about-us a {
        color: #ffcc87;
    }

    .about-us p a:hover {
        color: #4dced4;
    }

    .about-us h2 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .about-us h3 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .about-us ul {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .about-us ul li {
            list-style: disc;
            color: #fff;
        }

    .about-us ol {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .about-us ol li {
            list-style: decimal;
            color: #fff;
        }

    .about-us table {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 2rem;
        border-width: 1px;
        border-style: solid;
    }

        .about-us table th {
            background-color: #eeeeee88;
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .about-us table tr {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .about-us table td {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

@media (max-width: 991px) {
    .about-us {
        background-size: contain;
    }

        .about-us .header-text {
            padding-top: 100px;
        }
}
/*
---------------------------------------------
promotion
---------------------------------------------
*/

.left-image-decor {
    background-image: url(../images/left-bg-decor.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    display: inline-block;
    height: 110%;
    margin-top: -200px;
}

#promotion {
    padding: 100px 0px;
}

    #promotion .left-image {
        align-self: center;
    }

    #promotion .right-text ul {
        padding: 0;
        margin: 0;
    }

        #promotion .right-text ul li {
            display: inline-block;
            margin-bottom: 60px;
        }

            #promotion .right-text ul li:last-child {
                margin-bottom: 0px;
            }

    #promotion .right-text img {
        display: inline-block;
        float: left;
        margin-right: 30px;
    }

    #promotion .right-text h4 {
        font-size: 22px;
        color: #1e1e1e;
        margin-bottom: 15px;
        margin-top: 3px;
    }

/*
---------------------------------------------
privacy policy
---------------------------------------------
*/
.privacy-policy-area {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}

    .privacy-policy-area .header-text {
        width: 100%;
        padding-top: 20px;
    }

        .privacy-policy-area .header-text h1 {
            color: #fff;
            margin-bottom: 2rem;
        }

        .privacy-policy-area .header-text p {
            color: #fff;
        }

    .privacy-policy-area p {
        color: #fff;
        margin-bottom: 1rem;
    }

    .privacy-policy-area a {
        color: #ffcc87;
    }

    .privacy-policy-area p a:hover {
        color: #4dced4;
    }

    .privacy-policy-area h2 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-area h3 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .privacy-policy-area ul {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .privacy-policy-area ul li {
            list-style: disc;
            color: #fff;
        }

    .privacy-policy-area ol {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .privacy-policy-area ol li {
            list-style: decimal;
            color: #fff;
        }

    .privacy-policy-area table {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 2rem;
        border-width: 1px;
        border-style: solid;
    }

        .privacy-policy-area table th {
            background-color: #eeeeee88;
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .privacy-policy-area table tr {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .privacy-policy-area table td {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

@media (max-width: 991px) {
    .privacy-policy-area {
        background-size: contain;
    }

        .privacy-policy-area .header-text {
            padding-top: 100px;
        }
}

/*
---------------------------------------------
terms and conditions
---------------------------------------------
*/

.terms-conditions {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}

    .terms-conditions .header-text {
        width: 100%;
        padding-top: 20px;
    }

        .terms-conditions .header-text h1 {
            color: #fff;
            margin-bottom: 2rem;
        }

        .terms-conditions .header-text p {
            color: #fff;
        }

    .terms-conditions p {
        color: #fff;
        margin-bottom: 1rem;
    }

    .terms-conditions a {
        color: #ffcc87;
    }

    .terms-conditions p a:hover {
        color: #4dced4;
    }

    .terms-conditions h2 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .terms-conditions h3 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .terms-conditions ul {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .terms-conditions ul li {
            list-style: disc;
            color: #fff;
        }

    .terms-conditions ol {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .terms-conditions ol li {
            list-style: decimal;
            color: #fff;
        }

    .terms-conditions table {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 2rem;
        border-width: 1px;
        border-style: solid;
    }

        .terms-conditions table th {
            background-color: #eeeeee88;
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .terms-conditions table tr {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .terms-conditions table td {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

@media (max-width: 991px) {
    .terms-conditions {
        background-size: contain;
    }

        .terms-conditions .header-text {
            padding-top: 100px;
        }
}

/*
---------------------------------------------
parent's guide
---------------------------------------------
*/

.parents-guide {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}

    .parents-guide .header-text {
        width: 100%;
        padding-top: 20px;
    }

        .parents-guide .header-text h1 {
            color: #fff;
            margin-bottom: 2rem;
        }

        .parents-guide .header-text p {
            color: #fff;
        }

    .parents-guide p {
        color: #fff;
        margin-bottom: 1rem;
    }

    .parents-guide a {
        color: #ffcc87;
    }

    .parents-guide p a:hover {
        color: #4dced4;
    }

    .parents-guide h2 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .parents-guide h3 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .parents-guide ul {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .parents-guide ul li {
            list-style: disc;
            color: #fff;
        }

    .parents-guide ol {
        margin: 1rem 0px 1rem 3rem;
        color: #fff;
    }

        .parents-guide ol li {
            list-style: decimal;
            color: #fff;
        }

    .parents-guide table {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 2rem;
        border-width: 1px;
        border-style: solid;
    }

        .parents-guide table th {
            background-color: #eeeeee88;
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .parents-guide table tr {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

        .parents-guide table td {
            padding: 3px;
            border-width: 1px;
            border-style: solid;
        }

@media (max-width: 991px) {
    .parents-guide {
        background-size: contain;
    }

        .parents-guide .header-text {
            padding-top: 100px;
        }
}

/*
---------------------------------------------
contact form
---------------------------------------------
*/
.contact-form {
    position: relative;
    z-index: 10;
    padding: 45px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

    .contact-form input,
    .contact-form textarea {
        color: #777;
        font-size: 13px;
        border: 1px solid #eee;
        background-color: #f7f7f7;
        border-radius: 5px;
        width: 100%;
        height: 50px;
        outline: none;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin-bottom: 30px;
    }

    .contact-form textarea {
        height: 150px;
        resize: none;
        padding: 20px;
    }

.contact-form {
    text-align: center;
}

    .contact-form ::-webkit-input-placeholder { /* Edge */
        color: #7a7a7a;
    }

    .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #7a7a7a;
    }

    .contact-form ::placeholder {
        color: #7a7a7a;
    }

.contact-us {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}

    .contact-us .header-text {
        width: 100%;
        padding-top: 60px;
    }

        .contact-us .header-text h1 {
            color: #fff;
            margin-bottom: 2rem;
        }

        .contact-us .header-text p {
            color: #fff;
        }

        .contact-us .header-text h2 {
            color: #fff;
            margin-bottom: 1rem;
        }

    .contact-us p {
        color: #fff;
        margin-bottom: 1rem;
    }

    .contact-us a {
        color: #ffcc87;
    }

    .contact-us p a:hover {
        color: #4dced4;
    }

    .contact-us h2 {
        color: #fff;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

.card-body h2 {
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-us .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffcc87;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 1.5rem;
}

.contact-us .shadow {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.475) !important;
}

@media (max-width: 992px) {

    .contact-form {
        margin-bottom: 45px;
    }
}

.contact-form .header-text {
    width: 100%;
    padding-top: 20px;
}

    .contact-form .header-text h1 {
        color: #fff;
        margin-bottom: 2rem;
    }

    .contact-form .header-text p {
        color: #fff;
    }

.card-shadow {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.475) !important;
    background-color: #fff !important;
    border-radius: 1.5rem !important;
}

.card-shadow p,
.card-shadow h3,
.card-shadow h4,
.card-shadow h5,
.card-shadow h6,
.card-shadow li {
    color: #333 !important;
}

.contact-form p {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-form a {
    color: #ffcc87;
}

.contact-form p a:hover {
    color: #4dced4;
}

.contact-form h2 {
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-form h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.contact-form ul {
    margin: 1rem 0px 1rem 3rem;
    color: #fff;
}

    .contact-form ul li {
        list-style: disc;
        color: #fff;
    }

.contact-form ol {
    margin: 1rem 0px 1rem 3rem;
    color: #fff;
}

    .contact-form ol li {
        list-style: decimal;
        color: #fff;
    }

.contact-form table {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-width: 1px;
    border-style: solid;
}

    .contact-form table th {
        background-color: #eeeeee88;
        padding: 3px;
        border-width: 1px;
        border-style: solid;
    }

    .contact-form table tr {
        padding: 3px;
        border-width: 1px;
        border-style: solid;
    }

    .contact-form table td {
        padding: 3px;
        border-width: 1px;
        border-style: solid;
    }

@media (max-width: 991px) {
    .contact-form {
        background-size: contain;
    }

        .contact-form .header-text {
            padding-top: 100px;
        }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffcc87;
}

    .contact-card h3 {
        color: #ffcc87;
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .contact-card p {
        min-height: 100px;
        margin-bottom: 10px;
    }
/*
--------------------------------------------
demo-carousel
--------------------------------------------
*/
.right-image-decor {
    background-image: url(../images/right-bg-decor.png);
    background-repeat: no-repeat;
    background-position: right center;
    position: absolute;
    width: 100%;
    display: inline-block;
    height: 110%;
    margin-top: -200px;
}

#demo-carousel {
    padding-top: 2rem;
    position: relative;
    z-index: 9;
    padding-right: 3rem;
}

    #demo-carousel .item {
        position: relative;
    }

        #demo-carousel .item .testimonial-content {
            background: rgb(244,129,63);
            background: linear-gradient(145deg, rgba(244,129,63,1) 0%, rgba(241,85,106,1) 100%);
            margin-left: 60px;
            padding: 40px 30px;
            text-align: center;
            border-radius: 5px;
        }

            #demo-carousel .item .testimonial-content ul li {
                display: inline-block;
                margin: 0px 1px;
            }

                #demo-carousel .item .testimonial-content ul li i {
                    color: #fff;
                    font-size: 13px;
                }

            #demo-carousel .item .testimonial-content h4 {
                font-size: 22px;
                margin-top: 20px;
                color: #fff;
            }

            #demo-carousel .item .testimonial-content p {
                color: #fff;
                font-style: italic;
                font-weight: 200;
                margin: 20px 0px 15px 0px;
            }

            #demo-carousel .item .testimonial-content span {
                color: #fff;
                font-weight: 200;
                font-size: 13px;
            }

    #demo-carousel .author img {
        max-width: 120px;
        margin-bottom: -60px;
    }

.owl-carousel .owl-nav button.owl-next span {
    z-index: 10;
    top: 45%;
    border-radius: 10px;
    font-size: 46px;
    color: #fff;
    right: -210px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    background: rgb(244,129,63);
    background: linear-gradient(145deg, rgba(244,129,63,1) 0%, rgba(241,85,106,1) 100%);
    position: absolute;
}

.owl-carousel .owl-nav button.owl-prev span {
    z-index: 9;
    top: 30%;
    border-radius: 10px;
    font-size: 46px;
    color: #fff;
    right: -150px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    background: rgb(244,129,63);
    background: linear-gradient(145deg, rgba(244,129,63,1) 0%, rgba(241,85,106,1) 100%);
    position: absolute;
}

@media screen and (max-width: 1060px) {
    .owl-carousel .owl-nav {
        display: none !important;
    }
}

/* 
---------------------------------------------
footer
--------------------------------------------- 
*/

@media (max-width: 992px) {
    footer {
        padding-top: 0px !important;
        margin-top: 0px !important;
    }

        footer .right-content {
            text-align: center;
        }

        footer .footer-content {
            padding: 60px 0px !important;
        }
}

footer {
    margin-top: 60px;
    padding-top: 60px;
    width: 100%;
}

    footer .footer-content {
        padding: 120px 0px;
    }

    footer .right-content {
        align-self: center;
    }

.footer-content .right-content {
    color: #fff;
}

    .footer-content .right-content h2 {
        margin-top: 0px;
        margin-bottom: 30px;
        font-size: 42px;
        text-transform: capitalize;
        font-weight: 700;
        letter-spacing: 1px;
    }

        .footer-content .right-content h2 em {
            font-style: normal;
            color: #d1e4f9;
        }

    .footer-content .right-content p {
        color: #FFF;
    }

    .footer-content .right-content a {
        color: #FFF;
    }

        .footer-content .right-content a:hover {
            color: #FC3;
        }

footer .social {
    overflow: hidden;
}

    footer .social li:first-child {
        margin-left: 0px;
    }

    footer .social li {
        margin: 0px 7.5px;
        display: inline-block;
    }

        footer .social li a {
            color: #fff;
            text-align: center;
            background-color: transparent;
            border: 1px solid #fff;
            width: 44px;
            height: 44px;
            line-height: 44px;
            border-radius: 50%;
            display: inline-block;
            font-size: 16px;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

            footer .social li a:hover {
                background-color: #d1e4f9;
                border-color: #d1e4f9;
                color: #fff;
            }

footer .copyright {
    font-weight: 400;
    font-size: 15px;
    color: #4a4a4a;
    letter-spacing: 0.88px;
    text-transform: capitalize;
}

footer .sub-footer {
    padding: 20px 0px 0px 0px;
    border-top: 1px solid rgba(250,250,250,0.3);
    text-align: center;
}

    footer .sub-footer a {
        color: #FFF;
    }

        footer .sub-footer a:hover {
            color: #FC3;
        }

    footer .sub-footer .b-50 {
    }

    footer .sub-footer p {
        color: #fff;
        font-size: 15px;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

    footer .sub-footer .page_nav {
        list-style-type: none; /* Removes bullet points */
        padding: 0;
        margin: 0;
    }

        footer .sub-footer .page_nav li {
            display: inline-block;
            margin-right: 10px; /* Add spacing between items */
            vertical-align: middle;
        }

@media (max-width: 991px) {
    footer .sub-footer .page_nav {
        padding-bottom: 20px;
    }

    footer .copyright {
        text-align: center;
        padding-bottom: 20px;
    }

    footer .social {
        text-align: center;
        padding-bottom: 20px;
    }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/
#preloader {
    overflow: hidden;
    background-image: url(../images/leub-apps-logo-medium.png), radial-gradient(circle at 29% 55%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 4%,transparent 4%, transparent 44%,transparent 44%, transparent 100%), radial-gradient(circle at 85% 89%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 51%,transparent 51%, transparent 52%,transparent 52%, transparent 100%), radial-gradient(circle at 6% 90%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 53%,transparent 53%, transparent 64%,transparent 64%, transparent 100%), radial-gradient(circle at 35% 75%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 6%,transparent 6%, transparent 98%,transparent 98%, transparent 100%), radial-gradient(circle at 56% 75%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 16%,transparent 16%, transparent 23%,transparent 23%, transparent 100%), radial-gradient(circle at 42% 0%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 3%,transparent 3%, transparent 26%,transparent 26%, transparent 100%), radial-gradient(circle at 29% 28%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 51%,transparent 51%, transparent 75%,transparent 75%, transparent 100%), radial-gradient(circle at 77% 21%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 35%,transparent 35%, transparent 55%,transparent 55%, transparent 100%), radial-gradient(circle at 65% 91%, hsla(35,40%,70%,0.05) 0%, hsla(35,40%,70%,0.05) 46%,transparent 46%, transparent 76%,transparent 76%, transparent 100%), linear-gradient(45deg, rgb(2, 2, 2),rgb(5, 5, 5));
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999;
    color: #fff;
}

    #preloader .jumper {
        left: 100px;
        top: 0;
        right: 0;
        bottom: 0;
        display: block;
        position: absolute;
        margin: auto;
        width: 50px;
        height: 50px;
    }

        #preloader .jumper > div {
            background-color: #fff;
            width: 10px;
            height: 10px;
            border-radius: 100%;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            position: absolute;
            opacity: 0;
            width: 50px;
            height: 50px;
            -webkit-animation: jumper 1s 0s linear infinite;
            animation: jumper 1s 0s linear infinite;
        }

            #preloader .jumper > div:nth-child(2) {
                -webkit-animation-delay: 0.33333s;
                animation-delay: 0.33333s;
            }

            #preloader .jumper > div:nth-child(3) {
                -webkit-animation-delay: 0.66666s;
                animation-delay: 0.66666s;
            }

@-webkit-keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*
---------------------------------------------
document pages — constrain reading width
---------------------------------------------
*/
.terms-conditions .container,
.privacy-policy-area .container,
.parents-guide .container {
    max-width: 820px;
}

/*
---------------------------------------------
mobile adjustments
---------------------------------------------
*/
@media (max-width: 575px) {
    .contact-us h2,
    .about-us h2 {
        font-size: 1.5rem;
    }

    .about-us h1 {
        font-size: 1.75rem;
    }

    .contact-card p {
        min-height: 0;
    }

    .welcome-area h2.display-4 {
        font-size: 2rem;
    }

    #demo-carousel {
        padding-right: 0;
    }

    .contact-us p.lead {
        font-size: 1rem;
    }
}
