@import url("marbust-framework.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&family=Ubuntu&display=swap");
* {
  box-sizing: border-box;
}

html body {
  min-width: 300px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  background: #58a4cd;
}
html body main {
  background: white;
}
html body main .page-section {
  padding: 84px 10% 30px 10%;
}
@media (max-width: 1100px) {
  html body main .page-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}
html body main .page-section h1 {
  color: #008644;
}
html body main .page-section h2 {
  color: #003f70;
}
html body main .page-section .subtittle {
  color: #003f70;
}
html body main .page-section p {
  color: #4A4A50;
}
html body main .page-section .gray {
  color: #4A4A50;
}
html body main .page-section:nth-of-type(even) {
  background: #f8f8f8;
}
html body footer {
  background: white;
}

body::-webkit-scrollbar {
  width: 8px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #58a4cd #1c92c8;
}

body::-webkit-scrollbar-track {
  background: #58a4cd;
}

body::-webkit-scrollbar-thumb {
  background-color: #003f70;
}

body {
  font-family: "Roboto", sans-serif;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Ubuntu", sans-serif;
}

header {
  transition: 0.3s;
  color: white;
  background: rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  min-width: 300px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
header .logo-container {
  display: block;
  width: 240px;
}
header .logo-container img {
  display: block;
  margin: 0px auto;
  width: 100%;
  transition: 0.3s;
  pointer-events: none;
}
@media (max-width: 1100px) {
  header ul {
    display: none;
  }
}
@media (min-width: 1100px) {
  header ul {
    display: flex;
    list-style: none;
    align-items: center;
  }
  header ul #close-btn {
    display: none;
  }
  header ul li a {
    display: block;
    padding: 15px 20px;
    margin: 0px 5px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
  }
  header ul li a:hover {
    background: #008644;
  }
  header ul li .link-active {
    background: #008644;
    color: white;
  }
  header ul li:nth-last-child(1) a {
    padding: 15px 30px;
    border-radius: 10px;
    border: 1px solid white;
  }
  header ul li:nth-last-child(1) a:hover {
    background: #26a764;
  }
}
header #menu-btn {
  color: white;
  font-size: 25px;
  padding: 10px;
  transition: 0.3s;
  cursor: pointer;
}
@media (min-width: 1100px) {
  header #menu-btn {
    display: none;
  }
}
header #menu-btn:hover {
  color: #26a764;
}

.menu-down {
  background: white;
  color: black;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
  /* .active-menu {
      @include Menu-Mobile-Setup;
      animation: 0.5s appearmenu ease;

      @keyframes appearmenu {
          from {
              transform: translateX(-100%);
          }

          to {
              transform: translateX(0px);
          }
      }
  }

  .desactivate-menu {
      animation: 0.5s dappearmenu ease;
      transform: translateX(-100%);

      @keyframes dappearmenu {
          from {
              transform: translateX(0px);
          }

          to {
              transform: translateX(-100%);
          }
      }
  }*/
}
.menu-down ul {
  /* @media (max-width: $break-medium) {
      display: none;
  }*/
}
@media (min-width: 1100px) {
  .menu-down ul {
    display: flex;
    list-style: none;
    align-items: center;
  }
  .menu-down ul li a {
    color: #003f70;
  }
  .menu-down ul li a:hover {
    color: white;
    background: #003f70;
  }
  .menu-down ul li .link-active {
    color: white;
    background: #003f70;
  }
  .menu-down ul li:nth-last-child(1) a {
    background: white;
    color: #003f70;
    padding: 15px 30px;
    border: 1px solid #003f70;
  }
  .menu-down ul li:nth-last-child(1) a:hover {
    background: #1c92c8;
    color: white;
    border: 1px solid #1c92c8;
  }
  .menu-down ul li:nth-last-child(1) .link-active {
    background: #1c92c8;
    color: white;
    border: 1px solid #1c92c8;
  }
}
.menu-down #menu-btn {
  color: #26a764;
}
.menu-down #menu-btn:hover {
  color: #008644;
}

