.review-container {
  display: flex;
  margin-top: 180px;
  width: 100%;
  height: 1080px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.right-content-profile {
  margin-right: 18vh;
}

.carousel-trust {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 200px;
}

.carousel__item {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  color: #ffffff;
  opacity: 0;
  will-change: transform, opacity, color;
  -webkit-animation: carousel-animate-vertical 12.5s linear infinite;
  animation: carousel-animate-vertical 12.5s linear infinite;
  animation-play-state: running;
}

/* MOUSE HOVER */

.carousel__item:nth-child(1) {
  -webkit-animation-delay: calc(2.5s * -1);
  animation-delay: calc(2.5s * -1);
}

.carousel__item:nth-child(2) {
  -webkit-animation-delay: calc(2.5s * 0);
  animation-delay: calc(2.5s * 0);
}

.carousel__item:nth-child(3) {
  -webkit-animation-delay: calc(2.5s * 1);
  animation-delay: calc(2.5s * 1);
}

.carousel__item:nth-child(4) {
  -webkit-animation-delay: calc(2.5s * 2);
  animation-delay: calc(2.5s * 2);
}

.carousel__item:last-child {
  -webkit-animation-delay: calc(-2.5s * 2);
  animation-delay: calc(-2.5s * 2);
}

.carousel__item-head {
  border-radius: 50%;
  background-color: #ffffff;
  width: 90px;
  height: 90px;
  padding: 14px;
  position: relative;
  margin-right: -45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin-bottom: 20px;
}

.carousel__item-body {
  display: flex;
  gap: 40px;
  width: 100%;
  padding: 20px 20px 20px 20px;
  margin-bottom: 20px;
}

.carousel__item-body p {
  margin: 0px;
}

.title {
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 10px;
}

@-webkit-keyframes carousel-animate-vertical {
  0% {
    transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }

  3%,
  11.1111111111% {
    transform: translateY(100%) scale(0.7);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  14.1111111111%,
  22.2222222222% {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    color: #000000;
  }

  25.2222222222%,
  33.3333333333% {
    transform: translateY(-100%) scale(0.7);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  36.3333333333% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  100% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }
}

@keyframes carousel-animate-vertical {
  0% {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }

  10%,
  20% {
    transform: translateY(100%);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  30%,
  40% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    color: #000000;
  }

  50%,
  60% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  65% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }
}

.carousel__item_r {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation: carousel-animate-horizontal 12.5s linear infinite;
  animation: carousel-animate-horizontal 12.5s linear infinite;
  animation-play-state: running;
}

.carousel__item-body_r {
  width: 100%;
  background-color: #fff;
  color: #1d2b3a;
  padding: 20px 20px 20px 20px;
  margin-bottom: 20px;
}

.carousel__item_r:nth-child(1) {
  -webkit-animation-delay: calc(2.5s * -1);
  animation-delay: calc(2.5s * -1);
}

.carousel__item_r:nth-child(2) {
  -webkit-animation-delay: calc(2.5s * 0);
  animation-delay: calc(2.5s * 0);
}

.carousel__item_r:nth-child(3) {
  -webkit-animation-delay: calc(2.5s * 1);
  animation-delay: calc(2.5s * 1);
}

.carousel__item_r:nth-child(4) {
  -webkit-animation-delay: calc(2.5s * 2);
  animation-delay: calc(2.5s * 2);
}

.carousel__item_r:last-child {
  -webkit-animation-delay: calc(-2.5s * 2);
  animation-delay: calc(-2.5s * 2);
}

@keyframes carousel-animate-horizontal {
  0% {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }

  10%,
  20% {
    transform: translateX(100%);
    opacity: 0;
    visibility: visible;
  }

  30%,
  40% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  50%,
  60% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: visible;
  }

  70% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: visible;
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
}

.trust-carousl-transition {
  transition: transform 1.25s ease-in-out;
}

.review-left {
  padding-left: 10vw;
  color: white;
  flex: 50%;
  padding-top: 120px;
  padding-bottom: 300px;
  z-index: 1;
  position: relative;
}

