:root {
  --primary: #004567;
  --secondary: #01a7fa;
  --text: #505050;
  --layout: #f3ece6
;
}

body {
  display: flex;
  flex-direction: column;
  width: 100vw;
  font-family: Arial, sans-serif !important;
}

html, body {
  height: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: black;
}

main {
  display: flex;
  flex-grow: 1;
  width: 100%;
  flex-direction: column;
  text-align: center;
}

.header {
  background: black;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

#header {
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-logo {
  max-width: 100%;
}

.header-elements {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  padding-right: 2rem;
}

.header-element {
  margin-right: 5rem;
  cursor: pointer;
  color: #fff;
  padding: 1rem 0;
  border-top: 2px solid black !important;
}

.centered-elements {
  display: flex;
}

footer {
  bottom: 0;
  position: relative;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

#footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: white;
  /* bottom: 0;
    position: fixed; */
}

.footer-elements {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer-element {
  color: white !important;
}

.footer-element a {
  color: white;
  text-decoration: none;
  padding-right: 3rem;
}

.footer-element a:hover {
  text-decoration: underline;
}

.copyright {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.btn-about {
  padding-top: 2rem;
}

.btn-about-us {
  font-size: 1.2rem;
  background-color: var(--primary);
  color: white;
  padding: 7px 35px;
  border: 2px solid var(--primary);
  border-radius: 60px;
  cursor: pointer;
  transition: ease 0.15s;
}

.btn-about-us:hover {
  background-color: white;
  color: var(--primary);
  transition: ease 0.15s;
}

.btn-trial-acc:hover {
  background-color: white;
  color: var(--primary);
  transition: ease 0.15s;
}

.last-content {
  display: flex;
  justify-content: space-around;
  padding: 5% 0;
  background-color: var(--primary);
  margin: 5rem 0;
}

.last-content-icon {
  width: 4rem;
  max-width: 100%;
  padding-bottom: 1rem;
}

.last-content-row {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 20%;
  color: #fff;
  transition: all ease .15s;
}

.last-content-row:hover {
  transform: scale(1.2);
  transition: all ease .15s;
}

.last-content-title {
  font-weight: bold;
  padding-bottom: 1rem;
}

.last-content-link {
  text-decoration: none;
  color: #fff;
}

.last-content-link:hover {
  text-decoration: underline;
}

.link-content {
  margin-top: 1rem;
}

.third-content {
  margin: auto 0;
}

.third-content-list {
  text-align: left;
}

.third-content-list ul {
  text-align: center;
}

.list-el {
  line-height: 2rem;
}

.timeline-content {
  padding: 15% 0;
}

h1 {
  font-family: 'Poppins', sans-serif, 'arial';
  font-weight: 600;
  font-size: 72px;
  text-align: center;
}

/* ///// inputs /////*/
input:focus ~ label, textarea:focus ~ label, input:valid ~ label, textarea:valid ~ label {
  font-family: Arial, sans-serif !important;
  font-size: 0.75em;
  color: #999;
  /* top: -5px; */
  transition: all 0.225s ease;
}

input {
  font-family: Arial, sans-serif !important;
}

.styled-input {
  float: left;
  width: 285px;
  margin: 1rem 0;
  position: relative;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .styled-input {
    width: 100%;
  }
}

.styled-input label {
  color: #999;
  padding: 1.3rem 30px 1rem 30px;
  position: absolute;
  top: 10px;
  left: 0;
  transition: all 0.25s ease;
  pointer-events: none;
}

.styled-input.wide {
  width: 650px;
  max-width: 100%;
}

.styled-input input,
.styled-input textarea {
  padding: 15px 5px;
  border: 0;
  width: 100%;
  font-size: 1rem;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #a9a9a9;
  color: #000;
}

input:focus,
textarea:focus {
  outline: 0;
}

input:focus ~ span,
textarea:focus ~ span {
  width: 100%;
  transition: all 0.075s ease;
}

textarea {
  font-family: Arial, sans-serif !important;
}

textarea {
  width: 100%;
  min-height: 15em;
}

.input-container {
  width: 650px;
  max-width: 100%;
  border-radius: 3px;
  padding: 5rem;
}

.contact-us-img {
  max-width: 100%;
}

.submit-btn {
  /* float: right; */
  padding: 7px 35px;
  display: inline-block;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all ease 0.15s;
  font-weight: bold;
}

.submit-btn:hover {
  background-color: white;
  color: var(--primary);
  transition: 0.1s ease;
}

.mail-img {
  margin: auto;
  padding-right: 5rem;
}

.active-hover {
  color: var(--primary) !important;
  background-color: var(--layout) !important;
  border: 2px dashed var(--primary) !important;
  transition: all ease .15s !important;
}

.form-container {
  border: 1px solid #000;
  background: #fff;
  opacity: 0.9;
}

.form-header-container {
  color: #fff;
  background: var(--primary);
  padding: 2rem;
  font-size: 1.3rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .submit-btn {
    width: 100%;
    float: none;
    text-align: center;
  }
}

@media (max-width: 1600px) {
  .contact-us-img {
    max-width: 100%;
  }
  .mail-img {
    height: fit-content;
    vertical-align: middle;
    position: sticky;
  }
}

@media (max-width: 1024px) {
  .container {
    display: flex;
    flex-direction: column-reverse !important;
    margin: 0 auto;
  }
}

input[type=checkbox] + label {
  font-family: Arial, sans-serif !important;
  color: #ccc;
  font-style: italic;
}

input[type=checkbox]:checked + label {
  font-family: Arial, sans-serif !important;
  color: #f00;
  font-style: normal;
}

.about-us-wrapper {
  width: 30%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.contact-us-el {
  padding-top: 2rem;
}

.contact-us-btn {
  float: none;
  border: 1px solid #fff;
}

.contact-us-btn:hover {
  border: 1px solid #fff;
  background-color: white;
}

.carousel {
  background-image: url("../media/photo-heading.jpg");
  color: #fff;
  position: relative;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4%;
  margin-bottom: 3%;
  height: 30rem;
}

.carousel-inner {
  overflow: hidden;
  width: 100%;
}

.carousel-open:checked + .carousel-item {
  position: static;
  opacity: 100;
  height: 17rem;
  min-height: 17rem;
  font-size: 1.7rem;
}

.carousel-item {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  padding-top: 6%;
}

.carousel-item img {
  display: block;
  height: auto;
  max-width: 100%;
}

.carousel-control {
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: #fff !important;
  font-weight: bold;
  cursor: pointer;
  display: none;
  font-size: 40px;
  height: 40px;
  line-height: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  cursor: pointer;
  transform: translate(0, -50%);
  text-align: center;
  width: 40px;
  z-index: 10;
  transition: 0.15 ease;
}

.carousel-control.prev {
  left: 2%;
}

.carousel-control.next {
  right: 2%;
}

.carousel-control:hover {
  color: var(--primary) !important;
  background-color: white;
  transition: 0.15 ease;
}

#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3 {
  display: block;
  font-size: 2rem;
}

.carousel-indicators {
  list-style: none;
  margin: auto;
  padding: 0;
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.carousel-indicators li {
  display: inline-block;
  margin: 0 5px;
}

.carousel-bullet {
  color: #dadada;
  cursor: pointer;
  display: block;
  font-size: 35px;
}

.carousel-bullet:hover {
  color: var(--primary);
}

#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
  color: var(--primary);
}

#title {
  width: 100%;
  position: absolute;
  padding: 0px;
  margin: 0px auto;
  text-align: center;
  font-size: 27px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  z-index: 9999;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.33), -1px 0px 2px rgba(255, 255, 255, 0);
}

.security-img {
  max-width: 100%;
}

.forth-content {
  display: flex;
  align-items: center;
}

.main-wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row-reverse;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 7rem 0.5rem;
}

