/*--------------------------------------------------------------

# General

--------------------------------------------------------------*/

body {

  font-family: "Open Sans", sans-serif;

  color: #4d4643;

}



a {

  color: #009d8b;

  text-decoration: none;

}



a:hover {

  color: #005047;

  text-decoration: none;

}



p {

  margin: 0;

  padding: 0;

  font-size: 15px;

  font-weight: 500;

  font-family: "Poppins", sans-serif;

}





h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: "Roboto", sans-serif;

}





/*--------------------------------------------------------------

# Back to top button

--------------------------------------------------------------*/

.back-to-top {

  position: fixed;

  visibility: hidden;

  opacity: 0;

  right: 15px;

  bottom: 15px;

  z-index: 996;

  background: #fd9042;

  width: 40px;

  height: 40px;

  border-radius: 4px;

  transition: all 0.4s;

}



.back-to-top i {

  font-size: 28px;

  color: #fff;

  line-height: 0;

}



.back-to-top:hover {

  background: #ff6a00;

  color: #fff;

}



.back-to-top.active {

  visibility: visible;

  opacity: 1;

}



/*--------------------------------------------------------------

# Disable AOS delay on mobile

--------------------------------------------------------------*/

@media screen and (max-width: 768px) {

  [data-aos-delay] {

    transition-delay: 0 !important;

  }

}





/*--------------------------------------------------------------

# Top Bar

--------------------------------------------------------------*/

#topbar {

  background: #fd9042;

  color: #fff;

  height: 40px;

  font-size: 16px;

  font-weight: 600;

  transition: all 0.5s;

}



#topbar.topbar-scrolled {

  top: -40px;

}



#topbar i {

  padding-right: 6px;

  line-height: 0;

}



/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

#header {

  background: #fff;

  transition: all 0.5s;

  z-index: 997;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);



}



#header .logo {

  font-size: 28px;

  margin: 0;

  padding: 0;

  line-height: 1;

  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;

}



#header.fixed-top,

#header.header-inner-pages {

  background: rgba(255, 255, 255);

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

}



#header.fixed-top {

  position: fixed;

}



#header .logo {

  padding: 10px 12px;

  font-size: 30px;

  margin: 0;

  line-height: 1;

  font-weight: 500;

  letter-spacing: 0.5px;

  text-transform: uppercase;



}



#header .logo a {

  color: #fd9042;

}



#header .logo img {

  max-height: 40px;

}



.scrolled-offset {

  margin-top: 35px;

}



@media (max-width: 768px) {

  .scrolled-offset {



    padding: 15px;

  }

}



/*--------------------------------------------------------------

# Header Social Links

--------------------------------------------------------------*/

.header-social-links {

  margin-left: 20px;

  border-left: 1px solid #c4c4c4;

}



.header-social-links a {

  color: #a0a0a0;

  margin-left: 10px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  transition: 0.3s;

}



.header-social-links a i {

  line-height: 0;

}



.header-social-links a:hover {

  color: #fd9042;

}



@media (max-width: 768px) {

  .header-social-links {

    padding: 0 15px 0 0;

  }

}



/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/**

* Desktop Navigation 

*/

.navbar {

  padding: 0;

}



.navbar ul {

  margin: 0;

  padding: 0;

  display: flex;

  list-style: none;

  align-items: center;

}



.navbar li {

  position: relative;

}



.navbar>ul>li {

  white-space: nowrap;

  padding: 10px 12px;

}



.navbar a,

.navbar a:focus {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 10px 0 10px 30px;

  font-family: "Roboto", sans-serif;

  font-size: 15px;

  font-weight: 600;

  color: #111;

  white-space: nowrap;

  text-transform: uppercase;

  transition: 0.3s;

}





.navbar a i,

.navbar a:focus i {

  font-size: 12px;

  line-height: 0;

  margin-left: 5px;

}



