::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 6px
}

::-webkit-scrollbar-thumb {
    background: #2c8dbd;
    border-radius: 10px
}

::-webkit-scrollbar-thumb:hover {
    background: #0278ff
}

.text-primary {
    color: #2c8dbd !important;
}

.bg-primary {
    background-color: #2c8dbd !important;
}

.link-dark:hover {
    color: #2c8dbd !important;
}

.newsreader {
    font-family: "Newsreader", serif;

}

.close-button,
.flag {
    cursor: pointer
}

.form-control:focus {
    box-shadow: none !important;
}

.goog-te-gadget,
.goog-te-gadget img {
    display: none !important
}

#google_element {
    display: block !important;
    visibility: visible !important
}

.flag-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
}

body {
    font-family: Montserrat, sans-serif;
    overflow-x: hidden !important
}

.font-roboto {
    font-family: Roboto, sans-serif;
    font-weight: 400
}


.navbar-toggler {
    border: none !important
}

.nav-item {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    /* space for the underline */
}

.nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: rgb(43, 149, 219);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.banner {
    height: 660px;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item a:hover {
    color: rgb(43, 149, 219);
}

.dropdown-item {
    color: rgba(0, 0, 0, .63)
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #e5e5e5 !important;

}

.accordion-button:not(.collapsed),
.btn-close:focus {
    color: #0095D4 !important
}

@media (max-width:991px) {
    #navbarNav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        z-index: 1050;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
    }

    .navbar-collapse.show {
        display: block !important
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        width: 100% !important
    }

    .drop-industry {
        font-size: 13px !important
    }
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    left: -230px !important;
    width: 580px
}

@media (min-width:992px) {
    .dropdown {
        position: relative
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity .5s, transform .5s;
        pointer-events: none
    }

    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto
    }


}

@media (max-width:992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible
    }

    .dropdown-menu {
        transition: opacity 10s ease-in-out;
        opacity: 0;
        visibility: hidden
    }

    .banner {
        height: auto !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        bottom: 55% !important;
        display: none !important;
    }
    .carousel-indicators{
        bottom: 53% !important;
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 2s
}

.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 1s, transform 1.5s
}

.fade-in-left {
    transform: translateX(-100px)
}

.fade-in-right {
    transform: translateX(100px)
}

.fade-in-from-below-1,
.fade-in-from-below-2,
.fade-in-from-below-3,
.fade-in-from-below-4,
.fade-in-from-below-5 {
    opacity: 0;
    transform: translateY(100px)
}

.fade-in-from-below-1 {
    transition: opacity 1s, transform 1s
}

.fade-in-from-below-2 {
    transition: opacity 1s .2s, transform 1s .2s
}

.fade-in-from-below-3 {
    transition: opacity 1s .3s, transform 1s .3s
}

.fade-in-from-below-4 {
    transition: opacity 1s .4s, transform 1s .4s
}

.fade-in-from-below-5 {
    transition: opacity 1s .5s, transform 1s .5s
}

.fade-in.active {
    opacity: 1
}

.fade-in-left.active,
.fade-in-right.active {
    opacity: 1;
    transform: translateX(0)
}

.fade-in-from-below-1.active,
.fade-in-from-below-2.active,
.fade-in-from-below-3.active,
.fade-in-from-below-4.active,
.fade-in-from-below-5.active {
    opacity: 1;
    transform: translateY(0)
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotate {
    animation: rotate360 7s linear infinite;
}

/* deltamarine */

.card-img-container {
    position: relative;
    overflow: hidden;

}

.card-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content {
    flex-grow: 1;
    margin-top: -30px;
    z-index: 1;

}

/* social icons */
.social-icons {
    position: fixed;
    bottom: 30%;
    right: -200;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 999;
    animation: 15s infinite slideInOut;
}

@keyframes slideInOut {

    0%,
    100%,
    80% {
        right: -200px;
        opacity: 0
    }

    10%,
    70% {
        right: 0;
        opacity: 1
    }
}

.social-icons .icon {

    transition: transform .2s;
    padding: 4px 8px;
    background: #fff
}

.social-icons .icon img {
    width: 100%;
    height: auto;
    display: block
}

.social-icons .icon:hover {
    transform: scale(0.9)
}

#backToTopBtn {
  display: none;
  z-index: 1050;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: auto;
    display: flex;
    bottom: 24%;
    top: auto;
}

.carousel-control-prev {
    right: 80px;
    left: auto;
}

.carousel-control-next {
    right: 50px;
}
.carousel-indicators {
    bottom: 24%;
}


.carousel-indicators [data-bs-target] {
    background-color: #ffffff;
    width: 50px !important;
    height: 4px !important;
    border-radius: 0px !important;
    opacity: 0.6;
    right: 80px !important;
    left: auto !important;
    bottom: 24% !important;
}

.carousel-indicators .active {
    opacity: 1;
  }