@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #C2272D;
}

a:hover {
  color: #c2272d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Raleway", sans-serif;
    font-weight: 600;
}

.marginTop2{
    margin-top: 2rem!important;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #C2272D;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #999999;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #C2272D;
}

#topbar .contact-info i {
  color: #C2272D;
  padding: 4px;
}

#topbar .contact-info .icofont-phone {
  padding-left: 20px;
  margin-left: 10px;
}

#topbar .social-links a {
  color: #5c768d;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #C2272D;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  z-index: 997;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin:-6px 0;
  max-height:60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #222222;
  padding: 12px 15px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #C2272D;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #C2272D;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #222222;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #c2272d;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 53, 72, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 60px);
  padding: 0;
  overflow: hidden;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 60px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(13, 30, 45, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  margin-left: 0px;    
  font-size: 48px;
  font-weight: 900;
  width: 50%;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

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

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  display: inline-block;
    padding: 1.25rem 2.25rem 1.25rem 2.25rem;
    border: 0;
    border-radius: 50px;
    background-color: #C2272D;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: all 0.2s;
}

#hero .btn-get-started:hover {
  border: 1px solid #ffffff;
    color: #ffffff;   
}

/*@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #5e5e5e;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #222222;
}

.counts .section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #ffffff;
}


.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding-bottom: 30px;
}

/*.about .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}*/

.about .video-box img {
  padding: 15px 0;
}

.about .section-title p {
  text-align: left;
  line-height: 2em;
  color: #222222;
}

.about .about-content {
  padding: 40px;
}

.about .icon-box + .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #C2272D;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #C2272D;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #C2272D;
}

.about .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#C2272D 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #C2272D;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Lists
--------------------------------------------------------------*/
.about-lists {
  padding: 40px;
}

.about-lists .row {
  overflow: hidden;
}

.about-lists .content-item {
  padding: 40px;
  border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
  margin: -1px;
}

.about-lists .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #c2272d;
}

.about-lists .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.about-lists .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .about-lists .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  box-shadow: 0px 0 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 20px;
}

.counts .count-box i {
  display: block;
  font-size: 64px;
  margin-bottom: 15px;
}

.counts .count-box span {
  font-size: 42px;
  display: block;
  font-weight: 700;
  color: #222222;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #C2272D;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
  background: rgba(31, 53, 72, 0.6);
  padding-bottom: 30px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-info a {
  color: #C2272D;
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  padding-top: 7px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 35px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info a:hover {
  background: #C2272D;
  color: #fff;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  padding-bottom: 0;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0 30px 0;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -48px;
  left: 20px;
  right: 20px;
  background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
  padding: 15px 0;
  border-radius: 4px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  color: #c2272d;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 100px;
  }
}


#footer {
  background: #222222;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer.footer .me-3 {
    margin-right: 1rem !important;
}

#footer .footer-top {
    background: #222222;
    border-top: 1px solid #adb5bd;
    border-bottom: 1px solid #adb5bd;
    padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#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: transparent;
  border: 1px solid #999999;
  color:#999999;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #C2272D;
  color: #fff;
  border: none;
  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: #c2272d;
  font-size: 18px;
  line-height: 1;
}

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

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

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

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

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

#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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #C2272D;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

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

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

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

#footer .credits a {
  color: #9eccf4;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
}

.services .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #C2272D;
  font-size: 40px;
  overflow: hidden;
  padding-top: 10px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon-box:hover .icon i {
  box-shadow: 0px 0 30px rgba(194, 39, 45, 0.5);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #222;
  transition: 0.3s;
}

