/* input(468,1): run-time error CSS1019: Unexpected token, found '@import'
input(468,9): run-time error CSS1019: Unexpected token, found 'url('responsive.css?v=YMWNcXhyjZuKDPELGtcwpqqBO2A')' */
a, a:focus, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}

.text-indigo {
    color: var(--bs-indigo)
}

.text-teal {
    color: var(--bs-teal)
}

.text-pink {
    color: var(--bs-pink)
}

.fg-primary {
    color: var(--primary-color);
}


.btn {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 25px;
    height: 60px;
    line-height: 64px;
    position: relative;
    transition: .4s;
    border-radius: 5px;
    z-index: 1;
    color: #fff;
    border: none;
}

    .btn.btn-primary {
        background-color: var(--primary-color);
    }


.btn_submit:disabled{
    background-color:#ddd;
  
}



html {
    font-size: 17px;
    font-family: 'Sora', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: var(--primary-color);
}

body {
    color: var(--body-color);
    font-family: 'Sora', sans-serif;
}

.small-text{
    font-size:12px;
}


section.page-title {
    background-position: center left;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    color: #fff;
    font-size: 2rem;
    background-color: #454545;
    font-size: .9rem;
    text-transform: uppercase;
    background-image: url('/assets/images/page-title-bg-default.jpg?v=ACw0GlqltlOBA0gTqOeJdNt0EDc');
}

    section.page-title:before {
        content: '';
        background-color: #000;
        opacity: .6;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    section.page-title .container {
        z-index: 1;
        position: relative;
    }

    section.page-title ul {
        color: #fff;
        list-style: none;
        margin: 0;
        padding: 0;
        margin-left: 5px;
    }

        section.page-title ul li {
            display: inline-block;
            text-transform: none;
        }

            section.page-title ul li:not(:first-child):before {
                content: "\00BB";
                margin: 0px 5px;
            }


header.fixed {
    position: fixed;
    top:0;
    left:0;
    right:0;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    background:#fff;
    animation: slideDown 0.35s ease-out;
    z-index:99;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

section.topbar {
    font-size: .9rem;
    padding: 5px 0px;
    background-color: var(--primary-color);
    color: #fff;
}

section.page-body {
    padding: 80px 0px;
    font-size: .85rem;
    line-height: 1.5rem;
}


    section.page-body .sidebar {
        background-color: #f2f2f2;
        padding: 25px 20px;
        border-radius: 5px;
        font-size: .9rem;
    }

        section.page-body .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            section.page-body .sidebar ul li:not(:last-child) {
                border-bottom: 2px solid #dadada;
            }

            section.page-body .sidebar ul li a {
                display: block;
                margin: 20px;
                font-weight: 500;
                transition: all ease .3s;
            }

                section.page-body .sidebar ul li a:hover {
                    color: var(--primary-color);
                    padding-left: 10px;
                }



section.topbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    section.topbar ul li {
        display: inline-block;
        margin-right: 20px;
    }

section.header {
    padding: 10px 0px;
}

    section.header img.logo {
        max-height: 60px;
    }

    section.header .navbar-toggle {
        display: block;
        height: 100%;
        color: var(--body-color);
    }

        section.header .navbar-toggle button {
            width: 48px;
            height: 48px;
            border: none;
            background: none;
            font-size: 2.5rem;
            color: var(--body-color);
        }


    section.header .info {
        display: flex;
        justify-content: end;
        height: 48px;
        margin-top: 6px;
        font-size: .8rem;
        font-weight: 500;
    }

        section.header .info:before {
            font-family: bootstrap-icons !important;
            width: 48px;
            height: 48px;
            background-color: var(--primary-color);
            margin-right: 10px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            font-size: 1.5rem;
            color: #fff;
        }

        section.header .info.contact:before {
            content: '\F414';
        }

        section.header .info.address:before {
            content: '\F3E8';
        }








footer {
    background-color: #0E2A46;
    background-image: url(/assets/images/footer-bg.jpg?v=veyT73rHKDWe-_frNtybFEA0YNI);
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255,255,255, .7);
    font-size: .9rem;
}

    footer h3 {
        font-size: 1.1rem;
    }

    footer .logo {
        max-height: 70px;
        margin-bottom: 20px;
        padding: 10px;
        border-radius: 5px;
        background-color: #fff;
    }

    footer ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        footer ul:not(.social) li:before {
            content: "\00BB";
            margin-right: 5px;
        }

        footer ul.social li {
            display: inline-block;
            margin-right: 10px;
        }

            footer ul.social li a {
                display: block;
                color: var(--body-color);
                background-color: #fff;
                border-radius: 100%;
                height: 32px;
                width: 32px;
                text-align: center;
                line-height: 32px;
                vertical-align: central;
            }

                footer ul.social li a:hover {
                    color: #fff;
                    background-color: var(--primary-color);
                }

    footer a:hover {
        color: var(--primary-color);
    }



@keyframes itupdown {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes itswing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg)
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg)
    }
}


section.menubar {
    background-color: #eaeaea;
    color: #fff;
    font-size: .9rem;
}

    section.menubar h6 {
        font-size: .9rem;
        font-weight: bold;
        border-bottom: 1px solid var(--primary-color);
        padding-bottom: 8px;
    }

    section.menubar .navbar,
    section.menubar ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    section.menubar a {
        white-space: nowrap;
        font-size: .9rem;
        display: block;
        font-weight: 500;
    }


    section.menubar .dropdown-menu {
        top: 140%;
        display: block;
        opacity: 0;
        visibility: hidden;
        margin-top: 0;
        border: none;
        left: 10px;
        border-radius: 12px;
        box-shadow: 0 0 50px 0 rgb(32 32 32/15%);
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        border-top: 3px solid var(--primary-color);
        transition: all ease .3s;
    }

        section.menubar .dropdown-menu::before {
            content: "◆";
            position: absolute;
            left: 20px;
            top: -21px;
            color: #fff;
            font-size: 30px;
            font-weight: 700;
            height: 22px;
            overflow: hidden;
        }


        section.menubar .dropdown-menu.mega-menu {
            width: 60vw;
        }



        section.menubar .dropdown-menu li:hover {
            background-color: #fafafa;
            color: var(--primary-color);
        }

        section.menubar .dropdown-menu li {
            border-bottom: 1px solid #fafafa;
            padding: 7px 15px;
        }


            section.menubar .dropdown-menu li:last-child {
                border-bottom: none;
                border-bottom-left-radius: 12px;
                border-bottom-right-radius: 12px;
            }


    section.menubar .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }


#sideMenubar {
    font-size: .8rem;
}


/* Home Page News Section */

section.home.news .owl-stage {
    display: flex;
    justify-content: space-between;
}

section.home.news .owl-stage .item{
    height:100%;
}

section.home.news .owl-stage .owl-item{
    margin-left:8px;
}


/* Home Page News Section */
@import url('responsive.css?v=YMWNcXhyjZuKDPELGtcwpqqBO2A');
@media (max-width:767px) {

    section.home.banner .slider .slide .slide-content .slide-title {
        font-size: 2rem;
    }

    section.home.banner .slider .slide {
        padding-top: 40px;
        padding-bottom: 40px;
    }


    .topbar ul > li {
        font-weight: 600;
    }

   /* .desktop-pdf{
        display:none;
    }

    .mobile-pdf{
        display:block;
    }*/
}

@media(min-width:768px){
    /*.desktop-pdf {
        display: block;
    }

    .mobile-pdf {
        display: none;
    }*/
}

@media(min-width:992px) {
    section.contact-us.page-body form {
        padding-left:40px;
    }
}