@media (max-width: 1100px) {
  .active-menu {
    display: block;
    z-index: 12;
    position: fixed;
    max-width: 300px;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: white;
    overflow-y: auto;
    box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.24), inset 0 -1px 0 0 #dadce0;
    list-style: none;
    animation: 0.5s appearmenu ease;
    transform: translateX(0px);
  }
  .active-menu #close-btn {
    color: #003f70;
    padding: 10px;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    /*margin-right: 5px;*/
    transition: 1s;
    cursor: pointer;
  }
  .active-menu #close-btn:hover {
    /*transform: rotate(360deg);*/
    color: #1c92c8;
  }
  .active-menu li a {
    display: block;
    text-align: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #003f70;
    transition: 0.3s;
  }
  .active-menu li a:hover {
    color: white;
    background: #003f70;
  }
  .active-menu li .link-active {
    color: white;
    background: #003f70;
  }
  .active-menu li:nth-last-child(1) {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .active-menu li:nth-last-child(1) a {
    background: white;
    color: #003f70;
    padding: 15px 30px;
    border: 1px solid #003f70;
    border-radius: 5px;
  }
  .active-menu li:nth-last-child(1) a:hover {
    background: #1c92c8;
    color: white;
    border: 1px solid #1c92c8;
  }
  .active-menu li:nth-last-child(1) .link-active {
    background: #1c92c8;
    color: white;
    border: 1px solid #1c92c8;
  }
  @keyframes appearmenu {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0px);
    }
  }

  .desactivate-menu {
    animation: 0.5s dappearmenu ease;
    transform: translateX(-100%);
  }
  @keyframes dappearmenu {
    from {
      transform: translateX(0px);
    }
    to {
      transform: translateX(-100%);
    }
  }
}
.btn-center {
  display: block;
  background: #00528e;
  color: white;
  padding: 15px 15px;
  text-align: center;
  width: 200px;
  margin: 15px auto;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 10px;
}
.btn-center:hover {
  background: #1c92c8;
}

.banner {
  /*background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner.jpg);*/
}
.banner .swiper {
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner.jpg);
}
.banner .swiper-slide {
  /*background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner.jpg);*/
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: white;
  /* padding: 20px;
  padding-bottom: 20px;
  padding-left: 35px;
      padding-left: 50px;*/
}
.banner .swiper-slide:nth-child(1), .banner .swiper-slide:nth-child(2), .banner .swiper-slide:nth-child(3) {
  min-height: 100vh;
}
.banner .swiper-slide .vintro {
  min-height: 100vh;
  display: block;
  width: 100%;
}
.banner .swiper-slide .vintro video {
  /* position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;*/
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner .swiper-slide h1 {
  padding-left: 50px;
  transition: 0.3s;
  z-index: 5;
}
.banner .swiper-slide .slider-btn {
  z-index: 5;
  display: block;
  padding: 15px 20px;
  width: 220px;
  background: #26a764;
  color: white;
  text-align: center;
  margin-top: 20px;
  margin-right: auto;
  margin-left: 50px;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}
.banner .swiper-slide .slider-btn:hover {
  background: #1c92c8;
}
.banner .swiper-slide img {
  display: block;
  position: absolute;
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  top: 0;
  left: 0;
  pointer-events: none;
}
.banner .swiper-button-next::after {
  color: white;
}
.banner .swiper-button-prev::after {
  color: white;
}

.not-found {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner3.jpg);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: white;
  padding: 20px 10%;
  min-height: 100vh;
}
.not-found div,
.not-found p,
.not-found h1 {
  width: 100%;
  text-align: center;
}
.not-found a {
  display: block;
  padding: 10px;
  font-size: 50px;
  color: white;
  transition: 0.5s all;
}
.not-found a:hover {
  color: #58a4cd;
  transform: scale(1.1);
}

/*About*/
.about-box {
  background: white;
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.32));
  padding: 30px 30px;
  border-radius: 10px;
}

/*Services*/
.home-services .service-box {
  background: white;
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.32));
  padding: 30px 30px;
  border-radius: 10px;
  transition: 0.3s;
  text-decoration: none;
}
.home-services .service-box:hover {
  filter: drop-shadow(2px 2px 4px rgba(128, 128, 128, 0.52));
  transform: scale(1.01);
}
.home-services .service-box:hover .img-ctnr {
  background: rgba(203, 203, 203, 0.45);
}
.home-services .service-box h3 {
  text-align: center;
  font-size: 30px;
  color: #003f70;
}
.home-services .service-box .img-ctnr {
  width: 150px;
  height: 150px;
  margin: 10px auto;
  background: rgba(203, 203, 203, 0.27);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.home-services .service-box .img-ctnr img {
  width: 120px;
  height: 120px;
  pointer-events: none;
}
.home-services .service-box p {
  text-align: center;
  font-size: 17px;
  line-height: 1.2em;
}

/*Pricing*/
#pricing .plan {
  background: white;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 10px;
  transition: 0.2s;
}
#pricing .plan:hover {
  box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.24), inset 0 -1px 0 0 #dadce0;
}
#pricing .plan:hover .top img {
  filter: grayscale(0%);
}
#pricing .plan .top img {
  display: block;
  margin: 0px auto;
  margin-top: -60px;
  width: 50%;
  border-radius: 5px;
  /*position: relative;
  top: -40px;*/
  pointer-events: none;
  filter: grayscale(50%);
  transition: 0.2s;
  border: 8px solid white;
}
#pricing .plan h2 {
  text-align: center;
  padding: 25px 10px 30px 10px;
  background: #26a764;
  color: white;
  margin-top: -15px;
  font-size: 30px;
}
#pricing .plan .price {
  display: block;
  text-align: center;
  background: #00528e;
  color: white;
  width: 80%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -25px;
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: bold;
  border: 5px solid white;
  /* &:hover {
      background: $color2;
      //transform: scale(1.01);

  }*/
}
#pricing .plan .body {
  text-align: center;
  padding: 15px 10%;
}
#pricing .plan .body .more-info {
  color: #003f70;
  transition: 0.3s;
  text-decoration: none;
  font-size: 18px;
}
#pricing .plan .body .more-info:hover {
  color: #008644;
}
#pricing .plan .body .btn {
  display: block;
  text-align: center;
  padding: 15px;
  background: #1c92c8;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  width: 200px;
  margin: 10px auto;
}
#pricing .plan .body .btn:hover {
  background: #58a4cd;
}