.main-wrapper-2 {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  padding: 3rem 0;
  background-color: var(--primary);
}

.wrap-title {
  font-size: 1.1rem;
  padding-bottom: 1rem;
}

.bloc-content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: auto;
}

.overlay1 {
  width: 50%;
}

.overlay1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -3;
  width: 100%;
  height: 90%;
  top: 0;
  left: 0;
  background-color: white;
}

.overlay1::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 45%;
  width: 10000px;
  height: 100%;
  background-color: var(--primary);
  transform-origin: bottom right;
  transform: skewX(156deg);
}

.header-elements a {
  text-decoration: none;
}

.header-element:hover {
  border-top: 2px solid white !important;
  text-decoration: none !important;
}

/* NEWS */
body,
#slider,
.wrap,
.slide-content {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.wrap {
  position: relative;
}

.slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide1 {
  background-image: url("../media/test-slider.jpg");
}

.slide2 {
  background-image: url("../media/test-slider-2.jpg");
}

.slide3 {
  background-image: url("../media/test-slider-3.jpg");
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slide-content span {
  font-size: 3rem;
  padding-bottom: 3rem;
}

.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 0;
  height: 0;
  border-style: solid;
}

#arrow-left {
  border-width: 30px 40px 30px 0;
  border-color: transparent var(--primary) transparent transparent;
  left: 0;
  margin-left: 30px;
}