.navbar>ul>li>a:before {

  content: "";

  position: absolute;

  width: 100%;

  height: 2px;

  bottom: -7px;

  left: 0;

  background-color: #ff7f5d;

  visibility: hidden;

  width: 0px;

  transition: all 0.3s ease-in-out 0s;

}



.navbar a:hover,

.navbar .active,

.navbar .active:focus,

.navbar li:hover>a {

  color: #fd9042;

}





.navbar .dropdown ul {

  display: block;

  position: absolute;

  left: 12px;

  top: calc(100% + 30px);

  margin: 0;

  padding: 10px 0;

  z-index: 99;

  opacity: 0;

  visibility: hidden;

  background: #fff;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

  transition: 0.3s;

}



.navbar .dropdown ul li {

  min-width: 200px;

}



.navbar .dropdown ul a {

  padding: 10px 20px;

  font-size: 14px;

  text-transform: none;

  font-weight: 500;

  color: #150517;

}



.navbar .dropdown ul a i {

  font-size: 12px;

}



.navbar .dropdown ul a:hover,

.navbar .dropdown ul .active:hover,

.navbar .dropdown ul li:hover>a {

  color: #ff7f5d;

}



.navbar .dropdown:hover>ul {

  opacity: 1;

  top: 100%;

  visibility: visible;

}



.navbar .dropdown .dropdown ul {

  top: 0;

  left: calc(100% - 30px);

  visibility: hidden;

}



.navbar .dropdown .dropdown:hover>ul {

  opacity: 1;

  top: 0;

  left: 100%;

  visibility: visible;

}





/**

* Mobile Navigation 

*/



.mobile-nav-toggle {

  color: #000000;

  font-size: 40px;

  cursor: pointer;

  display: none;

  line-height: 0;

  transition: 0.5s;

}





@media (max-width: 991px) {

  .mobile-nav-toggle {

    display: block;

  }



  .navbar ul {

    display: none;

  }



}

.navbar-mobile {

  justify-content: center;

  position: fixed;

  overflow: hidden;

  height: 100vh;

  top: 0;

  right: 0;

  left: 0;

  bottom: 0;

  background-color: #fd9042;

  transition: 0.3s;

}

.navbar-mobile .mobile-nav-toggle {

  position: absolute;

  top: 15px;

  right: 15px;

}

.navbar-mobile ul {

  display: block;

  padding: 10px 0;

  overflow-y: auto;

  transition: 0.3s;

  border-left: #000000;



}



.navbar-mobile a,
.navbar-mobile a:focus {

  padding: 10px 20px;

  font-size: 22px;

  color: #ffffff;



}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {

  color: #fff;

}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {

  margin: 15px;

}

.navbar-mobile .dropdown ul {

  position: static;

  display: none;

  margin: 10px 20px;

  padding: 10px 0;

  z-index: 99;

  opacity: 1;

  visibility: visible;

  background: #fff;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

}

.navbar-mobile .dropdown ul li {

  min-width: 200px;

}

.navbar-mobile .dropdown ul a {

  padding: 10px 20px;

}

.navbar-mobile .dropdown ul a i {

  font-size: 12px;

}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {

  color: #67b0d1;

}

.navbar-mobile .dropdown>.dropdown-active {

  display: block;

}





/*--------------------------------------------------------------

# Hero Section

--------------------------------------------------------------*/

#hero {

  width: 100%;

  height: 100vh;

  background-color: rgba(0, 0, 0, 0.8);

  overflow: hidden;

  position: relative;

}



#hero .hero-container {

  position: absolute;

  bottom: 0;

  top: 0;

  left: 15px;

  right: 15px;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  text-align: center;

}



#hero .carousel,

#hero .carousel-inner,

#hero .carousel-item,

#hero .carousel-item::before {

  background-size: cover;

  background-position: center top;

  background-repeat: no-repeat;

  position: absolute;

  top: 0;

  right: 0;

  left: 0;

  bottom: 0;

}



#hero .carousel-container {

  display: flex;

  align-items: flex-end;

  justify-content: center;

  position: absolute;

  bottom: 60px;

  top: 70px;

  left: 55px;

  right: 55px;

}



