.product-slider {
  height: 920px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  background: radial-gradient(
    circle at 71% 50%,
    rgb(255, 255, 255) 0%,
    rgb(6, 183, 249) 25.9%,
    rgb(35, 121, 226) 76.7%,
    rgb(23, 119, 228) 100.2%
  );
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;

  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.slider .list .item {
  position: absolute;
  inset: 0 0 0 0;
  overflow: hidden;

  opacity: 0;
  transition: 0.5s;

  display: flex;
  justify-content: center;
  align-items: center;
}
.slider .list .item img {
  width: 500px;
  height: 500px;
  position: absolute;
  object-fit: contain;

  top: 25%;

  right: 300px;
  animation: productimg 0.4s ease-in-out;
}

@keyframes productimg {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.slider .list .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.slider .list .item .content {
  position: absolute;
  left: 15%;
  top: 300px;
  width: 700px;
  z-index: 1;
}

.slider .list .item .content .list-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.slider .list .item .content p:nth-child(1) {
  text-transform: uppercase;
  letter-spacing: 10px;
}
.slider .list .item .content li,
.slider .list .item .content ul,
.slider .list .item .content p {
  font-family: Montserrat;
  color: #fff;
  font-size: 1em;
  padding: 0 0 0 8px;
}
.slider .list .item .content h2 {
  font-size: 90px;
  font-family: Montserrat;
  color: #fff;
  margin: 0;
}
.slider .list .item button {
  height: 40px;
  width: 150px;
  border-radius: 5px;
  margin-top: 30px;
  margin-right: 20px;

  font-family: Montserrat;
  font-weight: bold;
  color: #fff;
  background-color: #22283149;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slider .list .item button:hover {
  border: 3px solid #fff;
  background-color: transparent;
  color: #fff;
}

.slider .list .item.active {
  opacity: 1;
}
@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active p,
.slider .list .item.active h2,
.slider .list .item.active ul,
.slider .list .item.active li,
.slider .list .item.active button,
.slider .list .item.active p:nth-child(3) {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.3s 0.5s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
  animation-delay: 0.3s;
}
.slider .list .item.active p:nth-child(3) {
  animation-duration: 0.5s;
}

.arrows {
  position: absolute;
  top: 75%;
  display: none;
}
.arrows #prev {
  position: absolute;
  left: -280px;
  background-color: transparent;
}
#prev img,
#next img {
  height: 50px;
  width: 50px;
}
.arrows #next {
  position: absolute;
  right: 0;
  background-color: transparent;
}
.arrows button {
  border: none;
  font-family: monospace;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: x-large;
  cursor: pointer;
  color: #222222;
  transition: 0.5s;
}
.arrows button:hover {
  background-color: aqua;
  transform: scale(1.2);
}
.thumbnail-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.thumbnail {
  position: absolute;
  gap: 30px;
  bottom: -5%;
  width: 100%;
  height: 250px;
  box-sizing: content-box;
  overflow: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.thumbnail:nth-child(2) {
  bottom: 0;
}
.thumbnail::-webkit-scrollbar {
  width: 0;
}
.thumbnail .item {
  width: 150px;
  height: 150px;
  filter: brightness(1);
  transition: 0.3s ease-in-out;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #222222;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%),
    0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
}
.thumbnail .item img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  border-radius: 15px;
  z-index: 2;
  transition: 0.3s ease-in-out;
}

/* .thumbnail .item:nth-child(1) img {
  width: 60%;
  height: 60%;
}
.thumbnail .item:nth-child(2) img {
  width: 60%;
  height: 60%;
}
.thumbnail .item:nth-child(3) img {
  width: 70%;
  height: 70%;
}
.thumbnail .item:nth-child(4) img {
  width: 50%;
  height: 50%;
}
.thumbnail .item:nth-child(5) img {
  width: 50%;
  height: 50%;
}
.thumbnail .item:nth-child(6) img {
  width: 70%;
  height: 70%;
}
.thumbnail .item:nth-child(7) img {
  width: 60%;
  height: 60%;
} */
.thumbnail .item:nth-child(1) {
  animation: thumbnail-slide 3s;
}
.thumbnail .item:nth-child(2) {
  animation: thumbnail-slide 2.8s;
}
.thumbnail .item:nth-child(3) {
  animation: thumbnail-slide 2.5s;
}
.thumbnail .item:nth-child(4) {
  animation: thumbnail-slide 2.2s;
}
.thumbnail .item:nth-child(5) {
  animation: thumbnail-slide 1.9s;
}
.thumbnail .item:nth-child(6) {
  animation: thumbnail-slide 1.6s;
}
.thumbnail .item:nth-child(7) {
  animation: thumbnail-slide 1.3s;
}
.thumbnail .item:nth-child(8) {
  animation: thumbnail-slide 1s;
}

.thumbnail .item .item-circle {
  height: 80px;
  width: 80px;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  background: linear-gradient(
    -109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );
  transition: 0.3s ease-in-out;
}

.thumbnail .item.active {
  background: linear-gradient(
    -109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );

  transition: 0.1s ease-in-out;
}
.thumbnail .item.active .item-circle {
  transform: scale(2);
  opacity: 1;
}

.thumbnail .item.active:hover .item-circle {
  transform: scale(4);
}
.thumbnail .item.active:hover img {
  transform: scale(0.9);
  transform: translateY(-10px);
}

.thumbnail .item:hover .item-circle {
  transform: scale(4);
}

.thumbnail .item:hover img {
  transform: scale(0.9);
  transform: translateY(-10px);
}

.thumbnail .item .content {
  position: absolute;
  inset: auto 0 10px 0;
  font-family: Montserrat;
  text-align: center;
  font-weight: bold;
  color: #222222;
  z-index: 2;
  transition: 0.3s ease-in-out;
}
.thumbnail .item.active .content {
  color: #fff;
}

.thumbnail .item:hover .content {
  color: #fff;
}
.slider .list .item .content .list-buttons-425 {
  display: none;
  gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}
