@keyframes go {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes come {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.abcxyz {
  display: none;

  text-align: center;
  color: #324154;
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
}

.testimonials {
  max-width: 1400px;
  width: 90%;
  height: 200px;
  margin: 32px auto;
  position: relative;
  background-color: #324154;
  border-radius: 8px;
  box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.2s ease, transform 0.3s ease;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 12px;
}
@media screen and (max-width: 580px) {
  .testimonials {
    height: auto;
  }
}
.testimonials .content,
.testimonials .author {
  display: none;
}
.testimonials .c1 {
  display: flex;
}
.testimonials:hover {
  box-shadow: 0 0 12px 6px rgba(0, 0, 0, 0.5);
  transform: translateY(-3%);
}
.testimonials .author {
  text-align: center;
  background-color: #1192b5;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}
.testimonials .author:hover {
  background-color: #1192b5;
  box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-10%);
}
.testimonials .content {
  text-align: justify;
  text-align-last: center;
  padding: 2px 8px;
}

.contact {
  min-height: 90vh;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.contact .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.69);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.contact .content {
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 4;
  margin: 0 auto;
  padding: 20px 0px;
  box-sizing: border-box;
  overflow-y: auto;
  max-height: calc(100% - 96px);
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
@media screen and (max-width: 1024px) {
  .contact .content {
    flex-direction: column;
    gap: 48px;
  }
}
.contact .text {
  max-width: 20%;
  text-align: center;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .contact .text {
    max-width: 50%;
    margin-right: 0px;
  }
}
@media screen and (max-width: 680px) {
  .contact .text {
    max-width: 70%;
  }
  .contact .text h1 {
    font-size: 24px;
  }
  .contact .text div {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .contact .text {
    max-width: 90%;
  }
  .contact .text h1 {
    font-size: 20px;
  }
  .contact .text div {
    font-size: 12px;
  }
}
.contact .form {
  max-width: 60%;
}
@media screen and (max-width: 1024px) {
  .contact .form {
    max-width: 90%;
  }
}
.tos {
  margin: 64px auto;
  max-width: 512px;
  text-align: left;
}
.tos b {
  color: #27c1eb;
}

.bero {
  min-height: 50vh;
  position: relative;
}
.bero img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.bero .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.bero .content {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-20%, -50%);
  z-index: 3;
  padding: 8px;
}
.bero .content h2 {
  color: #27c1eb;
  font-size: 32px;
}
@media screen and (max-width: 520px) {
  .bero .content h2 {
    font-size: 24px;
  }
}
.bero .content h1 {
  color: #fff;
  font-size: 48px;
}
.bero .content p {
  color: #fff;
  max-width: 480px;
}
@media screen and (max-width: 990px) {
  .bero .content {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  .bero .content p {
    margin: auto;
    text-align: center;
    font-size: 14px;
  }

  .bero .content h1 {
    font-size: 36px;
  }
  .bero .content h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .bero .content h1 {
    font-size: 28px;
    line-height: 30px;
  }
  .bero .content h2 {
    font-size: 16px;
  }
  .bero .content p {
    font-size: 12px;
  }
}

.section {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1150px) {
  .section {
    flex-direction: column;
    gap: 24px;
  }
  .section.flip {
    flex-direction: column-reverse;
  }
}
.section h1,
.section p {
  margin: 0;
}
.section img {
  border-top: 8px solid #b3b3b3;
  height: auto;
  transition: border-top 0.5s, transform 0.5s;
}
.section img:hover {
  border-top: 8px solid #27c1eb;
  transform: scale(1.01) translateY(-3%);
}
.section .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 50%;
}
.section .col h1 {
  font-size: 48px;
  font-weight: 500;
  color: #324154;
}
.section .col h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #324154;
}
.section .col p {
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .section .col h2 {
    font-size: 20px;
  }
  .section .col p {
    font-size: 12px;
  }
}
.section .col.five {
  max-width: 768px;
}
.grey-back {
  background-color: #324154;
}
@media screen and (max-width: 1150px) {
  .section .content {
    align-self: center;
  }
  .section .col {
    width: 100%;
  }
}
.center {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  width: 978px;
  margin: auto;
  padding: 18px;
}
@media screen and (max-width: 990px) {
  .center {
    width: 480px;
  }
}
@media screen and (max-width: 500px) {
  .center {
    width: 100%;
  }
}
.center h1 {
  margin: 0;
  /* position: absolute; */
  top: 0%;
  /* left: 50%; */
  /* transform: translate(-50%, 0%); */
  font-size: 32px;
  font-weight: 500;
  padding: 0px 8px;
  font-weight: 700;

  border-radius: 8px;
  text-align: center;
}
/* 
@media screen and (max-width: 990px) {
  .center h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 520px) {
  .center h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 420px) {
  .center h1 {
    font-size: 26px;
  }
} */
.center.gray_a h1 {
  background-color: #f7f7f7;
}
.center p {
  font-size: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: justify;
  text-align-last: center;
  padding: 24px;
}
@media screen and (max-width: 990px) {
  .center p {
    font-size: 14px;
  }
}
@media screen and (max-width: 520px) {
  .center p {
    font-size: 12px;
  }
}
.center p b {
  color: #27c1eb;
  position: absolute;
  font-size: 42px;
}
.center p b:nth-child(1) {
  top: 0;
  left: 0;
}
.center p b:nth-child(2) {
  bottom: 0;
  right: 0;
}

.boxes {
  margin: auto;
  max-width: 978px;
}
.boxes h1 {
  text-align: center;
}
.boxes .container {
  margin: auto;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.boxes .container .box {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  gap: 24px;
  padding: 10px;
  cursor: default;
  border: 2px solid #455a74;
  background: #fcfcfc;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  transition: border-color 0.5s;
}
.boxes .container .box h2 {
  font-size: 18px;
  margin: 0;
}
.boxes .container .box p {
  margin: 0;
  font-size: 16px;
}
.boxes .container .box span {
  font-size: 24px;
}
@media screen and (max-width: 520px) {
  .boxes .container .box {
    gap: 8px;
    padding: 8px;
  }
}
.boxes .container .box span {
  color: #455a74;
}
.boxes .container .box:nth-child(1):hover,
.boxes .container .box:nth-child(2):hover {
  border-color: #313e4e;
  z-index: 80;
}
.boxes .container .box:nth-child(3):hover,
.boxes .container .box:nth-child(4):hover {
  border-color: #313e4e;
  z-index: 80;
}
.boxes.five {
  max-width: 1200px;
}
.boxes.five .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  max-width: auto;
  grid-template-areas: "a a b b c c" "d d d e e e";
}
@media screen and (max-width: 768px) {
  .boxes.five .container {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
}
.boxes.five .container .box:nth-child(1) {
  grid-area: a;
}
.boxes.five .container .box:nth-child(1):hover {
  border-color: #313e4e;
  z-index: 80;
}
.boxes.five .container .box:nth-child(2) {
  grid-area: b;
}
.boxes.five .container .box:nth-child(2):hover {
  border-color: #313e4e;
  z-index: 80;
}
.boxes.five .container .box:nth-child(3) {
  grid-area: c;
}
.boxes.five .container .box:nth-child(3):hover {
  border-color: #313e4e;
  z-index: 80;
}
.boxes.five .container .box:nth-child(4) {
  grid-area: d;
}
.boxes.five .container .box:nth-child(4):hover {
  border-color: #313e4e;
  z-index: 80;
}
.boxes.five .container .box:nth-child(5) {
  grid-area: e;
}
.boxes.five .container .box:nth-child(5):hover {
  border-color: #313e4e;
  z-index: 80;
}

.accordoins {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.accordoins .accordoin {
  max-width: 768px;
  display: grid;
  grid-template-areas: "a b" "a c";
  grid-template-columns: 2fr 8fr;
  place-items: center;
  padding: 12px;
  min-height: 200px;
  background: #b3b3b3;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}
@media screen and (max-width: 990px) {
  .accordoins .accordoin {
    max-width: 480px;
  }
}
@media screen and (max-width: 520px) {
  .accordoins .accordoin {
    max-width: 380px;
  }
}
@media screen and (max-width: 380px) {
  .accordoins .accordoin {
    max-width: 300px;
  }
}
@media screen and (max-width: 520px) {
  .accordoins .accordoin {
    grid-template-areas: "a b" "c c";
  }
}
@media screen and (max-width: 990px) {
  .accordoins .accordoin {
    padding: 8px;
    margin: 0px 15px;
  }
}
.accordoins .accordoin * {
  margin: 0;
}
.accordoins .accordoin h1 {
  grid-area: b;
}
.accordoins .accordoin span,
.accordoins .accordoin i {
  grid-area: a;
  font-size: 72px;
  color: #324154;
}
@media screen and (max-width: 990px) {
  .accordoins .accordoin span,
  .accordoins .accordoin i {
    font-size: 32px;
  }
}
.accordoins .accordoin p {
  grid-area: c;
}
@media screen and (max-width: 990px) {
  .accordoins .accordoin p {
    font-size: 12px;
  }
}
.accordoins .accordoin:hover {
  transform: scale(1.01);
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.2);
}

.service {
  max-width: 1400px;
  width: 90%;
  display: flex;
  margin: auto;
  gap: 30px;
}

.service .left {
  flex: 1;
}
.service .left img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s, border-radius 0.5s;
}
.service .left img:hover {
  border-radius: 16px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.2);
  transform: scale(1.005) translateY(-3%);
}
.service .right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service .right h1 {
  font-size: 24px;
  margin-bottom: 10px;
  background-color: #324154;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
}
.service .right p {
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .service .right h1 {
    font-size: 18px;
  }
  .service .right p {
    font-size: 14px;
  }
}
.service .right h2 {
  color: #324154;
  font-size: 20px;

  margin-bottom: 0px;
}
.service .right span {
  margin-bottom: 5px;
}
.service .right button {
  min-width: 280px;
}
.service .right b {
  font-size: 18px;
  color: #455a74;
}

.aboutus {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 30px;
  background-color: #b3b3b3;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .aboutus {
    width: auto;
    gap: 64px;
    padding: 0px;
    margin: 12px;
  }
}
.aboutus .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .aboutus .box {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 990px) {
  .aboutus {
    padding: 16px 8px;
  }
  .aboutus .box {
    gap: 24px;
  }
}
.aboutus .box .title {
  width: 30%;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}
@media screen and (max-width: 1024px) {
  .aboutus .box .title {
    width: 90%;
  }
}
.aboutus .box .big {
  font-size: 38px;
  font-weight: 700;
  line-height: 40px;
}
.aboutus .box .content {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .aboutus .box .content {
    width: 90%;
  }
}
.faq-container {
  max-width: 900px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 900px) {
  .faq-container {
    max-width: 90%;
  }
}
.faq-container .faq {
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  border-top: 8px solid #e6e6e6;
  transition: box-shadow 0.5s ease, border-top 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-container .faq:hover {
  border-top: 8px solid #455a74;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.2);
}
.faq-container .faq .faq-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-container .faq .faq-top .no {
  font-size: 48px;
  font-weight: 800;
  color: #455a74;
}
.faq-container .faq .faq-top .question {
  font-size: 18px;
  font-weight: 600;
  color: #455a74;
  max-width: 80%;
}
.faq-container .faq .faq-top .icon {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.faq-container .faq .faq-top .icon span {
  font-size: 32px;
  color: #324154;
  transition: color 0.2s ease;
}
.faq-container .faq .faq-top .icon span:hover {
  color: #455a74;
}
.faq-container .faq .faq-content {
  max-height: 0px;
  overflow: hidden;
  /* transition: max-height 0.8s ease; */
  transition: max-height 0.85s ease-out;
  font-size: 16px;
}
.faq-container .faq .faq-content.active {
  max-height: 1000px;
  transition: max-height 0.75s ease-in;
}
.faq-container .faq:nth-child(even) {
  background-color: whitesmoke;
}
.faq-container .faq:nth-child(odd) {
  background-color: #f2f2f2;
}

#shadow-host-companion {
  padding: 0;
}

.dark-trans-back {
  background-color: rgba(150, 150, 150, 30%);
}

.dark-trans-back .service {
  flex-direction: row-reverse;
}

@media screen and (max-width: 990px) {
  .section .col h1 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .service {
    flex-direction: column;
  }

  .dark-trans-back .service {
    flex-direction: column;
  }
}

@media screen and (max-width: 900px) {
  .faq-container .faq {
    /* scale: 0.9; */
    width: 100%;
  }
  .faq-container .faq .faq-top .question {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .faq-container .faq {
    padding: 8px;
  }
  .faq-container .faq .faq-top .question {
    font-size: 14px;
  }
}
