@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none !important;
}

.top-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.4s;
}

header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: all 0.4s;
}

.header {
    width: 100%;
    min-height: 50px;
    background: rgba(1, 0, 102, 0.8);
    backdrop-filter: blur(5px);

}

.header-height {
    transition: all 0.4s;

}

.header-height .top-header {
    min-height: 35px;
}

.header-height .logo img {
    max-width: 110px;
    top: -30px;
}

.logo {
    position: relative;
}

.logo img {
    width: 100%;
    max-width: 150px;
    position: absolute;
    left: 0;
    top: -45px;
    padding: 10px;
    background-color: #010066;
    border-radius: 4px;
    box-shadow: 0px 0px 25px -7px rgba(0, 0, 0, 0.6);
    transition: all 0.4s;
}

.top-menu {
    text-align: right;
}

.top-menu li {
    display: inline-block;
    margin-left: 15px;
}

.top-menu li a {
    color: #333;
    font-size: 16px;
}

.top-menu li a i {
    padding-right: 6px;
}

.mobile-menu-icon {
    display: none;
}

.mobile-close-icon {
    display: none;
}

.menu {
    text-align: right;
}

.menu li {
    display: inline-flex;
    margin-left: 20px;
    min-height: 50px;
    align-items: center;
    position: relative;
}

.menu li a {
    padding: 0 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    display: block;
    transition: all 0.4s;
}

.menu li a i {
    padding-left: 10px;
}

.menu li a.active {
    background-color: #010066;
    color: #fff;
}

.menu li:hover a {
    background-color: #010066;
}

.menu li:hover .dropdown li a {
    background-color: transparent;
}

