*,
*::before,
*::after {
    outline: none;
}
ul {
    list-style: none;
}
a {
    text-decoration: none !important;
    color: var(--text-color);
}
.cta {
    background: var(--lite-green);
    outline: none;
    padding: 12px 25px;
    margin-left: 5%;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    transition: .3s ease-in-out;
    z-index: 10;
}
.cta:hover {
    opacity: .8;
}
.card {
    border: none !important;
}
.lite-green {
    color: var(--lite-green);
}
.text-color {
    color: var(--text-color);
}
:root {
    --lite-green: hsl(73, 98%, 38%);
    --color-blue: hsl(227, 53%, 26%);
    --lite-gray:  hsl(0, 0%, 85%);
    --dark-green: hsl(130, 46%, 21%);
    --text-color: hsl(0, 1%, 26%);
    --box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
body {
  background: #F5F6FF;
  color: var(--text-color);
  font-size: 16px;
  font-family: 'Poppins', sans-serif !important;
  overflow-x: hidden;
}
section .heading h2 {
    font-weight: 700;
    font-size: 32px;
    padding: 2rem 1rem;
}
.social-icons a {
    margin: 0 8px;
    color: var(--lite-green);
}
.social-icons a:hover {
    color: var(--dark-green);
}

nav {
    border-bottom: 1px solid rgba(132, 127, 127, .5);
    background: #fff;
}
nav .navbar-nav .nav-item {
    margin: .6rem;
}
nav .navbar-nav .nav-item .nav-link {
    color: var(--color-blue);
    font-weight: 600;
    transition: .3s ease-in-out;
}
nav .navbar-nav .nav-item:hover .nav-link {
    color: var(--lite-green);
}
nav .navbar-nav .nav-item .nav-link.active {
    color: var(--lite-green);
}
button.navbar-toggler {
    color: var(--lite-green);
    font-size: 1.6rem;
}
button.navbar-toggler:focus {
    border: none;
    outline: none;
}
/* hero carousel*/
header{
    margin-top: -12px;
}
header .item {
    height: 100vh;
    position: relative;
    margin-top: 8rem;
}
header .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
header .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}
header .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}
header .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid var(--primary-color);
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
header .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
    text-shadow: 0 2px 3px var(--color-blue);
}
header .item .cover .header-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: var(--color-blue);
    width: 60%;
    text-shadow: 1px 1px 8px white;
}
header .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: var(--text-color);
    width: 40%;
}
header .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}
header .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}
header .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}
header .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}
header .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    display: block;
    z-index: 1000;
    border-radius: 0;
}
header .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}
header .owl-nav .owl-prev:focus {
    outline: 0;
}
header .owl-nav .owl-prev:hover {
    background: #000 !important;
}
header .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    display: block;
    z-index: 1000;
    border-radius: 0;
}
header .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}
header .owl-nav .owl-next:focus {
    outline: 0;
}
header .owl-nav .owl-next:hover {
    background: #000 !important;
}
header:hover .owl-prev {
    left: 0px;
    opacity: 1;
}
header:hover .owl-next {
    right: 0px;
    opacity: 1;
}
.owl-theme .owl-dots {
    position: absolute;
    top: 50%;
    z-index: 9;
    right: 20px;
    display: flex;
    flex-direction: column;
}
.owl-theme .owl-dots .owl-dot span {
    width: 20px !important;
    height: 20px !important;
    background: var(--lite-green) !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--dark-green) !important;
    border: 1px solid #fff !important;
}
#item-two{
    display: flex;
}
.trading {
    color: #fff !important;
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
}
/* hero carousel*/
/* Second section */
.blue-bg-section {
    background: linear-gradient(#14235c 0%, rgba(20, 35, 92, 0.9006) 50%,rgba(20, 35, 92, 0.8) 100%);
    min-height: 600px;
    position: relative;
    padding-bottom: 4rem;
}
.blue-bg-section #read-more {
    position: absolute;
    right: 0;
    bottom: 0;
    background: hsl(228, 35%, 50%);
    color: #fff;
    padding: 20px 35px;
    border-top-left-radius: 15px;
    font-size: 18px;
    transition: .3s ease-in-out;
}
.blue-bg-section #read-more:hover {
    opacity: .8;
}
.tab-container {
    max-width: 1200px;
}
.nav-tabs {
    border-bottom: none !important;
}
.nav-tabs button {
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
}
.nav-tabs button:hover {
    color: var(--lite-green);
    border: none !important;
    border-bottom: 1px solid #fff !important;
}
.nav-tabs button.active {
    color: #fff !important;
    border: none !important;
    border-bottom: 1px solid #fff !important;
}
/* Second section */
/* Tabs on home page */
.tab-pane p {
    font-size: 18px;
    font-weight: 400;
}
/* Tabs on home page */
/* Services section */
section.services {
    background-image: url(../assets/images/services_section.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    margin-bottom: 0;
}
.services-card {
    background: #f5f5f5;
    border-radius: 10px;
    color: var(--color-blue);
    text-align: center;
    padding: 20px;
    margin: 20px;
}
.services-card ul {
    margin: 0;
    padding: 0;
}
.services-card ul li {
    margin: 10px 0;
}
.services-card ul li span.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-blue);
    display: inline-block;
    margin: 0 5px 2px;
}
.services-card h5 {
    font-weight: 700;
    color: var(--lite-green);
}
/* Services section */
/* Clients section */

