/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: #5ec942;
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.bg-primary {
    background-color: #9f6e2a !important;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(#001b25);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
 font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #191514;
    font-size: 20px;
    font-weight: 800;
    outline: none;
    transition: .5s;

}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #5ec942;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: #5ec942 !important;
    border-color: #5ec942 !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: #5ec942;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #ffffffbf;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #5ec942;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: #5ec942;
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
    .content1 {
        width: 1021px;
        position: relative;
    }
    .right {
        background: url(../img/icon/left.png) no-repeat white center;
        border-radius: 50%;
        position: sticky;
        margin-left: 20px;
        top: 50%;
        margin-top: -20px;
        background-size: 30px;
        width: 40px;
        height: 40px;
        opacity: 0.6;
        cursor: pointer;
        background-color: #a8c749;
        opacity: 2;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #cda93a;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    /* height: 300px; */
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5ec942;
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #a0a1a7;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: #0e4e64;
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
    padding: 5px;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.bg-header {
    background: linear-gradient(rgb(9 30 62 / 19%), rgb(9 30 62 / 23%)), url(../img/about/abouta.jpg) center center no-repeat;
    background-size: cover;
}

.bg-headerthane {
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/thane/thaneimg.jpg) center center no-repeat;
  background-size: cover;
}
.bg-headerpanvel{
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/panvel/panvelbg.jpg) center center no-repeat;
  background-size: cover;
}
.bg-headernavimumbai{
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/navimumbai/navimumbaibg.jpg) center center no-repeat;
  background-size: cover;
}
.bg-headerlegal{
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/about/legal.jpg) center center no-repeat;
  background-size: cover;
}
.bg-headerpune{
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/pune/punebg.jpg) center center no-repeat;
  background-size: cover;
}
.bg-headerLand{
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/about/land.jpg) center center no-repeat;
  background-size: cover;
}
.bg-headercontact{
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/about/contact.jpg) center center no-repeat;
  background-size: cover;
  background-position: bottom;
}
.bg-headermira{
  background: linear-gradient(rgb(0 7 10 / 67%), rgb(9 30 62 / 23%)), url(../img/about/aboutbg.jpg) center center no-repeat;
  background-size: cover;
  background-position: bottom;
}
.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

 /* Hero Section Styling Start */

 

 /* Hero Section Styling End */

  /* Contact Styling  Start */

   .contact-details-para{
     font-size: larger;
     font-weight: 400;
     }

  /* Contact Styling End */

  /* About Us Page Styling Start */

  .departments .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #2c4964;
    border-radius: 0;
    border-right: 2px solid #ebf1f6;
    font-weight: 600;
    font-size: 15px;
  }

  .departments .nav-tabs {
    border: 0;
    border-top-color: initial;
    border-top-style: initial;
    border-top-width: 0px;
    border-right-color: initial;
    border-right-style: initial;
    border-right-width: 0px;
    border-bottom-color: initial;
    border-bottom-style: initial;
    border-bottom-width: 0px;
    border-left-color: initial;
    border-left-style: initial;
    border-left-width: 0px;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
 }

 .departments .nav-link.active {
    color: #f1602e;
    border-color: #f1602e;
 }
  /* About Us Page Styling End */

  /* CTA AREA START */

  .mosh-call-to-action-area {
    position: relative;
    z-index: 1;
    background-attachment: fixed;
  }

  .bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 21px;
  }

  .section_padding_100 {
    padding-top: 100px;
    padding-bottom: 100px;
 }


  /* CTA AREA END */


 /* Footer Styles Start*/
 .bg-footer{
    background-color: #2b85a569 !important;
 }
 /* Footer Styles End*/

 /* Video Styling Start */

 .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
 }

 .embed-responsive-16by9::before {
    padding-top: 56.25%;
 }

 .embed-responsive::before {
    display: block;
    content: "";
 }

 .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe,
 .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

  /* Video Styling Start */

.btn-primary {
color: #515154;
    background-color: #cda93a;
    border-color: #a0a1a7;
}
.text-primary {
    color: #94006a !important;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: "Nunito",sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #3d176f;
}
.footertxt {
    color: #DDDDDD;
    margin-top: 27px;
    margin-left: 27px;
}

/* plot */
.item
{
    float: left;
    margin-right: 5px;
    background-color: white;
}
.item img
{
width: 100%;
}
.Carousel1
{
    transition: transform .5s;
}
.content1
{
    position: relative;
}

.Carousel1_point1,.Carousel1_point2,.Carousel1_point3
{
    display: inline-block;
    width: 10px;
    margin-top: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    z-index: 2;
}
.points1
{
    text-align: center;
}
.Left,.right
{
    background: url(../img/icon/left.png) no-repeat white center;
    border-radius: 50%;
    position: absolute;
    margin-left: 20px;
    top: 50%;
    margin-top: -20px;
    background-size: 30px;
    width: 40px;
    height: 40px;
    opacity: 0.6;
    cursor: pointer;
    background-color: #a8c749;
    opacity: 2;
}
.right {
    right: 15px;
    background-image: url(../img/icon/right.png);
    opacity: 2;
    background-color: #a8c749;
    background-position: 7px;
}
.Left:hover,.right:hover
{
    opacity: 2;
}
.now
{
    transform: scale(1.3);
    transition:transform .3s;
}
img .imgabc{
    width: 125px;
    height: 200px;
}