#hero .carousel-content {

  background: rgba(4, 4, 4, 0.7);

  padding: 20px;

  color: #fff;

  border-top: 5px solid #fd9042;

}



#hero .carousel-content h2 {

  color: #fff;

  margin-bottom: 20px;

  font-size: 28px;

  font-weight: 700;

}



#hero .btn-get-started {

  font-family: "Poppins", sans-serif;

  font-weight: 500;

  font-size: 14px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 12px 32px;

  border-radius: 4px;

  transition: 0.5s;

  line-height: 1;

  margin: 10px;

  color: #fff;

  animation-delay: 0.8s;

  border: 2px solid #fd9042;

}



#hero .btn-get-started:hover {

  background: #fd9042;

  color: #fff;

  text-decoration: none;

}



#hero .carousel-inner .carousel-item {

  transition-property: opacity;

  background-position: center top;

}



#hero .carousel-inner .carousel-item,

#hero .carousel-inner .active.carousel-item-start,

#hero .carousel-inner .active.carousel-item-end {

  opacity: 0;

}



#hero .carousel-inner .active,

#hero .carousel-inner .carousel-item-next.carousel-item-start,

#hero .carousel-inner .carousel-item-prev.carousel-item-end {

  opacity: 1;

  transition: 0.5s;

}



#hero .carousel-inner .carousel-item-next,

#hero .carousel-inner .carousel-item-prev,

#hero .carousel-inner .active.carousel-item-start,

#hero .carousel-inner .active.carousel-item-end {

  left: 0;

  transform: translate3d(0, 0, 0);

}



#hero .carousel-control-next-icon,

#hero .carousel-control-prev-icon {

  background: none;

  font-size: 30px;

  line-height: 0;

  width: auto;

  height: auto;

  background: rgba(255, 255, 255, 0.4);

  border-radius: 50px;

  transition: 0.3s;

  color: rgba(255, 255, 255, 0.6);

  width: 54px;

  height: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

}



#hero .carousel-control-next-icon:hover,

#hero .carousel-control-prev-icon:hover {

  background: rgba(255, 255, 255, 0.6);

  color: rgba(255, 255, 255, 0.8);

}



#hero .carousel-indicators li {

  cursor: pointer;

  background: #fff;

  overflow: hidden;

  border: 0;

  width: 12px;

  height: 12px;

  border-radius: 50px;

  opacity: 0.6;

  transition: 0.3s;

}



#hero .carousel-indicators li.active {

  opacity: 1;

  background: #fd9042;

}



@media (min-width: 1024px) {

  #hero .carousel-content {

    width: 60%;

  }



  #hero .carousel-control-prev,

  #hero .carousel-control-next {

    width: 5%;

  }

}



@media (max-width: 992px) {

  #hero .carousel-container {

    top: 58px;

  }



  #hero .carousel-content h2 {

    margin-bottom: 15px;

    font-size: 22px;

  }



  #hero .carousel-content p {

    font-size: 15px;

  }

}



@media (max-height: 500px) {

  #hero {

    height: 120vh;

  }

}

/*--------------------------------------------------------------

# Sections General

--------------------------------------------------------------*/



section {

  overflow: hidden;

}



.section-title {

  padding-bottom: 40px;

  margin-top: 25px;

}



.section-title h2 {

  font-size: 18px;

  font-weight: 600;

  padding: 0;

  line-height: 1px;

  margin: 0 0 5px 0;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #aaaaaa;

  font-family: "Poppins", sans-serif;

}



.section-title h2::after {

  content: "";

  width: 120px;

  height: 1px;

  display: inline-block;

  background: #fd9042;

  margin: 4px 10px;

}

 .servizipt17 .section-title h2::after {

    width: 120px;

    height: 1px;

    display: inline-block;

    background: #ffffff;

    margin: 4px 10px;

  }

  .servizipt6 .section-title h2::after {

    width: 120px;

    height: 1px;

    display: inline-block;

    background: #ffffff;

    margin: 4px 10px;

  }