.review-left-header {
  margin-bottom: 80px;
}

.review-left-header h3 {
  font-size: 42px;
  line-height: 44px;
  font-family: "Recoleta", serif;
  margin-bottom: 30px;
}

.review-left-header p {
  margin: 0px;
}

.review-left-header div {
  font-size: 20px;
  line-height: 28px;
  font-family: "Recoleta", serif;
  margin-bottom: 50px;
  width: 80%;
}

.reviewer-text h4 {
  font-family: "Recoleta", serif;
  font-size: 30px;
  line-height: 15px;
}

.reviewer-text {
  margin-top: 5px;
}

.reviewer-text p {
  font-family: 'Poppins';
  font-size: 20px;
  line-height: 27px;
}

.reviewer-text h5 {
  font-family: "Recoleta", serif;
  font-size: 20px;
  line-height: 27px;

  margin: 0;
}

.review-right {
  position: relative;
  flex: 50%;
  background: white;
  padding-right: 107px;
  padding-top: 320px;
  padding-bottom: 160px;
}

.left-body-review {
  display: flex;
  gap: 20px;
}

.left-body-review div {
  margin-bottom: 45px;
}

.left-body-review div h4 {
  font-size: 30px;
  font-family: "Recoleta", serif;
  line-height: 40px;
  margin-bottom: 0px;
}

.left-body-review div p {
  font-size: 20px;
  font-family: 'Poppins';
  line-height: 27px;
  margin-bottom: 0px;
}

.left-body-review img {
  height: 100%;
}

.right-header-top {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

.profile-image-right {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  align-self: center;
}

.review-body {
  margin-top: 60px;
  position: relative;
  height: 250px;
}

.clon-image {
  /* height: 30%;
  width: 25%; */
  height: 15%;
  width: 15%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.profile-image-left {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name h4 {
  font-size: 30px;
  font-family: "Recoleta", serif;
  line-height: 40px;
  color: #1d2b3a;
  margin: 0px;
}

.reviewer-name p {
  font-size: 20px;
  font-family: 'Poppins';
  line-height: 27px;
  margin: 0px;
  color: #1d2b3a;
}

.reviewer-name h5 {
  font-size: 20px;
  font-family: "Recoleta", serif;
  line-height: 27px;
  margin-bottom: 0px;
  color: #1d2b3a;
}

.review-body p {
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 32px;
  color: #1d2b3a;
  text-align: justify;
  width: 90%;
  margin-left: auto;
}

.review-layer {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000032;
  display: none;
}

.review-layer div {
  text-align-last: center;
  color: white;
  margin-top: 275px;
}

.review-layer div p {
  margin-top: 50px;
}

.review-right:hover .review-layer {
  display: none;
}

.trust-bg-left {
  background: rgb(255, 255, 255);
  height: 120px;
  position: relative;
  width: 100%;
  top: -74px;
  z-index: -1;
}

.trust-bg-left p {
  color: #000000 !important;
}

/* ----------------------------- Contact Us ------------------------ */

.footer-bg {
  background: #000000;
  position: relative;
}

.midle-border {
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #2f2f2f;
}

.footer-container {
  margin: 0vw 10vw;
  color: #727272;
  background: #000000;
  color: #727272;
}

.content-left-header h3 {
  margin-bottom: 60px;
  font-size: 42px;
  line-height: 53px;
  font-family: "Recoleta", serif;
}

.footer-row {
  display: flex;
  gap: 100px;
  padding-top: 120px;
  padding-bottom: 50px;
}

.content-left {
  flex: 50%;
}

.content-right {
  flex: 50%;
}

.content-left-body-1 {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.content-left-body-1 h3 {
  font-family: "Recoleta", serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
}

.content-left-body-1 p {
  font-size: 16px;
  line-height: 19px;
  font-family: "Recoleta", serif;
  font-weight: 400;
}

.content-left-body-1 div {
  flex: 50%;
}

.social-link a {
  color: #727272;
}

.social-link a:hover {
  color: #fff;
}

.footer-top-right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -188px;
}

.footer-top-right-icon {
  position: absolute;
  background: black;
  padding: 11px;
  width: 50px;
  height: 50px;
  margin: 31px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 1px 1px 19px 0px #626262;
}

.content-right {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  top: -35px;
}

.logo-left-footer {
  margin-bottom: 20px;
}

.gradient-bg2 {
  background-image: url("../../images/img/Bg_back.webp");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.trust-us-container {
  position: absolute;
  z-index: 9999;
  top: 20%;
}

.facebbok-media-bg {
  position: absolute;
  top: 70px;
  left: 70px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: fb-move 4s infinite;
}

@keyframes fb-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(3px) rotate(-360deg);
  }
}

.facebook-icon {
  margin-top: 19px;
  width: auto;
  display: unset;
}

.skype-media-bg {
  position: absolute;
  top: 70px;
  left: 370px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: sk-move 5s infinite;
}

@keyframes sk-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(3px) rotate(-360deg);
  }
}