.clients .wrapper .clients-carousel {
    max-width: 1440px;
    margin: auto;
    padding: 0 30px;
    position: relative;
}
.clients .wrapper .clients-carousel .card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
    margin: 20px 0;
    border: none;
    padding: 10px 0;
}
.clients .wrapper .clients-carousel .card img {
    width: 150px;
    height: 100%;
}
.clients .wrapper .owl-nav button.owl-prev,
.clients .wrapper .owl-nav button.owl-next {
    position: absolute;
    font-size: 5rem !important;
    color: var(--color-blue) !important;
    top: 20% !important;
}
.clients .wrapper .owl-nav button.owl-next {
    right: 2rem !important;
}
section.services .heading h2 {
   color: var(--color-blue);
}
.events {
    width: 100%;
    min-height: 600px;
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../assets/images/zimLef44.jpg);
    background-repeat:no-repeat;
    background-size: cover;
}
/* Clients section */
/* Events section */
.sub-section {
    margin: -15rem auto auto auto;
}
.sub-section .swiper-container {
    max-width: 1070px;
    padding-bottom: 50px;
    overflow-x: hidden;
    margin: 0 auto;
}

.swiper-wrapper .swiper-slide {
    border: 2px solid var(--lite-green);
    max-width: 400px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}
.swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-wrapper .swiper-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(16, 23, 87, 0.7);
    display: grid;
    place-content: center;
    color: #fff;
    text-align: center;
}
 .overlay p.hidden-text {
    visibility: hidden;
    transition: .3s ease-in-out;
}
.overlay:hover p.hidden-text {
    visibility: visible;
}
.swiper-container > .swiper-wrapper{
    transition-timing-function : linear;
}
/* Events section */
/* Team section */

.team .wrapper .team-carousel {
    max-width: 1440px;
    margin: auto;
    padding: 30px 30px 30px 100px;
}
.team-carousel {
    position: relative;
}

