@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;400;500;600;700;800;900&family=Poppins:ital,wght@1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;400;500;600;700;800;900&display=swap");
nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 8px 0;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .wrapper {
  width: 100%;
  background-color: #ef4824;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  position: relative;
  overflow: hidden;
}
nav .wrapper .logo {
  font-size: 30px;
  font-weight: 600;
  color: white;
}
@media (max-width: 375px) {
  nav .wrapper .logo {
    font-size: 20px;
  }
}
nav .wrapper .menus {
  display: flex;
  align-items: center;
}
nav .wrapper .menus ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav .wrapper .menus ul a {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
nav .wrapper ul .free-trial a{
    border: 1px solid #fff;
    padding: 10px 15px;
    border-radius: 5px;
    background: #fff;
    color: #000;
}
nav .wrapper ul .free-trial a:hover{
  background: transparent;
  color: #fff;
}
@media (max-width: 767px) {
  nav .wrapper {
    display: block;
    max-height: 60px;
    transition: 0.5s ease;
  }
  nav .wrapper.active {
    max-height: 600px;
    overflow: hidden;
    transition: 0.5s ease;
  }
  nav .wrapper .menus {
    display: block;
  }
  nav .wrapper .menus ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 20px;
  }
  nav .wrapper .menus ul li {
    width: 100%;
  }
}
nav .wrapper #menu__icon {
  width: 25px;
  height: 25px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  right: 16px;
  top: 16px;
  position: absolute;
  z-index: 1111;
  cursor: pointer;
}
@media (max-width: 767px) {
  nav .wrapper #menu__icon {
    display: flex;
  }
}

#hero,
#hero-2 {
  position: relative;
}
#hero .hero-1-slide,
#hero-2 .hero-1-slide {
  position: relative;
  overflow: hidden;
}
#hero .hero-1-slide .slide-card,
#hero-2 .hero-1-slide .slide-card {
  min-height: 500px;
  padding-top: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding-bottom: 120px;
  position: relative;
}
#hero .hero-1-slide .slide-card .grid,
#hero-2 .hero-1-slide .slide-card .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 991px) {
  #hero .hero-1-slide .slide-card .grid,
  #hero-2 .hero-1-slide .slide-card .grid {
    grid-template-columns: 1fr;
  }
  #hero .hero-1-slide .slide-card .grid .right__column,
  #hero-2 .hero-1-slide .slide-card .grid .right__column {
    display: none;
  }
}
#hero .hero-1-slide .slide-card .left__column .heading-4,
#hero-2 .hero-1-slide .slide-card .left__column .heading-4 {
  color: #ef4824;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}
#hero .hero-1-slide .slide-card .right__column img,
#hero-2 .hero-1-slide .slide-card .right__column img {
  width: 100%;
}
#hero .hero-1-slide .slide-card .heading-2,
#hero-2 .hero-1-slide .slide-card .heading-2 {
  line-height: 50px;
  font-size: 50px;
  color: #1d1b19;
}
@media (max-width: 767px) {
  #hero .hero-1-slide .slide-card .heading-2,
  #hero-2 .hero-1-slide .slide-card .heading-2 {
    font-size: 30px;
    line-height: 30px;
  }
}
#hero .hero-1-slide .slide-card .heading-7,
#hero-2 .hero-1-slide .slide-card .heading-7 {
  max-width: 680px;
  font-weight: 400;
  line-height: 22px;
  font-size: 16px;
  color: #1d1b19;
}
#hero .hero-contact,
#hero-2 .hero-contact {
  right: -233px;
  top: 400px;
  transform: translate(0%, 0%);
  position: absolute;
  color: white;
  z-index: 11;
  rotate: -90deg;
}
#hero .hero-contact .phone-email,
#hero-2 .hero-contact .phone-email {
  gap: 50px;
  list-style: none;
}
#hero .hero-contact .phone-email li span,
#hero-2 .hero-contact .phone-email li span {
  margin-right: 8px;
}
#hero .hero-contact .phone-email li a,
#hero-2 .hero-contact .phone-email li a {
  color: white;
}
#hero .hero-contact .social,
#hero-2 .hero-contact .social {
  list-style: none;
  gap: 20px;
}
#hero .hero-contact .social a,
#hero-2 .hero-contact .social a {
  color: white;
}
@media (max-width: 757px) {
  #hero .hero-contact .phone-email,
  #hero-2 .hero-contact .phone-email {
    gap: 20px;
  }
}
#hero .service,
#hero-2 .service {
  position: relative;
}
#hero .service .service-cards,
#hero-2 .service .service-cards {
  margin-top: -50px;
  z-index: 111;
  position: inherit;
  border-radius: 15px;
  background-color: #ffece9;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 991px) {
  #hero .service .service-cards,
  #hero-2 .service .service-cards {
    grid-template-columns: 1fr;
  }
}