.linkedin-media-bg {
  position: absolute;
  left: 240px;
  top: 270px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: ln-move 4.5s infinite;
}

@keyframes ln-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(-360deg) translateY(3px) rotate(360deg);
  }
}

.instagram-media-bg {
  position: absolute;
  left: 540px;
  top: 280px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: in-move 4.3s infinite;
}

@keyframes in-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(-360deg) translateY(3px) rotate(360deg);
  }
}

.reddit-media-bg {
  position: absolute;
  left: 80px;
  top: 490px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: rd-move 4.7s infinite;
}

@keyframes rd-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(3px) rotate(-360deg);
  }
}

.youtube-media-bg {
  position: absolute;
  left: 395px;
  top: 460px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: yt-move 5s infinite;
}

@keyframes yt-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(-360deg) translateY(3px) rotate(360deg);
  }
}

.logo-footer {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 40px;
  margin-top: 40px;
  padding-bottom: 40px;
}

.logo-left {
  margin-top: 7px;
}

.logo-line {
  margin-bottom: 20px;
}

.logo-right p {
  font-size: 14px;
  line-height: 19px;
  font-family: 'Poppins';
}

.logo-right h2 {
  font-size: 20px;
  line-height: 27px;
  font-family: "Recoleta", serif;
}

.line-footer {
  border: 1px solid gray;
}

.hr-design {
  height: 0.1px !important;
  color: #707070;
  margin: 0px;
}

.hr-design1 {
  height: 0.1px !important;
  color: #707070;
  margin: 0px;
}

.input-footer {
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 0vw;
}

.input-footer-left {
  flex: 60%;
}

.input-footer-right {
  flex: 40%;
}

.input-footer-left {
  display: flex;
  gap: 4.5vw;
  align-items: center;
}

.input-footer-left p a {
  font-size: 16px;
  line-height: 21px;
  font-family: 'Poppins';
  color: #727272;
}

.footer-middle-input {
  width: 30vw;
  height: 48px;
  background: transparent;
  color: #6d6d6d;
  border: 1px solid #2f2f2f;
  border-radius: 26px 0px 0px 26px;
  margin-right: -216px;
  padding: 0px 25px;
  font-family: 'Poppins';
}

.footer-middle-button {
    background: #25272d;
    padding: 10px 20px;
    width: 368px;
    height: 50px;
    overflow: hidden;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-middle-button .footer-middle-btnText {
  font-size: 22px;
  color: white;
  line-height: 29px;
  transition: 0.3s;
  font-family: 'Poppins';
  margin:0;
}

.footer-middle-button .footer-middle-btnText2 {
  font-size: 22px;
  margin-top: 10px;
  margin-right: 50px;
  line-height: 29px;
  color: white;
  font-family: 'Poppins';
}

.footer-middle-button:hover .footer-middle-btnTwo {
   
}

.footer-middle-button:active {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
}

.footer-middle-btnTwo {
  position: absolute;
  width: 350px;
  height: 50px;
  margin-top: 0px;
  padding-top: 0.2px;
  border-radius: 25px;
  background: #0b83fe;
  right: 400px;
  transition: 0.7s;
  top:0;
}

.footer-middle-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 30vw;
  height: 50px;
  position: relative;
}