.services .title a:hover {
  color: #C2272D;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #C2272D;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

.service-boxx{
    justify-content: center;
}

/*-----------------------------------
---Product Life Cycle----------------*/

:root {
	 --font-size: 0.8em;
	 --bg1: #f5f8f7;
	 --blue: #3498db;
	 --green: #2ecc71;
	 --purple: #9b59b6;
	 --gold: #f1c40f;
	 --red: #e74c3c;
	 --orange: #e67e22;
	 --shadow1: 0 2px 4px #000 26, 0 3px 6px #000 1f;
	 --shadow2: 0 2px 6px #000 44, 0 4px 7px #000 22;
}

 .product-lifecycle {
     background: #f5f8f7;
	 font-size: 0.8em;
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: center;
}
 .product-lifecycle .product-box {
	 position: relative;
	 width: 100%;
	 background: #f5f8f7;
	 border-radius: 0.5em;
	 padding: 0.5em;
	 z-index: 1;
	 transition: all 0.2s;
 }
 .product-lifecycle .product-box .numberWrap {
	 position: absolute;
}
 .product-lifecycle .product-box .number {
	 font-family: "maven pro", sans-serif;
	 font-size: 10em;
	 font-weight: 900;
	 width: 0.9em;
	 text-align: center;
}
 .product-lifecycle .product-box .number.fontColor1 {
	 color: var(--blue);
}
 .product-lifecycle .product-box .number.fontColor2 {
	 color: var(--green);
}
 .product-lifecycle .product-box .number.fontColor3 {
	 color: var(--purple);
}
 .product-lifecycle .product-box .number.fontColor4 {
	 color: var(--gold);
}
 .product-lifecycle .product-box .number.fontColor5 {
	 color: var(--red);
}
 .product-lifecycle .product-box .number.fontColor6 {
	 color: var(--orange);
}
 .product-lifecycle .product-box .coverWrap {
	 transform: rotate(130deg);
	 position: absolute;
	 width: 18em;
	 height: 15em;
	 left: -3em;
	 top: -1em;
}
 .product-lifecycle .product-box .coverWrap .numberCover {
	 position: absolute;
	 background: #f5f8f7;
	 width: 18em;
	 height: 6em;
	 border-radius: 50% 50% 0 0;
	 border-bottom: 3px solid #f5f8f7;
	 transition: all 0.4s;
}
 .product-lifecycle .product-box .coverWrap .numberCover::before {
	 position: absolute;
	 content: "";
	 bottom: 5px;
	 left: 4em;
	 right: 4em;
	 top: 5em;
	 box-shadow: 0 0 30px 17px #486685 77;
	 border-radius: 100px / 10px;
	 z-index: -1;
}
 .product-lifecycle .product-box .coverWrap .numberCover::after {
	 position: absolute;
	 bottom: 0;
	 content: "";
	 left: -10%;
	 width: 120%;
	 height: 150%;
	 background: radial-gradient(at bottom, #48668533, transparent, transparent);
	 z-index: 1;
}
 .product-lifecycle .product-box .content {
	 margin: 8em 3em 1em 7em;
	 position: relative;
}
 .product-lifecycle .product-box .content h2 {
	 font-size: 1.7em;
	 font-weight: 600;
	 text-align: center;
	 margin-bottom: 10px;
	 text-transform:capitalize;
     color: #C2272D;
     
}
 .product-lifecycle .product-box .content p {
	 line-height: 1.5em;
   }

 .product-lifecycle .product-box:hover .coverWrap .numberCover {
	 border-radius: 100%;
}

.product-lifecycle .product-box .icon {
	 position: absolute;
	 font-size: 2rem;
	 text-align: center;
	 top: -1.3em;
	 left: 50%;
	 transform: translatex(-50%);
}

.product-lifecycle .product-box .icon:before {
	 color: #666;
	 font-family: FontAwesome;
	 font-style: normal;
	 font-weight: normal;
	 text-decoration: inherit;
}

 /*.iconCodepen:before {
	 content: "\f1cb";
}
 .iconSocial:before {
	 content: "\f08a";
}
 .iconAirplane:before {
	 content: "\f1d9";
}
 .iconMap:before {
	 content: "\f278";
}
 .iconBulb:before {
	 content: "\f0eb";
}
 .iconPeace:before {
	 content: "\f25b";
}
*/

/*-----------------------------------
-----------------My Style----------------*/

.text-color {
    color: #C2272D;
}

.bg-1 {
    background-color: #444444;
    background-size: cover;
}

.gray-img img {
    width: 100%;
    height: 100%;
    transition: all 1s;
    filter: grayscale(100%);
}

.gray-img img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
}

/*-------------Testimony Section------------------*/

.testimony-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  padding: 5em 0;
  z-index: 0;
}
  .testimony-section .aside-stretch {
    background-color: #C2272D; 
}