@media screen and (max-width:600px)
{

}
.mb-4 {
    margin-bottom: 1.5rem !important;
   
}
.pb-3 {
    padding-bottom: 1rem !important;
    text-transform: capitalize;
}
.text-uppercase {
    text-transform: uppercase !important;
    color: #871463;
    font-weight: 600;
}

.para{
    color: #515154000;
    font-weight: 500;
}
/* slideshow */
.container {
    width: 100%;
    max-width: 1200px;
    border-radius: 4px;
    margin: 0 auto;
    padding: 10px 0;
  }

  .content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 0 30px;
  }

  .wrapper {
    width: 33.3%;
    height: 100%;
    padding: 10px;
  }

  .name {
    position: relative;
    font-size: 16px;
    display: inline-block;
  }
  .name:after {
    content: "";
    position: absolute;
    width: calc(100% + 10px);
    height: 1px;
    background-color: #515154;
    bottom: -4px;
    left: 0;
  }

  .box {
    position: relative;
    max-height: 300px;
    border-radius: 4px;

    padding: 9px;

    overflow: hidden;
    box-shadow: 0 1.4px 1.7px rgba(0, 0, 0, 0.017), 0 3.3px 4px rgba(0, 0, 0, 0.024), 0 6.3px 7.5px rgba(0, 0, 0, 0.03), 0 11.2px 13.4px rgba(0, 0, 0, 0.036), 0 20.9px 25.1px rgba(0, 0, 0, 0.043), 0 50px 60px rgba(0, 0, 0, 0.06);
  }
  .box .hide {
    opacity: 0;
  }
  .box .frame {
    position: absolute;
    border: 1px solid #fff;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .box h2,
  .box p {
    position: absolute;
    color: #fff;
    z-index: 2;
    width: 100%;
    background: #34025882;
    transition: opacity 0.2s, transform 0.3s;

  }
  .box h2 {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 0;
    letter-spacing: 1px;
  }
  .box p {
    bottom: 0;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .box:hover {
    transition: all 0.3s ease-in-out;
  }
  .box:hover:before {
    transition: all 0.3s ease-in-out;
  }
  .box img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
  }
  .box img:hover {
    transition: all 0.3s ease-in-out;
  }
  .box img:after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .box img:hover {
    transition: all 0.3s ease-in-out;
  }

  .zoom-in h2 {
    top: 50%;
    transform: translatey(-50%);
    text-align: center;
    margin: 0;
  }
  .zoom-in p {
    text-align: center;
    top: calc(50% + 40px);
    transition: all 0.3s ease;
    transform: scale(1.8);
    opacity: 0;
  }
  .zoom-in:hover img {
    transform: scale(1.1);
    filter: grayscale(100%);
  }
  .zoom-in:hover p {
    transform: scale(1);
    transition: all 0.3s ease;
    opacity: 1;
  }

  .w-content .frame {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: transparent;
  }
  .w-content h2 {
    margin-top: 0;
    top: 50%;
    transform: translatey(-50%);
    text-align: center;
    letter-spacing: 1px;
  }
  .w-content p {
    transform: translate3d(0, -10px, 0);
  }
  .w-content:hover {
    opacity: 0.8;
  }
  .w-content:hover .frame {
    border-color: #fff;
    transition: color 0.3s ease-in-out, all 0.3s ease-in-out;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .thanepra{
    text-align: center;
  }

  /* thane  */
   /*====== History Section CSS ======*/
.history-timeline {
    position: relative;
    z-index: 1;
  }
  .history-timeline:after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: url(../images/timeline.png) no-repeat center;
    background-size: contain;
    z-index: -1;
  }
  
  .single-history-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .single-history-item .history-img, .single-history-item .history-content {
    width: 50%;
  }
  @media (max-width: 450px) {
    .single-history-item .history-img, .single-history-item .history-content {
      width: 100%;
    }
  }
  .single-history-item .history-img img {
    width: 100%;
    border-radius: 12px;
      box-shadow: 5px 10px 30px 5px rgb(247 80 35 / 25%);
  }
  .single-history-item .history-content {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(115, 115, 115, 0.15);
            box-shadow: 0px 10px 60px 0px rgba(115, 115, 115, 0.15);
    padding: 40px 35px 35px;
    margin-top: 30px;
    margin-left: -30px;
        margin-bottom: auto;
  }
  @media (max-width: 1199px) {
    .single-history-item .history-content {
      padding: 40px 20px 35px;
    }
  }
  @media (max-width: 450px) {
    .single-history-item .history-content {
      margin-left: 0;
      padding: 40px 30px 35px;
    }
  }
  .single-history-item .history-content h4.title {
    margin-bottom: 10px;
  }
  @media (max-width: 1199px) {
    .single-history-item .history-content h4.title {
      font-size: 18px;
    }
  }
  .single-history-item .history-content h4.title span.ribbon {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    background-color: #f94d1c;
    color: #fff;
    padding: 5px 20px 5px 13px;
    line-height: 20px;
    margin-right: 15px;
  }
  .single-history-item .history-content h4.title span.ribbon:after {
    position: absolute;
    right: 0;
    content: "";
    top: 0;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 15px solid transparent;
  }
  .single-history-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .single-history-item:nth-child(even) .history-content {
    margin-left: 0;
    margin-right: -30px;
  }
  @media (max-width: 450px) {
    .single-history-item:nth-child(even) .history-content {
      margin-right: 0;
    }
  }

  /* services div */
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap");
body {
  font-family: "Poppins", sans-serif;
}
.fg-services {
  padding-bottom: 0;
  padding-top: 30px;
  background: #f6f7f9;
}
.fg-services .fg-title {
  margin-bottom: 80px;
  text-align: center;
}
.fg-services .fg-title h2 {
  font-weight: 700;
  color: #a2214d;
  line-height: 46px;
  margin-bottom: 20px;
}
.fg-services .fg-title p {
  margin-bottom: 0;
  font-weight: 300;
}
.fg-services .fg_services_item {
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-size: contain;
}
.fg-services .fg_services_item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgb(72 72 72 / 11%)
}
.fg-services .fg_services_item:hover .fg_services_item_text {
  bottom: 40px;
}
.fg-services .fg_services_item:hover .fg_services_item_text h4 {
  margin-bottom: 12px;
}
.fg-services .fg_services_item_text {
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 100%;
    padding: 0 35px;
    -webkit-transition: all, 0.4s;
    -o-transition: all, 0.4s;
    transition: all, 0.4s;
    background: #12010d59;
}
.fg-services .fg_services_item_text h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 80px;
  -webkit-transition: all, 0.2s;
  -o-transition: all, 0.2s;
  transition: all, 0.2s;
  font-size: 22px;
}
.fg-services .fg_services_item_text p {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 300;
}
.fg-services .fg_services_item_text a {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  position: relative;
  text-decoration: none;
  border: 2px solid #a2214d;
  transition: all 0.2s;
}
.fg-services .fg_services_item_text a:hover {
  background: #a2214d;
}