.footer-middle-input:focus {
  outline: none;
  border: 1px solid #5a5a5adf;
}

.footer-bottom {
  display: flex;
  gap: 0vw;
  padding-top: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
}

.footer-bottom-left {
  display: flex;
  gap: 12vw;
  width: 100%;
  justify-content: space-between;
}

.footer-bottom-left p {
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 21px;
  font-weight: 400;
}

.footer-bottom-left a {
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 21px;
  font-weight: 400;
  color: #535353;
}

.footer-bottom-left h5 {
  font-size: 16px;
  font-family: "Recoleta", serif;
  line-height: 27px;
}

.footer-bottom-right h5 {
  font-size: 16px;
  font-family: "Recoleta", serif;
  line-height: 27px;
}

.footer-bottom-right img {
  margin-right: 23px;
  margin-bottom: 20px;
}

.home-tablet-show {
  display: none;
}

.they-trust-body p {
  font-weight: 300;
}
.they-trust-header p {
  font-weight: 300;
}

.iti__country-name {
  color: #0092ff;
}

.dmca-badge img {
  width: auto;
  display: unset;
}

@media screen and (min-width: 1920px) {
  .footer-container {
    margin: 0vw 0vw;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1550px) {
  .content-left-header h3 {
    font-size: 35px;
  }

  .review-left-header h3 {
    font-size: 35px;
  }

  .content-left-body-1 h3 {
    font-size: 19px;
  }
  .footer-middle-input {
    margin-right: -122px;
  }
  .footer-middle-btnTwo {
    width: 304px;
  }
  .review-body p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  #carouselTheyTrust .owl-nav {
    display: block !important;
  }
  #carouselTheyTrustBlog .owl-nav {
    display: block !important;
  }
}

