/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 10px;
    bottom: 116px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #df5800;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
            background: #004b2e;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 150px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: transparent;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** 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: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.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);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 20px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 15px;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.mb-4 {
    margin-bottom: 2.5rem !important;
}
.footer .btn.btn-link:hover {
      color: #FFF118;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0 0 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
    color: #fff;
    background: #303030;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}



.bg-dark {
    background-color: #1f1f1f !important;
}


.services-box
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.service
{
  margin: 8px;
}

.flip-box {
 background-color: transparent;
    height: 250px;
    /* border: 1px solid #43491a; */
    border-radius: 10px;
    perspective: 1000px;
    box-shadow: rgb(67 73 26 / 73%) 0px 0px 0px 2px, rgb(67 73 26 / 60%) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flip-box-front {
  background-color: #f8faee;
  color: black;
  border-radius: 10px;
}
.flip-box-front h2{
    font-size: 20px;
}

.flip-box-front img
{
 height: 60px;
    width: 60px;
    background: #406633;
    border-radius: 50%;
    padding: 6px;
}

.flip-box-back {
  background-color: #f8faee;
  color: #000;
  transform: rotateY(180deg);
  border-radius: 10px;
  padding: 16px;
}

.flip-box-back img
{
  height: 60px;
  width: 60px;
}

.read_more {
    padding: 8px 35px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    background: #384309;
    transform: skew(-28deg);
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    
}

.read_more a {
    transform: skew(29deg);
    display: block;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    color: #fff;

}

.custom-web-logo{
    width: 100%;
}
.ms-left{
    margin-left: 22%;
}

.heading {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  padding: 25px;
}

.heading:after {
  display: inline-block;
  margin: 0 0 8px 8px;
  height: 3px;
  content: " ";
  text-shadow: none;
  background-color: #406633;
  width: 70px;
}

.heading:before {
  display: inline-block;
  margin: 0 8px 8px 0;
  height: 3px;
  content: " ";
  text-shadow: none;
  background-color: #406633;
  width: 70px;
}



.section-header {
    display: block;
    margin-top: 20px;
    position: relative;
    text-align: center;
}
.section-header h1 {
    color: #212121;
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    padding: 0 0 24px;
    position: relative;
    z-index: 2;
}
.section-header h1:after {
    position: absolute;
    display: block;
    width: auto;
    height: 3px;
    bottom: 0;
    left: 20%;
    right: 20%;
    border-radius: 1px;
    content: "";
    z-index: 1;
    background: #e6e9ec;
}
section {
    padding-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.micro-slider {
    height: 300px;
    /* margin: 10px 0; */
    position: relative;
    width: 100%;
}


.micro-slider h3{

   position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    color: #fff;
    background: #000000ab;
    padding: 10px;

}
.micro-slider.fullwidth {
    height: 300px;
    /* margin: 64px 0; */
}
.micro-slider.fullwidth .slider-item {
    height: 300px;
    line-height: 300px;
    width: 300px;
}
.slider-wrapper {
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 0 50%;
}
.slider-item {
    background: #FFF;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.12);
    color: #FFF;
    display: none;
    font-size: 72px;
    height: 300px;
    line-height: 300px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 300px;
    cursor: pointer;
}


  .top-header {
    background: #005634;
    background: -moz-linear-gradient(top, #005634 0%, #003823 100%);
    background: -webkit-linear-gradient(top, #005634 0%, #003823 100%);
    background: linear-gradient(to bottom, #005634 0%, #003823 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005634', endColorstr='#003823',GradientType=0 );
    color: #fff !important;
    font-size: 15px;
    padding: 10px 0 20px 0;
}
.text-left img {
    width: 100%;
}
.info-icon-box-wrapper {
    margin-top: 0px;
    margin-left: 20px;
}
.info-icon-box-wrapper .info-icon-box {
    display: inline-block;
    line-height: 2.5;
}
.info-icon-box .info-icon {
    position: absolute;
    /* top: 50%; */
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(9%);
}

.info-icon-box .info-icon i {
    font-size: 14px;
}

.info-icon-details {
    margin-left: 25px;
}
ul.socials.at-display-inline-block {
    margin-top: 20px;
    list-style: none;
}
.top-header .socials {
    margin: 0;
    display: flex;
}
ul.socials.at-display-inline-block li {
    margin: 4px;
}

.top-header .socials li a {
    font-size: 23px;
    line-height: 2;
    color: #fff;
}
.socials li a {
    text-align: center;
    line-height: 32px;
    display: inline-block;
    margin-right: 16px;
    transition: background 0.5s;
    -webkit-transition: background 0.5s;
}
.pd-left-60{
      padding-left: 50px;
    padding-top: 8px;

}

span.icon-desc a {
    font-size: 15px;
    font-weight: 600;
}
.top-header i.fa.fa-phone {
    transform: rotate(90deg);
}
.slide-box-outer {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 2px grey;
}
.content-box {
    padding: 20px 0 0 0;
}
.content-box h3 {
    font-size: 19px;
    font-weight: 400;
}
.service-btn {
    margin-top: 30px;
    position: relative;
}
.service-btn a {
    border-radius: 0;
    color: #202020;
    display: block;
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    transition: .3s;
    background: #F4F7FC;
    text-transform: capitalize;
    font-weight: 500;
    padding: 12px 22px;
    position: relative;
    font-size: 16px;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}
.service-btn a::before {
    content: '';
    width: 0;
    height: 0;
    border-width: 5px 0 5px 7px;
    border-style: solid;
    display: block;
    right: 13px;
    border-color: transparent transparent transparent #f5f5f5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.service-btn a .fa {
    position: relative;
    top: 1px;
}
.service-btn a::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 30%;
    height: 100%;
    z-index: -1;
    transform: skew(-29deg);
    padding-left: 20px;
    background: #005634;
    transition: .3s;
}
.service-btn::after {
    content: "";
    position: absolute;
    right: 20px;
    background: #fff;
    width: 29px;
    height: 2px;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}
.service-btn a:hover {
    background: #005634;
    color: #fff;
} 
.slide-box-outer img{
    width: 100%;
}

.about-sec{
    padding-top: 0px;
    padding-bottom: 0;
}
.headBox h1 {
    font-size: 30px;
    color: #fff;
    padding: 45px 0px;
    text-align: center;
    margin: 0px;
}
.headBox h1 a {
    color: #fdb814;
    font-weight: bold;
}
.nav__container{
    padding: 0;

}
.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 22px;
    right: 15px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.my-float {
    margin-top: 16px;
}

.call{
    display: none;
}
.call-sec{
        text-align: center;
    padding: 25px;
    font-size: 25px;
    font-weight: 600;
}



.fix-btn-footer {
    position: fixed;
    bottom: 0px;
    z-index: 999;
    left: 0;
}

.fix-btn-footer p {
    background: #fff118;
    display: block;
    border: 1px solid #eb3b2b;
    padding: 10px 20px 10px 5px;
    margin: 10px 0;
    font-weight: bold;
    border-radius: 0 35px 35px 0;
    box-shadow: 0 0 12px 0px #ff0000f0;
    color: #000;
}












 /*-------------------------------------------------
        media
        --------------------------------------------------*/


        @media (max-width: 768px) {

.menu-toggle .nav__menu{
    display: none;
}
.menu-toggle.active .nav__menu{
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-height: 100%;
    width: 100%;
    top: 37%;
    position: absolute;
    background: #fff !important;
    z-index: 999;
    left: 0;
    border-radius: 0;
    /* padding-left: 0; */
    padding-right: 25px;
}
.top-header .info-icon-details .icon-desc a {
    font-size: 14px;
}
.pd-left-60{
    padding: 0;
    text-align: center;
}
ul.socials.at-display-inline-block {
    margin-top: 0;
    list-style: none;
    text-align: center;
}
.top-header .socials {
    margin: 0;
    display: flex;
    justify-content: center;
}
.top-header{
    padding: 0;
}
.about-sec  .about_section {
    display: block;
}
.about-sec .about_section  .about_imgage_section {
    width: 100%;
}
.about-sec .about_section .inner_about_image {
    height: 100%;
    width: 100%;
    overflow: auto;
    background-size: contain;
    min-height: 300px;
    background-position: top center;
    border-bottom: none;
    border-radius: 0;
}
.about-sec  .about_section .aboutSection {
    width: 100%;
    padding: 40px 20px 20px 20px;
}
.about_section  .big_text strong {
    font-size: 35px;
    top: 0;
    letter-spacing: 8px;
}
.about_section .aboutSection h1 {
    line-height: normal;
    font-size: 25px;
    color: #fff;
}
.about_section .aboutSection h1 span {
    font-size: 25px;
    letter-spacing: normal;
}
.about_section .aboutSection p {
    padding: 10px 0px;
    font-size: 16px;
}
.headBox h1 {
    font-size: 24px;
    padding: 29px 0px;
}
.message-desk .about_section.message_section {
    display: flex;
    flex-direction: column-reverse;
}

.message-desk .about_section .inner_about_image {
    height: 100%;
    /* width: 100%; */
    overflow: auto;
    background-size: contain;
    min-height: 300px;
    background-position: top center;
    border-bottom: none;
    border-radius: 0;
    float: none;
    margin-left: -71px;
}

.message-desk .about_section .aboutSection {
    width: 100%;
    padding: 40px 20px 20px 20px;
}
.info-icon-sec .info_icon ul {
    display: block;
    justify-content: center;
    padding: 0;
}

.info-icon-sec .info_icon ul li a { 
    margin: auto;
}
.aboutpreSection h1{
    font-size: 25px ;
}

.mobile-0 .why_choose {
    background-position: center 140px;
    padding-top:70px;
    padding-bottom: 0px;
    position: relative;
    background-size: cover;
    z-index: 1;
}
.mobile-0 .why_choose .big_text strong {
    top: -8px;
    font-size: 38px;
}
.mobile-0 .why_choose h1 {
    margin-bottom: 30px;
    font-size: 25px;
    color: #fff;
}
.mobile-0 .why_choose ul.left_reason {
    padding: 0;
}
.mobile-0 .why_choose ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 0 0 5px 82px;
    color: #fff;
}
.mobile-0 .why_choose .reason_circle {
    height: 60px;
    margin-right: 18px;
    width: 60px;
    padding: 14px;
}
.mobile-0 .why_choose ul.right_reason {
    padding-left: 0;
}
.mobile-0 .why_choose ul.right_reason li {
    text-align: left;
    padding: 0 0 5px 82px;
}
.mobile-0 .why_choose ul.right_reason .Outer_circle {
    left: 0;
    right: auto;
}
.mobile-0 .why_choose ul.right_reason .reason_circle {
    margin-right: 18px;
    margin-left: 0;
}
.mobile-0 .why_choose:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(40 38 38 / 80%);
    content: '';
    position: absolute;
    z-index: -1;
}
.mobile-0 .why_choose ul li p b {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}
.student-box .trained_student {
    margin-top: 0;
    margin-bottom: 0;
}
.student-box .trained_by_city {
margin-top: 6px;
    font-size: 12px;
    padding: 0;

}

.student_list {
    position: relative;
    bottom: 0;
}

.inner-box {
    position: relative;
    color: #fff;
    z-index: 1;
    font-size: 18px;
    text-align: center;
    min-height: 300px;
    margin-top: 40px;
    margin-bottom: 0;
}
.update-sec {
    padding: 0;
}

.update-sec .right-section {
    height: auto;
    overflow-x: auto;
    border-radius: 0;
    margin-top: 0;
    margin-left: 0;
}
.update-sec .first-box {
    border-radius: 0;
}


.update-sec .last-box {
    border-radius: 0;
}
.update-sec .tabs {
    display: -webkit-box;
    flex-wrap: wrap;
}

.blog_section {
    padding-top: 0;
}

.blog_section .leadone {
    padding: 0;
    display: block;
}

.blog_section .leadone .blog_image {
    width: 100%;
}

.blog_section .leadone .blog_image img {
    width: 100%;
}
.blog_section .leadone .blog_detail {
    width: 100%;
    padding: 15px 15px 10px 15px;
    font-size: 15px;
}
.contact_us ul {
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0;
}
.contact_us ul li:first-child {
    margin-bottom: 0px !important;
}
.location .locationIcon {
    top: 0px !important;
}
.contact_us .location i {
    font-size: 30px;
    padding: 11px 13px;
    border: 7px solid #fff;
}
.contact_us .locationDetails {
    padding: 10px 10px 10px 20px;
}

.contact_us .locationDetails p {
    padding-left: 0px;
    padding-top: 8px;
}
.mobile-v{
    margin:0;
    display: none;
}
.mr-0{
    margin: 0;
}
.copyright{
    text-align: center;
}
.footer-sec p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}
.footer-sec .copyright .socials {
    display: flex;
    list-style: none;
    float: none;
    margin-left: 100px;
    margin-bottom: 0;
}

.call {
    position: fixed;
    display: block;
    width: 60px;
    height: 60px;
    bottom: 9px;
    left: 15px;
    background-color: #ff0000;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #de8a14;
    z-index: 100;
}

i.fa.fa-phone.my-float {
    transform: rotate(90deg);
}
    
    .fix-btn-footer p {
    background: #fff118;
    display: block;
    border: 1px solid #eb3b2b;
    padding: 7px 15px 7px 5px;
    margin: 9px 0;
    font-weight: bold;
    border-radius: 0 35px 35px 0;
    box-shadow: 0 0 12px 0px #ff0000f0;
    color: #000;
    font-size: 12px;
    border-left: 0;
}
    
.fix-btn-footer {
    position: fixed;
    bottom: 80px;
    z-index: 999;
    left: 0;
}
    
    
   



        }