#services {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner3.jpg);
  padding-top: 100px;
  /*.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }*/
}
#services h1 {
  color: white;
  margin-top: 10px;
}
#services .more-info-doc {
  color: #58a4cd;
  text-decoration: none;
  transition: 0.3s;
}
#services .more-info-doc:hover {
  color: #1c92c8;
}
#services .swiper {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}
#services .swiper-slide {
  font-size: 18px;
  min-height: 75vh;
  padding: 30px 10%;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#services .swiper-pagination span {
  background: #003f70;
}

#customers {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner2.jpg);
  min-height: 100vh;
  padding-top: 100px;
  /*.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }*/
}
#customers h1 {
  color: white;
  margin-top: 10px;
}
#customers .more-info-doc {
  color: #58a4cd;
  text-decoration: none;
  transition: 0.3s;
}
#customers .more-info-doc:hover {
  color: #1c92c8;
}
#customers .swiper {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}
#customers .swiper-slide {
  font-size: 18px;
  /*min-height: 25vh;*/
  padding: 30px 10%;
  min-height: 65vh;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#customers .swiper-pagination span {
  background: #003f70;
}

#contact {
  background: #f8f8f8;
}
#contact .top {
  padding-top: 175px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /*background: #e4f4fd;*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner3.jpg);
  padding-bottom: 120px;
}
#contact .top h1 {
  text-align: center;
  width: 100%;
  color: white;
}
#contact .body {
  position: relative;
  top: -90px;
  padding: 0px 7.5% 10px 7.5%;
}
@media (max-width: 1100px) {
  #contact .body {
    padding-left: 5%;
    padding-right: 5%;
  }
}
#contact .body h1 {
  color: #008644;
}
#contact .body .contact-box {
  background: white;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 10px;
  text-decoration: none;
  padding: 30px 20px 10px 20px;
}
#contact .body .contact-box:hover {
  background: #f9fafb;
  cursor: pointer;
  transform: scale(1.02);
}
#contact .body .contact-box:hover img {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.11));
}
#contact .body .contact-box:hover .btn {
  background: #1c92c8;
}
#contact .body .contact-box .contact-img {
  display: block;
  margin: 0 auto;
  width: 40%;
  max-width: 85px;
  pointer-events: none;
  transition: 0.3s;
}
#contact .body .contact-box .team-img {
  display: block;
  margin: 0 auto;
  width: 60%;
  max-width: 200px;
  pointer-events: none;
  transition: 0.3s;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.06);
}
#contact .body .contact-box h2 {
  text-align: center;
  color: #003f70;
  margin: 10px 0px 5px 0px;
  font-size: 25px;
}
#contact .body .contact-box p {
  padding-top: 10px;
  color: #4A4A50;
  line-height: 1.9em;
  text-align: center;
}
#contact .body .contact-box .btn {
  display: block;
  background: #00528e;
  color: white;
  padding: 15px 15px;
  text-align: center;
  max-width: 200px;
  width: 100%;
  margin: 15px auto 30px auto;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 5px;
}

.demo {
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layout/banner/banner4.jpg);
  padding-top: 100px;
  padding-bottom: 50px;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo .demo-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 25px 15px;
  border-radius: 10px;
}
.demo .demo-card h1 {
  color: #003f70;
  text-align: center;
}
.demo .demo-card .sub-tittle {
  color: #4A4A50;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 2em;
}
.demo .demo-card .fm-msg {
  font-weight: bold;
  margin: 15px 0px;
  font-size: 17px;
  color: #003f70;
  line-height: 1.5em;
}
.demo .demo-card form input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0px;
  border: 0px;
  border-radius: 5px;
  height: 50px;
  font-family: "Roboto", sans-serif;
  background: rgba(248, 248, 248, 0.95);
  color: #003f70;
  font-weight: bold;
  transition: 0.3s;
}
.demo .demo-card form input:hover {
  background: #ceeeff;
}
.demo .demo-card form button {
  display: block;
  background: #00528e;
  color: white;
  padding: 20px 15px;
  text-align: center;
  width: 200px;
  margin: 15px auto;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 10px;
  border: 0px;
}
.demo .demo-card form button:hover {
  background: #1c92c8;
  cursor: pointer;
}

footer {
  padding: 30px 10%;
  border-top: 5px solid #008644;
  color: #4A4A50;
}
footer .copylink {
  text-decoration: none;
  font-weight: bold;
  color: #008644;
  transition: 0.3s;
}
footer .copylink:hover {
  color: #26a764;
}
footer .contact-links {
  line-height: 2em;
}
footer .contact-links h2 {
  font-size: 18px;
  color: #1c92c8;
}
footer .contact-links a {
  color: #4A4A50;
  text-decoration: none;
  transition: 0.3s;
}
footer .contact-links a:hover {
  color: #1f1f21;
}

#pop-up {
  position: fixed;
  left: 15px;
  bottom: 15px;
  width: 50px;
  z-index: 3;
}
#pop-up a:nth-child(1) {
  position: fixed;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  background-image: linear-gradient(to right, #F9AE00 0%, #e09e05 51%, #F9AE00 100%);
  filter: drop-shadow(4px 4px 5px rgba(49, 49, 49, 0.54));
  background-size: 200% auto;
  left: 15px;
  bottom: 15px;
  font-size: 22px;
  border-radius: 50%;
  color: white;
  transition: 0.5s;
}
#pop-up a:nth-child(1):hover {
  cursor: pointer;
  background-position: right center;
}
#pop-up a:nth-child(2), #pop-up a:nth-child(3), #pop-up a:nth-child(4) {
  display: none;
}
#pop-up a:nth-child(2):hover, #pop-up a:nth-child(3):hover, #pop-up a:nth-child(4):hover {
  transform: scale(1.05);
}
#pop-up a:nth-child(2) {
  background: #4267B2;
}
#pop-up a:nth-child(2):hover {
  background: #314c84;
}
#pop-up a:nth-child(3) {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  background-size: 200% auto;
}
#pop-up a:nth-child(3):hover {
  background-position: right center;
}
#pop-up a:nth-child(4) {
  background: #25D366;
}
#pop-up a:nth-child(4):hover {
  background: #1ca14e;
}

.pop-out-active a:nth-child(2) {
  position: fixed;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 2;
  color: white;
  border-radius: 50%;
  transition: 0.5s;
  text-decoration: none;
  animation: 0.5s upsocialmedia ease;
  transform: translateY(0px);
  left: 15px;
  bottom: 70px;
}
@keyframes upsocialmedia {
  from {
    transform: translateY(300px);
  }
  to {
    transform: translateY(0px);
  }
}
.pop-out-active a:nth-child(3) {
  position: fixed;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 2;
  color: white;
  border-radius: 50%;
  transition: 0.5s;
  text-decoration: none;
  animation: 0.5s upsocialmedia ease;
  transform: translateY(0px);
  left: 15px;
  bottom: 125px;
  background: #00528e;
}
@keyframes upsocialmedia {
  from {
    transform: translateY(300px);
  }
  to {
    transform: translateY(0px);
  }
}
.pop-out-active a:nth-child(4) {
  position: fixed;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 2;
  color: white;
  border-radius: 50%;
  transition: 0.5s;
  text-decoration: none;
  animation: 0.5s upsocialmedia ease;
  transform: translateY(0px);
  left: 15px;
  bottom: 180px;
}
@keyframes upsocialmedia {
  from {
    transform: translateY(300px);
  }
  to {
    transform: translateY(0px);
  }
}

.pop-out-desactive a:nth-child(2) {
  position: fixed;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 2;
  color: white;
  border-radius: 50%;
  transition: 0.5s;
  text-decoration: none;
  transform: translateY(300px);
  animation: 0.5s downsocialmedia ease;
  left: 15px;
  background: #00528e;
  bottom: 70px;
}
@keyframes downsocialmedia {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(300px);
  }
}
.pop-out-desactive a:nth-child(3) {
  position: fixed;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 2;
  color: white;
  border-radius: 50%;
  transition: 0.5s;
  text-decoration: none;
  transform: translateY(300px);
  animation: 0.5s downsocialmedia ease;
  left: 15px;
  bottom: 125px;
  background: #00528e;
}
@keyframes downsocialmedia {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(300px);
  }
}
.pop-out-desactive a:nth-child(4) {
  position: fixed;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 2;
  color: white;
  border-radius: 50%;
  transition: 0.5s;
  text-decoration: none;
  transform: translateY(300px);
  animation: 0.5s downsocialmedia ease;
  left: 15px;
  bottom: 180px;
  background: #00528e;
}
@keyframes downsocialmedia {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(300px);
  }
}

/*# sourceMappingURL=styles.css.map */
