@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&amp;display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Barlow", sans-serif;
  color: #222222;
}

a {
  color: #2c2484;
  text-decoration: none;
}

a:hover {
  color: #2c2484;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

section {
  padding: 40px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #e7e6f8;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7e6f8;
  color: #2c2484;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #2c2484;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
}

.btn-view {
  background: #2c2484;
  border: 0;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
  border-radius: 10px;
}

.btn-view:hover {
  background-color: white;
  color: #2c2484;
  transition: 0.4s;
  border-radius: 10px;
  border: 2px solid #2c2484;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #2c2484;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 200px;
  margin-right: 6px;
}

.header .logo h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #fff;
 
}

.header .logo h3 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 18px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;

    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ffffff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
    font-size: 16px;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(44,36,132,0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #2c2484;
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(44,
      36,
      132, 0.8);
  }



  .mobile-nav-show {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(44,
      36,
      132, 0.8);
    z-index: 9996;
  }
    .header .logo h3 {
      font-size: 16px;
      margin: 0;
      font-weight: 500;
      letter-spacing: 0.8px;
      color: #fff;
  
    }
}

.section-hero {
  padding: 40px;
}

.card-container {
  display: flex;
  flex-direction: column;
}

.card-height {
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
  height: 400px;
  /* Set the desired height */
  overflow: hidden;
  /* Add overflow property to handle content overflow */
}



/* home banner */
.price .icon-box {
  padding: 15px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}


.price .title {
  font-weight: 700;
  /* margin-bottom: 10px; */
  font-size: 18px;
}

.price .description {
  font-size: 15px;
  line-height: 28px;

}

.banner-wrapper .banner-slider .banner-item {
    height: 500px
}

.banner-wrapper .banner-slider .banner-item img {
    height: 100%;
    object-fit: contain
}

.banner-wrapper .flip-card {
    width: 45rem;
    height: 25rem;
    margin: 2rem auto 4rem
}