#arrow-right {
  border-width: 30px 0 30px 40px;
  border-color: transparent transparent transparent var(--primary);
  right: 0;
  margin-right: 30px;
}

.slider-text {
  font-size: 1.5rem;
  width: 60%;
  margin: 0 auto;
}

.slide-bloc {
  background: #e9e9e9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  padding: 5rem;
  border-radius: 4px;
  opacity: 0.8;
}

.layout-content {
  background: url(../media/layout.png);
  background-size: cover;
}

.timer-section {
  display: flex;
  justify-content: center;
}

.timer-section .container {
  padding-left: 15px;
  padding-right: 15px;
}

.timer-section .timer-container {
  list-style: none;
}

.timer-section .timer {
  list-style: none;
  position: relative;
  max-width: 80%;
  margin: auto;
}

.timer-section .timer::before {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #F2F2F2;
  left: 50%;
  transform: translateX(-50%);
}

.timer-section .timer .step {
  width: 50%;
  padding: 20px 15px;
  position: relative;
  background-color: #F2F2F2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.timer-section .timer .step:not(:first-child),
.timer-section .timer .step:not(:last-child) {
  margin: 90px 0 60px 0;
}

.timer-section .timer .step:nth-child(odd) {
  transform: translateX(100%);
  border-left: 2px solid var(--secondary);
  border-radius: 0 3px 3px 0;
}

.timer-section .timer .step:nth-child(even) {
  border-right: 2px solid var(--secondary);
  border-radius: 3px 0 0 3px;
}

.timer-section .timer .step > span {
  position: absolute;
  height: 26px;
  width: 25px;
  color: #333;
  background-color: #F2F2F2;
  text-align: center;
  line-height: 22px;
  border-radius: 3px;
  font-size: .8rem;
}

.timer-section .timer .step:nth-child(odd) > span {
  top: -40px;
  left: -13px;
  border: 2px solid lightblue;
}

.timer-section .timer .step:nth-child(even) > span {
  top: -40px;
  right: -13px;
  border: 2px solid lightsalmon;
}

.timer-section .timer .step h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.timer-section .timer .step p {
  font-weight: 300;
  font-size: 1rem;
  color: #414141;
}

.content {
  padding: 1rem;
}

.color-bloc:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.color-bloc:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  right: 80%;
  width: 10000px;
  height: 100%;
  background-color: var(--primary);
  transform-origin: bottom right;
  transform: skewX(153deg);
}

/* .img-cloud-content {
    display: flex;
    justify-content: center;
} */
#cloud-content {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

.cloud-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 3rem;
  max-width: 100%;
  width: 50%;
}

.img-cloud-content {
  padding: 3rem;
}

.private-cloud {
  padding-top: 3rem;
}

/* .public-cloud {
  padding: 3% 0 8% 0;
} */
.private-cloud {
  margin: 0 auto;
  background: var(--layout);
  padding: 3%;
}

.bloc-cloud-top {
  display: flex;
  margin: 0 auto;
}

.bloc-cloud-bottom {
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  padding: 10% 0;
  border-top: 1px solid #000;
  color: white;
}

.contact-icon {
  max-width: 100%;
  width: 5rem;
}

.cloud-solution-h2 {
  font-weight: 100;
  color: #1da4e6;
}

.solution-cloud-img {
  max-width: 100% !important;
  height: auto !important;
}

