@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@import url(bootstrap.min.css);
/*@import url(jquery.vidbacking.css);*/
@import url(animate.min.css);
@import url(owl.carousel.min.css);
@import url(owl.theme.default.css);
@import url(stellarnav.css);
@import url(lightcase.css);

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

:root {
    --font-Poppins-serif: 'Poppins', sans-serif;
    --font-60: min(max(30px, calc(1.875rem + ((1vw - 3.2px) * 1.875))), 60px);
    --font-40: min(max(22px, calc(1.375rem + ((1vw - 3.2px) * 1.125))), 40px);
    --font-30: min(max(22px, calc(1.375rem + ((1vw - 3.2px) * 0.5))), 30px);
    --font-25: min(max(20px, calc(1.25rem + ((1vw - 3.2px) * 0.3125))), 25px);
    --font-22: min(max(18px, calc(1.125rem + ((1vw - 3.2px) * 0.25))), 22px);
    --font-20: min(max(18px, calc(1.125rem + ((1vw - 3.2px) * 0.125))), 20px);
    --font-18: min(max(15px, calc(0.9375rem + ((1vw - 3.2px) * 0.1875))), 18px);
    --font-16: min(max(15px, calc(0.9375rem + ((1vw - 3.2px) * 0.0625))), 16px);
    --font-15: min(max(14px, calc(0.875rem + ((1vw - 3.2px) * 0.0625))), 15px);
    --font-14: min(max(13.5px, calc(0.84375rem + ((1vw - 3.2px) * 0.0313))), 14px);
    --color-1: #FFAA00;
    --color-2: #0C5583;
    --color-dark: #000000;
    --color-white: #fff;
    --para-color: #61657e;
    --para-color-2:#333333;
    --grediwnt-bg: transparent linear-gradient(142deg, #0074C5 0%, #0A3E62 100%) 0% 0%;
    --shadow: 0px 10px 30px 0px rgba(133,66,189,0.1);
    --shadow-2:5px 10px 30px rgba(59, 55, 53, 0.161);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--font-Poppins-serif);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    max-width: 100%;
    width: 100%;
}

summary {
    display: list-item;
}

body,
html {
    height: 100%;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    line-height: 1.4;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: scrollbar;
    background-color: var(--color-white);
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background-color: #e7e7e7;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-1);
    border-left: 1px solid var(--color-white);
    border-radius: 10px;
}

p {
    font-family: var(--font-Poppins-serif);
    font-size: var(--font-16);
    color: var(--color-white);
    line-height: 1.55;
    margin-bottom: 1rem;
    font-weight: 400;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    font-family: var(--font-Poppins-serif);
}

h1,
.h1 {
    font-size: var(--font-60);
    font-family: var(--font-Poppins-serif);
    font-weight: 700;
    color:var(--color-white);
}

h2,
.h2 {
    font-size: var(--font-40);
    
}

h3,
.h3 {
    font-size: var(--font-25);
}

h4,
.h4 {
    font-size: var(--font-20);
    color: var(--color-2);
    position: relative;
    font-weight: 600;
}

h5,
.h5 {
    font-size: var(--font-20);
}

h6,
.h6 {
    font-size: var(--font-18);
}


/*-----Custome Css Area----*/

.sec_padding {
    padding: 80px 0;
}

.sub_title {
    font-size: var(--font-40);
    color: var(--color-2);
    position: relative;
    font-weight: 600;
}

.main_title {
    display: block;
    font-size: var(--font-60);
    /* text-transform: uppercase; */
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-Poppins-serif);
}

.span-one{
    color: var(--color-1);
}
.span-two{
    color: var(--color-2);
}

.para{
    color: var(--para-color);
}

.theme_btn {
    display: inline-block;
    background-color: var(--color-2);
    border: 1px solid var(--color-2);
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 100px;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    position:relative;
}