.hero-about .paragraph-2 {
  font-family: "Outfit", sans-serif;
}
.hero-about ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.hero-about ul li {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 18px;
}
.hero-about ul li span {
  font-size: 24px;
  color: #ef4824;
  margin-right: 16px;
}
@media (max-width: 575px) {
  .hero-about ul li {
    font-size: 14px;
    line-height: 20px;
  }
}
.hero-about .creativity {
  max-width: 462px;
  margin-top: 30px;
  width: 100%;
  padding: 15px 20px;
  background: white;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}
.hero-about .creativity .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ef4824;
  color: white;
  margin-right: 27px;
}
.hero-about .creativity .heading-7 {
  max-width: 280px;
  width: 100%;
  font-weight: 600;
}
.hero-1-slide .hero-btn{
  display: flex;
  
}
.hero-1-slide .free-trial-btn a{
  width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    color: #f4f4f4;
    border-radius: 5px;
    background-color: transparent;
    color: #ef4824;
    border: 2px solid #ef4824;
    margin-left: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.hero-1-slide .free-trial-btn a:hover{
  background: #ef4824;
  color: #fff;
}

@media (max-width: 425px) {
  .hero-about .creativity .creativity-info {
    flex-direction: column;
  }
  .hero-about .creativity .creativity-info .heading-7 {
    max-width: 100%;
    width: 100%;
  }
}
.hero-about .call-phone {
  margin-left: 30px;
}
.hero-about .call-phone .phone-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ef4824;
  font-size: 32px;
  color: #ef4824;
}
.hero-about .call-phone .text {
  margin-left: 20px;
}
@media (max-width: 575px) {
  .hero-about .call-phone {
    margin-left: 0px;
    margin-bottom: 20px;
  }
  .hero-about .call-phone .phone-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
.hero-about .img_wrapper_3 {
  margin-top: -150px;
}
@media (max-width: 575px) {
  .hero-about .img_wrapper_3 {
    margin-top: -80px;
  }
  .hero-about .img_wrapper_3 img {
    max-width: 200px;
  }
}
.hero-about .img_wrapper_logo {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  background: white;
  top: 120px;
  left: 150px;
}
.hero-about .img_wrapper_logo img {
  transition: 0.5s ease;
}
@media (max-width: 425px) {
  .hero-about .img_wrapper_logo {
    top: 60px;
    left: 80px;
    width: 120px;
    height: 120px;
  }
  .hero-about .img_wrapper_logo .heading-3 {
    font-size: 20px;
    line-height: 25px;
  }
  .hero-about .img_wrapper_logo img {
    width: 30px;
  }
}
@media (max-width: 991px) {
  .hero-about .pl-45 {
    padding-left: 0;
  }
}

#exclusive-service .ex-service-cards .ex-service-card {
  background: #ffffff;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
#exclusive-service .ex-service-cards .ex-service-card .img-wrapper {
  max-height: 356px;
}
#exclusive-service .ex-service-cards .ex-service-card .content {
  padding: 0 20px 20px 20px;
}
#exclusive-service .ex-service-cards .ex-service-card .content .heading-4 {
  color: #1d1b19;
  transition: 0.3s ease-out;
}
#exclusive-service .ex-service-cards .ex-service-card .content .heading-4:hover {
  color: #ef4824;
}
#exclusive-service .ex-service-cards .ex-service-card:hover .img-wrapper img {
  scale: 1.05;
}
#exclusive-service .message {
  color: white;
  background: #ef4824;
  padding: 55px 40px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 425px) {
  #exclusive-service .message {
    padding: 25px 25px;
  }
}
#exclusive-service .message .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background-color: white;
  color: #ef4824;
  cursor: pointer;
}
#exclusive-service .message .circle-1 {
  left: 20px;
  top: -200px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