.section-title p {

  margin: 0;

  margin: 0;

  font-size: 36px;

  font-weight: 700;

  text-transform: uppercase;

  font-family: "Poppins", sans-serif;

  color: #2a2c39;

}


@media (max-width: 576px) {

  section {

    overflow: hidden;

  }



  .section-title {

    padding-bottom: 20px;

    margin-top: 15px;

  }



  .section-title p {

    margin: 0;

    margin: 0;

    font-size: 30px;

    font-weight: 600;

    text-transform: uppercase;

    font-family: "Poppins", sans-serif;

    color: #2a2c39;

  }



  .section-title h2 {

    font-size: 15px;

    font-weight: 600;

    padding: 0;

    line-height: 1px;

    margin: 0 0 5px 0;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #000000;

    font-family: "Poppins", sans-serif;

  }

  

  .section-title h2::after {

    width: 120px;

    height: 1px;

    display: inline-block;

    background: #fd9042;

    margin: 4px 10px;

  }

  


}


/*--------------------------------------------------------------

# About

--------------------------------------------------------------*/



.about .info p {

  margin: 0;

  padding: 0;

  font-size: 17px;

  font-weight: 600;

  font-family: "Poppins", sans-serif;

}



.about .content h3 {

  font-weight: 600;

  font-size: 26px;

}



.about .content h2 {

  font-weight: 700;

  font-size: 42px;

  line-height: 60px;

  margin-bottom: 20px;

  text-transform: uppercase;

}



.about .content ul {

  list-style: none;

  padding: 0;

}



.about .content ul li {

  padding-left: 28px;

  position: relative;

}



.about .content ul li+li {

  margin-top: 10px;

}



.about .content ul i {

  position: absolute;

  left: 0;

  top: 2px;

  font-size: 20px;

  color: #ef6603;

  line-height: 1;

}



.about .content p:last-child {

  margin-bottom: 0;

}



.about .content .btn-learn-more {

  font-family: "Raleway", sans-serif;

  font-weight: 600;

  font-size: 14px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 12px 32px;

  border-radius: 5px;

  transition: 0.3s;

  line-height: 1;

  color: #ef6603;

  animation-delay: 0.8s;

  margin-top: 6px;

  border: 2px solid #ef6603;

}



.about .content .btn-learn-more:hover {

  background: #ef6603;

  color: #fff;

  text-decoration: none;

}



@media (max-width: 576px) {}




/*--------------------------------------------------------------

# Clients

--------------------------------------------------------------*/

.clients {

  padding-top: 20px;

}


.clients p {

  margin: 0;

  font-size: 15px;

  font-weight: 600;

  font-family: "Poppins", sans-serif;

}



.clients .swiper-slide img {

  opacity: 0.5;

  transition: 0.3s;

  filter: grayscale(100);

}



.clients .swiper-slide img:hover {

  filter: none;

  opacity: 1;

}



.clients .swiper-pagination {

  margin-top: 20px;

  position: relative;

}



.clients .swiper-pagination .swiper-pagination-bullet {

  width: 12px;

  height: 12px;

  background-color: #fff;

  opacity: 1;

  background-color: #ffffff;

}



.clients .swiper-pagination .swiper-pagination-bullet-active {

  background-color: #ffc451;

}


  .att-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
  }

  .att-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  .att-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
  }





/*--------------------------------------------------------------

# servizi

--------------------------------------------------------------*/



.servizi .servizipt1 {

  position: relative;

  height: 0;

  padding-bottom: 20%;

  z-index: 1;

}



#servizipt1 {

  background-repeat: no-repeat;

  background-size: 100% auto;

  background-position: center top;

  background-attachment: fixed;
  
}



.servizi .servizipt1 .servizichisiamo p {

  margin: 0;

  font-size: 15px;

  font-weight: 500;

  font-family: "Poppins", sans-serif;

}



.servizi .servizipt1 .servizichisiamo h3 {

  font-weight: 600;

  font-size: 26px;

}



