@font-face {
  font-family: "Rooftop";
  src: url("../fonts/Rooftop/Rooftop-Medium.eot");
  src: url("../fonts/Rooftop/Rooftop-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Rooftop/Rooftop-Medium.woff2") format("woff2"), url("../fonts/Rooftop/Rooftop-Medium.woff") format("woff"), url("../fonts/Rooftop/Rooftop-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rooftop";
  src: url("../fonts/Rooftop/Rooftop-Book.eot");
  src: url("../fonts/Rooftop/Rooftop-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/Rooftop/Rooftop-Book.woff2") format("woff2"), url("../fonts/Rooftop/Rooftop-Book.woff") format("woff"), url("../fonts/Rooftop/Rooftop-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}

html {
  scrollbar-width: thin;
  overflow-x: hidden;
}

body {
  background: #000;
  font-family: "Rooftop", Arial, sans-serif;
  font-size: 14px;
  direction: ltr;
  overflow-x: hidden;
  scrollbar-width: thin;
}
body ul {
  padding: 0;
  margin: 0;
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

:root {
  --btn-gradient-border: conic-gradient(from 0 at 50% 50%, #0E288F 0deg, #DCE3FF 180deg, #0E288F 310deg, rgb(14 40 143 / 100%) 360deg);
  --btn-gradient-border-hover: conic-gradient(from 0 at 50% 50%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0) 60deg, rgba(0, 0, 0, 0) 310deg, rgba(0, 0, 0, 0) 360deg);
  --btn-gradient-bg: conic-gradient(from 0 at 50% 50%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0) 60deg, rgba(0, 0, 0, 0) 280deg, rgba(0, 0, 0, 0) 180deg);
  --btn-gradient-border-size: 1px solid;
  --btn-gradient-border-color: #758EF1;
  --btn-gradient-border-color-hover: #0E288F;
  --btn-gradient-bg-opacity: 0;
  --btn-gradient-bg-opacity-hover: 0;
  --btn-gradient-border-radius: 4px;
}

header {
  padding: 2rem 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
  direction: ltr;
  overflow: hidden;
}
header .left-menus {
  padding: 10px 0;
  display: flex;
  align-items: center;
  width: 50%;
  font-size: 16px;
  justify-content: right;
}
header .left-menus .btn-order {
  margin-left: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}
header .left-menus .btn-order span {
  position: absolute;
  color: #fff;
  width: max-content;
}
header .left-menus ul {
  display: flex;
  align-items: center;
}
header .left-menus ul li a {
  padding: 0 5px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
header .left-menus ul li a:after {
  content: "/";
  margin-left: 10px;
}
header .left-menus ul li:last-child a:after {
  display: none;
}
header .lang-box {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all ease 0.2s;
}
header .lang-box .sub-lang {
  position: absolute;
  top: 100%;
  left: 30px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 100%;
  width: 95px;
  height: 56px;
  color: #fff;
  background-color: #000000;
  text-align: center;
  border-radius: 4px;
  border: 2px solid #254ce8;
  opacity: 0;
  visibility: hidden;
}
header .lang-box:hover {
  opacity: 0.7;
}
header .lang-box:hover .sub-lang {
  opacity: 1;
  visibility: visible;
}
header .lang-box span {
  color: #fff;
  margin-left: 10px;
}
header .logo {
  width: 280px;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .logo span {
  text-align: left;
  color: #fff;
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  width: 100%;
  margin-left: auto;
  text-transform: uppercase;
}
header .logo img {
  width: auto;
  max-width: 100%;
}

.btn-wrapper {
  width: 159px;
  height: 28px;
  border: var(--btn-gradient-border-size);
  border-radius: var(--btn-gradient-border-radius);
  content: "";
  inset: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: clear;
}

.btn-gradient {
  transition: all 1s;
  -webkit-animation: borderTurn 2.5s infinite linear;
  width: 500px;
  height: 500px;
  background: var(--btn-gradient-border-color);
  background-image: var(--btn-gradient-border);
  position: absolute;
  z-index: -1;
  left: 0;
  transform: translate(-50%, -50%);
}

.btn-gradient-animation:hover .btn-gradient {
  background: var(--btn-gradient-border-color-hover);
  background-image: var(--btn-gradient-border-hover);
}

@keyframes borderTurn {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes borderTurn {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
  }
}
.bg-top {
  left: 0;
  right: 0;
  width: 100%;
  min-height: 550px;
  height: 100vh;
  top: 0;
  text-align: center;
  position: relative;
}
.bg-top .text {
  bottom: 10px;
  color: #fff;
  text-align: left;
  width: 50%;
  padding: 20px 2rem;
  position: absolute;
  max-width: 1050px;
}
.bg-top .text h2 {
  font-size: 42px;
  line-height: 54px;
  font-weight: 400;
}
.bg-top video {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.logos {
  padding: 0 2rem;
}
.logos .container-fluid {
  border-top: 2px solid #fff;
}
.logos img {
  max-width: 100%;
  width: auto;
}

.title {
  text-align: left;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}
.title h2 {
  margin-bottom: 0;
  width: 205px;
  min-width: max-content;
}
.title .logo {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.title span {
  display: inline-block;
}

.our-experience {
  padding: 4rem 2rem;
}
.our-experience .right-titles button {
  background: transparent;
  width: 100%;
  border: none;
  padding: 10px 0;
  font-size: 28px;
  line-height: 36px;
  text-align: left;
  color: #3c3f49;
  transition: all ease 0.4s;
}
.our-experience .right-titles button:hover {
  color: #fff;
}
.our-experience .right-titles button.blur {
  filter: blur(2px);
}
.our-project  {
  padding: 0 2rem;
  position: relative;
}
.our-project .project-box {
  display: block;
  position: relative;
  overflow: hidden;
}
.our-project .project-box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.our-project .magic-image {
  position: relative;
  overflow: hidden;
}
.our-project .magic-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) contrast(1.5) hue-rotate(180deg) saturate(3) sepia(1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  clip-path: circle(47px at var(--mouse-x, 50%) var(--mouse-y, 50%));
  mix-blend-mode: screen;
}
.our-project .magic-image.under-cursor::before {
  opacity: 1;
}
.our-project .magic-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}
.our-project .magic-image.under-cursor::after {
  opacity: 1;
}
.our-project .project-box video {
  object-fit: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}
.our-project .col-project {
  direction: ltr;
  margin-bottom: 24px;
  position: relative;
}
.our-project .project-text {
  text-align: left;
  color: #fff;
  padding: 10px 0;
  line-height: 18px;
  display: block;
  width: 80px;
  font-weight: 400;
  text-transform: uppercase;
}
.our-project .show-more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 2rem;
}
.our-project .show-more > div {
  padding: 2rem 0;
  font-size: 24px;
  color: #fff;
  align-items: center;
  display: flex;
  border-top: 2px solid #fff;
}
.our-project .show-more .icon {
  width: 17px;
  height: 17px;
  padding: 0;
  margin-left: auto;
}

.hover-box {
  overflow: hidden;
}
.hover-box .span-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  font-weight: 500;
}
.hover-box .span-container span {
  background: #fff;
  color: #000;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}
.hover-box .span-container span.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.award {
  background: #fff;
  padding: 5rem 2rem;
}
.award .title {
  display: flex;
  align-items: flex-start;
  border-bottom: 2px solid #000;
  margin-bottom: 2rem;
}
.award .title > span {
  font-size: 14px;
  color: #222;
}
.award .title h4 {
  max-width: 700px;
  margin-right: auto;
  line-height: 36px;
  font-size: 28px;
  font-weight: 400;
  color: #000;
  font-size: 28px;
}
.award .box-award {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 15px 0;
}
.award .box-award h6 {
  color: #000000;
  margin-bottom: 0;
  font-size: 28px;
  margin-right: auto;
}
.award .box-award h6 a {
  color: #000;
}
.award .box-award img {
  width: 70px;
  height: 70px;
}
.award .box-award span {
  margin-right: 25px;
  font-weight: 500;
}

.agency-team {
  padding: 4rem 0 0;
}
.agency-team .title {
  display: flex;
  padding: 0 2rem;
}
.agency-team .title > span {
  margin-left: auto;
  font-size: 14px;
  background: transparent;
  border: none;
}
.agency-team .swiper {
  direction: ltr;
}
.agency-team .member-info .member-name {
  font-size: 14px;
}
.agency-team .member-info .member-role {
  color: #3c3f49;
}
.agency-team .box-image {
  direction: rtl;
}
.agency-team .box-image img {
  width: 100%;
}
.agency-team .box-image .text {
  color: #3c3f49;
  text-align: right;
}
.agency-team .box-image h3 {
  margin: 5px 0;
  color: #fff;
  font-size: 14px;
}

.feedback {
  padding: 4rem 0;
}
.feedback .title > span {
  font-size: 14px;
}
.feedback .title h2 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -2px;
}
.feedback .feed-back-box {
  background: #fff;
  padding: 15px;
  min-height: 250px;
}
.feedback .feed-back-box .profile {
  display: flex;
  align-items: center;
}
.feedback .feed-back-box .profile img {
  width: 72px;
  height: 72px;
}
.feedback .feed-back-box .profile .text {
  color: #000;
  padding-left: 15px;
}
.feedback .feed-back-box .profile .text h6, .feedback .feed-back-box .profile .text h5 {
  font-size: 14px;
  margin: 0;
}
.feedback .feed-back-box .profile .text h6 {
  color: #3c3f49;
}
.feedback .feed-back-box p {
  padding: 10px 0;
}

.plans {
  padding: 4rem 0;
  background: center center/cover url("../image/11_1.jpg.webp");
}
.plans .title-center {
  text-align: center;
}
.plans .title-center h3 {
  font-size: 42px;
  color: #fff;
  font-weight: 500;
}
.plans .flip-card {
  height: 200px;
  perspective: 1000px;
  width: 100%;
  padding: 0;
  min-height: 600px;
  transition: transform 1200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  backface-visibility: hidden;
}
.plans .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  background: #fff;
}
.plans .flip-card-inner .title-top {
  width: 100%;
  display: flex;
  align-items: center;
}
.plans .flip-card-inner .title-top img {
  margin-right: auto;
}
.plans .flip-card-inner .title-top span {
  color: #858996;
}
.plans .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.plans .flip-card-back div {
  line-height: normal;
  font-size: 14px;
  color: #858996;
}
.plans .flip-card-front, .plans .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  font-size: 24px;
  color: #000;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #fff;
}
.plans .flip-card-front h6, .plans .flip-card-back h6 {
  font-size: 36px;
  width: 100%;
}
.plans .flip-card-front .seperator, .plans .flip-card-back .seperator {
  width: 100%;
  background: #858996;
  height: 1px;
}
.plans .flip-card-front .bottom, .plans .flip-card-back .bottom {
  width: 100%;
  margin-top: auto;
  padding: 20px 0;
}
.plans .flip-card-back {
  transform: rotateY(180deg);
}

.e-commerce {
  padding: 25px 2rem;
  position: relative;
}
.e-commerce .box-e-commerce {
  padding: 15px;
  margin: 25px 0;
  background: #fff;
}
.e-commerce .box-e-commerce.blur-effect h2,
.e-commerce .box-e-commerce.blur-effect h5,
.e-commerce .box-e-commerce.blur-effect p.text-p,
.e-commerce .box-e-commerce.blur-effect ul,
.e-commerce .box-e-commerce.blur-effect button,
.e-commerce .box-e-commerce.blur-effect .sec,
.e-commerce .box-e-commerce.blur-effect .project-s h4 {
  filter: blur(2px);
  transition: filter 0.3s ease;
}
.e-commerce .project-s .magic-image {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.e-commerce .project-s .magic-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) contrast(1.5) hue-rotate(180deg) saturate(3) sepia(1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  clip-path: circle(47px at var(--mouse-x, 50%) var(--mouse-y, 50%));
  mix-blend-mode: screen;
}
.e-commerce .project-s .magic-image.under-cursor::before {
  opacity: 1;
}
.e-commerce .project-s .magic-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}
.e-commerce .project-s .magic-image.under-cursor::after {
  opacity: 1;
}
.e-commerce .box-e-commerce h5 {
  margin-top: calc(54px + 1.5rem);
}
.e-commerce .box-e-commerce .text-p {
  margin-top: calc(54px + 1.5rem);
  min-height: 115px;
  font-weight: 500;
  font-size: 14px;
}
.e-commerce .box-e-commerce .project-s {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.e-commerce .box-e-commerce .project-s h4 {
  font-size: 14px;
}
.e-commerce .box-e-commerce .project-s .image {
  width: 95px;
  padding: 0 5px;
}
.e-commerce .box-e-commerce .project-s .image img {
  width: 100%;
}
.e-commerce .box-e-commerce ul li {
  width: 100%;
  color: #858996;
  font-size: 14px;
  font-weight: 500;
}
.e-commerce .box-e-commerce h2 {
  margin: 0;
}
.e-commerce .box-e-commerce h2 span {
  color: #858996;
}
.e-commerce .box-e-commerce .sec {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #858996;
  margin-bottom: 10px;
  padding: 10px 0;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-top: 2rem;
}
.e-commerce .box-e-commerce .sec:before {
  content: "";
  background: #858996;
  width: 100%;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 1px;
}

button.btn-request {
  background-image: linear-gradient(0.333turn, rgb(117, 142, 241) 0%, rgb(14, 40, 143) 100%);
  margin-top: 25px;
  padding: 2px 15px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  color: #fff;
}

.sec-contact {
  padding: 2rem 0;
  text-align: center;
}
.sec-contact p {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 42px;
  max-width: 820px;
  margin: 0 auto;
}
.sec-contact .btn {
  background: #718AED;
  background: linear-gradient(90deg, rgb(113, 138, 237) 0%, rgb(22, 48, 151) 100%);
  border: 1px solid #000;
  color: #fff;
  margin-top: 3rem;
  transition: all ease 0.4s;
  width: 151px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.sec-contact .btn span {
  position: absolute;
  font-size: 12px;
}
.sec-contact .btn .btn-wrapper {
  width: 100%;
  height: 35px;
}
.sec-contact .btn:hover {
  opacity: 0.7;
}

.sec-blog {
  padding: 3rem 2rem;
}
.sec-blog .font-small {
  font-size: 14px;
  margin-left: auto;
}
.sec-blog .blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  direction: ltr;
}
.sec-blog .blog-item {
  flex: 1;
  min-width: 0;
}
.sec-blog .box-blog {
  width: 100%;
  cursor: pointer;
}
.sec-blog .box-blog .img {
  width: 100%;
  text-align: center;
}
.sec-blog .box-blog img {
  width: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 240px;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.sec-blog .box-blog .text {
  font-size: 16px;
  color: #fff;
  padding: 10px 0;
}
.sec-blog .more-div {
  width: 100%;
  text-align: left;
  margin-top: 5rem;
}
.sec-blog .more-div .more-box {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 440px;
  border-top: 2px solid #fff;
  color: #fff;
  margin-left: auto;
  font-size: 20px;
  padding-top: 2rem;
}
.sec-blog .more-div .more-box .icon {
  margin-left: auto;
  transition: all ease 0.4s;
}
.sec-blog .more-div .more-box:hover .icon {
  transform: translateX(-50px);
}

.scroll-top {
  width: 120px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-left: auto;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  transition: all ease 0.4s;
}
.scroll-top span {
  position: absolute;
  right: -120px;
  transition: all ease 0.4s;
  font-size: 9px;
}
.scroll-top:hover span {
  right: 25px;
}

footer {
  padding: 4rem 2rem 2rem;
  background: #fff;
  position: relative;
}
footer:before {
  content: "";
  width: 95%;
  height: 2px;
  background: #000;
  top: 30px;
  position: absolute;
  left: 2.5%;
}
footer .titr {
  color: #858996;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
footer a {
  padding: 0;
  color: #000000;
  font-size: 28px;
  font-weight: 500;
  display: block;
  transition: all ease 0.4s;
  width: 100%;
  text-transform: uppercase;
}
footer a:hover {
  opacity: 0.7;
}
footer a.font-small {
  font-size: 13px;
}

footer .contact-us {
  width: 100%;
}
footer .contact-us .contact-form {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  padding-left: 3rem;
}
footer .contact-us .contact-form .input {
  width: 100%;
  margin: 10px 0;
  padding: 5px 0;
}
footer .contact-us .contact-form .input input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #000;
  padding: 10px 0;
  transition: all ease 0.4s;
  font-weight: 900;
}
footer .contact-us .contact-form .input input:focus {
  box-shadow: none;
  outline: none;
}
footer .contact-us .contact-form .more-box {
  display: flex;
  align-items: center;
}
footer .contact-us .contact-form .more-box .icon {
  transition: all ease 0.4s;
  margin-left: auto;
}
footer .contact-us .contact-form .more-box:hover .icon {
  transform: translateX(-50px);
}
footer .contact-us .contact-form a.more-box {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
footer .copy-right span, footer .copy-right a {
  color: #858996;
  font-size: 9px;
  text-align: right;
  display: block;
}

@media screen and (min-width: 1200px) {
  .magic-image {
    cursor: none;
  }
  .magic-image .swiper-slide {
    cursor: none;
  }
  .magic-image .swiper-slide .hover-box {
    cursor: none;
  }
  .photo {
    filter: grayscale(100%);
    transition: 0.3s ease;
    position: relative;
    cursor: pointer;
  }
  .photo:hover {
    filter: grayscale(0%);
  }
}
.icon-responsive {
  display: none;
}

.modal-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-custom.show {
  opacity: 1;
  visibility: visible;
}
.modal-custom .modal-header {
  border: none;
  padding: 0;
}
.modal-custom .modal-header .close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
}
.modal-custom .modal-header button {
  background: transparent;
  border: none;
}
.modal-custom .modal-content {
  background: #000;
  border-radius: 0;
  border: none;
  max-width: 560px;
  margin: 0 auto;
  position: static;
  transform: translateY(100px) scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-custom.show .modal-content {
  transform: translateY(0) scale(1);
}
.modal-custom .modal-content .modal-body {
  color: #fff;
  padding: 0;
}
.modal-custom .modal-content .modal-body img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.modal-custom .modal-content .modal-body p {
  padding: 15px 0;
}
.modal-custom .modal-content .modal-body button {
  border: none;
  padding: 9px 15px;
  border-radius: 5px;
  color: #ffffff;
  background-image: linear-gradient(0.333turn, rgb(117, 142, 241) 0%, rgb(14, 40, 143) 100%);
}

.modal-order {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-order.show {
  opacity: 1;
  visibility: visible;
}
.modal-order .modal-header {
  border: none;
  padding: 0;
}
.modal-order .modal-header .close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1001;
}
.modal-order .modal-header button {
  background: transparent;
  border: none;
}
.modal-order .modal-content {
  background: #fff;
  border: none;
  max-width: 960px;
  margin: 0 auto;
  position: static;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100px) scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-order.show .modal-content {
  transform: translateY(0) scale(1);
}
.modal-order .modal-content .modal-body {
  color: #333;
  padding: 50px 40px;
  text-align: center;
}
.modal-order .modal-content .modal-body .titr {
  color: #000;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 2px;
}
.modal-order .modal-content .modal-body .modal-description {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}
.modal-order .modal-content .modal-body .contact-form {
  margin-top: 30px;
  text-align: left;
}
.modal-order .modal-content .modal-body .contact-form .input {
  margin-bottom: 30px;
  width: 100%;
  position: relative;
}
.modal-order .modal-content .modal-body .contact-form .input input,
.modal-order .modal-content .modal-body .contact-form .input textarea {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000;
  color: #333;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}
.modal-order .modal-content .modal-body .contact-form .input input:focus,
.modal-order .modal-content .modal-body .contact-form .input textarea:focus {
  border-bottom-color: #254ce8;
}
.modal-order .modal-content .modal-body .contact-form .input input::placeholder,
.modal-order .modal-content .modal-body .contact-form .input textarea::placeholder {
  color: #999;
  font-size: 16px;
}
.modal-order .modal-content .modal-body .contact-form .input textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}
.modal-order .modal-content .modal-body .contact-form .phone-input {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #000;
  padding-bottom: 15px;
  transition: border-color 0.3s ease;
}
.modal-order .modal-content .modal-body .contact-form .phone-input:focus-within {
  border-bottom-color: #254ce8;
}
.modal-order .modal-content .modal-body .contact-form .phone-input .country-code {
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: #333;
  font-size: 16px;
}
.modal-order .modal-content .modal-body .contact-form .phone-input .country-code img {
  width: 20px;
  height: 15px;
  margin-right: 5px;
}
.modal-order .modal-content .modal-body .contact-form .phone-input input {
  border: none;
  border-bottom: none;
  padding: 0;
  flex: 1;
}
.modal-order .modal-content .modal-body .contact-form .more-div {
  text-align: center;
  margin-top: 40px;
}
.modal-order .modal-content .modal-body .contact-form .more-box {
  background-image: linear-gradient(0.333turn, rgba(117, 142, 241, 1) 0%, rgba(14, 40, 143, 1) 100%);
  border: none;
  padding: 15px 60px;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
.modal-order .modal-content .modal-body .contact-form .more-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.modal-order .modal-content .modal-body .contact-form .more-box .icon {
  display: none;
}

.modal-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.modal-success.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-success .modal-content {
  background: #fff;
  border: none;
  max-width: 460px;
  margin: 0 auto;
  position: static;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transform: translateY(100px) scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-success.show .modal-content {
  transform: translateY(0) scale(1);
}
.modal-success .modal-header {
  border: none;
  padding: 0;
}
.modal-success .modal-header .close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.modal-success .modal-header .close-modal:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.modal-success .modal-body {
  padding: 60px 40px 50px;
  text-align: center;
}
.modal-success .success-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.modal-success .success-title {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.4;
}
.modal-success .success-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 120px;
}
.modal-success .success-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .modal-success {
    padding: 15px;
  }
  .modal-success .modal-content {
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(120px) scale(0.9);
  }
  .modal-success.show .modal-content {
    transform: translateY(0) scale(1);
  }
  .modal-success .modal-body {
    padding: 50px 25px 40px;
  }
  .modal-success .success-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .modal-order {
    padding: 15px;
  }
  .modal-order .modal-content {
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-order .modal-content .modal-body {
    padding: 30px 25px;
  }
  .modal-order .modal-content .modal-body .titr {
    font-size: 28px;
  }
  .modal-custom {
    padding: 15px;
  }
  .modal-custom .modal-content {
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(120px) scale(0.9);
  }
  .modal-custom.show .modal-content {
    transform: translateY(0) scale(1);
  }
}

.text-experience {
  color: #fff;
  display: none;
}
.feedback .top-section{
  display: flex;
  flex-direction: row;
  width: 100%;
}
.feedback .title {
  padding: 0 2rem;
}
.e-commerce .box-e-commerce .project-s .magic-wrapper {
  position: relative;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .e-commerce .box-e-commerce .project-s .magic-wrapper {
    margin: 0;
  }
  .bg-top .text {
    padding: 20px 10px;
    width: 100%;
  }
  .bg-top .text h2 {
    font-size: 20px;
    line-height: 1.6;
  }
  .logos {
    display: none;
  }
  header {
    direction: rtl;
  }
  header .icon-responsive {
    display: inline-block;
    background: transparent;
    border: none;
    width: auto;
    margin-left: auto;
  }
  header .left-menus {
    background: #254ce8;
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    bottom: 0;
    display: block;
    padding: 42px 25px 25px;
    transition: all ease 0.4s;
  }
  header .left-menus.opened {
    left: 0;
  }
  header .left-menus .close-menu {
    position: absolute;
    left: 10px;
    top: 10px;
  }
  header .left-menus ul {
    display: block;
  }
  header .left-menus ul li {
    width: 100%;
  }
  header .left-menus ul li a {
    font-size: 20px;
    padding: 4px 0;
    display: block;
  }
  header .left-menus ul li a:after {
    display: none;
  }
  header .left-menus .btn-order {
    display: none;
  }
  header .lang-box {
    display: none;
  }
  header .logo {
    width: 160px;
    margin-left: 0;
    margin-right: auto;
  }
  header .logo span {
    max-width: none;
    font-size: 12px;
  }
  .our-project{
    padding: 0;
  }
  .our-experience{
    padding: 4rem 0;
  }
  .bg-top video {
    height: 85%;
  }
  .our-project .project-text {
    width: 100%;
    padding-top: 10px;
    font-size: 20px;
  }
  .our-project .hover-box .span-container {
    justify-content: right;
  }
  .our-project .hover-box .span-container span {
    transform: translateY(-10px);
    opacity: 1;
  }
  .our-project .project-box {
    width: 100%;
  }
  .our-project .project-box .magic-wrapper {
    width: 100%;
  }
  .award{
    padding: 5rem 0;
  }
  .award .title {
    flex-wrap: wrap;
  }
  .award .title h4 {
    width: 100%;
    order: 2;
    font-size: 22px;
    line-height: 1.5;
  }
  .award .title span {
    color: #222;
    order: 1;
    font-size: 16px;
  }
  .award .box-award h6 {
    font-size: 12px;
  }
  .award .box-award img {
    width: 50px;
    height: 50px;
  }
  .feedback{
    padding: 4rem 10px;
  }
  .feedback .title {
    padding: 0;
  }
  .feedback .title span,.agency-team .title span {
    font-size: 20px;
    margin-left: auto;
  }
  .feedback .team-section{
    padding-left: 0 !important;
  }
  .feedback .title h2 {
    font-size: 26px;
  }
  
  .feedback .title .logo img {
    width: 114px;
  }
  .feedback .top-section{
    flex-direction: column;
  }


  .agency-team .title{
    padding: 0 10px;
  }
  .title{
    font-size: 28px;
  }
  .title .logo{
    margin: 0;
  }
  .plans .title-center h3 {
    font-size: 20px;
    text-align: left;
  }
  .sec-blog{
    padding: 3rem 0;
  }
  .sec-blog .blog-container {
    overflow: hidden;
  }
  .sec-blog .blog-container.team-section .viewport {
    overflow: hidden;
    width: 100%;
  }
  .sec-blog .blog-container.team-section .content {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: max-content;
  }
  .sec-blog .blog-container.team-section .blog-item {
    flex: 0 0 300px;
    min-width: 300px;
  }
  .sec-blog .blog-container.team-section .blog-item:last-child {
    margin-right: 50px;
  }
  .e-commerce{
    padding: 25px 0;
  }
  .e-commerce .box-e-commerce .project-s .magic-wrapper {
    width: 33.333%;
  }
  .e-commerce .box-e-commerce .project-s .magic-wrapper .image {
    width: 100%;
  }
  .sec-contact p {
    font-size: 18px;
  }
  .plans .card-plan-item{
    padding: 0;
  }
  .plans .flip-card {
    height: auto;
    min-height: auto;
    padding: 10px 0;
  }
  .plans .flip-card-inner {
    height: auto;
  }
  .plans .flip-card:hover .flip-card-inner {
    transform: rotateY(0deg);
  }
  .plans .flip-card-front {
    display: none;
  }
  .plans .flip-card-back {
    transform: rotateY(0deg);
    position: relative;
  }
  footer {
    padding-bottom: 0;
    padding: 4rem 0 2rem;
  }
  footer .contact-col {
    order: 3;
  }
  footer .link-foo-1 {
    order: 1;
  }
  footer .link-foo-2 {
    order: 2;
  }
  footer .logo {
    width: 100%;
  }
  footer .scroll-top {
    display: none;
  }
  footer .copy-right {
    display: flex;
  }
  footer .copy-right span, footer .copy-right a {
    font-size: 9px;
    padding: 10px 5px;
    width: auto;
  }
  footer .contact-us .contact-form {
    padding: 0;
  }
  .modal-custom .modal-content {
    padding-top: 25px;
  }
  .title h2 {
    margin-bottom: 0;
    width: 205px;
    min-width: min-content;
  }
  .our-experience .right-titles button{
    padding: 5px 0;
    font-size: 24px;
  }
}
.main-content{
  min-height: 500px;
  color: white;
}
.site-main{
  margin-top: 160px;
}
.single-content-inner-text{
  margin-top: 24px;
}
.portfolio-posts-container{
  padding: 0 2rem;
}
.menu-content{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile-menu-text{
  margin-top: auto;
  font-size: 14px;
  color: white;
  text-align: left;
}
