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

body {						
  font-family: "Poppins", sans-serif;
  background-color: black;
  margin: 0;
}
.page{

  display: flex;
  background: url(images-tp-final/vert.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;


}
/*sidebar*/
.sidebar{
  height: 400px;

  flex: 0 0 200px;
  position: sticky;
  width: 280px;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  padding-top: 50px;
  top: 0;

}

.sidebar h1{
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-family: "Rubik";
  letter-spacing: 2px;
  font-weight: 400;
  margin: 0;
  font-size: 25px;
  text-transform: uppercase;
}

.sidebar-test a{
  display: block;

  color: #fff;
  text-decoration: none;
  font-family: "Rubik";
  letter-spacing: 2px;
  padding: 10px;
}

.sidebar-test a:hover{
  color: #fff;
  margin-left: 20px;
  transition: 0.4s;
}


/*row*/


.row-service1:after {
  content: "";
  display: table;
  clear: both;
}
.row-service:after {
  content: "";
  display: table;
  clear: both;

}
.index{
  display: flex;
  background: url(images-tp-final/pexels.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  background-position: top center;



}
.message-index {

  font-size: 30px;
  color: #159b80;
  margin-left: auto;
  margin-top: 450px;
  text-align: right;
  text-shadow: 5px 3px;




}

.message-index h4{
  color: #fff;
  font-size: 20px;
  background-color: #1cd4af;
  text-align: center;
  text-shadow: 0 0;

}




input,
textarea {
  font-family: "Poppins", sans-serif;
}

/*Contact*/

.container-form {


  max-width: 1080px;
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-color: #fafafa;
  overflow: hidden;

}
.contact-main{



  display: flex;

  justify-content: center;
  align-items: center;



}
.container-form h2{
  padding-left: 0;
  color: #1abc9c;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: -5px;
  display: block;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-left: 20px;
  unicode-bidi: isolate;
  padding-top: 20px;

}
.border-contact
{
  width: 130px;
  height: 5px;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-left: 20px;
  unicode-bidi: isolate;
  margin-top: -5px;
  display: block;
  margin-bottom: 40px;
}
.form {
  display: grid;
  width: 100%;
  max-width: 1020px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;

  box-shadow: 0 10px 20px 5px;
  z-index: 1000;
  overflow: hidden;


  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 138px;
}

.contact-form {
  background-color: #1abc9c;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #1abc9c;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title-form {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container-form {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;

}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container-form label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container-form.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

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

.input-container-form span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container-form span:before,
.input-container-form span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container-form span:before {
  left: 50%;
}

.input-container-form span:after {
  right: 50%;
}

.input-container-form.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container-form.focus span:before,
.input-container-form.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title-form {
  color: #1abc9c;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #1ABC9C;
}



.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;

}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1abc9c, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}


.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-53%, 50%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}
/*navbar*/

.topnav {
  overflow: hidden;
  display: none;
  background-color: #1abc9c;
}

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 30px 16px;
  text-decoration: none;
  font-size: 15px;
  line-height: 14px;
  font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
  font-style: normal;
  font-weight: 600;



}


.topnav a:hover {
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  

}

.topnav a.active {
  font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 14px;
  color: #fff;
}

.topnav .icon-nav {
  display: none;
}
.items{
  float: right;
  padding-top: 6px;
}



/*à-propos*/

.arrondi img{
  width: 200px;
  border-radius: 50%;
  float: left;
  shape-outside: margin-box;
  margin: 0 25px 20px 0;
  box-shadow: 0 10px 20px 5px;
}

.main-about{
  max-width: 1080px;
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-color: #fafafa;
}


a {
  text-decoration: none;
}



.arrondi {
  padding: 62px;
  padding-bottom: 125px;
}
.arrondi h3 {

  color: #1abc9c;
  font-weight: 400;
  font-size: 1.5rem;

}
.main-about h2{

  padding-left: 0;
  color: #1abc9c;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: -5px;
  padding-left: 20px;
  display: block;

  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;

  unicode-bidi: isolate;
}
.border-about
{
  width: 130px;
  height: 5px;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-left: 20px;
  unicode-bidi: isolate;
  margin-top: -5px;
  display: block;
}


.circle-about {
  border-radius: 50%;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  position: absolute;
}

.circle-about.one {
  width: 10%;
  height: 10%;

  right: 6%;

}
.circle-about.two {
  width: 6%;
  height: 6%;
  top: 1%;
  right: 4%;

}
/*témoignages*/
.testimonials
{

  max-width: 1080px;
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-color: #fafafa;
  overflow: hidden;


}
.testimonials h2{
  padding-left: 0;
  color: #1abc9c;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: -5px;
  display: block;

  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;

  unicode-bidi: isolate;

}