.servizi .servizichisiamo h2 {

  font-weight: 700;

  font-size: 42px;

  line-height: 60px;

  margin-bottom: 20px;

  text-transform: uppercase;

}



#servizipt2 {

  background-repeat: no-repeat;

  background-size: 100% auto;

  background-position: center top;

  background-attachment: fixed;

}



.servizi .servizipt2 .row p {

  margin: 0;

  padding: 0;

  font-size: 14px;

  font-weight: 400;

  letter-spacing: 0.5 px;

  font-family: "Poppins", sans-serif;

}



.servizi .servizipt2 .row h2 {

  font-weight: 700;

  font-size: 25px;

  line-height: 30px;

  margin-bottom: 10px;

  text-transform: uppercase;

  font-family: "Poppins", sans-serif;

}



.servizi .servizipt2 .row .we p {

  margin: 0;

  padding: 0;

  font-size: 15px;

  font-weight: 500;

  letter-spacing: 0.5 px;

  font-family: "Poppins", sans-serif;

}



.servizi .servizipt4 p {



  margin: 0;

  padding: 0;

  font-size: 15px;

  font-weight: 300;

  letter-spacing: 0.5 px;

  font-family: "Poppins", sans-serif;

}



.servizi .servizipt5 {

  position: relative;

  height: 0;

  padding-bottom: 20%;

  z-index: 1;

}



#servizipt5 {

  background-image: url(../img/vista9_3.png);

  background-repeat: no-repeat;

  background-size: 100% auto;

  background-position: center top;

  background-attachment: fixed;

}



.servizi .servizipt6 p {

  color: white;

  margin: 0;

  padding: 0;

  font-size: 15px;

  font-weight: 500;

  letter-spacing: 0.5 px;

  font-family: "Poppins", sans-serif;

}



.servizi .servizipt17 p {

  color: rgb(255, 255, 255);

  margin: 0;

  padding: 0;

  font-size: 15px;

  font-weight: 400;

  letter-spacing: 0.5 px;

  font-family: "Poppins", sans-serif;

}



.servizi .servizipt18 p {

  margin: 0;

  padding: 0;

  font-size: 15px;

  font-weight: 300;

  font-family: "Poppins", sans-serif;

}



#servizipt18 .btn {

  font-weight: 500;

  font-size: 14px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 12px 32px;

  border-radius: 4px;

  transition: 0.5s;

  line-height: 1;

  margin: 20px;

  color: #fd9042;

  animation-delay: 0.8s;

  border: 2px solid #fd9042;

  font-family: "Poppins", sans-serif;

}



#servizipt18 .btn:hover {

  background: #fd9042;

  color: #fff;

  text-decoration: none;

}



#servizipt19 .btn {

  font-weight: 500;

  font-size: 14px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 12px 32px;

  border-radius: 4px;

  transition: 0.5s;

  line-height: 1;

  margin: 20px;

  color: #fff;

  animation-delay: 0.8s;

  border: 2px solid #fff;

  font-family: "Poppins", sans-serif;

}



#servizipt19 .btn:hover {

  background:#c06e33;;

  color: #fff;

  text-decoration: none;

}



.servizi .servizipt19 p {

  color: white;

  margin: 0;

  padding: 0;

  font-size: 20px;

  font-weight: 300;

  font-family: "Poppins", sans-serif;

}





.accordion-button h4 {



  margin: 0;

  margin: 0;

  font-size: 15px;

  font-weight: 600;

  text-transform: uppercase;

  font-family: "Open-Sans", sans-serif;

  color: #2a2c39;

}



.accordion-button:focus {

  box-shadow: none;

  background-color: none;

}



.servizipt4 .card-group .card {

  border: none;

}



@media (max-width: 576px) {

  .servizipt1 .servizichisiamo p {

    margin: 0;

    font-size: 17px;

    font-weight: 500;

    font-family: "Open-Sans", sans-serif;

  }



}