.dropdown {
    position: absolute;
    top: 65px;
    left: 0;
    text-align: left;
    background-color: #fff;
    width: 200px;
    box-shadow: 0 35px 35px 0 rgba(0, 0, 0, .1);
    border-radius: 0 0 10px 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.menu li:hover .dropdown {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

.dropdown li {
    display: block;
    margin: 0;
    padding: 0;
    min-height: auto;
}

.dropdown li a {
    color: #333;
    padding: 12px 10px;
    display: block;
    border-bottom: solid 1px #ccc;
    line-height: normal;
}

.dropdown li:hover a {
    color: #fff;
    background-color: #010066 !important;
}

.dropdown li:hover:last-child a {
    border-radius: 0 0 10px 10px;
}

.dropdown li:last-child a {
    border-bottom: 0px;
}

.slider {
    width: 100%;
    height: 600px;
    margin-top: 120px;
    margin-bottom: 20px;
}

.slider .carousel-item img {
    width: 100%;
    height: 600px !important;
    object-fit: cover;
}

.inner-sec {
    padding: 50px 0 60px 0;
}

.title h1 {
    font-size: 30px;
    font-weight: 600;
}

.title h6 {
    color: #e76430;
}

.btn-link {
    padding: 7px 10px 7px 15px;
    color: #010066;
    /* background-color: #fff; */
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    border: solid 1px #010066;
}


.btn-link:hover {
    color: #fff;
    background-color: #010066;
    box-shadow: 0 4px 20px 0 rgba(1, 0, 102, .3);
}


.about-bg {
    background: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.abt-img {
    width: 100%;
    text-align: right;
    padding-right: 30px;
    position: relative;
}

.abt-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
}

.abt-play-icon {
    position: absolute;
    z-index: 10;
    right: 15%;
    top: 80%;
}

.abt-play-icon span i {
    z-index: 3;
    position: relative;
    font-size: 40px;
    color: #e76430;
    padding-left: 5px;
}

.abt-play-icon span {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
}

.abt-play-icon span:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.abt-play-icon span:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.bg-grey {
    background-color: #f3f3ff;
}

.bg-blue {
    background-color: #010066;
}

.counter-cont {
    width: 100%;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: solid 1px #060394;
}

.counter-icon {
    font-size: 40px;
    color: #e7ebfd
}

.counter-number {
    font-size: 30px;
    color: #fff;
}

.counter-cont h5 {
    font-weight: 400;
    margin-top: 10px;
    color: #e7ebfd;
}

.video-content {
    padding: 10px 10px 15px 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.video-content iframe {
    border-radius: 10px;
    width: 100%;
    width: 100% !important;
    height: 250px !important;
}

.video-title {
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-title h1 {
    font-size: 18px;
    padding-top: 5px;
    padding-left: 5px;
    color: #010066;
    font-family: 'Rubik', sans-serif;
}

.image-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.blog-cont h1 {
    font-size: 18px;
    margin: 15px 0;
    line-height: 28px;
}

.blog-cont .btn-link {
    background: transparent !important;
}

.blog-cont .btn-link:hover {
    background: #010066 !important;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.enq-btn {
    background-color: #e76430;
    color: #fff !important;
    padding: 7px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.enq-btn:hover {
    background-color: #010066;
}

footer {
    width: 100%;
    background-color: #000024;
    padding: 30px 0 0;
    color: #e8e8e8;
    /* background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: contain; */
}

footer p {
    margin-top: 17px;
}

footer a {
    color: #e8e8e8;
}


.f-logo img {
    max-width: 100px;
    height: 58px;
    border-radius: 3px;
    border: solid 1px #a7b4f1
}

.f-logo img:first-child {
    margin-right: 6px;
}

.f-links {
    list-style: none;
    margin-top: 15px;
}

.f-links li {
    margin-bottom: 10px;
}

.f-links li a {
    color: #e8e8e8;
    transition: all 0.3s;
}

.f-links li a:hover {
    color: #e76430
}

.f-links li a i {
    padding-right: 10px;
}

.f-links li i {
    padding-right: 10px;
}

.f-nav li {
    position: relative;
    padding-left: 15px;
}

.f-nav li::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #e76430;
    left: 0;
    top: 9px;
}

.f-social {
    list-style: none;
    margin-top: 15px;
}

.f-social li {
    display: inline-block;
    margin-right: 15px;
}

.f-social li a {
    font-size: 22px;
    transition: all 0.3s;
}

.f-social li a:hover {
    color: #e76430
}

.footer-btm {
    width: 100%;
    border-top: solid 1px #020064;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
}

.footer-btm p {
    padding: 0px 20px 20px 20px;
    font-size: 14px;
    color: #a7b4f1;
}

.f-btn {
    background-color: #e76430;
    color: #fff;
    transition: all 0.3s;
}

.f-btn:hover {
    background-color: #e76430;
    color: #fff;
}

.enq-cont {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e76430;
    color: #fff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-top: 2px;
    box-shadow: 0px 6px 23px 0px rgba(231, 100, 48, 0.62);
    z-index: 50;
}

.inner-title-sec {
    width: 100%;
    min-height: 350px;
    margin-top: 100px;
    background: url(../images/inner-banner.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inner-title-sec::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.inner-title {
    z-index: 10;
    color: #fff;
}

.inner-title h1 {
    color: #fff;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: #fff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.contact-cont a {
    color: #333;
}

.contact-cont label {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.contact-cont input.form-control {
    height: 40px;
}

.contact-cont .form-control {
    width: 100%;
    max-width: 90%;
}

.contact-address {
    padding: 20px;
    background-color: #e7ebfd;
    border-radius: 10px;
}


.contact-address img {
    max-width: 100px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.blog-cont p {
    text-align: left;
    margin-top: 5px;
    color: #333;
    line-height: 26px;
    font-size: 16px;
}

.blog-cont span {
    color: #333;
    font-size: 16px;
    display: block;
    line-height: 28px;
}

.blog-btn {
    padding: 5px 10px;
    border-radius: 4px;
    border: solid 1px #010066;
    color: #010066;
    transition: all 0.3s;
}

.blog-btn:hover {
    color: #fff;
    background-color: #010066;
}

.blog-inner-img img {
    width: 100%;
    border-radius: 10px;
    border: solid 1px #f0f0f0;
    margin-bottom: 15px;
    height: 500px;
    object-fit: cover;
    object-position: top;
}

.blog-recent {
    background-color: #e7ebfd;
    border-radius: 10px;
}

.blog-recent h2 {
    font-size: 20px;
    padding: 15px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-recent ul li {
    border-bottom: solid 1px #fff;
    position: relative;
    padding-left: 10px;
}

.blog-recent ul {
    margin: 5px 0 0;
    list-style: none;
    padding: 0;
}

.blog-recent ul li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 19px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #010066;
}

.blog-recent ul li a {
    display: block;
    padding: 10px 10px 10px 20px;
    color: #000;
    font-size: 16px;
    transition: all 0.3s;
}

.blog-recent ul li a:hover {
    padding-left: 30px;
    color: #010066;
}

.post-date {
    color: #666;
    font-size: 14px;
    padding-bottom: 10px;
    display: block;
}

@media (max-width:1199px) {
    .menu li {
        margin-left: 5px;
    }
}

@media (max-width:992px) {
    .abt-img {
        text-align: center;
    }

    .abt-play-icon {
        right: 50%
    }

    .top-header {
        display: none;
    }

    .logo img {
        top: 0px;
    }

    .header-height .logo img {
        top: 0;
    }

    .mobile-menu-icon {
        display: block;
        color: #fff;
        position: fixed;
        top: 5px;
        right: 10px;
        font-size: 30px;
    }

    .menu {
        position: fixed;
        width: 100%;
        background-color: #fff;
        height: 100vh;
        left: -100%;
        right: 0;
        top: 0;
        z-index: 10;
        text-align: left;
        padding-top: 50px;
        transition: all 0.4s;
        overflow-y: scroll;
    }

    .menu-show {
        display: block;
        left: 0;
    }

    .menu li {
        display: block;
        border-bottom: solid 1px #ccc;
        margin-left: 0;
    }

    .menu li a {
        color: #333;
        padding-left: 20px;
    }

    .menu li:hover a {
        color: #333;
        background: #fff;
    }

    .dropdown {
        position: static;
        width: 100%;
        border-radius: 0;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        background-color: #f0f0f0;
        display: none;
    }

    .dropdown-show {
        display: block;
    }

    .dropdown li a {
        color: #333;
        border-radius: 0;
    }

    .menu li:hover .dropdown li a {
        color: #333;
    }

    .dropdown li:hover:last-child a {
        border-radius: 0;
    }

    .menu li:hover .dropdown li a {
        color: #333;
        background-color: #f0f0f0 !important;
    }

    .mobile-close-icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 25px;
        color: #e76430;
    }

    .title h1 {
        font-size: 24px;
    }

    .enq-cont {
        bottom: 6px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .counter-cont {
        border-right: 0px;
        border-bottom: solid 1px #060394;
        padding-bottom: 20px;
    }

    .slider {
        margin-top: 65px;
    }

    .inner-title-sec {
        margin-top: 50px;
    }

    .contact-cont .form-control {
        max-width: 100%;
    }

    .contact-address {
        margin-bottom: 20px;
    }
}