*{padding: 0; margin: 0; box-sizing: border-box; list-style: none; text-decoration: none;}
ul{
    padding-left: 0;
}
.sec-gap {
  margin-top: 4rem;
}   

.fact-box{background: #bff6ff !important;}

/*** Spinner Start ***/

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

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


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

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

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

.btn-md-square {
    width: 46px;
    height: 46px;
}

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

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

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

/* .topbar .top-info {
    letter-spacing: 1px;
} */

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}
.navbar-brand{
    width: 150px;
}
.navbar-brand img{width: 100%;}
.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

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

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.sticky .sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    display: block;
    z-index: 999;
    width: 100%;
    box-shadow: 0 0px 5px #818181;
}

.subnav-wrap{display: flex;}
/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 20px;
    height: 0;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

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

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: var(--hero-bg) center center no-repeat;
    background-size: cover;
    height: 400px;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
    text-transform: capitalize;
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
}


/* .services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: #007bac83;
    transition: .5s;
} */

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

/* .services-item:hover .services-content-icon p {
    color: var(--bs-white);
} */

.box-img img{width: 100%; height: 200px; object-fit: cover; border-radius: 8px;}
/*** Services End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

.blog .blog-wrap .blog-container .blog-card-wrap,
.blog .blog-wrap .blog-container .blog_slide {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.blog .blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s all ease;
  border: 1px solid rgba(0, 0, 0, 0.1843137255);
  flex-basis: calc(33.3% - 20px);
}
.blog .blog-card:hover {
  box-shadow: 0 0 15px #8C8D8A;
  transition: 0.5s all ease;
}
.blog .blog-card .blog-img {
  width: 100%;
  height: 200px;
}
.blog .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog-card .blog-content {
  padding: 10px 20px 30px;
}
.blog .blog-card .blog-content .blog-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.blog .blog-card .blog-content h4 {
  margin-top: 5px;
  color: #000;
  transition: 0.5s ease;
}
.blog .blog-card .blog-content h4:hover {
  color: #AC0004;
  transition: 0.5s ease;
}
.blog .blog-card .blog-content .blog-btn {
  margin-top: 20px;
}
.blog .blog-card .blog-content .blog-btn a {
  background: #FCB018;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.5s all ease;
  color: #000;
  font-weight: 500;
}
.blog .blog-card .blog-content .blog-btn a:hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}

.blog-head {
  margin: 20px 0;
}
.blog-head h1 {
  line-height: 55px;
  margin-bottom: 20px;
}

.blog .comment {
  margin-top: 20px;
  background: #fff;
}
.blog .comment .form-body {
  background: none;
  box-shadow: none;
  padding: 0;
}
.blog .comment .form-body .form-box input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  height: 30px;
}
.blog .comment .form-body .form-box textarea {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  height: 150px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #2b2b2b;
}
.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

.sticky-socail-icon {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 999;
}
.sticky-socail-icon ul li{
    list-style: none;
}
.sticky-socail-icon ul li a{
    transform: translate(90px, 0);
    background-color: #0865ff;
    color: #fff;
    border-radius: 50px 0 0 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    padding: 5px;
    font-size: 16px;
    transition: all .8s;
    display: flex;
    align-items: center;
    font-weight: 600;
    
}
.sticky-socail-icon ul li a:hover{
    transform: translate(1px, 0);
    transition: all .8s;
}

.sticky-socail-icon ul li a span{
    background: #fff;
    border-radius: 50px;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.form-body {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px #636363;
  padding: 20px;
}
.form-body .form-heading {
  margin-bottom: 10px;
}
.form-body .form-box .input-body {
  margin-bottom: 10px;
}
.form-body .form-box .input-body input,
.form-body .form-box .input-body select {
  width: 100%;
  height: 40px;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 10px 20px;
}
.form-body .form-box .input-body textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 10px 20px;
}
.form-body .form-btn .btn {
  width: 100%;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 0 0 20px !important;
  background: #008fd1;
  position: relative;
  cursor: pointer;
  color: #fff;
}
.form-body .form-btn .btn:hover {
  background: #00c080;
  color: #fff;
}
.form-body .form-btn .btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-pop {
  overflow: hidden;
}
.form-pop .popupform {
  display: block;
  position: relative;
  z-index: 999;
}

.popupform {
  display: none;
}
.popupform .popform {
  position: fixed;
  display: block;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
}
.popupform .popform .close-btn {
  color: #ff0000;
  text-align: right;
  font-size: 20px;
  cursor: pointer;
}
.popupform .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7607843137);
}

.form-pop-btn {
  position: fixed;
  top: 40%;
  left: 0;
}
.form-pop-btn button {
  writing-mode: sideways-lr;
  background: #FCB018;
  border: none;
  padding: 20px 8px;
  border-radius: 0px 10px 10px 0px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.mobile-form-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.mobile-form-btn a {
  background: #44B000;
  width: 50%;
  text-align: center;
  padding: 10px 0;
  color: #ffffff;
  font-weight: 500;
}
.mobile-form-btn a:nth-child(2) {
  background: #0289e2;
}

/*** Footer End ***/