.slider .list .item.active .list-buttons-425 button {
  height: 50px;
  width: 80px;
  border-radius: 5px;
  background-color: #00000025;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lb-425-btn-img {
  background-image: url("../../../Images/Icons/icons8/icons8-order2-96.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 70%;
  width: 70%;
}
.lb-425-btn-img-2 {
  background-image: url("../../../Images/Icons/icons8/icons8-share2-96.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 70%;
  width: 70%;
}
.lb-425-btn-img-3 {
  background-image: url("../../../Images/Icons/icons8/icons8-info-96.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 70%;
  width: 70%;
}
@media screen and (max-width: 678px) {
  .thumbnail {
    justify-content: start;
  }
  .slider .list .item .content h2 {
    font-size: 60px;
  }
  .arrows {
    top: 10%;
  }
}

@keyframes thumbnail-slide {
  0% {
    transform: translateX(-1000px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes thumbnail-slide-right {
  0% {
    transform: translateX(1000px);
  }

  100% {
    transform: translateX(0);
  }
}

/*--------------------------------------------------------RESPONSIVE-----------------------------------------------------*/

@media only screen and (max-width: 1680px) {
  .slider .list .item .content {
    left: 10%;
    top: 330px;
  }

  .slider .list .item img {
    right: 220px;
  }
}

@media only screen and (max-width: 1536px) {
  .product-slider {
    height: 850px;
    background: radial-gradient(
      circle at 73% 45%,
      rgb(255, 255, 255) 0%,
      rgb(6, 183, 249) 25.9%,
      rgb(35, 121, 226) 76.7%,
      rgb(23, 119, 228) 100.2%
    );
  }
  .slider .list .item .content {
    width: 650px;
  }
  .slider .list .item img {
    width: 400px;
    height: 400px;
    top: 30%;

    right: 220px;
  }
  .slider .list .item .content h2 {
    font-size: 5em;
  }
}

@media only screen and (max-width: 1440px) {
  .thumbnail .item {
    height: 150px;
    width: 130px;
  }
  .slider .list .item .content {
    width: 600px;
  }
  .slider .list .item button {
    font-size: 0.7em;
  }
}

@media only screen and (max-width: 1280px) {
  .slider .list .item .content {
    left: 8%;
    width: 600px;
  }
  .slider .list .item img {
    right: 130px;
  }
  .slider .list .item .content h2 {
    font-size: 4em;
  }
  .thumbnail {
    gap: 15px;
  }
  .thumbnail .item {
    height: 130px;
    width: 100px;
  }
  /* .thumbnail .item .item-circle {
    height: 50px;
    width: 50px;
  } */
}

/* @media only screen and (max-width: 1279px) {
  .thumbnail {
    gap: 30px;
  }
  .thumbnail .item {
    height: 150px;
    width: 120px;
  }
} */

@media only screen and (max-width: 1279px) {
  .product-slider {
    height: 920px;
    background: radial-gradient(
      circle at 50% 40%,
      rgb(255, 255, 255) 0%,
      rgb(6, 183, 249) 25.9%,
      rgb(35, 121, 226) 76.7%,
      rgb(23, 119, 228) 100.2%
    );
  }

  .slider .list .item img {
    height: 350px;
    width: 350px;
    position: static;
    margin-bottom: 80px;
  }
  .slider .list .item .content {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
  .slider .list .item button {
    width: 200px;
    margin: 0 auto;
    font-size: 0.9;
  }
  .slider .list .item .content .list-buttons {
    /* padding: 10px; */
    gap: 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .slider .list .item .content p {
    font-size: 1em;
    margin-bottom: 20px;
    text-align: center;
  }
  .slider .list .item .content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
  }
  .arrows {
    top: 45%;
    display: block;
    z-index: 2;
  }
  .arrows button {
    height: 30px;
    width: 30px;
  }
  .arrows #prev {
    /* right: 140px; */
    left: -240px;
  }

  .arrows #next {
    right: -200px;
  }

  .thumbnail-container {
    display: none;
  }

  .thumbnail {
    width: auto;
    height: auto;
    left: 5%;
    bottom: 0%;
    flex-direction: column;
  }

  .thumbnail .item {
    width: 70px;
    height: 70px;
  }

  .thumbnail .item .content {
    display: none;
  }
  /* .slider .list .item .content {
    left: 8%;
    width: 450px;
  }
  .slider .list .item img {
    right: 80px;
  }
  .slider .list .item .content h2 {
    font-size: 4em;
  }
  .thumbnail {
    bottom: 0%;
    height: auto;
  }
  .thumbnail-container .thumbnail .item .content {
    font-size: 0.7rem;
  }
  .thumbnail-container .thumbnail .item img {
    margin-bottom: 10px;
  }
  .slider .list .item .content .list-buttons {
    padding: 0;
  } */
}

@media only screen and (max-width: 980px) {
  .product-slider {
    max-width: 980px;
    min-width: 10px;
    height: 800px;
    background: radial-gradient(
      circle at 50% 30%,
      rgb(255, 255, 255) 0%,
      rgb(6, 183, 249) 25.9%,
      rgb(35, 121, 226) 76.7%,
      rgb(23, 119, 228) 100.2%
    );
  }

  .slider .list .item img {
    height: 350px;
    width: 350px;
    position: static;
    margin-bottom: 200px;
  }
  .slider .list .item .content {
    left: 0;
    top: 500px;
    width: 100%;
    padding: 0 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .slider .list .item button {
    width: 100px;
    margin: 0 auto;
    font-size: 0.9;
  }
  .slider .list .item .content .list-buttons {
    /* padding: 10px; */
    gap: 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .slider .list .item .content p {
    font-size: 1em;
    margin-bottom: 20px;
    text-align: center;
  }
  .slider .list .item .content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
  }
  .arrows {
    top: 35%;
    display: block;
    z-index: 2;
  }
  .arrows button {
    height: 30px;
    width: 30px;
  }
  .arrows #prev {
    /* right: 180px; */
    left: -200px;
  }

  .arrows #next {
    right: -180px;
  }

  .thumbnail-container {
    display: none;
  }

  .thumbnail {
    width: auto;
    height: auto;
    left: 5%;
    bottom: 50%;
    flex-direction: column;
  }

  .thumbnail .item {
    width: 70px;
    height: 70px;
  }

  .thumbnail .item .content {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .product-slider {
    max-width: 820px;
    min-width: 10px;
    height: 800px;
    background: radial-gradient(
      circle at 50% 30%,
      rgb(255, 255, 255) 0%,
      rgb(6, 183, 249) 25.9%,
      rgb(35, 121, 226) 76.7%,
      rgb(23, 119, 228) 100.2%
    );
  }

  .slider .list .item img {
    height: 300px;
    width: 300px;
    position: static;
    margin-bottom: 200px;
  }
  .slider .list .item .content {
    left: 0;
    top: 500px;
    width: 100%;
    padding: 0 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .slider .list .item button {
    width: 200px;
    margin: 0 auto;
    font-size: 0.7;
  }

  .slider .list .item .content .list-buttons-425 {
    display: flex;
  }
  .slider .list .item .content .list-buttons {
    padding: 10px;
    gap: 10px;
    text-align: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .lb-425-btn img {
    height: 30px;
    width: 30px;
  }
  .slider .list .item .content p {
    font-size: 0.8em;
    margin-bottom: 0;
    text-align: center;
  }
  .slider .list .item .content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
  }
  .arrows {
    top: 57%;
    display: block;
    z-index: 2;
  }
  .arrows button {
    height: 30px;
    width: 30px;
  }
  .arrows #prev {
    /* right: -200px; */
    left: -100px;
    /* left: -100px; */
  }

  .arrows #next {
    left: 50px;
  }

  .thumbnail-container {
    display: none;
  }

  .thumbnail {
    width: auto;
    height: auto;
    left: 5%;
    bottom: 50%;
    flex-direction: column;
  }

  .thumbnail .item {
    width: 70px;
    height: 70px;
  }

  .thumbnail .item .content {
    display: none;
  }
}

/*--------------------------------------------------------PRODUCTS-----------------------------------------------------*/

.product {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 150px;
  margin-bottom: 150px;
  transition: 0.3s;
}

/*--------------------------------------------------------MAIN-----------------------------------------------------*/

.product-main-body {
  width: 85%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------MAIN-----------------------------------------------------*/

/*--------------------------------------------------------BODY-----------------------------------------------------*/

.product-body-row-1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 80%;
  width: 50%;
}
.product-body-row-2 {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;

  height: 100%;
  width: 40%;
}

.product-body-title {
  height: 10px;
  width: 100%;
}
.product-content-body {
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.product-icon-body {
  height: 100%;
  width: 25%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.product-icon-container {
  height: 33.33%;
  width: 90%;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

/*--------------------------------------------------------BODY-----------------------------------------------------*/

/*--------------------------------------------------------CONTENT-----------------------------------------------------*/

.product-content-title {
  height: 33.33%;
  width: 90%;
  margin-bottom: 20px;
}
.product-content {
  height: 33.33%;
  width: 90%;
}
.product-content-row {
  height: 100%;
  width: 90%;

  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

/*--------------------------------------------------------CONTENT-----------------------------------------------------*/

/*--------------------------------------------------------TEXT-----------------------------------------------------*/

.product-title-text {
  font-size: 2em;
  font-family: Montserrat;
  text-align: center;
  color: #222222;
}

.product-top-text {
  margin-top: 40px;
  height: 40px;
  font-size: 3em;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: Montserrat;
  text-align: left;
}

.product-title2-text {
  font-size: 3.5em;
  font-weight: bolder;
  font-family: Montserrat;
  text-align: left;

  background: linear-gradient(
    109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-text {
  font-size: 1em;
  font-family: Montserrat;
  text-align: left;
  color: #222222;
  margin-left: 20px;
  margin-bottom: 30px;
}
.product-text ul {
  list-style-type: disc;
}

.product-text li {
  margin-bottom: 10px;
}
.product-text2 {
  margin-bottom: 20px;
  font-size: 1.2em;
  font-family: Montserrat;
  text-align: left;
  color: #222222;
}
.product-icon-text p {
  font-size: 1em;
  font-weight: bold;
  font-family: Montserrat;
  color: #00458f;
}
/*--------------------------------------------------------TEXT-----------------------------------------------------*/

/*--------------------------------------------------------IMAGE-----------------------------------------------------*/
.product-icon {
  background-image: url("../../../Images/Icons/trusted.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 50px;
  width: 50px;

  margin-bottom: 10px;
}
.product-icon-2 {
  background-image: url("../../../Images/Icons/comfort.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 50px;
  width: 50px;

  margin-bottom: 10px;
}
.product-icon-3 {
  background-image: url("../../../Images/Icons/quality.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 50px;
  width: 50px;

  margin-bottom: 10px;
}

.product-content-image-1 {
  background-image: url("../../../Images/undraw_Order_delivered_re_v4ab.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  position: absolute;
  z-index: 3;

  height: 500px;
  width: 500px;
}

/*--------------------------------------------------------BUTTONS-----------------------------------------------------*/

.product-button {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  margin: 10px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;

  color: #222222;
  border: 1px solid black;
  letter-spacing: 2px;
  font-family: Montserrat;
  font-size: 1em;
  transition: 0.5s;
}
.product-button:hover {
  color: black;
}
.product-button span {
  display: block;
  position: absolute;
  background-color: rgb(0, 242, 254);
}
.product-button span:nth-child(1) {
  left: 0;
  bottom: 0;
  width: 5px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
}
.product-button:hover span:nth-child(1) {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}

.product-button span:nth-child(2) {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.product-button:hover span:nth-child(2) {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s;
}

.product-button span:nth-child(3) {
  right: 0;
  bottom: 0;
  width: 5px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
  transition-delay: 0.5s;
}
.product-button:hover span:nth-child(3) {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
  transition-delay: 0.5s;
}

.product-button span:nth-child(4) {
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
  transition-delay: 0.5s;
}
.product-button:hover span:nth-child(4) {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s;
  transition-delay: 0.5s;
}
/*--------------------------------------------------------BUTTONS-----------------------------------------------------*/

/*--------------------------------------------------------ANIMATIONS-----------------------------------------------------*/

@keyframes Rproduct-bounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-1000px);
  }
  100% {
  }
}
@keyframes slide-right-2 {
  0% {
    transform: translateX(-1000px);
  }
  100% {
  }
}

[data-aos="slide-right"] {
  visibility: hidden;
  &.aos-animate {
    visibility: visible;
    animation-name: slide-right;
    animation-duration: 1s;
  }
}
[data-aos="slide-right-2"] {
  visibility: hidden;
  &.aos-animate {
    visibility: visible;
    animation-name: slide-right-2;
    animation-duration: 2s;
  }
}

[data-aos="Rproduct-bounce"] {
  opacity: 0;
  filter: blur(33px);
  &.aos-animate {
    opacity: 1;
    animation-name: Rproduct-bounce;
    animation-duration: 1.2s;
    filter: blur(0);
  }
}

[data-aos="Rproduct-bounce-2"] {
  opacity: 0;
  filter: blur(33px);
  &.aos-animate {
    opacity: 1;
    animation-name: Rproduct-bounce;
    animation-duration: 1.4s;
    filter: blur(0);
  }
}

[data-aos="Rproduct-bounce-3"] {
  opacity: 0;
  filter: blur(33px);
  &.aos-animate {
    opacity: 1;
    animation-name: Rproduct-bounce;
    animation-duration: 1.6s;
    filter: blur(0);
  }
}

[data-aos="product-image-1"] {
  opacity: 0;
  transform: translate(0, 500px);
  filter: blur(33px);

  &.aos-animate {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
[data-aos="product-image-2"] {
  opacity: 0;
  transform: translate(0, 500px);
  filter: blur(33px);

  &.aos-animate {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
    transition-delay: 200ms;
  }
}
[data-aos="product-image-3"] {
  opacity: 0;
  transform: translate(0, 500px);
  filter: blur(33px);

  &.aos-animate {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
    transition-delay: 400ms;
  }
}
[data-aos="product-texttitle"] {
  opacity: 0;
  transform: translate(0, 200px);
  filter: blur(33px);
  animation: showbutton 1s ease-in-out 1 forwards;

  &.aos-animate {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
/*--------------------------------------------------------ANIMATIONS-----------------------------------------------------*/

/*--------------------------------------------------------RESPONSIVE-----------------------------------------------------*/
@media (max-width: 1536px) {
  .product-main-body {
    width: 95%;
  }
}

@media (max-width: 1440px) {
  .product {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .product-main-body {
    width: 100%;
  }
  .product-body-row-1 {
    justify-content: flex-start;
    width: 50%;
  }
  .product-title2-text {
    font-size: 3em;
  }
  .product-content-title {
    height: 25%;
  }
  .product-text {
    font-size: 1em;
    font-family: Montserrat;
    text-align: left;
    color: #222222;
    margin-left: 20px;
    margin-bottom: 30px;
  }
  .product-text li {
    margin-bottom: 10px;
  }
  .product-text2 {
    margin-bottom: 30px;
    font-size: 1.2em;
  }
  .product-content-image-1 {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .product {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .product-main-body {
    width: 100%;
    padding: 0 50px 0 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .product-body-row-1 {
    width: 100%;
  }
  .product-body-row-2 {
    width: 100%;
    display: none;
  }
  .product-content-body {
    flex-direction: column;
  }
}
@media (max-width: 820px) {
  .product {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 10px 0 10px;
  }
  .product-main-body {
    width: 100%;
    padding: 0 50px 0 50px;
  }
  .product-title2-text {
    font-size: 2em;
  }
  .product-text {
    font-size: 0.8em;
    font-family: Montserrat;
    text-align: left;
    color: #222222;
    margin-left: 20px;
    margin-bottom: 30px;
  }
  .product-text li {
    margin-bottom: 10px;
  }
  .product-text2 {
    margin-bottom: 10px;
    font-size: 0.9em;
  }
}
@media (max-width: 600px) {
  .product {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .product-main-body {
    width: 100%;
    padding: 0;
  }
}

/*--------------------------------------------------------ADS-----------------------------------------------------*/

.Ads {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;

  height: 300px;
  width: 100vw;
  overflow-x: hidden;
  overflow-x: clip !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------MAIN-----------------------------------------------------*/

.Ads-main {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------MAIN-----------------------------------------------------*/

/*--------------------------------------------------------COLOROVERLAY-----------------------------------------------------*/

.Ads-coloroverlay {
  background: linear-gradient(
    -109.6deg,
    rgb(6, 183, 249, 0.9) 11.2%,
    rgb(25, 74, 236) 91.1%
  );

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: left;
}

/*--------------------------------------------------------COLOROVERLAY-----------------------------------------------------*/

/*--------------------------------------------------------TEXT-----------------------------------------------------*/

.Ads-text {
  font-size: 2.5em;
  font-weight: bolder;
  font-family: Montserrat;
  text-align: left;
  color: white;
  letter-spacing: 3px;

  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.Ads-text2 {
  font-size: 3.5em;
  font-weight: bolder;
  font-family: Montserrat;
  text-align: left;
  color: white;
  letter-spacing: 3px;

  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.Ads-text-aboutus {
  font-size: 3em;
  font-weight: bolder;
  font-family: Montserrat;
  text-align: left;
  color: white;
  letter-spacing: 3px;

  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.Ads-text-small {
  font-size: 1.2em;
  font-weight: bolder;
  font-family: Montserrat;
  text-align: left;
  color: white;
  letter-spacing: 3px;

  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------TEXT-----------------------------------------------------*/

@media only screen and (max-width: 820px) {
  .Ads {
    height: 250px;
  }
  .Ads-text-small {
    font-size: 1em;
  }
  .Ads-text2 {
    font-size: 3em;
  }
}
@media only screen and (max-width: 620px) {
  .Ads-text2 {
    font-size: 2.8em;
  }
}
@media only screen and (max-width: 600px) {
  .Ads-text2 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .Ads {
    height: 150px;
  }
  .Ads-text-small {
    font-size: 0.6em;
  }
  .Ads-text2 {
    font-size: 1.7em;
  }
}

@media (max-width: 375px) {
  .Ads-text-small {
    font-size: 0.7em;
    text-align: center;
  }
  .Ads-text2 {
    font-size: 1.3em;
    text-align: center;
  }
}

/*--------------------------------------------------------NEWS-----------------------------------------------------*/

.News {
  height: auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.News-1024 {
  height: auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*--------------------------------------------------------MAIN-----------------------------------------------------*/
.News-left {
  height: 600px;
  width: 25%;
  padding-left: 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.News-right {
  height: 600px;
  width: 75%;
  position: relative;
}
.News-up {
  height: 600px;
}
.News-body-container {
  height: 85%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.News-content-container-main {
  height: 80%;
  width: 100%;
  padding-right: 30px;
  position: absolute;
  top: 10%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  column-gap: 40px;
}
.News-r-bottom {
  height: 30%;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 100px 0 0 100px;
  background: linear-gradient(
    -109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );
}

@keyframes bottom-show {
  0% {
    transform: translateX(1000px);
  }
  50% {
  }
  100% {
  }
}

[data-aos="bottom-show"] {
  visibility: hidden;
  &.aos-animate {
    visibility: visible;
    animation-name: callus-show;
    animation-duration: 2s;
  }
}
/*--------------------------------------------------------MAIN-----------------------------------------------------*/

/*--------------------------------------------------------TEXT-----------------------------------------------------*/
.News-l-title-big p {
  font-size: 3.6em;
  text-align: left;
  font-weight: bolder;
  font-family: Montserrat;

  background: linear-gradient(
    109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.News-l-explain p {
  font-size: 1em;
  color: gray;
  text-align: left;
  font-weight: bolder;
  font-family: Montserrat;
}
/*--------------------------------------------------------TEXT-----------------------------------------------------*/

/*--------------------------------------------------------MAIN CONTENT-----------------------------------------------------*/

.News-container {
  height: 100%;
  width: 100%;
  cursor: pointer;
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);
  background-color: #fff;
  z-index: 11;
}

.News-text {
  font-size: 1.5em;
  font-family: Montserrat;
  font-weight: 800;
  text-align: left;
  color: var(--title-color);

  padding-top: 10px;
  padding-left: 10px;
  transition: color 0.3s ease-out;
}
.News-date-container {
  height: 10%;
  width: 100%;
}
.News-readmore-small {
  font-family: Montserrat;
  font-size: 0.8rem;
  padding-left: 10px;
  color: gray;
}
.News-title-container {
  font-size: 1.2em;
  font-family: Montserrat;
  font-weight: 600;
  text-align: left;
  color: #222222;

  padding-top: 10px;
  padding-left: 10px;
  transition: color 0.3s ease-out;
}
.News-date-container {
  font-family: Montserrat;
  font-size: 0.8rem;
  padding-left: 10px;
  color: gray;
}
.News-contents-container {
  height: 100%;
  width: 100%;
  opacity: 1;
  overflow: hidden;

  font-size: 1em;
  font-family: Montserrat;
  text-align: left;
  letter-spacing: 0.06em;
  color: #222222;
  padding: 30px;
  z-index: 2;
  transition: 0.3s ease-in-out;
}
.News-contents-container li,
.News-contents-container p {
  transition: 0.3s ease-in-out;
}
.News-readmore-container {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: left;

  visibility: visible;
  transition: 0.3s ease-in-out;
}
.readmore-arrow {
  background-image: url("../../../Images/Icons/right-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;
  transform-origin: center;

  height: 20px;
  width: 20px;

  margin-left: 10px;
  transition: transform 0.3s;
}

/*--------------------------------------------------------MAIN CONTENT-----------------------------------------------------*/

/*--------------------------------------------------------SLIDER-----------------------------------------------------*/

.News-image-container {
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.News-image img {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;
  transform-origin: center;
  object-fit: cover;
  display: block;
  border-radius: 15px 15px 0 0;
  height: 336px;
  max-width: 100%;
}
.News-details {
  width: 100%;
  height: 30%;
  object-fit: fill;
  transition: 0.3s ease-in-out;
}
.News-contents-container p,
.News-contents-container ol {
  opacity: 0;
}
.News-slider-right {
  height: 600px;
  width: 75%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-left: 60px;
}

.news-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-wrapper #right,
.news-wrapper #left {
  bottom: -3%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  text-align: justify;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23); */
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 10;
  transition: 0.2s ease-in-out;
}
.news-wrapper #left:hover,
.news-wrapper #right:hover {
  font-size: 2.5rem;
}

.news-wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}
.news-wrapper i:first-child {
  left: 45%;
}
.news-wrapper i:last-child {
  right: 45%;
}
.news-wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: 100%;
  gap: 40px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  z-index: 1;
  padding: 56px;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .news-card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.news-card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .news-card {
  scroll-snap-align: start;
  height: 100%;
  width: 100%;
  list-style: none;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  border-radius: 15px;
  z-index: 100;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);
  transition: 0.2s ease-in-out;
  border: 0px solid #1787ff;
}
/* .news-card:hover {
  border: 5px solid #1787ff;
} */
.carousel .news-card .img {
  background: #8b53ff;
  height: 148px;
  width: 148px;
  border-radius: 50%;
}
.news-card .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}
.carousel .news-card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}
.carousel .news-card span {
  color: #6a6d78;
  font-size: 1.31rem;
}
@media screen and (max-width: 900px) {
  .news-wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}
@media screen and (max-width: 600px) {
  .news-wrapper .carousel {
    grid-auto-columns: 100%;
  }
}

.news-wrapper-1024 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-wrapper-1024 #news-right-1024,
.news-wrapper-1024 #news-left-1024 {
  bottom: -3%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  text-align: justify;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23); */
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 10;
  transition: 0.2s ease-in-out;
}
.news-wrapper-1024 #news-left-1024:hover,
.news-wrapper-1024 #news-right-1024:hover {
  font-size: 2.5rem;
}

.news-wrapper-1024 i:active {
  transform: translateY(-50%) scale(0.85);
}
.news-wrapper-1024 i:first-child {
  left: 45%;
}
.news-wrapper-1024 i:last-child {
  right: 45%;
}
.news-wrapper-1024 .carousel-1024 {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: 100%;
  gap: 40px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  z-index: 1;
  padding: 56px;
}
.carousel-1024::-webkit-scrollbar {
  display: none;
}
.carousel-1024.no-transition {
  scroll-behavior: auto;
}
.carousel-1024.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel-1024.dragging .news-card-1024 {
  cursor: grab;
  user-select: none;
}
.carousel-1024 :where(.news-card-1024, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-1024 .news-card-1024 {
  scroll-snap-align: start;
  height: 100%;
  width: 100%;
  list-style: none;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  border-radius: 15px;
  z-index: 100;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);
  transition: 0.2s ease-in-out;
  border: 0px solid #1787ff;
}
/* .news-card:hover {
  border: 5px solid #1787ff;
} */
.carousel-1024 .news-card-1024 .img {
  background: #8b53ff;
  height: 148px;
  width: 148px;
  border-radius: 50%;
}
.news-card-1024 .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}
.carousel-1024 .news-card-1024 h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}
.carousel-1024 .news-card-1024 span {
  color: #6a6d78;
  font-size: 1.31rem;
}
@media screen and (max-width: 900px) {
  .news-wrapper-1024 .carousel-1024 {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}
@media screen and (max-width: 600px) {
  .news-wrapper-1024 .carousel-1024 {
    grid-auto-columns: 100%;
  }
}
.News-m-button {
  height: 10%;
  width: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.News-m-button button {
  height: 50px;
  width: 100%;
  border: none;
  position: absolute;
  cursor: pointer;
  bottom: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  visibility: visible;

  background: #fff;
}

.news-card:hover .News-m-button button {
  animation: showbutton 0.4s ease-in-out;

  background: linear-gradient(
    109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );
}

@keyframes showbutton {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.news-card-1024:hover .News-image-container,
.news-card:hover .News-image-container {
  height: 20%;
  --title-color: rgb(0, 53, 102);
}

.news-card-1024:hover .News-details,
.news-card:hover .News-details {
  height: 100%;
}
.news-card-1024:hover .News-c-button,
.news-card:hover .News-c-button {
  transform: scale(1.5);
}

.news-card-1024:hover .News-readmore-container,
.news-card:hover .News-readmore-container {
  visibility: visible;
}
.news-card-1024:hover .News-contents-container p,
.news-card-1024:hover .News-contents-container ol,
.news-card:hover .News-contents-container p,
.news-card:hover .News-contents-container ol {
  opacity: 1;
}
.news-card-1024:hover .News-readmore,
.news-card:hover .News-readmore {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.news-card-1024:hover .News-text-small,
.news-card:hover .News-text-small {
  visibility: visible;
  opacity: 1;
}
.news-card-1024:hover .News-text-small,
.news-card:hover .News-text-small {
  visibility: visible;
  opacity: 1;
}
.news-card-1024:hover .News-contents-container,
.news-card:hover .News-contents-container {
  opacity: 1;
}
@keyframes news-show {
  0% {
    transform: translateX(500px);
  }
  50% {
  }
  100% {
  }
}
/*--------------------------------------------------------SLIDER-----------------------------------------------------*/

@keyframes showbutton {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

[data-aos="news-show-1"] {
  opacity: 0;
  &.aos-animate {
    opacity: 1;
    animation-name: news-show;
    animation-duration: 1s;
  }
}
[data-aos="news-show-2"] {
  opacity: 0;
  &.aos-animate {
    opacity: 1;
    animation-name: news-show;
    animation-duration: 1.5s;
  }
}

[data-aos="news-show-3"] {
  opacity: 0;
  &.aos-animate {
    opacity: 1;
    animation-name: news-show;
    animation-duration: 2s;
  }
}

/*--------------------------------------------------------RESPONSIVE-----------------------------------------------------*/

@media (max-width: 1920px) {
  .NewsS-controls button {
    display: none;
  }
}

@media (max-width: 1440px) {
  .news-wrapper .carousel {
    gap: 20px;
    padding: 56px 0 56px 0;
  }
  .News-l-title-big {
    font-size: 0.7em;
  }
}

@media (max-width: 1024px) {
  .News {
    display: none;
  }
  .News-1024 {
    display: flex;
  }
  .news-wrapper-1024 #news-right-1024,
  .news-wrapper-1024 #news-left-1024 {
    bottom: 40%;
    color: transparent;
  }
  .news-wrapper-1024 i:first-child {
    left: 2%;
  }
  .news-wrapper-1024 i:last-child {
    right: 0%;
  }
  .NewsS-controls button {
    display: flex;
  }
  .carousel-1024 .news-card-1024 {
    transform: scale(0.995);
  }

  .News-1024 .News-left {
    height: 100%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .News-1024 .News-slider-right {
    height: 100%;
    width: 100%;
    padding-left: 0;
  }
  .news-wrapper-1024 .carousel-1024 {
    gap: 40px;
    padding: 46px;
  }
  .News-1024 .News-down {
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .News-1024 .News-up {
    height: 450px;
    width: 100%;
  }
  .News-1024 .News-r-bottom {
    position: relative;
    height: 100%;
    width: 75%;
  }
}
@media (max-width: 820px) {
  .News-l-title-big {
    font-size: 0.5em;
  }
  .News-l-explain {
    display: none;
  }
  .news-wrapper .carousel {
    grid-auto-columns: calc((100% / 3) - 120x);
  }
  /* .news-wrapper {
    padding: 0 56px 0 56px;
  } */
  .News-1024 .News-down {
    height: 150px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .News-1024 .News-up {
    height: 450px;
    width: 100%;
  }

  .News-1024 .News-left {
    justify-content: center;
    align-items: center;
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .News-1024 .News-down {
    height: 100px;
  }
  .News-l-title-big {
    font-size: 0.3em;
  }
  .News-1024 .News-left {
    height: 100%;
    width: 50%;
  }

  .news-wrapper i:first-child {
    left: 3%;
  }
  .news-wrapper i:last-child {
    right: 0%;
  }
}
/*--------------------------------------------------------CALLUS-----------------------------------------------------*/

.CallUs {
  height: auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.CallUs-1024 {
  height: auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------MAIN-----------------------------------------------------*/
.callus-left {
  height: 600px;
  width: 75%;
  position: relative;
}
.callus-right {
  height: 600px;
  width: 25%;
  padding-right: 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.callus-body-container {
  height: 85%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.callus-title-container {
  height: 30%;
  width: 100%;
  background: linear-gradient(
    109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );

  border-radius: 0 100px 100px 0;
}
.callus-content-container-main {
  height: 80%;
  width: 100%;
  padding-left: 30px;
  position: absolute;
  top: 10%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 40px;
}
.callus-content-container {
  height: 100%;
  width: 30%;
  perspective: 1000px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 15px;

  box-shadow: 0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);

  background-color: #fff;
  transition: 0.1s ease-in-out;
}

.CallUs-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.CallUs-wrapper #CallUs-right,
.CallUs-wrapper #CallUs-left {
  /* bottom: 10%; */
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  text-align: justify;
  line-height: 50px;
  color: transparent;
  border-radius: 50%;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23); */
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 10;
  transition: 0.2s ease-in-out;
}
.CallUs-wrapper #CallUs-left:hover,
.CallUs-wrapper #CallUs-right:hover {
  font-size: 2.5rem;
}

.CallUs-wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}
.CallUs-wrapper i:first-child {
  left: 3%;
}
.CallUs-wrapper i:last-child {
  right: 0%;
}
.CallUs-wrapper .CallUs-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: 100%;
  width: 100%;
  gap: 40px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  z-index: 1;
  padding: 56px;
}
.CallUs-carousel::-webkit-scrollbar {
  display: none;
}
.CallUs-carousel.no-transition {
  scroll-behavior: auto;
}
.CallUs-carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.CallUs-carousel.dragging .callus-content-container-425 {
  cursor: grab;
  user-select: none;
}
.CallUs-carousel :where(.callus-content-container-425, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.CallUs-carousel .callus-content-container-425 {
  scroll-snap-align: start;
  height: 100%;
  width: 100%;
  list-style: none;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  border-radius: 15px;
  z-index: 100;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);
  transition: 0.2s ease-in-out;
  border: 0px solid #1787ff;
}

.CallUs-carousel .callus-content-container-425 .img {
  background: #8b53ff;
  height: 148px;
  width: 148px;
  border-radius: 50%;
}
.callus-content-container-425 .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}
.CallUs-carousel .callus-content-container-425 h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}
.CallUs-carousel .news-card span {
  color: #6a6d78;
  font-size: 1.31rem;
}
@media screen and (max-width: 900px) {
  .CallUs-wrapper .CallUs-carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}
@media screen and (max-width: 600px) {
  .CallUs-wrapper .CallUs-carousel {
    grid-auto-columns: 100%;
  }
}
.callus-content-container-425 {
  height: 100%;
  width: 100%;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 15px;

  box-shadow: 0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);

  background-color: #fff;
  transition: 0.1s ease-in-out;
}

.CallUs-slider-right {
  height: 450px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

/* .callus-content-container:hover {
  border: 3px solid #1787ff;
} */
.callus-content-image-container {
  height: 60%;
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.callus-content-body-container {
  height: 30%;
  width: 100%;
  padding: 10px 30px 30px 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.callus-content-image-circle {
  height: 180px;
  width: 180px;
  border-radius: 100%;
  background: rgba(199, 199, 199, 0.151);

  display: flex;
  justify-content: center;
  align-items: center;
}
.callus-right-title {
  height: auto;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.callus-right-title-big {
  height: auto;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.callus-right-explain {
  height: auto;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
/*--------------------------------------------------------MAIN-----------------------------------------------------*/

/*--------------------------------------------------------IMAGE-----------------------------------------------------*/
.callus-content-image-1 {
  background-image: url("../../../Images/Icons/icons8/icons8-email-open-96.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 100px;
  width: 100px;
}
.callus-content-image-2 {
  background-image: url("../../../Images/Icons/icons8/icons8-online-support-96.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 100px;
  width: 100px;
}
.callus-content-image-3 {
  background-image: url("../../../Images/Icons/icons8/icons8-talk-96.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  height: 100px;
  width: 100px;
}
/*--------------------------------------------------------IMAGE-----------------------------------------------------*/

/*--------------------------------------------------------TEXT-----------------------------------------------------*/
.callus-text-body {
  font-size: 1em;
  color: gray;
  text-align: center;
  font-family: Montserrat;
}

.callus-title-container p {
  font-size: 3em;
  font-weight: bolder;
  font-family: Montserrat;
}
.callus-content-title-container p {
  font-size: 2em;
  font-weight: 500;
  color: #222831;
  font-family: Montserrat;
}
.callus-text-small {
  font-size: 1.5em;
  font-family: Montserrat;
}
.callus-content-body-container a {
  font-size: 1.5em;
  font-family: Montserrat;
  font-weight: bolder;
  text-decoration: none;
  color: #222831;
  border: none;
  margin-bottom: 5px;
}

.callus-right-title p {
  font-size: 2em;
  font-weight: bold;
  font-family: Montserrat;
}

.callus-right-title-big p {
  font-size: 4em;
  text-align: right;
  font-weight: bolder;
  font-family: Montserrat;

  background: linear-gradient(
    109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.callus-right-explain p {
  font-size: 1em;
  color: gray;
  text-align: right;
  font-weight: bolder;
  font-family: Montserrat;
}
/*--------------------------------------------------------TEXT-----------------------------------------------------*/

/*--------------------------------------------------------BUTTON-----------------------------------------------------*/
.callus-button {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  position: absolute;
  cursor: pointer;
  top: 94.5%;
  border: none;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(
    109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );

  transition: 0.2s ease-in-out;
}
/* .callus-button {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  position: absolute;
  cursor: pointer;
  top: 94.5%;
  border: none;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid #1787ff;
  background-color: #5fc9f3;

  transition: 0.2s ease-in-out; 
} */
.callus-content-container:hover .callus-button {
  transform: scale(1.5);
}

/*--------------------------------------------------------BUTTON-----------------------------------------------------*/

/*--------------------------------------------------------ANIMATION-----------------------------------------------------*/
@keyframes callus-show {
  0% {
    transform: translateX(-1000px);
  }
  50% {
  }
  100% {
  }
}

[data-aos="callus-show"] {
  visibility: hidden;
  &.aos-animate {
    visibility: visible;
    animation-name: callus-show;
    animation-duration: 2s;
  }
}
[data-aos="callus-show-2"] {
  visibility: hidden;
  &.aos-animate {
    visibility: visible;
    animation-name: callus-show;
    animation-duration: 1.5s;
  }
}

[data-aos="callus-show-3"] {
  visibility: hidden;
  &.aos-animate {
    visibility: visible;
    animation-name: callus-show;
    animation-duration: 1s;
  }
}

/*--------------------------------------------------------ANIMATION-----------------------------------------------------*/

@media (max-width: 1631px) {
  .callus-right-title-big p {
    font-size: 3.8em;
  }
}

@media (max-width: 1550px) {
  .callus-content-container-main {
    column-gap: 20px;
  }
  .callus-right-title-big {
    font-size: 0.8em;
  }
  .callus-right-title-big p {
    font-size: 3.5em;
  }
}

@media (max-width: 1440px) {
  .callus-content-container {
    height: 90%;
    padding: 10px;
  }
  .callus-content-title-container p {
    font-size: 1.5em;
  }
  .callus-button {
    top: 90%;
  }
  .callus-content-image-circle {
    height: 120px;
    width: 120px;
  }
  .callus-content-image-1 {
    height: 90px;
    width: 90px;
  }
  .callus-content-image-2 {
    height: 90px;
    width: 90px;
  }
  .callus-content-image-3 {
    height: 90px;
    width: 90px;
  }
}

@media (max-width: 1200px) {
  .callus-right-title-big p {
    font-size: 2.5em;
  }
  .callus-content-title-container p {
    font-size: 1.2em;
  }
  .callus-text-body {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .callus-right-title-big p {
    font-size: 3.5em;
  }
  .callus-content-title-container p {
    font-size: 1.5em;
  }
  .CallUs {
    display: none;
  }
  .CallUs-1024 {
    display: flex;
  }
  .CallUs-1024 .callus-content-container {
    width: 60%;
  }
  .CallUs-1024 .callus-content-container-main {
    justify-content: center;
  }
  .CallUs-1024 .callus-left {
    height: 200px;
    width: 60%;
  }
  .CallUs-1024 .callus-right {
    height: 200px;
    width: 40%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .CallUs-1024 .callus-up {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .CallUs-1024 .callus-down {
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .CallUs-1024 .callus-body-container {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .CallUs-1024 .callus-content-container-main {
    height: 100%;
    width: 100%;
    padding: 0 20px 0 20px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 20px;
  }
  .CallUs-1024 .callus-title-container {
    height: 100%;
  }
  .CallUs-1024 .callus-content-container button {
    display: none;
  }
}

@media (max-width: 820px) {
  .callus-right-title-big p {
    font-size: 3.5em;
  }
  .CallUs {
    display: none;
  }
  .CallUs-1024 {
    display: flex;
  }
  .CallUs-1024 .callus-left {
    height: 150px;
    width: 60%;
  }
  .CallUs-1024 .callus-right {
    height: 150px;
    width: 40%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .CallUs-1024 .callus-down {
    height: 450px;
  }
  .CallUs-1024 .callus-content-image-circle {
    height: 100px;
    width: 100px;
  }
  .CallUs-1024 .callus-content-image-1 {
    height: 100px;
    width: 100px;
  }
  .CallUs-1024 .callus-content-image-2 {
    height: 100px;
    width: 100px;
  }
  .CallUs-1024 .callus-content-image-3 {
    height: 100px;
    width: 100px;
  }
  .CallUs-1024 .callus-right-title-big {
    font-size: 0.6em;
  }
  .CallUs-1024 .callus-right-explain {
    display: none;
  }
  .CallUs-1024 .callus-content-title-container p {
    width: 100%;
    font-size: 1.5em;
  }
  .CallUs-1024 .callus-text-body {
    font-size: 0.8em;
  }
  .CallUs-1024 .callus-button {
    display: none;
  }
}

@media (max-width: 336px) {
  .CallUs-1024 .callus-content-title-container p {
    font-size: 1.2em;
  }
}
@media (max-width: 600px) {
  .CallUs-1024 .callus-up {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .CallUs-1024 .callus-title-container {
    width: 100%;
  }
  .CallUs-1024 .callus-content-image-circle {
    height: 80px;
    width: 80px;
  }
  .CallUs-1024 .callus-content-image-1 {
    height: 100px;
    width: 100px;
  }
  .CallUs-1024 .callus-content-image-2 {
    height: 100px;
    width: 100px;
  }
  .CallUs-1024 .callus-content-image-3 {
    height: 100px;
    width: 100px;
  }
  .CallUs-1024 .callus-up {
    flex-direction: row;
  }
  .CallUs-1024 .callus-down {
    height: auto;
    width: 100%;
  }
  .CallUs-1024 .callus-left {
    height: 100px;
    width: 50%;
  }
  .CallUs-1024 .callus-right {
    height: 100px;
    width: 50%;
    padding-right: 30px;
  }
  .CallUs-1024 .callus-right-title-big {
    font-size: 0.4em;
  }
  .CallUs-1024 .callus-right-explain {
    display: none;
  }
  .CallUs-1024 .callus-content-container-main {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0 20px 0;
    gap: 20px;
  }
}

@media (max-width: 375px) {
  .CallUs-1024 .callus-right {
    justify-content: center;
    align-items: center;
  }
  .CallUs-1024 .callus-right-title-big {
    font-size: 0.36em;
  }
  .CallUs-1024 .callus-content-body-container {
    padding: 10px 10px 10px 10px;
  }
}

/*--------------------------------------------------------QUOTE-----------------------------------------------------*/

.Quote {
  height: 700px;
  width: 100vw;
  overflow-x: hidden;
  overflow-x: clip !important;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 50px;
  position: relative;
  background-image: url("../../../Images/backgroundfreepik3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*--------------------------------------------------------MAIN-----------------------------------------------------*/

.Quote-content {
  height: 90%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.Quote-base {
  padding: 50px 100px 50px 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  background-color: #fff;
  border-radius: 15px;
  z-index: 1;
  gap: 20px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  font-family: Montserrat;
  color: #222222;

  box-shadow: 0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);
}
.Quote-base span {
  background-color: #1787ff;
  font-size: 1.5em;
}
.Quote-ratings {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap:10px;
}
.Quote-ratings img {
  height: 30px;
  width: 30px;
}
.Quote-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Quote-title p {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  font-family: Montserrat;
  background: linear-gradient(
    109.6deg,
    rgb(6, 183, 249) 11.2%,
    rgb(25, 74, 236) 91.1%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Quote-title span {
  font-size: 1em;
  color: gray;
  text-align: center;
  font-weight: bolder;
  font-family: Montserrat;
}
/*--------------------------------------------------------MAIN-----------------------------------------------------*/

/* Slideshow container */
.Quote-slideshow-container {
  position: relative;
}

/* Hide the images by default */
.Quote-mySlides {
  display: none;
  padding: 50px;
  z-index: 1;
}

/* Next & previous buttons */
.Quote-prev,
.Quote-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  transition: 0.1s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 2;
}

.Quote-prev img,
.Quote-next img {
  height: 40px;
  width: 40px;
}

/* Position the "next button" to the right */
.Quote-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.Quote-prev:hover,
.Quote-next:hover {
  border-radius: 100px;
  /* border: 5px solid #1787f1; */
  transform: scale(1.2);
}

/* Caption text */
.Quote-text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.Quote-numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.Quote-dot-container {
  position: absolute;
  bottom: 0;
}
.Quote-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.Quote-active,
.Quote-dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.Quote-left {
  height: 50px;
  width: 50px;
  position: absolute;
  left: 70px;
  bottom: 20px;
  z-index: 10;
}
.Quote-right {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 70px;
  top: 20px;
  z-index: 10;
}
/*--------------------------------------------------------BUTTON-----------------------------------------------------*/

@media (max-width: 1500px) {
  .Quote-content {
    width: 80%;
  }
}

@media (max-width: 1440px) {
  .Quote-content {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .Quote-content {
    width: 90%;
  }
  .Quote-base {
    padding: 50px 80px 50px 80px;
  }
}

@media (max-width: 820px) {
  .Quote {
    padding: 50px 10px 50px 10px;
  }
  .Quote-content {
    width: 99%;
  }
  .Quote-left,
  .Quote-right {
    transform: scale(0.6);
  }
  .Quote-title {
    text-align: center;
  }
  .Quote-title p {
    font-size: 3em;
  }
  .Quote-title span {
    font-size: 0.7em;
  }
  .Quote-base {
    padding: 50px 20px 50px 20px;
  }
}

@media (max-width: 800px) {
  .Quote {
    padding: 50px 0 50px 0;
  }
  .Quote-content {
    align-items: center;
    justify-content: flex-start;
  }
  .Quote-slideshow-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Quote-prev {
    left: 0;
  }
  .Quote-dot-container{
    z-index:1;
   bottom:45%;
  }
  .Quote-base {
    height: 300px;
    width: 100%;
    border-radius: 0px;
    padding: 50px 10px 50px 10px;
    font-size: 0.7em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Quote-mySlides {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Quote-next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .Quote-title p {
    font-size: 1.5em;
  }
  .Quote-prev,
  .Quote-next {
    top: 80%;
  }
  .Quote-right {
    right: 0;
  }
  .Quote-left {
    left: 0;
  }
  .Quote-next {
    right: 30%;
  }
  .Quote-prev {
    left: 30%;
  }
}
@media (max-width: 384px) {
  .Quote-dot-container{
   position:relative;
   margin-top:20px;
   bottom:10%;
  }
}

@media (max-width: 380px) {
  .Quote-base {
    height: 400px;
    width: 100%;
    padding: 50px 10px 50px 10px;
    /* font-size: 0.5em; */
    overflow-y: scroll;
  }

  .Quote-title span {
    color: #fff;
  }
}

.maintenance {
  width: 100%;
  padding: 0 200px 200px 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.maintenance img {
  height: 50%;
  width: 50%;
}
.maintenance .maintenance-large {
  font-size: 3em;
  font-weight: bold;
  color: #222222;
}

.maintenance .maintenance-small {
  font-size: 1em;
  font-weight: 500;
  color: #222222;
}
.maintenance-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 50px;
  gap: 10px;
  font-weight: 700;
  font-size: 2rem;
  color: #222222;
  text-align: left;
}
.maintenance-logo img {
  height: 70px;
  width: 70px;
}


@media (max-width: 1404px) {
  .maintenance{
    padding: 0 50px 200px 50px;
  }
  #maintenance-img{
    height:80%;
    width: 80%;
  }
}

@media (max-width: 1110px) {
  .maintenance .maintenance-large{
    font-size: 2.5em;
  }
}

@media (max-width: 940px) {
  .maintenance .maintenance-large{
    font-size: 1.5em;
  }
}

@media (max-width: 605px) {
  .maintenance-logo{
    font-size: 1em;
  }
  .maintenance-logo img {
    height: 30px;
    width: 30px;
  }
  .maintenance .maintenance-large{
    font-size: 1.2em;
  }
  .maintenance{
    padding: 0 10px 200px 10px;
  }
}
@media (max-width: 425px) {
  .maintenance-logo{
    padding:50px 0 50px 0;
  }
  .maintenance .maintenance-large{
    text-align: center;
  }
  .maintenance .maintenance-small{
    text-align: center;
  }
  .maintenance .maintenance-small {
    font-size: 0.8em;
  }

 #maintenance-img{
    height:100%;
    width: 100%;
  }
}