@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;800&display=swap');

/* Custom color */
:root {
    --blue-primary: #2c3f7e;
    --blue: #00aeef;
    --blue-light: rgb(239 246 255 / 1);
    --blue-light-opacity: rgb(239 246 255 / .6);
    --red-primary: #ee1d23;
    --black: #000000;
    --gray-black: #231f20;
    --white: #fff;
    --para-text: rgb(36, 38, 42);
    --body-font: 'Montserrat', sans-serif;
}

/* common css */

body {
    font-family: var(--body-font);
    font-size: .9rem;
    line-height: 1.65;
}

p {
    color: var(--para-text);
    text-align: justify;
}

a:link,
a:visited {
    text-decoration: none;
}

a {
    color: inherit;
    transition: .2s ease;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ol,
ul {
    list-style: inside none none;
    margin: 0;
    padding: 0;
}

/*back to up button section*/
.go-top {
    display: none;
    position: fixed;
    right: 1.5rem;
    bottom: 10rem;
    z-index: 9999;
    background-color: var(--red-primary);
    border: .1rem solid var(--white);
    color: var(--white);
    text-align: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.go-top.show {
    bottom: 1rem;
}

.go-top i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.go-top i:before {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800 !important;
}

.dropdown-toggle::after {
    display: none;
}

/* common css */
textarea {
    resize: none;
}

.form-control,
.form-control:hover,
.form-control:focus,
.form-select,
.form-select:hover,
.form-select:focus {
    height: 3rem;
    background-color: var(--blue-light-opacity)
}

.form-check-input {
    width: 1.3em;
    height: 1.3em;
    border-color: var(--blue-primary);
}

.form-check-input:checked {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.text-blue-primary {
    color: var(--blue-primary);
}

.text-blue {
    color: var(--blue);
}

.text-blue-light {
    color: var(--blue-light);
}

.text-red {
    color: var(--red-primary);
}

.text-gray-black {
    color: var(--gray-black);
}

.bg-blue-primary {
    background-color: var(--blue-primary);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-blue-light {
    background-color: var(--blue-light);
}

.bg-red {
    background-color: var(--red-primary);
}

.bg-gray-black {
    background-color: var(--gray-black);
}

.w-70 {
    width: 70%;
}

.border-line {
    width: 10%;
    height: .3rem;
}

.common-heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.common-btn:hover {
    border-radius: 10rem !important;
    transition: all .3 ease-in-out;
    transition-duration: 300ms;
}

.bg-gradient-custom {
    background-image: linear-gradient(to right, var(--blue-primary), var(--red-primary));
}

.submit-btn {
    background: var(--red-primary);
}

.submit-btn:hover,
.input-container:hover .submit-btn {
    background: var(--red-primary);
    margin-right: .2rem !important;
}

.common-btn-gradient {
    background-image: linear-gradient(to right, var(--blue-primary), var(--red-primary));
}

.common-btn-gradient:hover {
    background-image: linear-gradient(to right, var(--red-primary), var(--blue-primary));
    border-radius: 50px !important;
}

.border-bottom-dashed {
    border-bottom: 1.2px dashed var(--blue-primary);
}

.border-dashed {
    border: 2px dashed var(--blue-primary);
}

.border-dashed-1 {
    border: 1px dashed var(--blue-primary);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* header css start*/
/*.navbar-brand img {*/
/*    width: 14rem;*/
/*}*/

.navbar-toggler-icon {
    background-image: none;
    width: 3rem;
    height: 3rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transition: all .3s ease-in-out;
    transition-duration: 300ms;
}

.dropdown-item:hover {
    background-color: var(--blue-primary);
    color: var(--white);
}

/* end */
/* home page start */
.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
}

.carousel-control-prev {
    left: 2%;
}

.carousel-control-next {
    right: 2%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 1.3rem !important;
    height: 1.3rem !important;
}

/*  */
/* brochure section */
.brochure-card:hover {
    background-color: var(--blue-light);
}

.brochure-card:hover .common-btn {
    border-radius: 10rem !important;
    transition: all .3 ease-in-out;
    transition-duration: 700ms;
}

/* event-hightlight */
.event-box {
    width: 3.5rem;
    height: 3.5rem;
}

/* logos */
.marquee-img-box {
    width: 8rem;
    height: 5rem;
}

/* exibitions */
.exhibition-img {
    height: 12rem;
    transition: .3s;
}

.logos .owl-nav {
    position: absolute;
    top: -4rem;
    right: 2rem;
    display: flex !important;
    justify-content: space-between;
    width: 7%;
    border-radius: 0.5rem;
    gap: 1rem;
}

.owl-carousel .owl-nav.disabled {
    display: block;
}

.logos .owl-carousel .owl-nav .owl-next,
.logos .owl-carousel .owl-nav .owl-prev {
    width: 3rem;
    height: 3rem;
}

/* footer */
.footer {
    margin-top: 10%;
    padding-top: 8rem;
}

.footer-logo img {
    width: 18rem;
}

.organizer-logo {
    width: 7rem;
}

.svg-container {
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    color: #eb2a33;
}

/* inner page css */
.inner-page-bg {
    height: 12rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

/* exhibition-profile */
.exhibit-list {
    width: 49%;
}

.exhibit-list:before {
    position: absolute;
    content: '◼';
    left: 0;
    color: var(--blue-primary);
}

/* vendor */
.vendor-list li:last-child {
    border: none !important;
}

/* media query start */
@media (max-width:767px) {
    #nav-menu {
        position: absolute;
        top: 99%;
        background: var(--black);
        left: 0px;
        right: 0px;
        padding: 1rem;
        z-index: 9;
    }

    .navbar-brand img {
        width: 8rem;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-menu {
        display: none;
    }

    /* carousel */
    #exhibition {
        margin-top: 6rem !important;
    }

    #exhibition .owl-nav {
        top: -5rem;
        width: 30%;
        right: 0;
    }

    .exhibition-img {
        height: 18rem !important;
        transition: .3s;
    }

    .exhibit-list {
        width: 100%;
    }

    .footer {
        margin-top: 30%;
    }
}