.heading-section h2 {
    line-height: 1.2;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.aside-stretch-right {
    background: #999999;
}

.aside-stretch-right:after {
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    content: '';
    width: 360%;
    background: #999999;
}

.aside-stretch:after {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    content: '';
    width: 360%;
    background: #999999;
}
    .testimony-section .aside-stretch:after {
      background-color: #C2272D;
}
  .testimony-section.aside-stretch-right {
    background-color: #999999; }
    .testimony-section.aside-stretch-right:after {
      background-color: #999999; }
  .testimony-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    background: #C2272D;
    z-index: -2; }
  .testimony-section:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    content: '';
    background: rgba(255, 255, 255, 0.03);
    -webkit-transform: matrix(1, 0, 0.5, 1, 150, 0);
    -ms-transform: matrix(1, 0, 0.5, 1, 150, 0);
    transform: matrix(1, 0, 0.5, 1, 150, 0);
    z-index: -1; }
  .testimony-section .owl-carousel {
    margin: 0; }
  .testimony-section .owl-carousel .owl-stage-outer {
    padding-top: 0;
    padding-bottom: 0;
    position: relative; }
  .testimony-section .owl-nav {
    position: absolute;
    bottom: 60px !important;
    left: 0;
    right: 0;
    margin: 0 auto; }
    @media (max-width: 991.98px) {
      .testimony-section .owl-nav {
        display: none; } }
    .testimony-section .owl-nav .owl-prev,
    .testimony-section .owl-nav .owl-next {
      position: absolute;
      width: 60px;
      height: 60px;
      background: #fff !important;
      -moz-transition: all 0.7s ease;
      -o-transition: all 0.7s ease;
      -webkit-transition: all 0.7s ease;
      -ms-transition: all 0.7s ease;
      transition: all 0.7s ease;
      opacity: 1; }
      .testimony-section .owl-nav .owl-prev span:before,
      .testimony-section .owl-nav .owl-next span:before {
        font-size: 20px;
        margin-top: 7px;
        color: #000000; }
    .testimony-section .owl-nav .owl-prev {
      top: 0 !important;
      right: 0 !important; }
      @media (min-width: 992px) {
        .testimony-section .owl-nav .owl-prev {
          right: 61px !important; } }
      .testimony-section .owl-nav .owl-prev:hover, .testimony-section .owl-nav .owl-prev:focus {
        background: #000000 !important;
        outline: none !important; }
        .testimony-section .owl-nav .owl-prev:hover span:before, .testimony-section .owl-nav .owl-prev:focus span:before {
          font-size: 20px;
          margin-top: 7px;
          color: #fff; }
    .testimony-section .owl-nav .owl-next {
      top: 0 !important;
      right: 0 !important; }
      @media (min-width: 992px) {
        .testimony-section .owl-nav .owl-next {
          right: 0 !important; } }
      .testimony-section .owl-nav .owl-next:hover, .testimony-section .owl-nav .owl-next:focus {
        background: #000000 !important;
        outline: none !important; }
        .testimony-section .owl-nav .owl-next:hover span:before, .testimony-section .owl-nav .owl-next:focus span:before {
          font-size: 24px;
          margin-top: 7px;
          color: #fff; }
  .testimony-section .owl-dots {
    text-align: left; }
    .testimony-section .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3); }
      .testimony-section .owl-dots .owl-dot.active {
        background: #fff; }

.testimony-wrap {
  display: block;
  position: relative;
  color: #ffffff;
  border-radius: 4px;
  padding: 0;
  margin-bottom: 0;
  z-index: 0; }
  .testimony-wrap .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    background-position: top center; }
    .testimony-wrap .user-img .quote {
      position: absolute;
      bottom: -10px;
      right: 0;
      width: 30px;
      height: 30px;
      background: #C2272D;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%; }
      .testimony-wrap .user-img .quote i {
        color: #fff; }
  .testimony-wrap .text {
    width: calc(100% - 100px); }
  .testimony-wrap .name {
    font-weight: 500;
    margin-bottom: 0;
    color: #fff; }
  .testimony-wrap .position {
    font-size: 18px;
    color: #222222;    
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500; }
 


/*-------------About Section------------------*/

.bg-half-light {
    position: relative;
    z-index: 0;
}

.bg-half-light:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    content: '';
    background: #f3f5f6;
    z-index: -1;
}

/*.ftco-animate {
    opacity: 0;
    visibility: hidden;
}*/

.services-wrap {
  margin-bottom: 40px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  -webkit-box-shadow: 0px 15px 46px -16px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 15px 46px -16px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 15px 46px -16px rgba(0, 0, 0, 0.11); 
  position: relative;
}

  .services-wrap .gray-img{
       overflow: hidden;
}

  .services-wrap .gray-img img{
    width: 100%;
    height:100%;   
    transition: all 1s;
    filter: grayscale(100%);
}


.services-wrap .gray-img img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
}

.img, .blog-img, .user-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

  .services-wrap .text {
    width: 100%;
    text-align: center;
    padding: 40px;
    position: relative;
}
    .services-wrap .text h2 {
      font-weight: 500;
      font-size: 22px; 
}
    .services-wrap .text .icon {
      width: 80px;
      height:80px;
      border-radius: 50%;
      background:#C2272D;
      margin: -65px auto 20px auto;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      -webkit-box-shadow: 0px 11px 32px -12px rgba(0, 0, 0, 0.28);
      -moz-box-shadow: 0px 11px 32px -12px rgba(0, 0, 0, 0.28);
      box-shadow: 0px 11px 32px -12px rgba(0, 0, 0, 0.28); 
}

      .services-wrap:hover .text .icon span {
        color: white; }
.dis-icon{
    width:60%;
    padding-top: 12px;
}

.dis-icon-2{
    width:60%;
    padding-top: 20px;
}

.about-item-img{
    position: relative;
} 

.about-item-img .gray-img{
   overflow: hidden;
} 

.about-item-img .gray-img img{
    width: 100%;
    height:100%;    
    transition: all 1s;
    filter: grayscale(100%);
}

.about-item-img .gray-img img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
}

/*-----------Our Diversities-----------------------*/

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 10rem;
}

.sticky:before, .sticky:after {
    content: '';
    display: table;
}

/*--------------Our Services-------------------------*/

#learn-more {
	 fill-opacity: 0;
	 fill: #fff;
	 stroke: #fff;
	 stroke-width: 2;
	 border-radius: 5px;
	 stroke-linejoin: round;
	 transition: all 250ms ease-in;
	 cursor: pointer;
}
 #learn-more:hover {
	 fill-opacity: 1;
}
 #learn-more:hover ~ .learn-more-text {
	 fill: #C2272D;
}
 .learn-more-text {
	 font-family: 'Roboto';
	 fill: #fff;
	 pointer-events: none;
	 font-size: 14px;
	 transition: all 250ms ease-in;
}
 .center {
	 fill: #C2272D;
}
 .pointer {
	 fill: #fff;
	 stroke: #C2272D;
	 stroke-width: 2;
}
 .nav-copy {
	 font-family: 'Roboto';
	 fill: #fff;
	 fill-opacity: 1;
	 transition: all 250ms ease-in;
}
 .nav-copy.changing {
	 fill-opacity: 0;
}
 .service {
	 cursor: pointer;
}
 .service text {
	 font-size: 16px;
	 font-family: 'Roboto';
	 text-anchor: middle;
}
 .service .icon-wrapper {
	 transform-origin: 50% 50%;
}
 .service .icon-wrapper, .service .icon-wrapper > * {
	 transition: all 250ms ease-in;
}
 .service circle {
	 fill: #C2272D;
}
 .service circle.shadow {
	 fill-opacity: 0;
	 filter: url(#service-shadow);
}
 .service use {
	 fill: #fff;
}
 .service text {
	 fill: #4d4d4d;
}
 .service.active .icon-wrapper, .service:hover .icon-wrapper {
	 transform: scale(1.15) translateY(-5px);
}
 .service.active .icon-wrapper, .service:hover .icon-wrapper, .service.active .icon-wrapper > *, .service:hover .icon-wrapper > * {
	 transition: all 250ms ease-out;
}
 .service.active .icon-wrapper circle.shadow, .service:hover .icon-wrapper circle.shadow {
	 fill-opacity: 0.4;
}
 .service.active text, .service:hover text {
	 fill: #C2272D;
	 font-weight: bold;
}



/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 10px 0 10px 0;
}