#exclusive-service .message .circle-2 {
  right: 10px;
  bottom: -180px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 991px) {
  #exclusive-service .message .icon {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }
  #exclusive-service .message .heading-2 {
    font-size: 30px;
    line-height: 35px;
  }
  #exclusive-service .message .heading-4 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  #exclusive-service .message .heading-2 {
    font-size: 22px;
    line-height: 22px;
  }
  #exclusive-service .message .heading-4 {
    font-size: 16px;
    line-height: 20px;
  }
  #exclusive-service .message .heading-7 {
    font-size: 12px;
  }
}
@media (max-width: 425px) {
  #exclusive-service .message .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
#exclusive-service .plan {
  margin-top: -100px;
  position: relative;
  background-color: #eff4fa;
}
@media (max-width: 425px) {
  #exclusive-service .plan {
    margin-top: -70px;
  }
}
#exclusive-service .plan .img-wrapper {
  width: 100%;
  height: 100%;
}
#exclusive-service .plan .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#exclusive-service .plan .content {
  margin-left: 40px;
  max-width: 535px;
  padding: 20px;
  padding-top: 100px;
}
@media (max-width: 991px) {
  #exclusive-service .plan .content {
    padding-top: 0;
  }
}
@media (max-width: 425px) {
  #exclusive-service .plan .content {
    margin-left: 0;
  }
}
#exclusive-service .plan .content .heading-6 {
  font-size: 20px;
  color: #ef4824;
}
#exclusive-service .plan .content .heading-7 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}
#exclusive-service .plan .content .range_wrapper {
  margin-bottom: 20px;
  width: 100%;
}
#exclusive-service .plan .content .range_wrapper .slide {
  width: 100%;
  height: 6px;
  background: #d9d9d9;
  margin-top: 13px;
  position: relative;
  border-radius: 2px;
}
#exclusive-service .plan .content .range_wrapper .slide::after {
  content: "";
  width: 75%;
  height: 100%;
  background: #ef4824;
  top: 0;
  left: 0;
  position: absolute;
}
#exclusive-service .plan .content .range_wrapper .slide .count {
  top: -25px;
  right: 25%;
  position: absolute;
}
#exclusive-service .plan .content .range_wrapper:nth-child(2) .slide::after {
  content: "";
  width: 85%;
  height: 100%;
  background: #ef4824;
  top: 0;
  left: 0;
  position: absolute;
}
#exclusive-service .plan .content .range_wrapper:nth-child(2) .count {
  top: -25px;
  right: 15%;
}
#exclusive-service .plan .content .range_wrapper:nth-child(3) {
  margin-bottom: 0px;
}
#exclusive-service .plan .content .range_wrapper:nth-child(3) .slide::after {
  content: "";
  width: 65%;
  height: 100%;
  background: #ef4824;
  top: 0;
  left: 0;
  position: absolute;
}
#exclusive-service .plan .content .range_wrapper:nth-child(3) .count {
  top: -25px;
  right: 35%;
}
#exclusive-service.exclusive-service-2 .message {
  background: #03041c;
}

#stream__section,
#stream__section_2 {
  padding: 50px 0;
  overflow: hidden;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