.testimonial-inner
{
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
  padding-bottom: 50px;

}


.border
{
  width: 180px;
  height: 5px;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;

  unicode-bidi: isolate;
  margin-top: -5px;
  margin-bottom: 20px;
  display: block;
}

.row-flex
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



.col
{
  flex: 33.33%;
  max-width: 33.33%;
  box-sizing:  border-box;
  padding: 15px;
  z-index: 1;}



  .testimonial1
  {
    background: #1abc9c;
    padding: 30px;
    box-shadow: 0 10px 10px 0px;
  }

  .testimonial
  {
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 20px 5px;
  }
  .testimonial img
  {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  .testimonial1 img
  {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .name1
  {
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
    color: #fff;
  }
  .name
  {
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
  }
  .testimonial1 p{
    color: #fff;
  }

  .stars
  {
    color: #f0932b;
    margin-bottom: 20px;
  }


  .big-circle-testimonial {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to top, #1cd4af, #159b80);
    bottom: 98%;
    right: 50%;
    transform: translate(140%, 38%);

  }


  .big-circle-testimonial:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);

  }
/*service*/
.main-service{
  max-width: 1080px;
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-color: #fafafa;
  overflow: hidden;

}

.big-circle-service {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 20%);




}

.big-circle-service:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}


.col33-service {
  float: left;
  width: 33.333%;


}
.text-center-service{
  text-align: center;
}
.we-offer-area{
  padding-bottom: 20px;
}

.title-service {
  color: #1abc9c;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1;

  margin-bottom: 0;
  overflow: hidden;
  margin-top: -5px;
}

.title-service h2 {
  text-align: left;
  color: #1abc9c;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: -5px;
  display: block;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
  padding-left: 20px;
}
.border-service
{
  width: 130px;
  height: 5px;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-left: 20px;
  unicode-bidi: isolate;
  margin-top: -5px;
  display: block;
}
.title-service h4 {
  display: inline-block;
  font-size: 34px;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;



}
.title-service h4::before {
  background: #1abc9c none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 30px;
  margin-bottom: 12px;
}
.we-offer-area .item-service {
  background: #ffffff none repeat scroll 0 0;
  border-left: 2px solid #1abc9c;
  -moz-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
}
.we-offer-area.text-center-service .item-service {
  background: #ffffff none repeat scroll 0 0;
  border: medium none;
  padding: 67px 40px 64px;
}
.we-offer-area.text-center-service .item-service i {
  background: #1abc9c none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
}

.we-offer-area.text-center-service .item-service i::after {
  border: 2px solid #1abc9c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 90px;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-service-border-less .item-service {
  border: medium none;
}

.we-offer-area .our-offer-items-service.less-carousel .equal-height {
  margin-bottom: 30px;
}

.we-offer-area.item-service-border-less .item-service .number {
  font-family: "Poppins",sans-serif;
  font-size: 50px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  right: 30px;
  top: 30px;
}