/*--------------------------------------------------------------

# Portfolio Section

--------------------------------------------------------------*/

.portfolio .portfolio-flters {

  padding: 0;

  margin: 0 auto 25px auto;

  list-style: none;

}



.portfolio .portfolio-flters li {

  cursor: pointer;

  display: inline-block;

  padding: 8px 20px 10px 20px;

  font-size: 14px;

  font-weight: 500;

  line-height: 1;

  text-transform: uppercase;

  color: #4d4643;

  transition: all 0.3s;

  border-radius: 4px;

  font-family: "Poppins", sans-serif;

}



.portfolio .portfolio-flters li:hover,

.portfolio .portfolio-flters li.filter-active {

  color: #fff;

  background: #fd9042;

}



.portfolio .portfolio-flters li:first-child {

  margin-left: 0;

}



.portfolio .portfolio-flters li:last-child {

  margin-right: 0;

}



@media (max-width: 575px) {

  .portfolio .portfolio-flters li {

    font-size: 14px;

    margin: 0 5px;

  }

}



.portfolio .portfolio-wrap {

  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);

  border-radius: 10px;

  height: 100%;

  overflow: hidden;

}



.portfolio .portfolio-wrap img {

  transition: 0.3s;

  position: relative;

  z-index: 1;

}



.portfolio .portfolio-wrap .portfolio-info {

  padding: 25px 20px;

  background-color: #fff;

  position: relative;

  border-top: 1px solid #f3f3f3;

  z-index: 2;

}



.portfolio .portfolio-wrap .portfolio-info h4 {

  font-size: 18px;

  font-weight: 600;

  padding-right: 50px;

}



.portfolio .portfolio-wrap .portfolio-info h4 a {

  color: var(--color-default);

  transition: 0.3s;

}



.portfolio .portfolio-wrap .portfolio-info h4 a:hover {

  color: var(--color-primary);

}



.portfolio .portfolio-wrap .portfolio-info p {

  color: #6c757d;

  font-size: 14px;

  margin-bottom: 0;

  padding-right: 50px;

}



.portfolio .portfolio-wrap:hover img {

  transform: scale(1.1);

}



/*--------------------------------------------------------------

# Portfolio Details Section

--------------------------------------------------------------*/

.portfolio-details .portfolio-details-slider img {

  width: 100%;

}



.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {

  width: 12px;

  height: 12px;

  background-color: rgba(255, 255, 255, 0.7);

  opacity: 1;

}



.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {

  background-color: var(--color-primary);

}



.portfolio-details .swiper-button-prev,

.portfolio-details .swiper-button-next {

  width: 48px;

  height: 48px;

}



.portfolio-details .swiper-button-prev:after,

.portfolio-details .swiper-button-next:after {

  color: rgba(255, 255, 255, 0.8);

  background-color: rgba(0, 0, 0, 0.2);

  font-size: 24px;

  border-radius: 50%;

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.3s;

}



.portfolio-details .swiper-button-prev:hover:after,

.portfolio-details .swiper-button-next:hover:after {

  background-color: rgba(0, 0, 0, 0.6);

}



@media (max-width: 575px) {



  .portfolio-details .swiper-button-prev,

  .portfolio-details .swiper-button-next {

    display: none;

  }

}



.portfolio-details .portfolio-info h3 {

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 20px;

  padding-bottom: 20px;

  position: relative;

}



.portfolio-details .portfolio-info h3:after {

  content: "";

  position: absolute;

  display: block;

  width: 50px;

  height: 3px;

  background: var(--color-primary);

  left: 0;

  bottom: 0;

}



.portfolio-details .portfolio-info ul {

  list-style: none;

  padding: 0;

  font-size: 15px;

}



.portfolio-details .portfolio-info ul li {

  display: flex;

  flex-direction: column;

  padding-bottom: 15px;

  font-size: 16px;

}



.portfolio-details .portfolio-info ul strong {

  text-transform: uppercase;

  font-weight: 400;

  color: #9c9c9c;

  font-size: 12px;

}



