.news {
  background-color: rgba(0, 0, 0, 0.6862745098);
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 10%;
}
@media screen and (max-width: 480px) {
  .news {
    padding: 20% 0.5%;
  }
}
.news .newsfooter {
  text-align: center;
}
.news .closeBtn {
  margin-top: 10px;
  background-color: #ee574c;
  color: #fff;
  padding: 6px 10px;
}
.news .closeBtn::after {
  content: "Got It";
  padding: 10px;
}
.news .newsBox {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fff;
  background-image: url("../images/new/news-bg.png");
  width: 50%;
  height: 450px;
  padding: 3% 2%;
}
@media screen and (max-width: 768px) {
  .news .newsBox {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .news .newsBox {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .news .newsBox {
    width: 100%;
    margin-top: 20%;
  }
}
.news .newsBox .content {
  box-shadow: inset 0px 1px 12px -1px rgba(0, 0, 0, 0.033);
  height: 280px;
  padding: 20px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #ee574c rgb(247, 247, 247);
}
.news .newsBox .content::-webkit-scrollbar {
  width: 5px;
}
.news .newsBox h5 {
  font-weight: 900;
}
.news .newsBox .heading {
  text-align: center;
  font-size: 32px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: #ee574c;
}
.news .news-animation {
  animation-name: slideNewsOut;
  animation-duration: 0.8s;
}
@keyframes slideNewsOut {
  from {
    transform: translateX(-800px);
    transition-duration: 0.6s;
    width: 20%;
  }
  to {
    transform: translateX(0px);
  }
}
.news .news-close-animation {
  animation-name: slideNewsIn;
  animation-duration: 0.9s;
}
@keyframes slideNewsIn {
  from {
    transform: translateX(0px);
    transition-duration: 0.9s;
    width: 20%;
  }
  to {
    transform: translateX(-1200px);
  }
}

.highlight {
  color: #ee574c;
  font-weight: bold;
}

.ourStory {
  font-size: 20px !important;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

.ourStory {
  padding: 2px 5px 0px;
}

.bold {
  font-weight: 600;
  color: #ee574c;
}

.typewriter {
  font-size: 22px;
  font-weight: bold;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid #ee574c;
  /* The typewriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  letter-spacing: 0.12em;
  /* Adjust as needed */
  animation: typewriter 4s steps(30) infinite;
  animation-delay: 3s;
  /* delay the animation by 3 seconds */
}

.blink {
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% {
    color: #000;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #000;
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 101%;
  }
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.shape {
  animation: changeShape 2s infinite;
}

@keyframes changeShape {
  0% {
    border-radius: 30%;
  }
  50% {
    border-radius: 8%;
  }
  100% {
    border-radius: 0;
  }
}
#notification {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  background-color: rgba(238, 87, 76, 0.937254902);
  border-radius: 4px;
  padding: 15px 17px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  font-weight: 600;
  color: #fff;
  animation-name: slideltr;
  animation-duration: 0.9s;
  display: none;
  max-width: 80%;
  font-size: 14px;
}

#notification .fas {
  padding: 0px 5px;
}

@keyframes slideltr {
  from {
    transform: translateX(800px);
    transition-duration: 0.9s;
    width: 10%;
  }
  to {
    transform: translateX(0px);
  }
}
.shake {
  animation: shake 0.5s linear;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate(-5px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate(5px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.uil-brightness {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.request-form {
  background-color: #fff;
  padding: 6px !important;
  border-radius: 12px;
  text-align: center;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  /* animation: moveupdown 3.5s infinite; */
}
.request-form select,
.request-form input {
  padding: 8px 8px;
  border-radius: 8px;
  border: none;
  margin: 10px 5px;
  border: 1px #ee574c solid;
}
.request-form select:focus,
.request-form input:focus {
  outline: none;
}
.request-form select {
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  background-color: #fff;
}
.request-form input[type=button] {
  padding: 12px 13px !important;
  background-color: #ee574c;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.request-form #response {
  color: #ee574c !important;
  font-weight: 600;
}

.services-banner {
  padding: 8% 10% 0%;
  background: rgba(255, 255, 255, 0);
  flex-direction: column-reverse;
}
.services-banner h2 {
  font-weight: 900;
}
.services-banner p {
  margin: 3% 0%;
}
.services-banner img {
  display: none;
}

.company {
  display: flex;
  justify-content: center;
}
.company .company-list {
  height: 80px;
  background-color: #25273c;
  position: absolute;
  width: 80%;
  z-index: 2;
  top: 74%;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
.company .company-list img {
  margin: 1%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 0.6s;
}
.company .company-list img:hover {
  transform: scale(1.2);
  animation-duration: 0.6s ease;
  cursor: pointer;
}

/* Mobile devices */
@media only screen and (max-width: 767px) {
  /* Your CSS styles for mobile devices go here */
  .services-banner {
    padding: 3% 8%;
    background: rgba(255, 255, 255, 0);
  }
  .services-banner h2 {
    font-weight: 600;
  }
  .services-banner p {
    margin: 1.5% 0%;
  }
  .company,
  .company-list {
    display: none;
  }
}
/* Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Your CSS styles for tablets go here */
  .services-banner {
    padding: 5% 10%;
  }
  .services-banner h2 {
    font-weight: 900;
  }
  .services-banner p {
    margin: 1.5% 0%;
  }
  .company,
  .company-list {
    display: none;
  }
}
/* Small desktop screens */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Your CSS styles for small desktop screens go here */
  .services-banner {
    padding: 5% 10%;
  }
  .services-banner h2 {
    font-weight: 900;
  }
  .services-banner p {
    margin: 1.5% 0%;
  }
  .company .company-list {
    top: 76%;
  }
}
.inShadowHover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 10px 0px inset;
  transition-duration: 0.6s;
}
.inShadowHover:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@keyframes moveupdown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Large desktop screens */
@media only screen and (min-width: 1200px) {
  /* Your CSS styles for large desktop screens go here */
  .services-banner {
    padding: 8% 10% 0%;
  }
  .services-banner h2 {
    font-weight: 900;
  }
  .services-banner p {
    margin: 1.5% 0%;
  }
  .services-banner img {
    width: 100%;
    display: block;
  }
}
.social-media-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #ee574c;
  background-image: url("https:/enally.in/cdn/globalImages/polygon-scatter-haikei.png");
  background-size: contain;
  background-position: bottom center;
  margin-top: 6%;
  width: 100%;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .social-media-trend {
    flex-direction: column;
    padding: 20px;
    margin-top: 20%;
  }
}
.social-media-trend .cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: dropfromtop 0.6s 1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .social-media-trend .cta-group {
    flex-direction: column;
    border-radius: none;
  }
}
.social-media-trend .cta-group .input-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media-trend .cta-group .input-group p {
  padding: 7px 20px;
  border-radius: 8px;
  background-color: #183b56;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .social-media-trend .cta-group .input-group p {
    border-radius: none;
  }
}
.social-media-trend .cta-group .input-group p span {
  animation: blinkTextSlow 1.5s infinite;
  padding: 10px;
  transform: rotate(-20deg);
  font-size: 20px;
  font-weight: 700;
  text-shadow: inset 0 0 10px #000000, 0 0 10px #000;
}
.social-media-trend .cta-group .input-group .inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.social-media-trend .cta-group .input-group .inputs input {
  padding: 6px 20px;
  font-size: 12px;
  border: none;
  outline: none;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.0784313725), 0 0 10px rgba(0, 0, 0, 0.1450980392);
}
.social-media-trend .cta-group .input-group .inputs input:nth-child(1) {
  border-bottom: 1px #031f33 solid;
}
.social-media-trend .cta-group .input-group button {
  padding: 11px 20px;
  border: none;
  font-size: 18px;
  height: 66px;
  background-color: #183b56 !important;
  color: #fff;
  outline: none;
  border-radius: 0px 8px 8px 0px !important;
}
.social-media-trend .cta-group .input-group button:hover {
  background-color: #ee574c !important;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .social-media-trend .social-media-trend {
    flex-direction: column;
    padding: 20px;
    background-color: #031f33;
  }
  .social-media-trend .social-media-trend p {
    border-radius: none;
  }
  .social-media-trend .social-media-trend .cta-group {
    flex-direction: column;
    border-radius: none;
    background-color: #031f33 !important;
  }
  .social-media-trend .social-media-trend .cta-group .input-group {
    width: 100%;
    padding: 0;
    border-radius: none;
    background-color: #031f33;
  }
  .social-media-trend .social-media-trend .cta-group .input-group button {
    width: 100%;
    border-radius: 8px;
  }
}

@keyframes dropfromtop {
  0% {
    transform: translateY(-800px);
    transition-duration: 0.6s;
    height: 2%;
  }
  100% {
    transform: translateY(0px);
    height: 100%;
  }
}
@keyframes popzoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blinkTextSlow {
  0% {
    color: #ee574c;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #ee574c;
  }
}/*# sourceMappingURL=custom.css.map */