.theme_btn:hover {
    color: var(--color-white);
    background-color: var(--color-1);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.btn_theme {
    display: inline-block;
    background-color: var(--color-1);
    border: 1px solid var(--color-1);
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 13px 32px;
    font-size: var(--font-15);
    border-radius: 10px;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.btn_theme:hover {
    color: var(--color-white);
    background-color: var(--color-2);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}


/* .btn-tool {
    display: block;
    margin-top: 5px;
}

.tooltip-inner {
    font-size: 13px;
} */

.owl-prev,
.owl-next {
    position: absolute;
    bottom: -95px;
    transform: translateY(-50%);
    left: 45%;
    width: 40px;
    height: 40px;
    line-height: 42px !important;
    font-weight: 600 !important;
    color: var(--color-white) !important;
    font-size: var(--font-20) !important;
    background-color: rgb(22 21 21 / 45%) !important;
    border-radius: 100%;
    transition: all .5s ease;
    justify-content: center;
    align-items: center;
}

.owl-next {
    left: auto;
    right: 45%;
}

.owl-dots {
    text-align: center;
}

.owl-dot.active>span {
    background-color: var(--color-1);
}

/*------Main Header--------*/

.main_header {
    position: relative;
    z-index: 999;
}

.main_header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
    box-shadow: 0px 6px 24px rgb(0 0 0 / 25%);
    z-index: 999;
}


.top_menu{
    background: var(--color-2);
    padding: 10px 0;

}
 .contact_top a{
    color: var(--color-white);
    font-size: var(--font-14);
 }



.navbar-brand {
    position: relative;
    background-color: var(--color-white);
    padding: 0;
    margin: 0;
}

.navbar-brand>img {
    max-width: 115px;
    margin: 5px 0;
}

/* .navbar-brand>p {
    margin: 0;
    position: relative;
    text-align: center;
    width: 100%;
    font-size: 12px;
    color: var(--color-1);
    text-transform: uppercase;
} */

.bottom_header{
    position: absolute;
    width: 100%;
}



.mob_btn{
    display: none;
}

/* ---Main Slider Area Start--- */
.home_banner{
    position: relative;
    z-index: 1;
}

.site_venue{
    position: relative;
    z-index:11;
}

.home_banner::after {
    position: absolute;
    content: '';
    top: -41px;
    left: -59px;
    width: 30%;
    height: 85%;
    border-radius: 30% 50% 40% 60%/70% 90% 50% 35%;
    background-color: rgba(129, 166, 236, 0.267);
    animation: blobs 5s ease-in-out infinite alternate;
    z-index: 1;
}


.home_banner::before {
    position: absolute;
    content: '';
    top: -41px;
    left: -59px;
    width: 50%;
    height: 80%;
    border-radius: 30% 50% 40% 60%/70% 90% 50% 35%;
    background-color: rgb(4 96 159);
    animation: blobs 5s ease-in-out infinite alternate;
}
@keyframes blobs {
    0%{
        border-radius: 60% 40% 70% 30%/60% 30% 70% 40%;
    }
    50%{
        border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
    }
    0%{
        border-radius: 40% 80% 20% 70%/40% 70% 20% 80%;
    }
}

.grid_one{
    right: 10%;
    top: 9%;
    position: absolute;
    width: 5%;
    z-index: 11;
}



.site_venue_box {
    padding: 10px 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    vertical-align: middle;
    align-items: center;
}



/* ---Main Slider Area Close--- --------------------------------------------------*/


/* ---About Area Start--- */
.about_sec{
    position: relative;
    background: url(../images/bg/about-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.about-body{
    box-shadow: var(--shadow);
    background-color: var(--color-white);
    padding: 50px 50px;
    border-radius: 5px;
    position: relative;
}
.about-body::before{
    position: absolute;
    content: '';
    background-color: #e2e2e2;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 5px;
    z-index: -1;
    transform: translateY(-5%);
    rotate: -4deg;
    animation: rotate-90-cw 1s infinite alternate both;
}
  @keyframes rotate-90-cw {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(9deg);
              transform: rotate(9deg);
    }
  }
  

.about_info_box h2::before{
    content: '';
    position: absolute;
    width: 16px;
    height: 107px;
    background-color: var(--color-1);
    top: -49px;
    left: -26px;
}

.about_info_box p{
    color: var(--para-color-2);
    text-align: justify;
}

/* ---About Area Close--- --------------------------------------------------*/


/* ---why-us Area Start--- */
.why_sec{
    position: relative;
}

.why_sec h2::before{
    content: '';
    position: absolute;
    width: 14px;
    height: 50px;
    background-color: var(--color-1);
    top: 0;
    left: 43%;
    transform: translateX(-43%);
}

.why_card{
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 46px 22px;
    cursor: pointer;
    text-align: center;
    background: var(--color-white);
    position:relative;
   overflow: hidden;
   z-index:1;
}

.why_card:before{
        content: "";
    position: absolute;
    top: -20px;
    right: -24px;
    background: rgb(255 170 0 / 58%);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
    z-index: -1;
}

.why_card:hover:before{
    transform:scale(21);
}

.why_card:hover{
    transform: translateY(-5%);
}

.why_card:hover .why_figure img{
    filter:drop-shadow(2px 4px 6px black);
}

.why_figure img{
    width: 120px;
    margin: auto;
}
/* ---why-us Area Close--- --------------------------------------------------*/

/* ---Service_sec Area Start--- */
.service_sec{
    position: relative;
    background: var(--grediwnt-bg);
}

.service_sec h2::before{
    content: '';
    position: absolute;
    width: 14px;
    height: 50px;
    background-color: var(--color-1);
    top: 0;
    left: 39%;
    transform: translateX(-40%);
}

.service_card{
    box-shadow: 0px 4px 22px -12px #031522;
    border-radius: 20px;
    padding: 46px 22px;
    cursor: pointer;
    text-align: center;
    background-color: var(--color-white);
    border: 1px dotted var(--color-white);
}

.service_card:hover{
    background: transparent;
    border: 1px dotted var(--color-white);
    transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
    box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
        margin: 0 14px;
}

.service_card:hover .service_figure{
    transform: translate3d(0%, -30%, 100px) scale(1.5);
}

.service_figure{
    margin-bottom:20px;
}

.service_card:hover h4, .service_card:hover p{
    background: transparent;
    color: var(--color-white);
}


.service_figure img{
    width: 120px;
    margin: auto;
}

.service_card p{
    color: var(--color-2);
}

.card_btn{
    display: inline-block;
    background-color: var(--color-white);
    box-shadow: var(--shadow-2);
    color: var(--color-1);
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.card_btn:hover{
    background:var(--color-1);
    color:var(--color-white);
}

/* ---Service_sec Area Close--- --------------------------------------------------*/

/* ---powerd Area Start--- */
.logo-box{
        display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
    justify-content: space-between;
}
/* ---powerd Area Close--- --------------------------------------------------*/

/* ---Resources Area Start--- */
.resources_sec{
    position: relative;
}

.resources_sec h2::before{
    content: '';
    position: absolute;
    width: 14px;
    height: 50px;
    background-color: var(--color-1);
    top: 0;
    left: 41%;
    transform: translateX(-41%);
}

.resources_figure{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0px 8px 6px 0px rgba(133,66,189,0.1);
    height:250px;
   margin: 6px 8px 22px 8px;
}

.resources_figure:hover img{
    transform: scale(1.5) rotate(-15deg);
    filter: grayscale(1);
}

.resources_figure img{
    height:100%;
    object-fit:cover;
}


/* ---Resources Area Close--- --------------------------------------------------*/

/* ---form Area Start--- */
.form_info .form-list>li {
        position: relative;
    font-size: 15px;
    margin-bottom: 42px;
    color: var(--color-3);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style: none;
    box-shadow: var(--shadow);
    padding: 40px 20px;
    width: 100%;
}
.form_info .form-list>li>i {
        color: var(--color-1);
    font-size: 18px;
    text-align: center;
    background: var(--bs-black);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.form_sec form .form-control {
    display: block;
    width: 100%;
    padding: 0.975rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    box-shadow:none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid #333333;
}

.form_info p{
    color: var(--para-color);
}

.form_sec h4{
    font-size:var(--font-30);
    margin-top:12px;
}

.form_sec h6{
    color: var(--color-2);
}

.social_bottom ul {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 1rem;
}

.social_bottom ul li {
    list-style: none;
}

.social_bottom ul li>a {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: var(--font-15);
    text-align: center;
    z-index: 1;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    background: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.social_bottom ul li a i {
    color: var(--color-white);
}

.form_info .sub_title, form .sub_title{
    color:#333333;
}

/* ---form Area Close--- --------------------------------------------------*/

/* ---footer Area Start--- */
footer{
    position: relative;
    background: url(../images/bg/footer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 20px !important;
}

.quick_link ul{
        column-count: 2;
}

.quick_link ul li {
    list-style: none;
    margin-bottom: 0.5rem;
}

.quick_link ul li a {
    color: var(--color-white);
     font-size: var(--font-14);
}

.quick_link h4{
    font-size:var(--font-30);
    margin-bottom: 28px;
}


.form-group{
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.quick_link .form-group .form-control{
    box-shadow: none;
    background:transparent;
}

.footer_btn{
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
}

hr {
    color: var(--color-white);
}

/* ---footer Area Close--- --------------------------------------------------*/
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.progress-wrap {
    position: fixed;
    right: 4px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    background-color: var(--color-white);
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-2);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap::after {
    position: absolute;
    font-family: bootstrap-icons !important;
    content: "\F843";
    text-align: center;
    line-height: 46px;
    font-size: var(--font-25);
    color: var(--color-2);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}


/* ----bread_crumb-page---- */

.bread_crumb{
    position: relative;
    background: url(../images/bg/banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 380px;
    display: flex;
    align-items: end;
}

.breadcrumb_content .breadcrumb .breadcrumb-item a{
    color: var(--color-white);
}


.breadcrumb-item.active, .inner_page_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-1);
    font-size: var(--font-18);
    font-weight: 600;
}

.breadcrumb_title{
    color: var(--color-white);
    font-weight: 600;
}

/* ----===================bread_crumb-page-close===================---- */




/* ----about-us-page---- */

.inner_about_sec .about_info_box h2::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 54px;
    background-color: var(--color-1);
    top: -13px;
    left: -21px;
}

/* ----===================about-us-page-close===================---- */

/* ----inner-contact-us-page---- */

.form_body{
    box-shadow: var(--shadow);
    padding: 20px 30px;
}

.inner_contact_sec .inner_form-list{
    display: flex;
    gap: 1rem;
}

.inner_contact_sec .inner_form-list li{
    list-style: none;
    box-shadow: var(--shadow);
    text-align: center;
    padding: 20px 20px;
    width: 50%;
}

.inner_contact_sec .inner_form-list li a{
    color: var(--color-dark);
}

.inner_form_info .inner_form-list>li>i {
    color: var(--color-2);
    font-size: 24px;
    left: 0;
    top: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-2);
    margin: 21px auto 25px;
}

.inner_form_info p{
    color: var(--para-color-2);
}

.inner_form_info h4{
    margin-top: 20px;
}

.inner_contact_sec .social_bottom ul li>a {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    font-size: var(--font-18);
    text-align: center;
    z-index: 1;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    color: var(--color-1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--color-1);
    border-radius: 50%;
    background: transparent;
}

.inner_contact_sec .social_bottom ul li a i {
    color: var(--color-white);
    color: var(--color-1);
}

.inner_contact_sec .social_bottom ul li>a:hover{
    transform: rotateX(60deg);
    box-shadow: var(--shadow-2);
}


/* ----===================inner-contact-us-page-close===================---- */

.blog_body{
        background: var(--grediwnt-bg);
    padding: 20px 20px;
    text-align: center;
    min-height: 162px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}


.blog_body h5{
        color: var(--color-white);
}

ul.menu li.current-menu-item>a {
    color: var(--color-1);
}

.breadcrumb_content .breadcrumb{
    margin:0;
}

.breadcrumb_title{
    margin-top:0;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: rgb(255 255 255);
    content: var(--bs-breadcrumb-divider, "/");
}

.inner_contact_sec form input{
    background: transparent;
    box-shadow: var(--shadow);
}


.contact_top{
    color:#fff;
}




.floating-img-1{
    position: absolute;
    top: 15%;
    left: 42%;
    width: 80px;
    border-radius: 12px;
    box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    animation: movebounce 5s linear infinite;
}
.floating-img-2{
    position: absolute;
    top: 38%;
    left: 50%;
    width: 80px;
    border-radius: 12px;
    box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    -webkit-animation: moveleftbounce 5s linear infinite;
    animation: moveleftbounce 5s linear infinite;
}

.floating-img-3{
    position: absolute;
    top: 59%;
    left: 39%;
    width: 80px;
    border-radius: 12px;
    box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    animation: movebounce 5s linear infinite;
}


@keyframes moveleftbounce{
    0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}
50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}
}




@keyframes movebounce {
    0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}
100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

}