.portfolio-details .portfolio-info .btn-visit {

  padding: 8px 40px;

  background: var(--color-primary);

  color: #fff;

  border-radius: 50px;

  transition: 0.3s;

}



.portfolio-details .portfolio-info .btn-visit:hover {

  background: #009d8b;

}



.portfolio-details .portfolio-description h2 {

  font-size: 26px;

  font-weight: 700;

  margin-bottom: 20px;

}



.portfolio-details .portfolio-description p {

  padding: 0;

}



.portfolio-details .portfolio-description .testimonial-item {

  padding: 30px 30px 0 30px;

  position: relative;

  background: white;

  height: 100%;

  margin-bottom: 50px;

}



.portfolio-details .portfolio-description .testimonial-item .testimonial-img {

  width: 90px;

  border-radius: 50px;

  border: 6px solid #fff;

  float: left;

  margin: 0 10px 0 0;

}



.portfolio-details .portfolio-description .testimonial-item h3 {

  font-size: 18px;

  font-weight: bold;

  margin: 15px 0 5px 0;

  padding-top: 20px;

}



.portfolio-details .portfolio-description .testimonial-item h4 {

  font-size: 14px;

  color: #6c757d;

  margin: 0;

}



.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {

  color: #009d8b;

  font-size: 26px;

  line-height: 0;

}



.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {

  display: inline-block;

  left: -5px;

  position: relative;

}



.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {

  display: inline-block;

  right: -5px;

  position: relative;

  top: 10px;

  transform: scale(-1, -1);

}



.portfolio-details .portfolio-description .testimonial-item p {

  font-style: italic;

  margin: 0 0 15px 0 0 0;

  padding: 0;

}



/*--------------------------------------------------------------

# Contact

--------------------------------------------------------------*/

.contact .info i {

  font-size: 20px;

  color: #ef6603;

  float: left;

  width: 44px;

  height: 44px;

  background: #ffecde;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50px;

  transition: all 0.3s ease-in-out;

}



.contact .info h4 {

  padding: 0 0 0 20px;

  font-size: 22px;

  font-weight: 600;

  margin-bottom: 5px;

  color: #2a2c39;



}



.contact .info .email,

.contact .info .phone {

  margin-top: 0px;

  display: flex;

  align-items: center;

}



.contact .info .email:hover i,

.contact .info .address:hover i,

.contact .info .phone:hover i {

  background: #ef6603;

  color: #fff;

}





/*--------------------------------------------------------------

# Footer

--------------------------------------------------------------*/

#footer {

  color: #fff;

  font-size: 14px;

  background: #111;

}



#footer .footer-top {

  padding: 60px 0 30px 0;

  background: #1e1e1e;

}



#footer .footer-top .footer-contact {

  margin-bottom: 30px;

}



#footer .footer-top .footer-contact a {

  color: #fd9042;

}



#footer .footer-top .footer-contact h3 {

  font-size: 22px;

  margin: 0 0 10px 0;

  padding: 2px 0 2px 0;

  line-height: 1;

  font-weight: 500;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: #fff;

}



#footer .footer-top .footer-contact p {

  font-size: 14px;

  line-height: 24px;

  margin-bottom: 0;

  font-family: "Roboto", sans-serif;

  color: rgba(255, 255, 255, 0.7);

}



#footer .footer-top h4 {

  font-size: 16px;

  font-weight: 400;

  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: #fd9042;

  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: rgba(255, 255, 255, 0.6);

  transition: 0.3s;

  display: inline-block;

  line-height: 1;

}



#footer .footer-top .footer-links ul a:hover {

  text-decoration: none;

  color: #fff;

}



#footer .credits {

  padding-top: 5px;

  font-size: 13px;

  color: #fff;

}



#footer .social-links a {

  font-size: 18px;

  display: inline-block;

  background: rgba(255, 255, 255, 0.08);

  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 .social-links a:hover {

  background: #1bbd36;

  color: #fff;

  text-decoration: none;

}