/* .cloud-text.left {
  margin-right: 5rem;
}

.cloud-text.right {
  margin-left: 5rem;
} */
@media screen and (max-width: 500px) {
  .timer-section .timer .step {
    width: 100%;
    text-align: center;
    transform: translateX(0%);
    border-radius: 3px !important;
  }
  .timer-section .timer .step:nth-child(odd) {
    transform: translateX(0%);
    border: none;
    border-top: 2px solid var(--secondary);
  }
  .timer-section .timer .step:nth-child(even) {
    border: none;
    border-top: 2px solid var(--secondary);
  }
  .timer-section .timer .step span {
    left: 50% !important;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1500px) {
  .dots {
    display: flex;
    flex-direction: column !important;
  }
  .dashed-line {
    border-top: none;
  }
}

@media screen and (max-width: 2000px) {
  .bloc-cloud-top,
  .bloc-cloud-bottom {
    flex-direction: column;
  }
  .cloud-text {
    width: 100%;
    text-align: left;
  }
  .cloud-solution-text {
    max-width: 85%;
  }
}

h4 {
  margin-top: 0;
  margin-bottom: 20px;
}

.timeline-container {
  font-size: 1rem;
  padding: 5% 0;
}

.timeline-container::before,
.timeline-container::after {
  content: "";
  display: table;
}

.timeline-container::after {
  clear: both;
}

.timeline-block {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.timeline-block .iconic {
  width: 70px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  font-size: 25px;
  text-align: center;
  background-color: var(--primary);
  border: 2px solid #333;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.15s ease-in;
}

.timeline-block .iconic::before {
  content: "";
  border: 2px dashed var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
}

.timeline-block .iconic::after {
  width: 1px;
  height: 30px;
  margin-bottom: -7px;
  margin-left: -2px;
  content: "";
  border-left: 2px dashed #333;
  transform: translateY(100%);
  position: absolute;
  left: 50%;
  bottom: 0;
}

.timeline-block .heading {
  padding-bottom: 0;
  position: relative;
}

.timeline-block .heading::after {
  width: 50px;
  height: 2px;
  content: "";
  display: block;
  background-color: var(--primary);
  margin-left: auto;
  margin-right: auto;
}

.timeline-block .text {
  padding-top: 60px;
  position: relative;
}

.timeline-block .text::before {
  width: 15px;
  height: 15px;
  display: block;
  content: "";
  background-color: var(--primary);
  border-radius: 50%;
  transform: translateY(50%) translateX(-50%);
  position: absolute;
  top: 30px;
  left: 50%;
  margin-top: -6px;
}

.timeline-p {
  display: flex;
  justify-content: center;
  width: 55%;
  margin: 0 auto;
}

.contact-info-image {
  padding-bottom: 1.5rem;
}

.contact-info-title {
  font-weight: bold;
}

.contact-info a {
  text-decoration: none;
  color: black;
}

.contact-us-section {
  margin: auto;
}

.year {
  color: white;
  font-weight: bold;
  line-height: 3.2;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .timeline-block {
    width: 25%;
    max-width: none;
    margin-bottom: 0;
    float: left;
  }
  .timeline-block::after {
    width: 100%;
    height: 1px;
    content: "";
    margin-top: -7px;
    z-index: -1;
    transform: translateY(-50%);
    border-top: 2px dashed #333;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .timeline-block:last-child::after {
    width: calc(50% - 5px);
    left: 5px;
  }
  .timeline-block:last-child::after {
    width: 0;
  }
  .timeline-block:nth-child(even) .iconic {
    transform: translateY(200%);
    top: 7px;
  }
  .timeline-block:nth-child(even) .iconic::after {
    transform: translateY(-100%);
    margin-bottom: auto;
    margin-top: -7px;
    bottom: auto;
    top: 0;
  }
  .timeline-block:nth-child(even) .text {
    transform: translateY(-50%);
    padding-top: 0;
    padding-bottom: 60px;
    padding-bottom: 72px;
    margin-top: -11px;
  }
  .timeline-block:nth-child(even) .text::before {
    transform: translateY(-50%) translateX(-50%);
    top: auto;
    bottom: 30px;
  }
}

#contact-icon {
  transition: all ease 0.15s;
}

#contact-icon:hover {
  transition: all ease 0.15s;
  transform: scale(1.1);
}

.cloud-solution-text {
  color: white;
}

.timeline-block:nth-child(even) .timeline-news {
  transform: translateY(-50%);
  padding-top: 0;
  padding-bottom: 60px;
  padding-bottom: 72px;
  margin-top: -11px;
}

.timeline-bloc:nth-child(even) .timeline-news::before {
  transform: translateY(-50%) translateX(-50%);
  top: auto;
  bottom: 30px;
}