.team-carousel .card {
    border: none;
    max-width: 300px;
    background: none;
}
.team-carousel .card .avatar {
    width: 220px;
    margin: auto;
    border: 2px solid var(--lite-green);
    border-radius: 50%;
}
.team-carousel .card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-carousel .card h5 {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-blue);
}
.team-carousel .card p {
    font-size: 14px;
}
.team-carousel .owl-nav {
    position: absolute;
    top: 35% !important;
    font-size: 3rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-carousel .owl-nav button.owl-next {
    margin-right: 15%;
}

.team-carousel .owl-carousel button.owl-dot {
    background: var(--lite-green) !important;
}
.team-carousel .owl-carousel button.owl-next {
    position: absolute;
    right: 0;
}
    /* Team section */
/* Blog section */
.blog .card {
    border: none;
    padding: 4px;
    margin: 20px;
    background: none;
    transition: .3s ease-in-out;
}
.blog .card:hover {
    box-shadow: var(--box-shadow);
}

.blog .card .category {
    background: var(--lite-green);
    color: var(--color-blue);
    margin: 4px 4px 4px 0;
    font-weight: 500;
    padding: 5px;
    width: 150px;
    font-size: 16px;
}
.blog .card .card-footer {
    border: none;
    border-top: 1px solid #333;
    color: var(--lite-green);
    padding-left: 0;
    background: none;
}

/* Blog section */
/* Testimonials section */
.team {
    min-height: 60vh;
}
.testimonials {
    position: relative;
    background: linear-gradient(rgba(16, 23, 87, 0.3), rgba(16, 23, 87, 0.9)), url(../assets/images/qcgc.jpg);
    width: 100%;
    height: 100vh;
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
}
.blue-container {
    background: var(--color-blue);
    height: 50vh;
    margin-top: 5rem;
    position: relative;
}
.testimonials .wrapper {
    width: 900px;
    margin-top: -15%;
    margin-left: -35%;
}
.testimonial-card {
    height: 380px;
    max-width: 300px;
}
.testimonial-carousel {
    max-width: 900px;
}
.testimonial-card .card-img {
    position: relative;
}
.testimonial-card span {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--lite-green);
    border-radius: 50%;
    bottom: -20px;
    left: 10px;
    display: grid;
    place-content: center;
    color: #fff;
}
.blue-container .big-quote {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--lite-green);
    color: #fff;
    display: grid;
    place-content: center;
    top: -40px;
    left: 50px;
}
.blue-container .big-quote i {
    font-size: 34px;
}
.testimonial-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
 #testimonials {
    position: absolute;
    left: 50%;
    top: 35%;
}
.testimonial-card p {
    font-size: 14px;
}
.testimonial-card h5 {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-blue);
}
.testimonial-card h6 {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-blue);
}
.testimonial-card .card-content{
    max-height: 115px;
    overflow-y: scroll;

}

  .testimonial-card .card-content::-webkit-scrollbar {
    width: 8px; /* Mostly for vertical scrollbars */
    height: 8px; /* Mostly for horizontal scrollbars */
  }

  .testimonial-card .card-content::-webkit-scrollbar-thumb { /* Foreground */
    background: var(--lite-green);
    border-radius: 8px;
  }
  .testimonial-card .card-content::-webkit-scrollbar-track { /* Background */
    background: var(--primary-color);
  }

/* Testimonials section */
/* Contact section */

.contact .location {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: auto;
    display: grid;
    place-content: center;
    border: 2px dashed var(--lite-green);
    color: var(--lite-green);
    font-size: 22px;
}
.contact .card {
    border: none;
    box-shadow: var(--box-shadow);
    margin: 20px;
    z-index: 1;
}
.contact .input-group.textarea,
.contact .input-group {
    position: relative;
    border: 1px solid rgba(26, 30, 33, 0.4);
    border-radius: unset;
    height: 48px;
    margin: 20px 0;
}
.contact .input-group.textarea {
    height: 200px;
}
.contact .input-group textarea,
.contact .input-group input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    box-shadow: none;
    padding: 10px;
}
.contact button {
    background: var(--lite-green);
    border-radius: 4px;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: .3s ease-in-out;
}
.contact button:hover {
    opacity: .8;
    color: #fff;
}
/* Contact section */
/* Services section */

.about-hero {
    background: linear-gradient(rgba(16, 23, 87, 0.3), rgba(16, 23, 87, 0.9)), url(../assets/images/about-hero.jpg);
    width: 100%;
    min-height: 80vh;
    background-repeat:no-repeat;
    background-size: cover;
    border-radius: 0 0 185px 185px;
    display: grid;
    background-attachment: fixed;
    place-content: center;
    background-position: center top;
}
#resume {
    border: 0 !important;
}
.services-section {
    margin: -3rem auto;
}
.image-box {
    border: 3px solid var(--lite-green);
    border-top-left-radius: 120px;
    border-bottom-right-radius: 120px;
    overflow-x: hidden;
}
.image-boxx {
    margin-top: 6rem;
    position: relative;
    max-width: 700px;
}
.image-boxx .image-box {
    border: none !important;
}
.image-boxx .box {
    z-index: 1;
    position: absolute;
    width: 150px;
    height: 80px;
    top: -50px;
    right: -50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);

}
.image-boxx .box .dot {
    width: 15px;
    height: 15px;
    margin: 4px;
    background: var(--lite-green);
    border-radius: 50%;
}
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.read-more-text{
    display: none;
}

