
/*===========================
    01.COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
@import url(https://allfont.net/allfont.css?fonts=broadway-su);
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #5A5872;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2B2A3D;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A5872;
  margin: 0px;
}



/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 0;
  padding: 0 40px;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out 0s;
  background-color: #ce0f3d;
}

.main-btn:hover {
  background-color: #ff6b6b;
  color: #fff;
}

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section_title .title {
    font-size: 26px;
  }
}

.section_title p {
  margin-top: 15px;
  font-size: 18px;
  color: #9e9db3;
}

.section_title.section_title_2 .title,
.section_title.section_title_2 p {
  color: #fff;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  /*margin-left: 0%;*/
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  //top: 50%;
  //left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: scaling 6000ms linear;
}

@keyframes scaling { 
         100% {
            transform: scale(0.5,0.5);
          }
          75% {
            transform: scale(1,1)
          }
          50% {
            transform: scale(1.5,1.5)
          }
          25% {
            transform: scale(2,2)
          }
    }




/*===========================
     02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  padding: 15px 0px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-out 0s;
  background: linear-gradient(to right, black 0%, #daa031 )135%;
}

 .sticky {
  position: fixed;
  z-index: 99;
  background-color: #000;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
}

 .sticky .navbar {
  padding: 2px 0;
}

 .navbar {
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: -5px;
}

 .navbar-brand {
  padding: 0;
}

 .navbar-brand img {
  width: 100px;
}

 .navbar-brand span{
  font-family: 'Broadway', arial;
  font-size:30px;
  color: white;
}

@media (max-width: 767px) {
   .navbar-brand img {
    width: 75px;
  }
}

 .navbar-toggler {
  padding: 0;
}

 .navbar-toggler:focus {
  box-shadow: none;
}

 .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

 .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

 .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

 .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
   .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}


 .navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .navbar-nav .nav-item {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-nav .nav-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
   .navbar-nav .nav-item {
    margin: 0;
  }
}

 .navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
}

 .navbar-nav .nav-item a::before {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media (max-width: 767px) {
   .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #222;
  }
}

@media (max-width: 767px) {
   .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #222;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-nav .nav-item a.active,  .navbar-nav .nav-item a:hover {
    color: #E84E4E;
  }
}

@media (max-width: 767px) {
   .navbar-nav .nav-item a.active,  .navbar-nav .nav-item a:hover {
    color: #E84E4E;
  }
}

 .navbar-nav .nav-item a.active::before,  .navbar-nav .nav-item a:hover::before {
  width: 100%;
}

 .navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
   .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

 .navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #fff;

  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
   .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

 .navbar-nav .nav-item .sub-menu li {
  display: block;
}

 .navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
}

 .navbar-nav .nav-item .sub-menu li a.active,  .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #E84E4E;
}

  .navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
   .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

 .navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

 .sticky .navbar-toggler .toggler-icon {
  background-color: #222;
}

 .sticky .navbar-nav .nav-item a {
  color: #fff;
}

 .sticky .navbar-nav .nav-item a::before {
  background-color: #E84E4E;
}

 /*.sticky .navbar-nav .nav-item a.active, */  .sticky .navbar-nav .nav-item a:hover {
  color: #ce0f3d;
}

@media only screen and (max-width: 992px) {
   .sticky .navbar-nav .nav-item a {
      color: #000;
  }
}


/*===== hero =====*/


.single_hero .carousel:before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:  rgba(0,0,0,0.42);
}

.single_hero .carousel-item{
    background-color: rgba(0,0,0,0.42);
    z-index: -1;
  }

.single_hero .carousel-item img{
  height: 100vh !important;
}


.single_hero {
  height: 100vh;
  position: relative;
    /*z-index: 1;
  clip-path: polygon(100% 0%, 100% 90%, 50% 100%, 0% 90%, 0 0);*/
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  
}


.single_hero_content{
  position: absolute;
  content: "";
  top: 27%;
  left: 0;
  width: 100%;
}

.hero_content {
  padding-top: 50px;
}