.private-cloud .cloud-solution-text {
  color: black;
}

.timeline-bloc {
  display: flex;
  justify-content: center;
}

.dashed-line {
  border-top: 2px dashed #919191;
}

.dots {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  margin-top: -7.8rem;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary);
  margin-left: 2.1rem;
  margin-top: 2rem;
}

.timeline-year {
  width: 5rem;
  height: 5rem;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 4;
  transition: all ease .15s;
}

.timeline-news {
  padding: 2rem;
  position: relative;
  width: 15rem;
  text-align: left;
  color: white;
}

.vertical {
  border-left: 3px dashed var(--primary);
  height: 2rem;
  position: relative;
  left: 50%;
  margin-left: -3px;
  bottom: -7px;
}

.dashed-border {
  border: 2px dashed var(--primary);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}

.acces-reserved-form {
  margin: auto;
  padding: 2rem;
  border-radius: 3px;
}

#name,
#password {
  border: none;
  border-bottom: 1px solid gray;
  max-width: 100%;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex: 1 1 auto;
  margin-bottom: 0;
}

.login-content {
  padding-bottom: 2rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.acces-reserved-title {
  font-weight: normal;
}

.header-element.last {
  margin: 0 1rem 0 0;
}

.lock-icon {
  width: 1.5rem;
}

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  border-radius: 3px;
  max-width: 100%;
  width: 50%;
  background: #fff;
  opacity: 0.9;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #6e6e6e;
  outline: none;
  background: transparent;
}

.login-box .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  pointer-events: none;
  transition: .15s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: var(--primary);
  font-size: 12px;
}

.header-acces-reserved {
  background: var(--primary);
  color: #fff;
  padding: 1rem;
}

.header-acces-reserved h3 {
  font-weight: bold;
  font-size: 1.2rem;
}

.login-box form {
  padding: 3rem 1rem;
}

.link-cancel-btn {
  background: #fff;
  border: none;
}

.form-btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.cancel-btn {
  color: #f00;
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
}

.cancel-btn:hover {
  text-decoration: underline;
}

.send-btn {
  font-size: 1.2rem;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: white;
  padding: 1rem;
  font-weight: bold;
  transition: all ease .15s;
  cursor: pointer;
}

.send-btn:hover {
  transition: all ease .15s;
  background-color: white;
  color: var(--primary);
}

.help-links {
  color: var(--primary);
  cursor: pointer;
  text-align: left;
}

.forgot-password,
.forgot-id {
  padding: 0.5rem;
}

.forgot-password:hover,
.forgot-id:hover {
  text-decoration: underline;
}

.scroll-home {
  height: 35rem;
  overflow: hidden;
}

.wrappers {
  background-color: black;
  color: white;
}

#slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  height: 50rem;
  margin: auto;
  display: flex;
  align-items: center;
}

#slider img {
  overflow: hidden;
  position: sticky;
  height: auto;
}

#slider #slide {
  width: 100%;
}

#slider #precedent,
#slider #suivant {
  cursor: pointer;
  transition: opacity 0.15s ease;
  opacity: 0;
  position: absolute;
  font-size: 100px;
  color: rgba(220, 220, 220, 0.8);
  padding: 10px;
}

#slider #precedent {
  left: 0;
  padding: 3rem;
}

#slider #suivant {
  right: 0;
  padding: 3rem;
}

#slider #slider:hover #precedent,
#slider #slider:hover #suivant {
  opacity: 1;
}

.swiper-body {
  font-size: 14px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.container {
  max-width: 100%;
  padding: 20px 50px;
  margin-top: 10%;
  position: relative;
}

.container .swiper {
  width: 100%;
  height: 100%;
}

.container .swiper-slide {
  text-align: start;
  font-size: 18px;
  background: #fff;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(196, 196, 196, 0.25);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.desc {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  background: #000;
  opacity: 0.9;
  color: #fff;
}

.desc button {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 1.2rem;
  border: none;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 4px;
  align-self: flex-end;
  cursor: pointer;
  transition: all 0.15s ease;
}

.desc button:hover {
  transition: all 0.15s ease;
  background-color: black;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  font-weight: bold !important;
}

.price {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.4rem;
}

h3 {
  margin: 10px 0 0;
}

p {
  margin: 10px 0 0;
}