.our-offer-carousel.center-active .owl-item-service:nth-child(2n) .item-service,
.we-offer-area.center-active .single-item-service:nth-child(2n) .item-service {
  background: #1abc9c none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item-service:nth-child(2n) .item-service i,
.our-offer-carousel.center-active .owl-item-service:nth-child(2n) .item-service h4,
.our-offer-carousel.center-active .owl-item-service:nth-child(2n) .item-service p,
.we-offer-area.center-active .single-item-service:nth-child(2n) .item-service i,
.we-offer-area.center-active .single-item-service:nth-child(2n) .item-service h4,
.we-offer-area.center-active .single-item-service:nth-child(2n) .item-service p {
  color: #ffffff;
}

.we-offer-area .item-service i {
  color: #1abc9c;
  display: inline-block;
  font-size: 60px;
  margin-bottom: 20px;
}

.we-offer-area .item-service h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.we-offer-area .item-service p {
  margin: 0;
}

.we-offer-area .item-service i,
.we-offer-area .item-service h4,
.we-offer-area .item-service p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item-service::after {
  background: #1abc9c none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}

.we-offer-area .item-service:hover::after {
  left: 0;
}

.we-offer-area .item-service:hover i,
.we-offer-area .item-service:hover h4,
.we-offer-area .item-service:hover p {
  color: #ffffff !important;
}

.we-offer-area.text-center-service .item-service:hover i::after {
  border-color: #ffffff !important;
}

.we-offer-area.text-center-service .item-service:hover i {
  background-color: #ffffff !important;
  color: #1abc9c !important;
}

.we-offer-area.text-left .item-service i {
  background: #1abc9c none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}

.we-offer-area.text-left .item-service i::after {
  border: 2px solid #1abc9c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 120px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 120px;
}
.circle-service {
  border-radius: 50%;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  position: absolute;
}

.circle-service.one {
  width: 10%;
  height: 10%;
  top: 9%;
  right: 0%;

}
.circle-service.two {
  width: 6%;
  height: 6%;
  top: 1%;
  right: 6%;
  color: #159b80;
}
/*service1*/
.main-service1{
  max-width: 1080px;
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-color: #fafafa;
  overflow: hidden;

}

.col33-service1 {
  float: left;
  width: 33.333%;
  margin-left: -180px;

  background-color: #fff;
  padding: 10px;
  max-width: 100%;
  margin-top: 110px;
  box-shadow: 0 5px 5px 0;
}


.col66-service1 {
  float: left;
  width: 66.667%;
}
.col66-service1 img{
  width: 80%;
  padding-top: 40px;
  padding-left: 80px;

}
.main-service1 h2{

  padding-left: 0;
  color: #1abc9c;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: -5px;
  display: block;
  padding-left: 20px;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;

  unicode-bidi: isolate;
}
.content h2{
  color: #f5f5f4;
  padding-left: 0;

  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;

  margin-bottom: 20px;
  overflow: hidden;
  margin-top: -5px;
  display: block;

  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;

  unicode-bidi: isolate;
}
.border-service1
{
  width: 300px;
  height: 5px;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-left: 20px;
  unicode-bidi: isolate;
  margin-top: -5px;
  display: block;
}

.col33-service1 p{

  border-left: 2px;
  border-color: #1abc9c;
  border-style: solid;
  padding-left: 5px;
  padding-right: 5px;
}
.big-circle-service1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to top, #1cd4af, #159b80);
  bottom: 98%;
  right: 50%;
  transform: translate(140%, 38%);

}


.big-circle-service1:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);

}


:root{
  --pinkish-red: #C35A74;
  --medium-blue: #307BAA;
  --greenish-blue: #53BAB5;
  --bright-orange: #FF7445;
  --white-smoke: #F5F5F4;
  --white: #FFF;
  --dark-gray: #7D7C7C;
  --black: #000;
}

section{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  margin-top: 20px;
  margin-bottom: 20px;

  background: var(--white-smoke);
}

.content{
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: auto;

}

.box{
  display: flex;
  flex-direction: column;
  height: 586px;
  width: 300px;
  border-radius: 20px;
  margin-left: 10px;
  margin-right: 10px;

  background: var(--white);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 20%);
}

.title-service1{
  width: 100%;
  padding: 10px 0;
  font-size: 1.2em;
  font-weight: lighter;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;

  color: var(--white-smoke);
}

.forfait1 .title-service1{
  background: var(--pinkish-red);
}

.forfait2 .title-service1{
  background: var(--medium-blue);
}


.forfait3 .title-service1{
  background: var(--greenish-blue);
}

.view{
  display: block;
  width: 100%;
  padding: 30px 0 20px;

  background: var(--white-smoke);
}

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

.icon img{
  width: 100px;
}




.description{
  margin: 30px auto;
  font-size: 0.8em;
  color: #7D7C7C;
}

ul{
  list-style: none;
}

li{
  margin-top: 10px;
}