/* ----------- Service Detail Page Css ------------- */
.service-detail-data {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.service-detail-data h4 {
  text-align: center;
}
.service-detail-data .data-left {
  width: 50%;
}
.service-detail-data .data-right {
  width: 50%;
}
.service-detail-data .data-right .service-side-bar .side-bar-menu {
  padding: 2rem;
  background-color: #dcffe8;
  margin-bottom: 0.5rem;
  border-radius: 10px;
}
.service-detail-data .data-right .service-side-bar .side-bar-menu ul li {
  border-bottom: 1px dashed #83ff94;
  padding: 0.7rem 0;
  cursor: pointer;
  transition: 0.5s all ease;
}
.service-detail-data .data-right .service-side-bar .side-bar-menu ul li a {
  color: #000;
}
.service-detail-data .data-right .service-side-bar .side-bar-menu ul li a:hover {
  color: #0050ac;
}
.service-detail-data .data-right .service-side-img {
  margin-top: 1.5rem;
}
.service-detail-data .data-right .service-side-img img {
  border-radius: 2rem;
}
/* ------ Faq Section Css --------- */

.faq .brand-heading {
  margin-bottom: 2rem;
}
.faq .faq-container .faq-box {
  border: 1px solid #8cb4ff;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq .faq-container .faq-box .question {
  position: relative;
  background: #dce8ff;
  padding: 10px;
  font-weight: 500;
  cursor: pointer;
}
.faq .faq-container .faq-box .question::after {
  content: "+";
  position: absolute;
  right: 10px;
}
.faq .faq-container .faq-box .answer {
  padding: 10px;
  display: none;
}
.faq .faq-container .active .answer {
  display: block;
}
.faq .faq-container .active .question::after {
  content: "-";
}

/* ---------- Why Choose as Section  Css ------- */

.why-choose-card {
  margin-top: 2rem;
}
.why-choose-card .why-choose-card-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box {
  text-align: center;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 10px #a7a7a7;
  border-radius: 10px;
  flex-basis: calc(25% - 10px);
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box .icon {
  width: 4rem;
  margin: 0 auto 10px;
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box .icon img {
  width: 100%;
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box h5 {
  margin-bottom: 10px;
}

/* ----- Testimonila --------------- */
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide {
  margin-top: 40px;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card {
  border: 1px solid #8C8D8A;
  padding: 20px;
  border-radius: 20px;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-name-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-name-wrap .testi-img {
  width: 50px;
  overflow: hidden;
  border-radius: 50px;
  height: 50px;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-name-wrap .testi-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-pra {
  margin-top: 15px;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-star {
  margin-top: 10px;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-star i {
  color: #FCB018;
}


/* ---------- Ck Editor Css ------------ */
.ck-editor img {
  width: 100%;
}
.ck-editor h1 {
  font-size: 36px;
  font-weight: 500;
}
.ck-editor h2 {
  font-size: 28px;
  font-weight: 400;
}
.ck-editor h3 {
  font-size: 22px;
  font-weight: 400;
}

.ck-editor h4 {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}
.ck-editor h5 {
  margin-bottom: 5px;
  font-weight: 500;
}
.ck-editor p {
  margin-bottom: 10px;
  text-align: justify;
}
.ck-editor .data-left img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.ck-editor .ck-list ul li {
  list-style-image: url(../img/icon/editor-list.png);
  font-size: 15px;
  margin-left: 30px;
  margin-bottom: 5px;
}
.ck-editor .ck-list ol li {list-style: auto;}
.ck-cmark li {list-style-image: none !important;  margin-left: 10px !important;}

/* -------- Sitemap ------------- */
.sitemap-wrap{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.sitemap-content{
  flex-basis: calc(33.3% - 20px);
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  padding: 20px;

}

/* --------- Market Area ------------- */
.market-area-box{
  border: 1px solid #e7e7e7;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.market-area-box ul{
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;
}
.market-area-box ul li a{
  border-radius: 5px;
  background-color: #00c0802a;
  padding: 10px;
  color: #000;
}
/* --------- Project ------------ */

.tabs{
margin-bottom:30px;
text-align: center;
}

.tab-btn{
padding:10px 20px;
border:none;
background:#eee;
margin:5px;
cursor:pointer;
font-weight:600;
}

.tab-btn.active{
background:#000;
color:#fff;
}

.project-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.card{
width:250px;
overflow:hidden;
border-radius:10px;
}

.card img{
width:100%;
display:block;
transition:0.3s;
}

.card img:hover{
transform:scale(1.05);
}

/* ----------- Package ------------- */
.package-box{
  border: 2px solid #ff8d0c;
  transition: 0.5s;
  background-color: #fff;
}
.package-box:hover{
  box-shadow: 0 0 20px #9e9e9e;
  transition: 0.5s;
}
.card-head {
    background: #ff8d0c;
    border-radius: 0px 0px 50px 50px;
    padding: 10px 0;
    width: 80%;
    margin: auto;
}
.package-wrap:nth-child(2) .package-box{border: 2px solid #02b4cc; box-shadow: 0 0 20px #9e9e9e; }
.package-wrap:nth-child(2) .card-head{  background: #02b4cc;}
.package-wrap:nth-child(3) .package-box{border: 2px solid #0249cc; }
.package-wrap:nth-child(3) .card-head{  background: #0249cc;}
.package-box p{
  margin: 0;
  color: #000;
}
.package-box ul li p{
  margin: 5px 0;
}
p.monthly-tag {
    background: #0286db;
    color: #fff;
    width: fit-content;
    margin: 7px auto 0px;
    padding: 5px 10px;
    border-radius: 5px;
}
.package-card-btn{
  margin: 20px 0;
}
.package-card-btn a{
  border: 1px solid #0050ac;
  border-radius: 5px;
  padding: 5px 10px;
  transition: 0.5s;
}
.package-card-btn a:hover{
  background: #0050ac;
  color: #fff;
  transition: 0.5s;
}
.package-btn {
    text-align: center;
    margin-bottom: 20px;
}

.package-btn button {
    padding: 5px 15px;
    border-radius: 10px;
    border: none;
    background: #00bd82;
    transition: 0.5s;
}
.package-btn button:hover{
  background: #18ffb6;
  transition: 0.5s;
}

.toggle-icon span {
    display: block;
    width: 24px;
    height: 4px;
    background: #2b2b2b;
    border-radius: 5px;
    transition: 0.5s;
    transform-origin: right;
}
.toggle-icon span:nth-child(2) {
    margin: 5px 0;
}
.navbar-toggler {background: none;}

.openmenu .toggle-icon span:nth-child(1) {
    transform: rotate(-45deg);
}
.openmenu .toggle-icon span:nth-child(2) {
    opacity: 0;
}
.openmenu .toggle-icon span:nth-child(3) {transform: rotate(45deg);}

.submenu-colum-2{column-count: 2;}
.contact-card{gap: 10px;}
.contact-card-wrap{flex-basis: calc(33.3% - 10px); border-radius: 10px;}
/* ----- Fact Card Box Css----- */
.fact-card-box-wrap{display: flex; flex-wrap: wrap; gap: 20px;}
.fact-card-box{flex-basis: calc(25% - 20px); text-align: center; padding: 10px;}
.fact-card-box-content h3{color: #004db1 !important; font-size: 40px;}
.fact-card-box-content h3 span i{color: #ffd972;}
.fact-card-box-content h3 span i:nth-child(1){font-size: 20px;}
.fact-card-box-content h3 span i:nth-child(2){font-size: 18px;}
.fact-card-box-content h3 span i:nth-child(3){font-size: 16px;}
.fact-card-box-content h3 span i:nth-child(4){font-size: 14px;}
.fact-card-box-content h3 span i:nth-child(5){font-size: 12px;}
.factcard{background: #26d48c; padding: 40px 0;}
.c-bread { padding: 50px 0 !important;}