.read-more-text--show{
    display: inline;
}
.read-more-btn{
    box-shadow: none;
    border: none;
    outline: none;
    border-radius: 4px;
    padding: 8px 15px;
    background: var(--color-blue);
    color: #fff;
}
.zimleft-hero {
    background: linear-gradient(rgba(16, 23, 87, 0.3), rgba(16, 23, 87, 0.9)), url(../assets/images/zimlef-hero.jpg);
    width: 100%;
    min-height: 80vh;
    background-repeat:no-repeat;
    background-size: cover;
    border-radius: 0 0 185px 185px;
    display: grid;
    place-content: center;
    background-attachment: fixed;
    background-position: center center;
}
.contact-hero {
    background: linear-gradient(rgba(16, 23, 87, 0.3), rgba(16, 23, 87, 0.9)), url(../assets/images/contact-hero.jpg);
    width: 100%;
    min-height: 80vh;
    background-repeat:no-repeat;
    background-size: cover;
    border-radius: 0 0 185px 185px;
    display: grid;
    place-content: center;
    background-attachment: fixed;
    background-position: center center;
}
.services-hero {
    background: linear-gradient(rgba(16, 23, 87, 0.3), rgba(16, 23, 87, 0.9)), url(../assets/images/services-hero.JPG);
    width: 100%;
    min-height: 80vh;
    background-repeat:no-repeat;
    background-size: cover;
    border-radius: 0 0 185px 185px;
    display: grid;
    place-content: center;
    background-attachment: fixed;
    background-position: center center;
}
.events-hero {
    background: linear-gradient(rgba(16, 23, 87, 0.3), rgba(16, 23, 87, 0.9)), url(../assets/images/events.jpg);
    width: 100%;
    min-height: 80vh;
    background-repeat:no-repeat;
    background-size: cover;
    border-radius: 0 0 185px 185px;
    display: grid;
    place-content: center;
    background-attachment: fixed;
    background-position: center center;
}
.event-detail li i {
    color: var(--lite-green);
    margin-right: 10px;
}
.event-detail li {
    font-weight: 700;
    color: var(--color-blue);
}
.boxes-holder {
    height: auto;
    width: 600px;
    position: relative;
}
.detail-box-outer {
   display:none;
}
.detail-box-outer,
.detail-box {
    height: auto;
    width: 580px;
    position: sticky;
    border:0;
    border-left:8px solid var(--lite-green);
    border-bottom:4px solid var(--lite-green);
    z-index:2;
}

.detail-box {
    background: #fff;
    box-shadow: var(--box-shadow);
}
.detail-box h5,
.detail-box h6 {
    color: var(--color-blue);
    font-weight: 600;
}
.detail-box p {
    font-size: 14px;
    color: var(--text-color);
}
.boxes-holder .grey-dots .dot {
    width: 15px;
    height: 15px;
    margin: 4px;
    background: rgba(20, 35, 92, 0.4);
    border-radius: 50%;
}
.boxes-holder .grey-dots {
    z-index: -1;
    position: absolute;
    width: 150px;
    height: 80px;
    bottom: -8px;
    right: -18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    }
.blog-hero {
    background: linear-gradient(rgba(16, 23, 87, 0.3), rgba(16, 23, 87, 0.9)), url(../assets/images/bloglist.jpg);
    width: 100%;
    min-height: 80vh;
    background-repeat:no-repeat;
    background-size: cover;
    border-radius: 0 0 185px 185px;
    display: grid;
    place-content: center;
    background-attachment: fixed;
    background-position: center center;
}
#page-hero h1 {
    color: #fff;
    font-weight: 600;
    margin-top: 15rem;
}

.what-we-do h4 {
    font-weight: 700;
    color: var(--color-blue);
    position: relative;
    margin-top: 3rem;
}
.what-we-do h4::before {
    content: '';
    height: 3px;
    width: 100px;
    background: var(--color-blue);
    opacity: .5;
    position: absolute;
    left: 0;
    bottom: -10px;
}
.service-cols {
    border-radius: 3px;
    background: #fff;
}
.service-card {
    position: relative;
    border: none;
    background: transparent;
    padding: 10px;
    margin-bottom: 2rem;
    box-shadow: none;
}
.service-card img {
    margin: auto;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    z-index: 2;
    object-fit: cover;
}