.banner-wrapper .flip-card .flip-card-inner {
    height: 100%;
    transition: transform .6s;
    transform-style: preserve-3d
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-front {
    height: 100%;
    /* background-color: #f07f1b; */
    transform: translateZ(0)
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    background-color: #2c2484;
}


.banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo .image-container {
    width: 60%;
    align-items: center;
    justify-content: center;
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo .image-container img {
    width: 100%;
    align-items: center;
    height: auto;
}




.banner-wrapper .flip-card .flip-card-inner .flip-card-front ul li {
    display: flex;
    align-items: center;
    margin: 1rem 0
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-front ul li i {
    font-size: 1.2rem;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    margin-right: 1rem;
    flex-shrink: 0;
    line-height: 1.9;
    background-color: #2c2484;
    border-radius: 100%;
    border: 2px solid #2c2484;
    color: #fff
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-front ul li a {
    font-size: 1rem;
    color: #000;
    word-break: break-all;
    word-wrap: break-word;
    flex-grow: 1;
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-front ul li a:hover {
    font-size: 1rem;
    font-weight: 500;
    color: #2c2484;
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-back {
    transform: rotateY(180deg)
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-header {
    background-color: #2c2484;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 0 0 1rem 1rem
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-body {
    padding: 1rem 1rem 1rem
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-body .list {
    font-size: 1.2rem;
    column-count: 2
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-body .list li {
    padding: .4rem 2.2rem;
    position: relative;

}

.banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-body .list li::before {
    padding: 0;
    content: '\2022';
    /* Unicode character for a bullet point */
    font-size: 1.5rem;
    color: #000;
    /* Set the color of the bullet point */
    margin-right: 0.5rem;
}


.banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-footer {
    background-color: #2c2484;
    color: #fff;
    padding: 0.7rem 2rem
}

.banner-wrapper .flip-card .flip-card-inner .flip-card-back,
.banner-wrapper .flip-card .flip-card-inner .flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2)
}

.banner-wrapper .flip-card .flip-card-inner.active {
    transform: rotateY(180deg)
}



.banner-wrapper .flip-card>button {
    width: 2.8rem;
    height: 2.8rem;
    background-color: #2c2484;
    border: none;
    border-radius: 100%;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, .3)
}

.banner-wrapper .flip-card>button .btn {
    font-size: 2.1rem;
    color: #fff;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 100%;
}


@media (max-width:991.98px) {
    .banner-wrapper {
        padding: 15px;
    }

    .banner-wrapper .flip-card {
        width: 47rem;
        height: 25rem;
    }



    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo .image-container img {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo:after {
        width: 40rem;
        height: 40rem
    }
}

@media (max-width:767.98px) {
    .banner-wrapper {
        padding: 15px;
    }

    .banner-wrapper .flip-card {
        width: 35rem;

        height: 34rem
    }

    .banner-wrapper .flip-card .flip-card-inner {
        height: 100%;
        transition: transform .6s;
        transform-style: preserve-3d
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-front {
        height: 100%;

        transform: translateZ(0)
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #2c2484;
    }


    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo .image-container {
        width: 60%;
        align-items: center;
        justify-content: center;
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo .image-container img {
        width: 100%;
        align-items: center;
        height: auto;
    }

}

@media (max-width:575.98px) {
    .banner-wrapper {
        padding: 15px;
    }

    .banner-wrapper .flip-card {
        width: 100%;
        height: 40rem;
        margin: 2rem auto 0;
        position: relative
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo {
        width: 100%;
        height: 36% !important
    }



    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo .image-container img {
        width: 90%;
        padding: 2rem;
        align-items: center;
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-front .flip-logo:after {
        width: 63rem;
        height: 88rem;
        left: 50%;
        top: -22%
    }



    .banner-wrapper .flip-card .flip-card-inner .flip-card-front ul li {
        margin: 1rem 0 !important;
        align-items: center;
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-front ul li i {
        font-size: 1.2rem;
        display: block;
        width: 2.5rem;
        height: 2.5rem;
        text-align: center;
        margin-right: 1rem;
        flex-shrink: 0;
        line-height: 1.9;
        background-color: #2c2484;
        border-radius: 100%;
        border: 2px solid #2c2484;
        color: #fff
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-header {
        padding: 1.2rem 2rem .8rem;
        background-color: #2c2484;
        color: #fff;
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-body .list {
        column-count: 1;
        margin: 0;
        padding: 0;
    }

    .banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-body .list li:before {
        padding: 0;
        content: '\2022';
        /* Unicode character for a bullet point */
        font-size: 1.2rem;
        color: #000;
        /* Set the color of the bullet point */
        margin-right: 0.5rem;
    }


    .banner-wrapper .flip-card .flip-card-inner .flip-card-back .back-footer {
        background-color: #2c2484;
        color: #fff;
        padding: 1rem 2rem;
    }

    .banner-wrapper .flip-card>button {
        position: absolute !important;
        top: 1.2rem;
        right: 1.2rem;
        margin: 0;
        width: 3.2rem;
        height: 3.2rem
    }
}

/* about us */

.aboutus-rounded-border {
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  overflow: hidden;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
}

.rounded-border {
  border-radius: 5px;

}

.aboutus-title {
  font-size: 16px;
  display: block;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
}

.aboutus-subtitle {
  font-size: 24px;
  display: block;
  font-weight: 600;

  color: #2c2484;
  text-transform: uppercase;
}


.row>* {
  position: relative
}

.fw-normal {
  font-weight: 500 !important
}

.title-border {
  border-bottom: 1px solid #2c2484
}

/* about us */

/* services */
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e7e6f8;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #2c2484;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #fff;
  border-style: solid;
  border-color: black;
  border-width: 2px;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
  border-color: #fff;
}

.services .icon-box:hover .icon i {
  color: #2c2484;
}

/* services */





/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: #00796b;
  font-size: 45px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #00796b;
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transform: scale(.8);
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}




.gallery_item:after {
  width: 80px;
  height: 80px;
  font-size: 26px;
}

.gallery_item {
    
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

/*.gallery_item img {*/
/*  width: 100%;*/
/*  height: 50%;*/
/*  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);*/
/*  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);*/
/*}*/
.main-gallery-img{
     width: 100%;
  height: 625px;
    display: block; 
}
.img-item{
     width: 100%;
  height: 300px;
    display: block; 
}

.gallery_item:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.gallery_item:hover:before {
  width: 100%;
}

.gallery_item:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.popup_image {
  display: block;
}

@media only screen and (max-width: 600px) {
  .main-gallery-img{
     width: 100%;
    height: 400px;
    display: block; 
    }
    .img-item{
     width: 100%;
  height: 400px;
    display: block; 
}

}
.blog-post {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.blog-post .content {
  padding: 32px;
}

.blog-post a {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #2c2484;
  padding: 2px 12px;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
}

.blog-post h5 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.blog-post small {
  text-transform: uppercase;
  color: #2c2484;
  text-decoration: underline;
}



/* brochare */

.brochare-item {
  padding: 40px 10px 40px 10px;
  margin-bottom: 30px;

  background: #fff;
  height: 100%;
  border-radius: 10px;
}



.brochare .brochare-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.brochare .brochare-item .icon i {
  color: #2c2484;
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}



.brochare .brochare-item h3 {
  color: #222222;
  font-weight: 700;
  margin: 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;

  transition: 0.3s;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 30px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #2c2484;
  border-radius: 100%;
  padding: 10px;

}

.contact .info-box h3 {
  font-size: 20px;
  color: #000000;
  font-weight: 700;

}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact .info-box a {
  font-size: 14px;
  color: #000;
}

.contact .info-box a:hover {
  font-size: 14px;
  color: #2c2484;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  border-radius: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #2c2484;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #2c2484;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2c2484;
}

.contact .php-email-form input {
  padding: 10px 15px;
  border-radius: 5px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit] {
  background: #2c2484;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #2c2484;
}

iframe {
  border-radius: 10px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



#footer {
  color: #f1f7fd;
  font-size: 14px;
  background: #f1f7fd;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #2c2484;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #f1f7fd;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #f1f7fd;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1c84e3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #f1f7fd;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f6f6f6;
  font-size: 16px;
  text-decoration: underline;
  /* color: #1977cc; */
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1977cc;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}




/*--------------------------------------------------------------
# Brochare
--------------------------------------------------------------*/



.featured-services .icon-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 40px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;

}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #2c2484;
  top: 0;
  border-radius: 8px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #2c2484;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 600;

  font-size: 18px;
  justify-content: center;
}

.featured-services .title a {
  color: #111;
}

.featured-services .icon-box:hover .title {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

.blog-box {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06)
}

.blog-box .blog-img {
  border-radius: 10px
}
.blog-box .blog-img img{
  height:300px;
}


.btn-view-product {
  width: 100%;
  background: #2c2484;
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: .7rem 1.4rem;
  font-size: 14px;
  font-weight: 500;
  transition: all .5s;
}

.btn-view-product:hover {
  color: #fff;
}

.btn-view-close {
  
  /*background: #0b94ce;*/
  border: 0;
  /*color: #fff;*/
  border-radius: 8px;
  padding: .7rem 1.4rem;
  font-size: 14px;
  font-weight: 500;
  transition: all .5s;
}


/*.btn-view-product {*/
/*  width: 100%;*/
/*  background: #2c2484;*/
/*  border: 0;*/
/*  color: #fff;*/
/*  border-radius: 8px;*/
/*  padding: .7rem 1.4rem;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  transition: all .5s;*/
/*}*/

/*.btn-view-product:hover {*/
/*  color: #fff;*/
/*}*/

/*.btn-view-product-outline {*/
/*  width: 100%;*/
/*  background: #fff;*/
/*  border: 2px solid #2c2484;*/
/*  color: #2c2484;*/
/*  border-radius: 8px;*/
/*  padding: .7rem 1.4rem;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  transition: all .5s;*/
/*}*/

/*.btn-view-product-outline:hover {*/
/*  color: #2c2484;*/
/*}*/
.btn-view-product-outline {
  width: 100%;
  background: #fff;
  border: 2px solid #2c2484;
  color: #2c2484;
  border-radius: 8px;
  padding: .7rem 1.4rem;
  font-size: 14px;
  font-weight: 500;
  transition: all .5s;
}

.btn-view-product-outline:hover {
  color: #2c2484;
}

.recent-posts .blog-posts {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .blog-posts:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.recent-posts .post-img {
  max-height: 250px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: #000000;
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: #2c2484;
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

.video-border {
  border-radius: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: #fff;
  /* color: rgba(252, 252, 252, 0.7); */
  /* background-color: transparent; */
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.contact-btn {
  background: #2c2484;
  border: 0;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
  border-radius: 10px;
}

.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: #2c2484;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;

}

.breadcrumbs .page-header h3 {

  color: #fff;

}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  /* color: var(--color-default); */
}

.breadcrumbs nav ol a {
  color: #2c2484;
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  /* color: var(--color-secondary); */
  content: "/";
}