#stream__section .slider__strem,
#stream__section_2 .slider__strem {
  margin: auto;
  position: relative;
  width: 100%;
  padding: 10px 0;
  margin-top: 30px;
}
#stream__section .slider__strem::after, #stream__section .slider__strem::before,
#stream__section_2 .slider__strem::after,
#stream__section_2 .slider__strem::before {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
#stream__section .slider__strem::after,
#stream__section_2 .slider__strem::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
#stream__section .slider__strem::before,
#stream__section_2 .slider__strem::before {
  left: 0;
  top: 0;
}
#stream__section .slider__strem .slide-track,
#stream__section_2 .slider__strem .slide-track {
  animation: scroll 100s linear infinite;
  display: flex;
  width: 3500px;
  gap: 20px;
}
#stream__section .slider__strem .slide,
#stream__section_2 .slider__strem .slide {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  height: 60px;
}
#stream__section .slider__strem .slide img,
#stream__section_2 .slider__strem .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#stream__section .slider__strem.slider__strem__2,
#stream__section_2 .slider__strem.slider__strem__2 {
  flex-direction: row-reverse;
  justify-content: flex-end;
  transform: rotate(180deg);
  margin-top: 0px;
}
#stream__section .slider__strem.slider__strem__2 .slide-track,
#stream__section_2 .slider__strem.slider__strem__2 .slide-track {
  animation: scroll 100s linear infinite;
  display: flex;
  width: 3500px;
}
#stream__section .slider__strem.slider__strem__2 .slide-track .slide,
#stream__section_2 .slider__strem.slider__strem__2 .slide-track .slide {
  transform: rotate(-180deg);
}

#pricing {
  background: rgba(0, 0, 0, 0.03);
}
#pricing .section-heading .paragraph {
  margin-bottom: 0;
}
#pricing .col-lg-4:nth-last-child(1) .price__card {
  overflow: hidden;
}
#pricing .col-lg-4:nth-last-child(1) .price__card .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 400px;
  height: 40px;
  right: -100px;
  top: 40px;
  z-index: 1111;
  position: absolute;
  background-color: #1d1b19;
  rotate: 45deg;
  background: rgb(239, 72, 36);
  background: radial-gradient(circle, rgb(239, 72, 36) 0%, rgba(213, 70, 252, 0.0256477591) 100%);
}
#pricing .col-lg-4:nth-last-child(1) .price__card .badge span {
  padding-left: 60px;
}
#pricing .price__card {
  padding: 20px;
  background: white;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: rgba(239, 72, 36, 0.1) 0px 3px 5px 0px;
}
#pricing .price__card .badge {
  right: 10px;
  top: 10px;
  position: absolute;
  padding: 8px 10px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffece9;
  color: #ef4824;
  border-radius: 5px;
  text-transform: uppercase;
}
#pricing .price__card .content .title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 17px;
  max-width: 250px;
}
#pricing .price__card .content .paragraph {
  font-size: 15px;
  font-weight: 400;
  margin-top: 15px;
}
#pricing .price__card .content .price {
  color: #ef4824;
  font-size: 50px;
  font-weight: 600;
}
#pricing .price__card .content .price span {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  font-style: italic;
  color: #eb9682;
}
#pricing .price__card .content .infoss {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
}
#pricing .price__card .content .infoss .icon {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #ffece9;
  color: #ef4824;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
#pricing .price__card .content .infoss p {
  margin: 0;
  padding: 0;
}
#pricing .price__card .content .infoss:hover .icon {
  background-color: #ef4824;
  color: #ffece9;
  border-radius: 50%;
}
#pricing .price__card .button-primary-1 {
  width: 100%;
  margin-top: 20px;
}
#pricing .price__card .button-primary-1 a{
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
}
#how_works {
  background: rgb(238, 174, 202);
  background: linear-gradient(45deg, rgba(238, 174, 202, 0.1) 50%, rgba(239, 72, 36, 0.12) 50%);
}
#how_works .how__works {
  display: flex;
  border-radius: 5px;
  background: #fff;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 767px) {
  #how_works .how__works {
    flex-direction: column;
  }
}
#how_works .how__works .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ef4824;
  color: #ef4824;
  font-size: 18px;
  transition: 0.3s ease;
  cursor: pointer;
}
#how_works .how__works .icon:hover {
  background: #ef4824;
  color: white;
  border: 1px solid #ef4824;
}
#how_works .how__works .how__card {
  flex: 1;
}
#how_works .how__works .how__card .top {
  width: 100%;
  display: flex;
  align-items: center;
}
#how_works .how__works .how__card .top .bar {
  width: calc(100% - 40px);
  height: 1px;
  border-bottom: 1px solid #ef4824;
}
#how_works .how__works .how__card .content {
  padding-right: 20px;
  margin-top: 10px;
}
#how_works .how__works .how__card .content .heading-7 {
  font-weight: 600;
  font-size: 15px;
}
#how_works .how__works .how__card .content .paragraph {
  line-height: 17px;
  font-size: 14px;
}
@media (max-width: 767px) {
  #how_works .how__works .how__card {
    display: flex;
    align-items: start;
    justify-content: flex-start;
  }
  #how_works .how__works .how__card .top {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #how_works .how__works .how__card .top .bar {
    width: 1px;
    max-height: 300px;
    height: 65px;
    border-right: 1px solid #ef4824;
  }
  #how_works .how__works .how__card .content {
    margin-top: 0;
    padding-left: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) and (max-width: 475px) {
  #how_works .how__works .how__card .content {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #how_works .how__works .how__card:nth-last-child(1) .top .bar {
    display: none;
  }
}