.service-card .box {
    z-index: 1;
    position: absolute;
    width: 150px;
    height: 80px;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.service-card .box-b {
    z-index: 1;
    position: absolute;
    width: 150px;
    height: 80px;
    top: 0;
    right: -10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.service-card .box-b .dot,
.service-card .box .dot {
    width: 15px;
    height: 15px;
    margin: 4px;
    background: var(--lite-green);
    border-radius: 50%;
}
.service-card h5 {
    color: var(--lite-green);
    font-weight: 600;
    font-size: 18px;
    margin: 2rem 0;
}
.service-card ul {
    margin: 0;
    padding: 0;
}
.service-card ul li {
    padding: 10px 0;
}
.service-card ul li .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-blue);
    display: inline-block;
    margin-bottom: 3px;
}
.sub-title h5 {
    color: var(--color-blue);
    font-size: 14px;
    font-weight: 700;
}
/* Services section */
/* About page */
.sub-heading {
    margin: 30px 0;
}
.sub-heading span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px dashed var(--lite-green);
    display: grid;
    place-content: center;
    color: var(--lite-green);
    margin-right: 10px;
    font-size: 18px;
}
.sub-heading h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
}
.accordion-header {
    box-shadow: var(--box-shadow);
}
.accordion-item {
    border: none !important;
}
.accordion-button {
    outline: none !important;
    box-shadow: none !important;
    font-weight: 600;
    color: var(--color-blue) !important;
}
/* About page */
/* Zimlef page */
.service-card .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(20, 35, 92, 0.15);;
}
/* Zimlef page */
/* Events page */
.event-selection {
    border: none;
    outline: none;
    height: 44px;
    width: 200px;
    background: #000;
    position: relative;
}
.event-selection select {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--color-blue);
}
.event-card {
    border: 2px solid var(--lite-green) !important;
    border-radius: 4px;
    height: 300px;
    width: 300px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating-box {
    position: absolute;
    top: -2px;
    left: -70px;
    background: var(--lite-green);
    color: #fff;
    height: 100px;
    width: 70px;
    border-top-left-radius: 15px;
    text-align: center;
}
.floating-box h5 {
    font-size: 14px;
    font-weight: 500;
}
.floating-box h6 {
    font-size: 12px;
}
.event-card .grey-dots .dot {
    width: 15px;
    height: 15px;
    margin: 4px;
    background: rgba(20, 35, 92, 0.4);
    border-radius: 50%;
}
.event-card .grey-dots {
    z-index: -1;
    position: absolute;
    width: 150px;
    height: 80px;
    bottom: -30px;
    right: -40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.event-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 35, 92, 0.8);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    transition: .3s ease;
}
.event-card:hover .overlay {
    visibility: visible;
}
.event-card .overlay h4 {
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    text-align:center;
}
.event-card .overlay h5 {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}
.event-card .event-title {
    left: 0;
    bottom: -30px;
    color: var(--color-blue);
    font-weight: 500;
    font-size: 16px;
}
/* Events page */
/* Blog list page */
.blog-card {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    background: #fff !important;
    color: var(--text-color);
}
.blog-card img {
    width: 100%;
}
.blog-card p {
    font-size: 12px;
    color: var(--text-color);
}
.blog-card p span {
    color: var(--lite-green);
}
.blog-card h5 {
    font-weight: 700;
    color: var(--color-blue);
    font-size: 16px;
}
.blog-page-heading h5 {
    color: var(--color-blue);
    font-weight: 700;
}
.blog-detail {
    margin-top: 8rem;
}
.blog-detail .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
}
.blog-detail .avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.blog-detail h5 {
    font-weight: 700;
    font-size: 16px;
}
.blog-detail h6 {
    font-size: 12px;
}
.blog-detail h6 span {
    color: var(--lite-green);
}
.blog-heading h4 {
    font-weight: 700;
    color: var(--color-blue);
}
.blog-thumbnail {
    width: 100%;
    height: 500px;
}
.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-blog .card {
    margin: 10px 0 !important;
}
.side-col .thumbnail {
    width: 60px;
    height: 60px;
}
.side-col .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side-col h5 {
    font-weight: 700;
    color: var(--color-blue);
    font-size: 14px;
    padding: 0;
    margin: 0;
}
.side-col p {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
}
.side-col h6 {
    font-weight: 700;
    color: var(--lite-green);
    font-size: 12px;
    padding: 0;
    margin: 0;
}
.side-col .list-group-item {
    border: none;
    box-shadow: var(--box-shadow);
    margin-bottom: 5px;
}
.side-col .tags {
    line-height: 40px;
}
.side-col .tag {
    padding: 10px 20px;
    background: var(--color-blue);
    color: #fff;
    font-size: 12px;
    margin: 5px;
    border-radius: 4px;
}
    /* Blog list page */

/* Projects */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-card .logo {
    width: 150px;
    height: 150px;
}
.project-card hr {
    background: var(--lite-green);
    height: 2px;
    width: 100%;
}
.project-card h5 {
    font-weight: 700;
    color: var(--color-blue);
}
.project-card p {
    color: var(--text-color);
    font-size: 14px;
}