@media screen and (min-width: 480px) and (max-width: 1024px) {
  h2 {
    margin: 0;
  }

  h4 {
    margin: 0;
  }

  p {
    margin: 0;
  }

  .bottom-footer-mobile-hide {
    display: none;
  }

  .trust-mobile-hide {
    display: none;
  }

  .they-trust-container {
    margin-left: 8vw;
    margin-right: 8vw;
  }

  .they-trust-header-f {
    text-align: center;
    padding-top: 70px;
  }

  .they-trust-header-f h3 {
    font-size: 22px;
    line-height: 29px;
    color: #cdd1d9;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header-f h3 span {
    color: #0b83fe;
  }
  .they-trust-header {
    text-align: center;
    padding-top: 2vh;
  }

  .they-trust-header h3 {
    font-size: 22px;
    line-height: 29px;
    color: #000;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header h3 span {
    color: #0b83fe;
  }
  .they-trust-slider {
    margin-top: 20px;
  }

  .owl-icon-image-trust {
    display: block;
    height: 100px;
    width: 100px;
    margin-bottom: 5vh;
  }

  .they-trust .owl-item img {
    display: block;
    width: 120px;
  }

  .they-trust-body h2 {
    margin-top: 20px;
    font-size: 22px;
    font-family: "Recoleta", serif;
    color: #afafaf;
    line-height: 30px;
  }
  .they-trust-body h3 {
    color: #000;
  }

  .they-trust-body h4,
  .they-trust-body p {
    font-size: 14px;
    color: #000;
    font-family: "Recoleta", serif;
    /* line-height: 19px; */
    padding-bottom: 6px;
  }

  .they-trust .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    right: 0;
    top: 40%;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: 0;
    top: 40%;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-next span {
    position: absolute;
    top: -50%;
    left: 30%;
    color: white;
  }

  .they-trust .owl-nav button.owl-prev span {
    position: absolute;
    top: -50%;
    right: 30%;
    color: white;
  }

  .they-trust-blog .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 40%;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: -20px;
    top: 40%;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-next span {
    position: absolute;
    top: -50%;
    left: 30%;
    color: white;
    transform: translateY(4%);
  }

  .they-trust-blog .owl-nav button.owl-prev span {
    position: absolute;
    top: -50%;
    right: 30%;
    color: #fff;
    transform: translateY(4%);
  }

  /* ---------------------- Creative services ---------------- */

  .creative-services-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  .owl-icon-image-creative {
    display: block;
    height: 70px;
    width: 70px;
    background-color: #25272d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .creative-services .owl-item img {
    display: block;
    width: 20px;
    height: 20px;
  }

  .creative-services .owl-nav button.owl-next {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 32px;
    top: 83px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 32px;
    top: 83px;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .creative-services .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  /* --------------- connect tools ------------------- */
  .connect-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .connect-tools {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .connect-tools-bg {
    height: 30px;
    width: 30px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgb(255 255 255 / 28%) 0px 0px 55px;
    margin-bottom: 40px;
  }

  .connect-tools-bg img {
    height: 11px;
    width: 11px;
  }

  .connect-body p {
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 19px;
    color: #727272;
  }

  .connect-body h4 {
    font-size: 14px;
    font-family: "Recoleta", serif;
    line-height: 19px;
    color: #727272;
    margin-bottom: 5px;
  }

  .connect-social {
    margin-top: 15px;
  }

  .mobile-footer-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .mobile-logo-left-footer {
    margin-right: 30px;
  }

  .mobile-logo-footer {
    display: flex;
    padding-top: 85px;
    align-items: center;
  }

  .mobile-logo-right p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 19px;
    font-family: 'Poppins';
    color: #727272;
  }

  .mobile-logo-right h2 {
    font-size: 16px;
    line-height: 21px;
    font-family: "Recoleta", serif;
    color: #727272;
  }

  .fotter-input {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 50px;
    width: 272px;
    background: transparent;
    border-radius: 36px;
    border: 1px solid #2f2f2f;
    padding: 15px 0px 15px 35px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #6d6d6d;
  }

  .fotter-input:focus {
    outline: none;
    border: 1px solid #5a5a5adf;
  }

  .footer-button {
    height: 50px;
    width: 272px;
    background: #0b83fe;
    border-radius: 36px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
    border: none;
  }

  .footer-contact-info h4 {
    font-size: 14px;
    line-height: 19px;
    color: #727272;
    font-family: "Recoleta", serif;
    margin-top: 20px;
  }

  .footer-contact-info p {
    font-size: 14px;
    line-height: 19px;
    color: #727272;
    font-family: 'Poppins';
    margin-top: 5px;
  }

  .footer-com-logo {
    padding-bottom: 40px;
  }

  .footer-com-logo img {
    margin-top: 20px;
  }
}

/* ------Design---------- */

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .home-tablet-hide {
    display: none;
  }

  .home-tablet-show {
    display: none;
  }

  .footer-title {
    font-size: 32px !important;
    text-align: center;
    padding-top: 10vh;
    font-family: "Recoleta", serif !important;
  }

  .footer-title span {
    color: #0b83fe;
  }

  .footer-container {
    margin: 0px 32px;
  }

  .link-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0px;
  }

  .link-title {
    font-family: "AcehRegular" !important;
    font-size: 32px !important;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    text-decoration: underline;
  }

  .link-text {
    font-size: 20px;
    line-height: 24px;
    color: #727272;
    width: 90%;
    font-family: "Montserrat";
  }

  .icon-bg {
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50%;
    box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
    text-align: center;
  }

  .input-footer-left {
    flex-direction: column;
    align-items: flex-start;
    font-weight: 800;
  }

  .input-footer-left p {
    font-size: 21px;
  }


  .input-text {
    width: 332px;
    height: 55px;
    background: transparent;
    color: #6d6d6d;
    border: 1px solid #2f2f2f;
    border-radius: 36px;
    padding: 0px 40px;
    font-size: 20px;
    outline: none;
    font-family: "AcehRegular";
  }

  .input-text:focus {
    outline: none;
    border: 1px solid #5a5a5adf;
  }

  .subscribe-button {
    border-radius: 36px;
    padding: 0px 40px;
    background: #0b83fe;
    color: white;
    font-family: "AcehRegular";
    width: 332px;
    height: 55px;
    margin-top: 30px;
    font-size: 20px;
    border: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom-left {
    justify-content: space-between;
  }

  .logo-footer {
    justify-content: flex-start;
    margin-left: 32px;
    padding-bottom: 15px;
    width: fit-content;
  }

  .logo-right p {
    color: #727272;
    color: 17px;
  }

  .input-footer-left {
    gap: 3.5vw;
  }

  .logo-right h2 {
    color: #727272;
    font-size: 26px;
  }

  .footer-bottom-right {
    margin-top: 60px;
  }

  .footer-border-tablet {
    width: 422px;
    border: 0.4px solid #2f2f2f;
    margin-left: 32px;
  }

  .footer-border-tablet-address {
    width: 422px;
    border: 0.4px solid #2f2f2f;
    margin-top: 20px;
  }

  .company-info-title {
    font-size: 23px !important;
    font-weight: 700;
  }

  .company-info-text {
    font-size: 21px !important;
  }

  .address-container {
    margin-bottom: 80px;
  }

  .footer-bottom-right h5 {
    font-size: 21px;
    margin-bottom: 27px;
  }

  /* ---------------------------------------- */

  .tab-creative-container {
    margin: 100px 20px;
  }

  .tab-creative-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
  }

  .tab-creative-img img {
    height: 100%;
    width: 100%;
  }

  .tab-creative-row h1 {
    font-size: 32px;
    line-height: 40px;
    font-family: "Recoleta", serif;
    color: #afafaf;
    text-align: center;
  }

  .tab-creative-row h1 span {
    color: #0b83fe;
  }

  .tab-creative-item {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
  }

  .tab-creative-div p {
    color: #afafaf;
    font-size: 17px;
    line-height: 22px;
    font-family: 'Poppins';
    text-align: center;
  }

  .tab-creative-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 27px;
  }

  .tab-creative-div div {
    height: 100px;
    width: 100px;
    background-color: #1d1e22;
    transition: background-color 0.5s;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .they-trust-header p {
    font-size: 20px;
    font-family: 'Poppins';
    color: #000;
    /* line-height: 26px; */
  }
  .they-trust-header-f p {
    font-size: 20px;
    font-family: 'Poppins';
    color: #cdd1d9;
    line-height: 26px;
  }

  .they-trust-body h4,
  .they-trust-body p {
    font-size: 20px;
    color: #000;
    font-family: 'Poppins';
    /* line-height: 24px; */
    padding-bottom: 6px;
  }
  .they-trust-body h3 {
    font-size: 22px !important;
  }

  .they-trust-slider {
    margin-top: 20px;
    padding-bottom: 25px;
  }

  .they-trust-container {
    margin-left: 8vw;
    margin-right: vw;
    margin-top: 0px;
  }
  .input-footer-left p a {
    font-size: 20px;
  }
  .footer-bottom-left a {
    font-size: 20px;
  }
}