/* dropdown */
.dropbtn {
    
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background: #83adcb;
    box-shadow: 0px 8px 16px 0px rgb(255 253 253 / 8%);
    z-index: 1;
}
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .paraco{
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
  }

/* section */
/* your CSS goes here*/
.title {color: #fa9746;margin-bottom: 30px;position: relative;}
.title::before {
  position: absolute;
  left: -29px;
  top: 0;
  height: 20px;
  width: 20px;
  transform: rotate(45deg);
  background-color: #7499f1;
  box-shadow: 0px 4px 4px 0px #aaa;
  border-radius: 4px;
  content: '';
}
.title::after {
  position: absolute;
  left: -19px;
  top: 25px;
  height: 14px;
  width: 14px;
  transform: rotate(45deg);
  background-color: #7499f1;
  box-shadow: 0px 4px 4px 0px #aaa;
  border-radius: 4px;
  content: '';
}
 /* services */
.services {
    padding:40px;
  position: relative;
}
.services .square {
  height: 100px;
  width: 100px;
  margin: 30px auto 40px;
  position: relative;
  border-radius: 15px;
  transform: rotate(45deg);
  padding: 10px;
  background-color: #007dc4;
  box-shadow: 0px 0px 27px 0px #cd302891;
  border: 2px dotted #ffffff;
}
.square i {
  transform: rotate(315deg);
  display: block;
  color: #eaf3fa;
  font-size: 40px;
  padding-top: 17px;
  padding-right: 14px;
}
.services .square::before {
  position: absolute;
  left: -10px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fa9746;
  content: '';
}
.services .square::after {
  position: absolute;
  left: 50px;
  top: 66px;
  width: 1px;
  height: 88%;
  background-color:#fa9746;
  content: '';
  transform: rotate(90deg);
}
.services .serv .num
 {
   width: 60px;
   height: 60px;
   background-color: #7499f1;
   box-shadow: 0px 0px 15px 0px #00a9d3;
   margin: -38px auto 15px auto;
   border-radius: 50%;
   color: #fff;
   font-size: 30px;
    padding-top: 7px;
    border: 1px dashed;
  }
.services .serv h5 {color:#7f135d;}
.services .serv p {color: #777;}
.services .serv hr {
  width: 30px;
  border-top: 3px solid rgb(0 169 211);
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgb(58 12 12 / 15%) !important;
  margin-bottom: 26px;
  padding: 17px;
}
.icons{
  transform: rotate(317deg);
}

.py-5 {
  /* padding-top: 3rem !important; */
  padding-bottom: 3rem !important;
}
.mdtext{
  font-size: 16px;
}
.return-table {
  border: 2px solid #3fc0ba;
}
.table-bordered {
  border: 1px solid #dee2e6;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
table {
  border-collapse: collapse;
}
.returns-value span {
  font-size: 22px;
  font-weight: 600;
  color: #76a13f;
}