.hero_content .hero_title {
  font-size: 66px;
  line-height: 85px;
  color: #fff;
  margin-top: 15px;
  /*font-style: italic; */
  font-family: 'Lobster', cursive;
  font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_content .hero_title {
    font-size: 65px;
    line-height: 65px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_content .hero_title {
    font-size: 65px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .hero_content .hero_title {
    font-size: 45px;
    line-height: 38px;
  }
  .hero_content h3{
    font-size: 16px!important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero_content .hero_title {
    font-size: 65px;
    line-height: 50px;
    margin-bottom: 3px;
  }
  .hero_content h3{
    font-size: 12px;
  }
}

.hero_content .hero_title span {
  display: contents;
  color: #E84E4E;
}

.hero_content p {
  font-size: 16px;
  color: #fff;
  margin-top: 40px;
  margin-bottom: -30px;
}

.hero_content h3{
 
  font-size: 20px; 
  letter-spacing: 0.1rem;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 767px) {
  .hero_content p {
    font-size: 16px;
  }
}

.hero_content .main-btn {
  margin-top: 45px;
}

/*===========================
      03.FEATURES css 
===========================*/
.single_features i {
  font-size: 60px;
  line-height: 60px;
  color: #E84E4E;
  transition: all 0.3s ease-out 0s;
}


@media (max-width: 768px) {
  .feature_container{
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .single_features i {
    font-size: 40px;
    line-height: 45px;
  }
}

.single_features .features_title {
  color: #E84E4E;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .single_features .features_title {
    font-size: 24px;
  }
}

.single_features p {
  margin-top: 15px;
}

.single_features:hover i {
  color: #E84E4E;
}

/*===========================
      04.ABOUT css 
===========================*/
.about_area {
  background-color: #F9F9F9;
  position: relative;
  }

.about_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat; 
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_image {
    width: 100%;
    height: 500px;
    position: relative;
  }
}

@media (max-width: 767px) {
  .about_image {
    width: 100%;
    height: 600px;
    position: relative;
  }
}

.about_image .image_content {
  width: 185px;
  height: 185px;
  background-color: #ce0f3d;
  display: table;
  text-align: center;
  position: relative;
  left: -92px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content {
    width: 135px;
    height: 135px;
    left: -78px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_image .image_content {
    left: 0;
  }
}

@media (max-width: 767px) {
  .about_image .image_content {
    left: 0;
    width: 135px;
    height: 135px;
  }
}

.about_image .image_content .experience {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content .experience {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about_image .image_content .experience {
    font-size: 18px;
  }
}

.about_image .image_content .experience span {
  font-size: 44px;
  font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content .experience span {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .about_image .image_content .experience span {
    font-size: 36px;
  }
}

.about_content {
  padding-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_content {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .about_content {
    padding-right: 0;
  }
}

.about_content .main-btn {
  margin-top: 30px;
}

.about_content p{
  font-size: 15px;
}

/*===========================
      05.SERVICE css 
===========================*/
.card-title{
    margin: 15px auto;
    color: #ce0f3d;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease-out 0s;
    font-family: "Poppins", sans-serif;
}

.card-text{
  margin-bottom: 20px;
}

.card{
  box-shadow: 0px 2px 10px rgb(0 0 0 / 35%);
    border-radius: 3px;
}

.card:hover{
   box-shadow: 0 0 30px 0 rgb(218 160 49);
   transform: translateY(-10px);
   transition: all .5s ease;
}

.service-btn{
  background-color: #ce0f3d;
  color: #fff;
  border: 2px solid #ce0f3d;
  font-size: 12px;
  margin-bottom: 20px;
}

.service-btn:hover{
  border: 2px solid  #daa031;
  color:  #daa031;
  font-weight: 600;
  background-color:#fff;
}

.single_portfolio {
  position: relative;
  width: 25%;
}

@media (max-width: 768px){
  .m_col{
    margin:20px auto !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px){
  .mm_col{
    margin:20px auto !important;
  }
}

@media(min-width: 992px)
{
  .mmm_col{
    margin-top:20px !important;
  }
}

/*===========================
      06.PORTFOLIO css 
===========================*/
.single_portfolio{
  height: 300px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_portfolio {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .single_portfolio {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_portfolio {
    width: 50%;
  }
}

.single_portfolio img {
  width: 100%;
  height: 100%;
}

.single_portfolio::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ce0f3d;
  opacity: 0;
  transition: all 0.3s ease-out 0s;
}

.single_portfolio .portfolio_content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

.single_portfolio .portfolio_content .meta li {
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

.single_portfolio .portfolio_content .meta li a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
}

.single_portfolio .portfolio_content .meta li a:hover {
  background-color: #fff;
  color: #E84E4E;
}

.single_portfolio .portfolio_content .meta li:first-child {
  transform: translateX(-100%);
}

.single_portfolio .portfolio_content .meta li:last-child {
  transform: translateX(100%);
}

.single_portfolio .portfolio_content .portfolio_title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 25px;
  transform: translateY(100%);
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_portfolio .portfolio_content .portfolio_title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single_portfolio .portfolio_content .portfolio_title {
    font-size: 20px;
  }
}

.single_portfolio:hover::before {
  opacity: 1;
}

.single_portfolio:hover .portfolio_content .meta li {
  transform: translateX(0);
  transition-delay: 0.2s;
  opacity: 1;
}

.single_portfolio:hover .portfolio_content .portfolio_title {
  transform: translateX(0);
  transition-delay: 0.2s;
  opacity: 1;
}



/*===========================
    10.CONTACT css 
===========================*/
.contact_area {
  position: relative;
  z-index: 5;
}

.contact_area::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 42, 61, 0.9);
  z-index: -1;
}

#form-message {
  font-size: 16px;
  color: #2B2A3D;
  background: #F9F9F9;
  padding: 10px 15px;
  margin-top: 30px;
  background-color: #fff;
  text-align: center;
  border: 2px solid #daa031;
  border-radius: 5px;
}

p.form-message.success.form-message.error, p.form-message.error.form-message.error {
  color: #f00;
}

.single_form {
  margin-top: 30px;
}

.single_form input,
.single_form textarea {
  width: 100%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0 25px;
  font-size: 16px;
  color: #fff;
  background: none;
  transition: all 0.3s ease-out 0s;
}

.single_form input:focus,
.single_form textarea:focus {
  border-color: #fff;
}

.single_form textarea {
  height: 170px;
  resize: none;
  padding-top: 15px;
}

/*+++++++++++++++++++++++++++*/
/*CLIENT */
/*=============================*/

.clients img{
  width: 50%;
  height: 75px;
}



/*===========================
    11.FOOTER css 
===========================*/
#footer {
  background: black;
  padding: 0 0 10px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: linear-gradient(to right, transparent 0%, #daa031 )135%;
  border-bottom: 1px solid #222222;
  padding: 30px 0 5px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  font-weight: 700;
  font-family: 'Broadway', arial;
  font-size: 30px;
  color: white;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
 
#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #ffc451;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 5px;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background-color: #E84E4E;
  text-align: center;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
}

.back-to-top:hover {
  color: #fff;
  background-color: #E84E4E;
}



#service_container .nav-pills .nav-link{
  border-top-left-radius: .80rem;
  border-top-right-radius: .80rem;
  border-bottom-right-radius: .80rem;
  border-bottom-left-radius: .80rem;

  padding: 7px 20px;
  margin-right: 3px;
  background-color: #fff;
  color:  #ce0f3d;
  font-weight: 600;
  border: 1px solid #ce0f3d;

}
#service_container .nav-pills .nav-link.active{
background-color: #daa031;
border: none;
border-bottom: 1px solid #daa031;
color: white;
}


.tab-content h5{
  word-spacing: 0.2rem;
  color: #daa031;
}
.tab-content .card{
  margin-bottom: 30px;
 }

.tab-content .card-title{
      font-size: 17px;
    font-weight: 700
}

.tab-content img{
  width: 100%;
  height: 180px;
  background-color:transparent;
}

@media (min-width: 992px)
{
  .tab-content .offset-lg-1 {
      margin-left: 10.333333%;
  }
}

.carousel-control-prev, .carousel-control-next{
  background-color: unset;
  border: none;
}

.carousel-item img{
  height: 500px !important;
}