.contact .card-deck .card{
  background-color: #f5f5f5;
  border: none;
  border-radius: 10px;
}

.contact .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C2272D;
    border-radius: 50px;
}

.contact .contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contact .contact-text {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
    color: #454545;
}

.contact .contact-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #C2272D;
}

.contact .contact-social a:hover {
    color: #222222;
}

.contact .contact-form iframe {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.btn.custom-btn {
    padding: 12px 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #C2272D;
    border: 2px solid #C2272D;
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-btn:hover {
    color: #C2272D;
    background: transparent;
}

.contact .btn.custom-btn:focus,
.form-control:focus,
.custom-select:focus {
    box-shadow: none;
}

.contact-section{
    width: 100%;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: url(../images/Contact-Us-Seek-Cover.jpg) right bottom / cover no-repeat;
}


/*-----------------Contact Us---------------------------------*/

 .coming-soon {
  position: relative;
  width: 100%;
  height: 30vh;
  z-index: -10;
  background: linear-gradient(to top, #1b1d1d, rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0.75));
  overflow: hidden; 
}

/* line 1, ../../Arafath/CL/December/235. Job board/HTML/scss/_btn.scss */
.advice .boxed-btn {
  background: #C2272D;
  font-family: "Raleway", sans-serif;    
  display: inline-block;
  padding: 14px 44px;
  font-size: 14px;
  font-weight: 400;
  border: none;
  border-radius: 50px;
  text-align: center;
  color: #ffffff !important;
  cursor: pointer;
}


.advice .boxed-btn i{
 padding-right: 10px;
}

/* line 15, ../../Arafath/CL/December/235. Job board/HTML/scss/_btn.scss */
.advice .boxed-btn:hover {
  background: #999999;
  }

/* line 20, ../../Arafath/CL/December/235. Job board/HTML/scss/_btn.scss */
.advice .boxed-btn:focus {
  outline: none;
}


.crane__list,
.skyscrappers__list,
.tree__container {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.advice {
  display: flex;
  height: 50vh;
  width: 100vw;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background:#fff;
}
.advice__title {
  font-size: 4rem;
  text-align: center;
}
.advice__description {
  margin-top: 1rem;
  font-size: 2rem;
  text-align: center;
    color: #222;
}
p.advice__description {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
    color: #222;
}
.advice__description span:first-child {
  margin-right: -0.7rem;
}
.advice__description span:last-child {
  margin-left: -0.7rem;
}

.city-stuff {
  display: flex;
  position: absolute;
  justify-content: center;
  width: 100%;
  height: 100%;
  bottom: 0;
  overflow: hidden;
  box-shadow: inset 0 -60px 0 -30px #C2272D;
}

.skyscrappers__list {
  width: 100%;
  height: 86.6666666667px;
  left: 0;
}
.skyscrappers__list .skyscrapper__item {
  position: absolute;
  height: inherit;
  bottom: 15%;
  width: 43.3333333333px;
  background:linear-gradient(79deg, rgba(194,39,45,1) 0%, rgba(214,108,112,1) 52%, rgba(254,194,194,0) 100%);
}
.skyscrappers__list .skyscrapper__item::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  left: 10%;
  bottom: 10%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAFElEQVQImWP4////fwYYIJKDEwAAfPsP8eFXG40AAAAASUVORK5CYII=") space;
}
.skyscrappers__list .skyscrapper__item:last-child:not(:only-child) {
  background: #C2272D;
}
.skyscrappers__list .skyscrapper-1 {
  width: 121.3333333333px;
  height: 138.6666666667px;
  right: 25%;
  bottom: 0;
  z-index: 10;
  transform: rotate(180deg);
}
@media screen and (max-width: 450px) {
  .skyscrappers__list .skyscrapper-1 {
    display: none;
  }
}
.skyscrappers__list .skyscrapper-2 {
  width: 60.6666666667px;
  height: 69.3333333333px;
  right: 35%;
  bottom: 0;
  z-index: 10;
  transform: rotate(180deg);
  bottom: 10%;
}
@media screen and (max-width: 900px) {
  .skyscrappers__list .skyscrapper-2 {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .skyscrappers__list .skyscrapper-1 {
    display: none;
  }
}
.skyscrappers__list .skyscrapper-3 {
  width: 40.4444444444px;
  height: 46.2222222222px;
  right: 45%;
  bottom: 0;
  z-index: 10;
  transform: rotate(180deg);
  height: 115.5555555556px;
}
@media screen and (max-width: 900px) {
  .skyscrappers__list .skyscrapper-3 {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .skyscrappers__list .skyscrapper-1 {
    display: none;
  }
}
.skyscrappers__list .skyscrapper-4 {
  width: 30.3333333333px;
  height: 34.6666666667px;
  right: 55%;
  bottom: 0;
  z-index: 10;
  transform: rotate(180deg);
  height: 86.6666666667px;
}
.skyscrappers__list .skyscrapper-4::after {
  width: 20%;
  height: 60%;
  left: 25%;
}
@media screen and (max-width: 450px) {
  .skyscrappers__list .skyscrapper-1 {
    display: none;
  }
}
.skyscrappers__list .skyscrapper-5 {
  width: 24.2666666667px;
  height: 27.7333333333px;
  right: 65%;
  bottom: 0;
  z-index: 10;
  transform: rotate(180deg);
  width: 7%;
  right: 67%;
  height: 50%;
  z-index: 11;
}
.skyscrappers__list .skyscrapper-5::after {
  height: 0;
}
@media screen and (max-width: 450px) {
  .skyscrappers__list .skyscrapper-1 {
    display: none;
  }
}

.crane-cabin, .crane-arm, .crane-picker {
  transform-origin: 80% center;
  -webkit-animation: crane__movement 12s infinite alternate;
          animation: crane__movement 12s infinite alternate;
}

.crane__list {
  width: 260px;
  height: 173.3333333333px;
  z-index: 0;
  perspective: 600px;
}
.crane__list .crane__item {
  position: absolute;
  border: solid 1px #C2272D;
  border-radius: 2px;
}
.crane__list .crane-cable {
  width: 1px;
  height: 1px;
  border: none;
  outline: 1px solid transparent;
  background: #C2272D;
  z-index: 0;
}
.crane__list .crane-cable-1 {
  width: 60%;
  top: 0;
  left: 11%;
  transform-origin: right 0;
  -webkit-animation: cable-1__movement 12s infinite alternate;
          animation: cable-1__movement 12s infinite alternate;
}
.crane__list .crane-cable-2 {
  width: 19%;
  top: 0;
  right: 8%;
  transform-origin: top left;
  -webkit-animation: cable-2__movement 12s infinite alternate;
          animation: cable-2__movement 12s infinite alternate;
}
.crane__list .crane-cable-3 {
  height: 30%;
  top: 22%;
  left: 9%;
  transform-origin: right center;
  -webkit-animation: cable-3__movement 12s ease-in-out infinite alternate;
          animation: cable-3__movement 12s ease-in-out infinite alternate;
}
.crane__list .crane-cable-3::after {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  width: 9000%;
  bottom: 0;
  left: -4500%;
  background: #d66c70;
  border: 1px solid #C2272D;
}
.crane__list .crane-stand {
  width: 5%;
  height: 100%;
  right: 25%;
  z-index: 1;
  background: linear-gradient(to top, #c2272d, #fec2c2);
}
.crane__list .crane-weight {
  width: 8%;
  height: 20%;
  right: 4%;
  top: 12%;
  z-index: 2;
  background: #fec2c2;
  transform-origin: 0 center;
  -webkit-animation: crane-weight__movement 12s infinite alternate;
          animation: crane-weight__movement 12s infinite alternate;
}
.crane__list .crane-cabin {
  width: 12%;
  height: 9%;
  right: 24%;
  top: 20%;
  z-index: 2;
  background: #fec2c2;
}
.crane__list .crane-cabin::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10%;
  top: 60%;
  left: 0;
  background: white;
}
.crane__list .crane-arm {
  width: 100%;
  height: 7%;
  top: 15%;
  border-top-left-radius: 10px;
  z-index: 3;
  background: #fec2c2;
}

.crane-1 {
  left: 20%;
  z-index: 10;
}

.crane-2 {
  left: 30%;
  z-index: 10;
  bottom: -1rem;
  z-index: -1;
  transform: scale(0.75) scaleX(-1);
}
@media screen and (max-width: 900px) {
  .crane-2 {
    display: none;
  }
}
.crane-2 .crane-cable-3 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.crane-3 {
  left: 40%;
  z-index: 10;
  bottom: -0.5rem;
  transform: scale(0.8);
}
@media screen and (max-width: 900px) {
  .crane-3 {
    z-index: -1;
    transform: scale(0.75) scaleX(-1);
  }
}
@media screen and (max-width: 900px) {
  .crane-3 {
    display: none;
  }
}
.crane-3 .crane-cable-3 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.tree__container {
  width: 100%;
  height: 62.6666666667px;
  left: 0;
  margin-bottom: 4px;
}

.tree__item {
  display: flex;
  flex-flow: column nowrap;
  position: absolute;
  justify-content: flex-end;
  align-items: center;
  left: 60%;
}

.tree__trunk {
  order: 2;
  display: block;
  position: absolute;
  width: 4px;
  height: 8px;
  margin-top: 8px;
  border-radius: 2px;
  background: #57473d;
}

.tree__leaves {
  order: 1;
  position: relative;
  border-top: 0 solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 32px solid #C2272D;
  border-left: 4px solid transparent;
}
.tree__leaves::after {
  content: "";
  position: absolute;
  height: 100%;
  left: -4px;
  border-top: 0;
  border-right: 0;
  border-bottom: 32px solid #C2272D;
  border-left: 4px solid transparent;
}

.tree-1 {
  left: 66%;
}
@media screen and (max-width: 768px) {
  .tree-1 {
    display: none;
  }
}

.tree-2 {
  left: 67%;
}
@media screen and (max-width: 768px) {
  .tree-2 {
    display: none;
  }
}

.tree-4 {
  left: 57%;
}

.tree-5 {
  left: 58%;
}

.tree-7 {
  left: 51%;
}
@media screen and (max-width: 450px) {
  .tree-7 {
    display: none;
  }
}

.tree-8 {
  left: 52%;
}
@media screen and (max-width: 450px) {
  .tree-8 {
    display: none;
  }
}

@-webkit-keyframes cable-1__movement {
  0%, 20% {
    transform: rotateY(0) rotateZ(-10deg);
  }
  70%, 100% {
    transform: rotateY(45deg) rotateZ(-10deg);
  }
}

@keyframes cable-1__movement {
  0%, 20% {
    transform: rotateY(0) rotateZ(-10deg);
  }
  70%, 100% {
    transform: rotateY(45deg) rotateZ(-10deg);
  }
}
@-webkit-keyframes cable-2__movement {
  0%, 20% {
    transform: rotateY(0) rotateZ(29deg);
  }
  70%, 100% {
    transform: rotateY(15deg) rotateZ(29deg);
  }
}
@keyframes cable-2__movement {
  0%, 20% {
    transform: rotateY(0) rotateZ(29deg);
  }
  70%, 100% {
    transform: rotateY(15deg) rotateZ(29deg);
  }
}
@-webkit-keyframes cable-3__movement {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(2500%, -18%);
  }
  60% {
    transform: translate(11000%, -25%);
  }
  70% {
    height: 30%;
    transform: translate(9100%, -25%);
  }
  90%, 100% {
    height: 80%;
    transform: translate(9100%, -15%);
  }
}
@keyframes cable-3__movement {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(2500%, -18%);
  }
  60% {
    transform: translate(11000%, -25%);
  }
  70% {
    height: 30%;
    transform: translate(9100%, -25%);
  }
  90%, 100% {
    height: 80%;
    transform: translate(9100%, -15%);
  }
}
@-webkit-keyframes crane__movement {
  0%, 20% {
    transform: rotateY(0);
  }
  70%, 100% {
    transform: rotateY(45deg);
  }
}
@keyframes crane__movement {
  0%, 20% {
    transform: rotateY(0);
  }
  70%, 100% {
    transform: rotateY(45deg);
  }
}
@-webkit-keyframes crane-weight__movement {
  0%, 20% {
    transform: rotateY(0) translateX(0);
  }
  70%, 100% {
    transform: rotateY(45deg) translateX(-50%);
  }
}
@keyframes crane-weight__movement {
  0%, 20% {
    transform: rotateY(0) translateX(0);
  }
  70%, 100% {
    transform: rotateY(45deg) translateX(-50%);
  }
}

/*---------------------------------------------
-------------Careers-------------------------------*/

.project {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}
.project .text {
    width: 90%;
    background: #fff;
    padding: 20px;
    margin: 0 auto;    
    border-radius: 4px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 15px 46px -16px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 15px 46px -16px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 46px -16px rgb(0 0 0 / 10%);
}
.project .text h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222222;
}

.project .text p{
    color: #666;
}

.project .text .subheading {
    background: rgba(0, 0, 0, 0.07);
    padding: 5px 10px;
    color: #C2272D;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
}

.heading-section .subheading {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #C2272D;
  letter-spacing: 2px;
  font-weight: 600; }

.heading-section h2 {
  line-height: 1.2;
  font-size: 40px;
  font-weight: 600; 
  color: #000;
}
  .heading-section h2 span {
    color: #C2272D; }
  .heading-section h2 span.number {
    color: #C2272D; }
  @media (max-width: 767.98px) {
    .heading-section h2 {
      font-size: 28px; } }

.heading-section h4 {
  font-size: 16px; }

 .project:hover .text {
    background: #C2272D; }
    .project:hover .text .subheading {
      color: #fff; }
    .project:hover .text h3 {
      color: #fff; }
    .project:hover .text p {
      color: rgba(255, 255, 255, 0.8); }
      .project:hover .text p span {
        color: #fff; }
  .project:hover .img .icon {
    opacity: 1; }

/*---------------Job Details--------------
------------------------------------------*/
.single_wrap ul, .job_sumary ul {
    padding-left: 0;
}
ol, ul {
    list-style: none;
}

.white-bg {
    background: rgb(245 247 250 / 37%);
}

.single_wrap ul,.job_sumary ul {padding-left: 0;} 

/* line 1, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area {
  background: #FFFFFF;
  padding-top:2em;
  padding-bottom:2em;
}

/* line 5, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs {
  padding: 16px;
  border-bottom: 1px solid #EAEAEA;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  /* line 5, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 13, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left {
    display: block !important;
    overflow: hidden;
  }
}

/* line 18, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .thumb {
  float: left;
  width: 82px;
  height: 82px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 15px;
  background: #F5F7FA;
  margin-right: 25px;
  border: 1px solid #F0F0F0;
}

/* line 32, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent {
  float: left;
}

/* line 34, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #424242;    
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  /* line 34, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left .jobs_conetent h4 {
    margin-top: 15px;
  }
}


@media (max-width: 767px) {
  /* line 46, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat {
    display: block !important;
  }
}

/* line 50, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location {
  margin-right: 50px;
}

@media (max-width: 767px) {
  /* line 50, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location {
    margin-right: 10px;
  }
}

/* line 55, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location p {
  margin-bottom: 0;
  font-size: 14px;
  color: #495057;
}

/* line 59, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location p i {
  margin-right: 7px;
}

@media (max-width: 767px) {
  /* line 68, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_right .apply_now {
    margin: 10px 0;
  }
}

/* line 73, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .apply_now a.heart_mark {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #C2272D;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: #EFFDF5;
}

/* line 83, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .apply_now a.heart_mark:hover {
  background: #C2272D;
  color: #fff;
}

/* line 88, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .apply_now a.boxed-btn3 {
  padding: 9px 27px 9px 27px;
  font-size: 14px;
}

.job_details_area .single_jobs .jobs_right .apply_now .boxed-btn3 {
    background: #C2272D;
    color: #fff;
    display: inline-block;
    padding: 13px 29px 13px 29px;    
    font-size: 14px;
    font-weight: 500;
    border: 0;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff !important;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.job_details_area .single_jobs .jobs_right .apply_now .boxed-btn3:hover {
    color: #C2272D !important;
    border: 1px solid #C2272D;
    background: transparent;
}

/* line 94, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .date {
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 767px) {
  /* line 94, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_right .date {
    text-align: left;
  }
}

/* line 100, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .date p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
  color: #7A838B;
}

/* line 110, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap {
  padding: 40px;
}

/* line 112, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap {
  margin-bottom: 30px;
}

/* line 114, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap:last-child {
  margin-bottom: 0;
}

/* line 117, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap h4 {
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 25px;
  line-height: 2rem;
}

.job_details_area .descript_wrap .single_wrap h5 {
  font-size: 17px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 25px;
  line-height: 2rem;
}

/* line 123, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap p {
  color: #222;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
}

/* line 130, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap ul li {
  font-size: 14px;
  line-height: 32px;
  color: #222;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}

/* line 137, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  background: #262626;
  content: '';
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 12px;
}

/* line 152, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form {
  margin-top: 30px;
  padding: 40px;
}

@media (max-width: 767px) {
  /* line 152, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .apply_job_form {
    padding: 30px;
  }
}

/* line 158, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* line 164, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field input, .job_details_area .apply_job_form .input_field textarea {
  height: 60px;
  border: 1px solid #E8E8E8;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* line 171, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field input::placeholder, .job_details_area .apply_job_form .input_field textarea::placeholder {
  color: #7A838B;
  font-size: 14px;
}

/* line 175, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field input:focus, .job_details_area .apply_job_form .input_field textarea:focus {
  outline: none;
}

/* line 179, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field textarea {
  height: 188px;
  padding: 20px;
}

/* line 184, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field.file_up input {
  position: relative;
}

/* line 186, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field.file_up input:before {
  position: absolute;
  left: 0;
  top: 0;
  content: 'Upload CV';
}

/* line 195, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group {
  width: 100%;
  height: 60px;
  border-radius: 5px !important;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  background-color: #ffffff;    
}

/* line 201, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group button {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #7A838B;
  padding-left: 20px;
  margin-right: 5px;
}

/* line 209, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group .custom-file {
  margin-bottom: 0;
  height: 60px;
  border: none;
}

/* line 214, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group .custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  padding: 0;
  line-height: 60px;
  color: #7A838B;
  background-color: transparent;
  border-radius: 0;
  border: none;
}

/* line 228, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group .custom-file-input {
  height: 100%;
}

/* line 233, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary {
  background: rgb(245 247 250 / 37%);
}

@media (max-width: 767px) {
  /* line 233, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary {
    margin-top: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 233, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary {
    margin-top: 30px;
  }
}

/* line 241, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .summery_header {
  border-bottom: 1px solid #EAEAEA;
  padding: 16px;
}

@media (max-width: 767px) {
  /* line 241, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary .summery_header {
    padding: 30px;
  }
}

/* line 247, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .summery_header h3 {
  font-size: 24px;
  color: #001D38;
  font-weight: 400;
}

/* line 253, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content {
  padding: 25px;
}

@media (max-width: 767px) {
  /* line 253, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary .job_content {
    padding: 30px;
  }
}

/* line 259, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content ul li {
  font-size: 14px;
  font-weight: 400;
  color: #6c757d;
  line-height: 38px;
  padding-left: 18px;
  position: relative;
}

/* line 266, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content ul li::before {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #495057;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  left: 0;
  content: '';
  top: 16px;
}

/* line 277, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content ul li span {
  color: #222222;
}

/* line 284, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap {
  background: #fff;
  margin: 30px 0;
  padding: 20px;
}

/* line 288, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap span {
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  margin-right: 20px;
}

/* line 295, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap ul li {
  display: inline-block;
  margin-right: 10px;
}

/* line 298, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap ul li a {
  font-size: 14px;
  color: #D5D5D5;
}

/* line 301, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap ul li a:hover {
  color: #C2272D;
}

/* line 308, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_location_wrap {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

/* line 314, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(calc(2.25rem + 2px) - 1px * 2);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 .25rem .25rem 0;
  margin-bottom: 0;
  height: 60px;
  display: none !important;
}

/******************/
/*     Website Design Page      */
/******************/
.webdesign {
	padding-top: 19rem;
	padding-bottom: 17.5rem;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('../images/website-design-header.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.webdesign .h1-large {
	margin-bottom: 1.75rem;
	color: #ffffff;
}

.webdesign .btn-solid-lg {
	display: inline-block;
	padding: 1.25rem 2.25rem 1.25rem 2.25rem;
	border:0;
    border-radius: 50px;
	background-color: #C2272D;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.webdesign .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
    background-color: transparent;
}

.webdesign .btn-outline-lg {
	padding: 1.625rem 1.625rem 1.625rem 1.625rem;
	border: none;
	color: #ffffff;
}

.webdesign .btn-outline-lg:hover {
	background: transparent;
	color: #9c9ead;
	text-decoration: none;
}

.webdesign .btn-outline-lg .fas {
	margin-right: 0.375rem;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #C2272D;
	background-color: #C2272D;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: ##C2272D; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.25rem 2.25rem 1.25rem 2.25rem;
	border:0;
    border-radius: 50px;
	background-color: #C2272D;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
    background-color: transparent;
}

.services .btn-solid-lg {
	display: inline-block;
	padding: 1.25rem 2.25rem 1.25rem 2.25rem;
	border:0;
    border-radius: 50px;
	background-color: #C2272D;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.services .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
    background-color: #999999;
}

ul.list-styled {
    list-style-type: disc;
    line-height: 2em;
}
/*---------------Newsletter--------------
------------------------------------------*/

.newsletter-area .card {   
    margin-bottom: 20px;
    transition: border 0.1s, transform 0.3s;
    border-radius: 20px;
}

.newsletter-area .card:hover {
    border: 1px solid rgb(197 30 24 / 20%);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    cursor: pointer;
}

.newsletter-area .card .card-body h2 {
    color: #222222;
    font-size: 1.5rem;
    font-weight: 500;
}

.newsletter-area .card img:hover {
  opacity: 0.6;
}

.newsletter-area .card-p {
    color: #f8b2b0;
}

.newsletter-area .more-btn{
    color: #ff2143;
    text-transform: capitalize;
    font-size: 14px;
    position: relative;
    padding-left: 50px;}

.newsletter-area .more-btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff2143;
}

.newsletter-area .card-img-top{
    border-radius: 0px;
    padding: 20px 20px 0;
}

/*---------------Contact Address--------------
------------------------------------------*/