#contact {
  background: rgb(238, 174, 202);
  background: linear-gradient(45deg, rgba(239, 72, 36, 0.12) 50%, rgba(238, 174, 202, 0.1) 50%);
}
#contact .contact__grid {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1, 1fr;
  gap: 20px;
}
#contact .contact__grid .button-primary-1{
  margin: 0 auto;
}
@media (max-width: 767px) {
  #contact .contact__grid {
    grid-template-columns: 1fr;
  }
}
#contact .cont_card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}
#contact .cont_card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ef4824;
  color: #f4f4f4;
  font-size: 20px;
}
#contact .cont_card .info {
  width: calc(100% - 60px);
  text-align: right;
}
#contact .cont_card .heading-4 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 16px;
  margin-bottom: 0;
  color: #ef4824;
}
#contact .cont_card a {
  color: #1d1b19;
  font-size: 300;
}
@media (max-width: 767px) {
  #contact .cont_card {
    flex-direction: row-reverse;
  }
  #contact .cont_card .info {
    text-align: left;
  }
}
#contact form {
  padding: 0;
  width: 100%;
}
#contact form input {
  width: 100%;
  border: 1px solid #ef4824;
  padding: 5px 10px;
  background: transparent;
  outline: none;
  margin-bottom: 15px;
  border-radius: 3px;
  font-size: 14px;
  height: 43px;
}

#contact form input::-moz-placeholder {
  color: #1a273d;
}
#contact form input::placeholder {
  color: #1a273d;
}
#contact form .form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

#faq .section-heading .paragraph {
  margin-bottom: 0;
}
#faq .accordion {
  padding-top: 20px;
}
#faq .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}
#faq .accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #ef4824;
}
#faq .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #102039;
  font-weight: 500;
  font-size: 18px;
  border: none;
  background: none;
  outline: none;
  padding-right: 30px;
}
#faq .accordion button:hover, #faq .accordion button:focus {
  cursor: pointer;
  color: #ef4824;
}
#faq .accordion button:hover::after, #faq .accordion button:focus::after {
  cursor: pointer;
  color: #ef4824;
  border: 1px solid #ef4824;
}
#faq .accordion button .accordion-title {
  padding: 20px 25px 20px 0;
}
#faq .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  transition: 0.5s ease;
}
#faq .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
#faq .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
#faq .accordion button[aria-expanded=true] {
  color: #ef4824;
}
#faq .accordion button[aria-expanded=true] .icon {
  color: white;
  background: #ef4824;
  transition: 0.5s ease;
}
#faq .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
#faq .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
#faq .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
#faq .accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 1em 0;
}

.gdpr-section .image{
  text-align: center;
  margin: 50px 0 ;
}
.gdpr-section .image img{
  width: 70%;
}