/* ------Design---------- */

@media (max-width: 480px) {
  h2 {
    margin: 0;
  }

  h4 {
    margin: 0;
  }

  p {
    margin: 0;
  }

  .bottom-footer-mobile-hide {
    display: none;
  }

  .trust-mobile-hide {
    display: none;
  }

  .they-trust-container {
    margin-left: 8vw;
    margin-right: 8vw;
  }

  .they-trust-header-f {
    text-align: center;
    padding-top: 70px;
  }

  .they-trust-header-f h3 {
    font-size: 22px;
    line-height: 29px;
    color: #cdd1d9;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header-f h3 span {
    color: #0b83fe;
  }
  .they-trust-header {
    text-align: center;
    padding-top: 2vh;
  }

  .they-trust-header h3 {
    font-size: 22px;
    line-height: 29px;
    color: #000;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header h3 span {
    color: #0b83fe;
  }

  .they-trust-header p {
    font-size: 16px;
    font-family: 'Poppins';
    color: #000;
    line-height: 24px;
  }
  .they-trust-header-f p {
    font-size: 16px;
    font-family: 'Poppins';
    color: #cdd1d9;
    line-height: 22px;
  }

  .they-trust-slider {
    margin-top: 20px;
  }

  .owl-icon-image-trust {
    display: block;
    height: 100px;
    width: 100px;
    margin-bottom: 5vh;
  }

  .they-trust .owl-item img {
    display: block;
    width: 80px;
    height: 80px;
  }

  .they-trust-body h2 {
    margin-top: 20px;
    font-size: 22px;
    font-family: "Recoleta", serif;
    color: #afafaf;
    line-height: 30px;
  }
  .they-trust-body h3 {
    color: #000;
    font-size: 18px !important;
  }
  .they-trust-body h4,
  .they-trust-body p {
    font-size: 16px;
    color: #000;
    font-family: "Recoleta", serif;
    line-height: 24px;
    padding-bottom: 6px;
  }

  .they-trust .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 0px;
    top: 83px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 0;
    top: 83px;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .they-trust .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  .they-trust-blog .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 0px;
    top: 15px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: -11px;
    top: 15px;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .they-trust-blog .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  /* ---------------------- Creative services ---------------- */

  .creative-services-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  .owl-icon-image-creative {
    display: block;
    height: 70px;
    width: 70px;
    background-color: #25272d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .creative-services .owl-item img {
    display: block;
    width: 20px;
    height: 20px;
  }

  .creative-services .owl-nav button.owl-next {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 32px;
    top: 83px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 32px;
    top: 83px;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .creative-services .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  /* --------------- connect tools ------------------- */
  .connect-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .connect-tools {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .connect-tools-bg {
    height: 30px;
    width: 30px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgb(255 255 255 / 28%) 0px 0px 55px;
    margin-bottom: 40px;
  }

  .connect-tools-bg img {
    height: 11px;
    width: 11px;
  }

  .connect-body p {
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 19px;
    color: #727272;
  }

  .connect-body h4 {
    font-size: 16px;
    font-family: "Recoleta", serif;
    line-height: 19px;
    color: #727272;
    margin-bottom: 5px;
    text-decoration: underline;
    font-weight: 700;
  }

  .connect-social {
    margin-top: 15px;
  }

  .mobile-footer-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .mobile-logo-left-footer {
    margin-right: 30px;
  }

  .mobile-logo-footer {
    display: flex;
    padding-top: 85px;
    align-items: center;
  }

  .mobile-logo-right p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 19px;
    font-family: 'Poppins';
    color: #727272;
  }

  .mobile-logo-right h2 {
    font-size: 16px;
    line-height: 21px;
    font-family: "Recoleta", serif;
    color: #727272;
  }

  .fotter-input {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 40px;
    width: 232px;
    background: transparent;
    border-radius: 36px;
    border: 1px solid #2f2f2f;
    padding: 15px 0px 15px 35px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #6d6d6d;
  }

  .fotter-input:focus {
    outline: none;
    border: 1px solid #5a5a5adf;
  }

  .footer-button {
    height: 40px;
    width: 232px;
    background: #0b83fe;
    border-radius: 36px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
    border: none;
  }

  .footer-contact-info h4 {
    font-size: 16px;
    line-height: 19px;
    color: #727272;
    font-family: "Recoleta", serif;
    margin-top: 20px;
  }

  .footer-contact-info p {
    font-size: 16px;
    line-height: 19px;
    color: #727272;
    font-family: 'Poppins';
    margin-top: 5px;
  }

  .footer-com-logo {
    padding-bottom: 40px;
  }

  .footer-com-logo img {
    margin-top: 20px;
  }
}


.bottom-footer-mobile-hide .input-footer-left {
    flex: 40%;
}

  .bottom-footer-mobile-hide .input-footer-right {
    flex: 60%;
    display: flex;
    justify-content: flex-end;
  }

 
.home-tablet-show.bottom-footer-mobile-hide   .input-footer-right {
    flex-wrap: wrap;

}