/* Footer */
footer {
    z-index: 4;
    margin-top: -20px;
    background: #072F4B;
    position: relative;
    border-top-left-radius: 160px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
footer h5,
footer ul {
    text-align: left;
    color: #fff;
}
footer .logo {
    display: grid;
    place-content: center;
}
footer .logo h1 {
    color: #ffff;
    font-weight: 700;
}

footer ul {
    padding: 0;
    margin: 0;
}
footer ul li {
    padding: 5px 0;
}
footer ul li a {
    font-weight: 400;
    color: #fff;
    font-size: .8rem;
}
footer ul li:hover a {
    color: var(--lite-green);
}
footer hr {
    height: 2px;
    background: var(--lite-green);
}
footer .footer-bottom p {
    font-size: .8rem;
    color: #fff;
}
footer input {
    height: 44px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 5px 20px;
    margin-bottom: 1rem;
    background: transparent;
    outline: none;
    box-shadow: none !important;
    border-radius: unset;
    font-size: 14px;
    color: #fff;
}
.footer-input-group {
    position: relative;
}
footer .bi-envelope-fill {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 18px;
    color: #fff;
}
footer button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    border-radius: 3px;
    border: none;
    background: none;
    color: #fff;
}
footer .footer-links a {
    color: #fff;
    transition: .3s ease-in-out;
    margin: 0 5px;
    font-size: 22px;
}
footer .footer-links a:hover {
    color: var(--lite-green);
}
footer h5 {
    position: relative;
    width: max-content;
    margin-bottom: 1rem;
}
footer h5::before {
    content: '';
    height: 2px;
    width: 100%;
    background: var(--lite-green);
    opacity: .5;
    position: absolute;
    left: 0;
    bottom: -7px;
}
/* Footer */

@media screen and (max-width: 600px){
    header .item .cover .header-content h1 {
        font-size: 30px;
        width: 90%;
    }
    header .item .cover .header-content h4 {
        font-size: 20px;
        width: 90%;
    }
    header .item .cover .header-content {
        padding: 20px;
    }
    #page-hero {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
    .sub-section {
        margin: -2rem auto auto auto;
    }
    .team .wrapper .team-carousel {
        padding: 30px 30px 30px 40px;
    }
    .blue-bg-section #read-more {
        padding: 10px 25px;
    }
    section .heading h2 {
        font-size: 22px;
    }
    footer h5,
    footer ul {
        text-align: center !important;
    }
    .event-card {
        height: 250px;
        width: 250px;
    }
    .event-card .grey-dots .dot {
        width: 10px;
        height: 10px;
        margin: 2px;
    }
    .event-card .grey-dots {
        bottom: -35px;
        right: -40px;

    }
    .event-card .event-title {
        font-size: 10px;
        margin-top: -10px;
    }
    .blog-thumbnail {
        height: 300px;
    }
    footer {
        border-top-left-radius: 80px;
    }
    footer h5 {
        text-align: center;
        margin: 1rem auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    .boxes-holder {
        margin-top: 3rem;
        
        width: 340px;
        margin-left: 10px;
    }
    .detail-box-outer,
    .detail-box {
       
        width: 320px;
    }
    .blue-container {
        margin-top: 0 !important;
    }

    #testimonials {
        left: 12%;
        top: 65%;
    }
    .testimonials .wrapper {
        max-width: 600px;
        width: 100%;
        margin-top: -25%;
        margin-left: 0;
    }
}

/*Utilities*/
.text-justify{
    text-align: justify;
}

.text-blue{
    color:#101757;
}

.text-white{
    color:#F5F6FF!important;
}
.text-bold{
    font-weight: bold;
}

.bg-light-grey{
    background-color:#F5F6FF;
}
.partners-btn {
    background: var(--color-blue);
    border-radius: 3px;
    color: #ffff;
    font-size: 16px;
}
.partners-section {
    margin-top: 8rem;
}
.alert{
    display:none;
    position: fixed;
    top: 100px;
    right: 0px;
    z-index: 1045;
}
.alert .bi {
    margin-right:.5em;
}
.sendButton {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 1045;
    padding: 8px 15px;
    background: #f0a;
    color: #fff;
    outline: none;
    border-radius: 4px;
    box-shadow: none;
    border: none;
}