#technology .technology_banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#technology .technology_banner .video_icon_wrapper {
  width: 100px;
  height: 100px;
  background: #ef4824;
  color: white;
  font-size: 30px;
  margin: 0 auto;
  border-radius: 5px;
  cursor: pointer;
}
#technology .technology_banner .video_icon_wrapper i {
  transition: 0.5s ease;
}
#technology .technology_banner .video_icon_wrapper:hover i {
  scale: 1.4;
}
#technology .technology_banner .heading-2 {
  max-width: 560px;
  text-align: center;
  color: white;
  margin: 0 auto;
  margin-top: 40px;
}
#technology .technology_banner #overlay-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 100%;
  z-index: 111;
  display: none;
}
#technology .technology_banner #overlay-video .video-payler {
  height: 350px;
}
@media (max-width: 425px) {
  #technology .technology_banner #overlay-video .video-payler {
    height: 200px;
  }
}
#technology .technology_banner #overlay-video.active {
  display: block;
}
#technology .technology_banner #close-video-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 11;
  background: rgba(5, 5, 5, 0.512);
  display: none;
}
#technology .technology_banner #close-video-overlay span {
  top: 20px;
  right: 20px;
  position: absolute;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
#technology .technology_banner #close-video-overlay.active {
  display: block;
}


#cookies{
  width: 100%;
  position: fixed;
  bottom: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
}
.cookies{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}
.cookies h3{
  font-size: 20px;
}
.cookies p{
  font-size: 14px;
  margin: 0;
}
.cookies a{
  text-decoration: none;
  font-weight: 500;
  color: yellow;
}

#cookies-btn{
  border-radius: 5px;
  padding: 8px 12px 8px 12px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: 3px solid white;
  background-color: black;
  color: white;
}

@media(max-width:1600px){
  .container{
    width: 100%;
  }
}

@media(max-width:1024px){
  .cookies{
    padding: 10px 0;
  }
}

@media(max-width:768px){
  #cookies-btn{
    width: 100%;
  }
}


#projects .more {
  border: 1px dashed #ef4824;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#projects .more .heading-7 {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.handles svg path{
  stroke:#e2e2e2!important;
}
.dots span{
  background:#fff!important;
  opacity:0.5
}
.dots span.active{
  opacity:1
}
  .PostSlide{max-width:1300px;margin:40px auto;}
  .PostSlide{max-width:1300px;margin:10px auto 40px;}
  .PostSlide .innerContainer .slider{display:flex;width:1280px;overflow-x:hidden;margin:auto;}
  .PostSlide .innerContainer .slider .slide{display:block;background-size: cover!important;background-position: center center!important;min-width:280px;height:420px;margin:0 10px;}
  .PostSlide .innerContainer .slider{position:relative;z-index:2;}
  .PostSlide .innerContainer .handles{display:flex;justify-content:space-between;position:relative;top:-230px;width:103%;cursor:pointer;margin-right:-20px;margin-left:-20px;z-index:4;-webkit-tap-highlight-color:transparent;}
  .PostSlide .dots{display:flex;align-items:center;justify-content:center;gap:10px;position:relative;}
  .PostSlide .dots span{border-radius:10px;background:#CBCBCB;width:6px;height:6px;display:inline-block;cursor:pointer;}
  .PostSlide .slider *{user-drag:none;-webkit-user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;}
  .PostSlide .handles > span{transition:opacity 0.3s;}
  .PostSlide .handles .prev{opacity:0;}
  .PostSlide .handles .next{opacity:1;}
  .PostSlide .handles *{display: none;}
  .PostSlide .innerContainer .slider .slide{display:flex!important;flex-direction:column;justify-content:space-between;}
  @media (min-width: 1280px){
      .PostSlide .innerContainer .slider{width:1200px!important;margin:auto;}
  }
  @media (max-width: 1280px){
      .PostSlide .innerContainer .handles{width:calc(100% + 30px)!important;margin-left:-15px!important;margin-right:-15px!important;}
  }
  @media (min-width: 960px) and (max-width: 1280px){
      .PostSlide .innerContainer .slider{width:960px!important;}
  }
  @media (min-width: 960px) and (max-width: 1280px){
      .PostSlide .innerContainer .slider{width:960px!important;}
  }
  @media (min-width: 640px) and (max-width: 960px){
      .PostSlide .innerContainer .slider{width:640px!important;}
  }
  @media (max-width: 640px){
      .PostSlide .innerContainer .slider{width:360px!important;}
  }
  .PostSlide .innerContainer,.PostSlide .slider,.PostSlide .handles,.PostSlide .dots{direction:ltr;}

  .PostSlide .innerContainer .slider .slide>div{display:block;background-size: cover!important;background-position: center center!important;min-width:100%;height:100%;border-radius:8px}





#payment__wrapper {
  background: #f9f6ff;
  margin-top: 50px;
}
#payment__wrapper .button-primary-1 {
  height: 40px;
  font-size: 14px;
}
#payment__wrapper input,
#payment__wrapper select {
  height: 40px;
  margin: 0;
  border: 1px solid #ef4824;
  font-weight: 500;
  font-size: 14px;
}
#payment__wrapper .divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(216, 216, 216);
  margin: 5px 0;
}
#payment__wrapper .divider.dash {
  border-bottom: 1px dashed rgb(216, 216, 216);
}
#payment__wrapper .step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}
#payment__wrapper .step .step_count {
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: #ef4824;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
#payment__wrapper .step .heading-7 {
  font-size: 18px;
}
#payment__wrapper .billing__orderinfo {
  max-width: 500px;
}
#payment__wrapper .billing__orderinfo a {
  width: -moz-fit-content;
  width: fit-content;
}
#payment__wrapper .billing__orderinfo .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 50%;
  background-color: rgba(3, 4, 28, 0.0823529412);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a273d;
  transition: 0.3s ease;
}
#payment__wrapper .billing__orderinfo .icon:hover {
  color: white;
  background: #1a273d;
}