li::before{
  content: "";
  background-image: url("https://i.postimg.cc/ht7g996V/check.png");
  background-position: center;
  background-size: cover;
  opacity: 0.5;

  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.button-service1{
  margin: 0 auto 30px;
  margin-top: 20px;
}

.button-service1 button{
  height: 40px;
  width: 250px;
  font-size: 0.7em;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #7D7C7C;
  border: 2px solid var(--dark-gray);
  border-radius: 50px;


}

.button-service1 button:hover{
  color: var(--white-smoke);
  transition: 0.5s;
  border: none;


  background: linear-gradient(135deg, #1cd4af 20%, #149279);
}
.texte-service1 {
  font-style: italic;
  color: #1abc9c;

  font-size: 0.8rem;



}
.title1-service1 {
  display: inline-block;
  font-size: 25px;

  position: relative;
  text-transform: capitalize;
  z-index: 1;

  text-align: center;

  color: #fff;





}


.title-service1-box {
  padding: 30px 10px; 
  max-width: 100%;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  box-shadow: 0 5px 5px 0;
  margin-top: 50px;

  max-width: 100%;



  display: flex;

  justify-content: center; 
}
/*gallery*/

.gallery-item img {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: middle;
}

/* Embed */

.embed {
  overflow: hidden;
  padding-block-start: 100%;
  position: relative;
}

.embed--1-2 {
  padding-top: calc(100% / (1 / 2));
}

.embed--2-1 {
  padding-top: calc(100% / (2 / 1));
}

.embed--2-3 {
  padding-top: calc(100% / (2 / 3));
}

.embed  * {
  height: 100%;
  left: 0;
  object-fit: cover;
  padding: 0.25em;
  position: absolute;
  top: 0;
  width: 100%;
}


.main-gallery{



  max-width: 1080px;
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-color: #fafafa;
  overflow: hidden;


}
.main-gallery h2{

  padding-left: 0;
  color: #1abc9c;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: -5px;
  padding-left: 20px;
  display: block;

  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;

  unicode-bidi: isolate;
}
.border-gallery
{
  width: 130px;
  height: 5px;
  background: linear-gradient(135deg, #1cd4af 20%, #149279);
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-left: 20px;
  unicode-bidi: isolate;
  margin-top: -5px;
  display: block;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);

  max-width: 1080px;
  width: 100%;

  padding: 2rem;
  background-color: #fafafa;
  padding-bottom: 100px;
}

.gallery__item--h-2 {
  grid-column-end: span 2;
}

.gallery__item--h-3 {
  grid-column-end: span 3;
}

.gallery__item--v-2 {
  grid-row-end: span 2;
}

.gallery__item--v-3 {
  grid-row-end: span 3;
}

.testimonials .gallery{

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  max-width: 1080px;
  width: 100%;
  padding: 2rem;
  background-color: #fafafa;

  grid-template-rows: repeat(1, 1fr);

}




/*footer*/

footer {

  background: linear-gradient(135deg, #1cd4af 20%, #149279);

  display: flex;

  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  right: 0;

}


.icons-footer{
  padding-top: 1rem;
  text-align: center;
}

.icons-footer a{
  text-decoration: none;
  font-size: 2rem;
  margin: 0.5rem;
  color: #f4f4f4;
}

.company-name{

  font-size: 1.6rem;
  color: #f4f4f4;
  padding-bottom: 12px;


}



/*responsive*/

@media (max-width: 1080px) {
  .sidebar {
    display: none;
  }
  .topnav {
    display: block;
  }
  .social-media.horizontal-icons{
    display: none;
  }


}

@media screen and (max-width: 960px) {

  .circle-about.one{
    display: none;
  }
  .circle-about.two{
    display: none;
  }

  .col
  {
    flex: 100%;
    max-width: 80%;
  }
  .big-circle-testimonial{
    display: none;
  }
  .content{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 50px auto;
  }

  .big-circle-service1{
    display: none;
  }
  .border-service1{
    width: 100px;
  }
  .col33-service1 {
    float: left;


    background-color: #fff;

    width: 100%;
    margin: auto;
    margin-top: 40px;

    box-shadow: 0 5px 5px 0;
  }


  .col66-service1 {

    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .title1-service1 p{
    font-size: 18px;
    text-align: center;
  }

}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }
  .gallery{
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery{
    grid-template-rows: repeat(3, 1fr);
  }
  .responsive-grid{
    display: none;
  }
  .testimonials .gallery{
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials .gallery{
    grid-template-rows: repeat(1, 1fr);
  }


  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }


  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
  .col33-service {
    width: 100%;
  }


  .circle-service.one {
    display: none;
  }

  .circle-service.two {
    display: none;
  }

  .big-circle-service{
    display: none;
  }

  .big-circle{
    display: none;
  }



}
@media screen and (max-width: 800px) {
  .arrondi img{
    float: none;
    border-radius: 0;

    width: 60%;
  }


  .col33-service1 {
    width: 100%; 
    margin: 20px 0; 
  }
  .col33-service1 p {
    font-size: 0.9rem; 
  }
  .title1-service1 p{
    font-size: 18px;
    text-align: center;
  }

}
@media screen and (max-width: 600px) {

  .topnav a.icon-nav {
    float: right;
    display: block;
  }
  .topnav a {
    display: none;
  }
  .topnav a.active {
    display: block;
  }

}


@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon-nav {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .message-index{
    position: fixed;
    margin-top: 390px;
  }


}

@media (max-width: 480px) {
  .container-form {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }


  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title-form {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }



  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }



}