#payment__wrapper .order__summery,
#payment__wrapper .billing__info,
#payment__wrapper .offer__cards {
  margin-top: 5px;
  padding: 20px;
  border-radius: 7px;
  border: 1px dashed #e6c0b8;
  background: white;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.three_order__summery{
  margin-top: 5px !important;
}
#payment__wrapper .order__summery .coupon,
#payment__wrapper .billing__info .coupon,
#payment__wrapper .offer__cards .coupon {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}
#payment__wrapper .order__summery .summery .header,
#payment__wrapper .billing__info .summery .header,
#payment__wrapper .offer__cards .summery .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
#payment__wrapper .order__summery .summery .features,
#payment__wrapper .billing__info .summery .features,
#payment__wrapper .offer__cards .summery .features {
  margin: 0;
  padding: 0;
  list-style: none;
}
#payment__wrapper .order__summery .summery .features li,
#payment__wrapper .billing__info .summery .features li,
#payment__wrapper .offer__cards .summery .features li {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  color: #777675;
  margin-bottom: 5px;
}
#payment__wrapper .order__summery .summery .features li p,
#payment__wrapper .billing__info .summery .features li p,
#payment__wrapper .offer__cards .summery .features li p {
  font-size: 13px;
  margin: 0;
  left: 0;
  lighting-color: 16px;
  font-weight: 500;
}
#payment__wrapper .offer__cards .offer__card {
  display: flex;
  align-items: center;
  gap: 10px;
}
#payment__wrapper .offer__cards .offer__card .check__box {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ef4824;
}
#payment__wrapper .offer__cards .offer__card .check__box input[type=radio]:checked + .dot {
  background-color: #ef4824;
}
#payment__wrapper .offer__cards .offer__card .check__box input {
  display: none;
}
#payment__wrapper .offer__cards .offer__card .check__box .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
}
#payment__wrapper .offer__cards .offer__card .content {
  padding-left: 15px;
  width: calc(100% - 25px);
}
#payment__wrapper .offer__cards .offer__card .content .heading-5 {
  line-height: 22px;
  font-size: 22px;
}
#payment__wrapper .offer__cards .offer__card .content .paragraph {
  line-height: 16px;
}
#payment__wrapper .offer__cards.popular {
  background-color: #ef4824;
}
#payment__wrapper .offer__cards.popular .check__box {
  border: 1px solid white;
}
#payment__wrapper .offer__cards.popular .check__box input[type=radio]:checked + .dot {
  background-color: white;
}
#payment__wrapper .offer__cards.popular .check__box input {
  display: none;
}
#payment__wrapper .offer__cards.popular .check__box .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
}
#payment__wrapper .offer__cards.popular .content .heading-5 {
  color: white;
}
#payment__wrapper .offer__cards.popular .content .title {
  color: white;
}
#payment__wrapper .offer__cards.popular .content .paragraph {
  color: white;
}
#payment__wrapper .billing__info input,
#payment__wrapper .billing__info select {
  margin-bottom: 5px;
}
#payment__wrapper .heading-7 {
  font-size: 15px;
  font-weight: 600;
}
#payment__wrapper .process__payment {
  max-width: 500px;
  justify-content: end;
  padding-top: 0;
}
#payment__wrapper .payment__info {
  padding: 20px;
  border-radius: 7px;
  border: 1px dashed #e6c0b8;
  background: white;
  width: 100%;
  margin-top: 5px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
#payment__wrapper .payment__info input,
#payment__wrapper .payment__info select {
  font-size: 14px;
}
#payment__wrapper .payment__info label {
  font-size: 14px;
}
#payment__wrapper .payment__info .heading-7 {
  font-size: 15px;
  font-weight: 600;
}
#payment__wrapper .payment__info .payment {
  margin-top: 30px;
}
#payment__wrapper .payment__info .payment .cards {
  margin-top: 10px;
  display: flex;
  align-items: center;
  overflow-x: auto;
}
#payment__wrapper .payment__info .payment .cards .payment__card {
  display: flex;
  border: 1px solid #ef4824;
  width: 100%;
  justify-content: space-between;
  padding: 10px;
  border-radius: 5px;
}
#payment__wrapper .payment__info .payment .cards .payment__card .ch_pa {
  display: flex;
  align-items: center;
  gap: 10px;
}
#payment__wrapper .payment__info .payment .cards .payment__card .ch_pa .check__box {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ef4824;
  display: flex;
  align-items: center;
  justify-content: center;
}
#payment__wrapper .payment__info .payment .cards .payment__card .ch_pa .check__box input[type=checkbox]:checked + .dot {
  background-color: #ef4824;
}
#payment__wrapper .payment__info .payment .cards .payment__card .ch_pa .check__box .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
}
#payment__wrapper .payment__info .payment .cards .payment__card .ch_pa input {
  display: none;
}
#payment__wrapper .payment__info .payment .cards .payment__card .ch_pa .title {
  font-size: 13px;
  font-weight: 600;
}
#payment__wrapper .payment__info .payment .cards .payment__card img {
  width: 72px;
}
#payment__wrapper .payment__info .payment .card__info {
  position: relative;
  margin-top: 20px;
}
#payment__wrapper .payment__info .payment .card__info label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}
#payment__wrapper .payment__info .payment .card__info .hover__cards {
  display: flex;
  right: 10px;
  top: 33px;
  position: absolute;
}
#payment__wrapper .payment__info .payment .card__info .hover__cards img {
  width: 72px;
}
#payment__wrapper .payment__info .payment .card__info .form__wrapper {
  border: 1px solid #ef4824;
  border-radius: 5px;
}
#payment__wrapper .payment__info .payment .card__info .form__wrapper input {
  border: none;
  background-color: transparent;
}
#payment__wrapper .payment__info .payment .card__info .form__wrapper .card__input {
  border: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #ef4824;
}
#payment__wrapper .payment__info .payment .card__info .form__wrapper .lt_ck {
  width: 100%;
  border-right: 1px solid #ef4824;
}
#payment__wrapper .payment__info .payment .card__info .form__wrapper .lt_ck input {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#payment__wrapper .payment__info .payment .card__info .form__wrapper .rt_ck {
  width: 100%;
}
#payment__wrapper .payment__info .payment .card__info .form__wrapper .rt_ck input {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#payment__wrapper .payment__info .payment .card__info .name,
#payment__wrapper .payment__info .payment .card__info .country {
  margin-top: 20px;
}
#payment__wrapper .payment__info .payment .card__info .country {
  margin-bottom: 30px;
}
#payment__wrapper .payment__info .payment .card__info .country button {
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */