@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");

/* Varialbes */
:root {
  --font-default: "Poppins", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-optional: "Poppins", sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #1b1b1b;
  --dark-secondary: #262525;
  --white: #ffffff;
  --color-primary: #826a45;
  --color-secondary: #e7272d;
  --color-optional: #cf820a;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --color-paragraph-white: #fff;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #ebe9e6;
  --bg-gradient: linear-gradient(45deg, var(--color-primary) 30%, #ffb800 100%);
  --font-size: 15px;

  --theme-color: #e36e25;
  --theme-color2: #52c306;
  --title-color: #1e577a;
  --body-color: #4d5765;
  --smoke-color: #f8f8f8;
  --black-color: #000000;
  --gray-color: #888c97;
  --white-color: #ffffff;
  --light-color: #72849b;
  --yellow-color: #ffb539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #e4e4e4;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  background-color: #fff8f2;
  margin: 0 auto;
  padding: 0 auto;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
  opacity: 1;
}

.secondary a:hover {
  color: var(--color-primary);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

ul {
  list-style-type: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

b {
  font-weight: 600;
}

strong {
  font-weight: 600;
}

.row {
  --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 600;
}

p {
  color: var(--color-paragraph);
  text-transform: none;
  font-family: var(--font-default);
  font-size: var(--font-size);
  line-height: 29px;
  font-weight: normal;
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

.item-center {
  display: flex;
  align-items: center;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

.bg-gray {
  background: var(--bg-gray);
}

.bg-dark .bg-gray {
  background: var(--dark-secondary);
}

.bg-gray-secondary {
  background: var(--bg-gray-secondary);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
  background-color: var(--color-primary);
  background: var(--bg-gradient-reverse) !important;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  display: inline-block;
}

.text-light {
  color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.shadow.dark:after {
  background: var(--black);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
  position: relative;
  z-index: 1;
}

.shadow.dark-hard:after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.theme {
  position: relative;
  z-index: 1;
}

.shadow.theme:after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.light {
  position: relative;
  z-index: 1;
}

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 60px 0;
  }
}

.default-padding-top {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top {
    padding-top: 60px;
  }
}

.default-padding-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 60px;
  }
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -20px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.border-top {
  border-top: 1px solid #e7e7e7;
}

.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

/* ============================================================== 
    # Navbar Styles
=================================================================== */
@media (min-width: 1024px) {
  nav.navbar.navbar-style-one.no-background::before {
    position: absolute;
    left: 0;
    content: "";
    height: 100%;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(20px);
    width: 100%;
    z-index: -1;
  }
}

@media (min-width: 1200px) {
  nav.navbar.navbar-style-one.no-background a.navbar-brand {
    position: relative;
    z-index: 1;
    padding: 0 35px;
    top: 15px;
  }

  nav.navbar.navbar-style-one a.navbar-brand {
    transition: inherit;
  }

  nav.navbar.navbar-style-one.no-background a.navbar-brand::after {
    position: absolute;
    left: 0;
    top: -60px;
    content: "";
    height: 160px;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
  }

  nav.navbar.navbar-style-one.no-background a.navbar-brand::before {
    position: absolute;
    right: -23px;
    bottom: -40px;
    content: "";
    border-bottom: 31px solid transparent;
    border-left: 23px solid var(--color-primary);
    opacity: 0.8;
  }

  nav.navbar.navbar-style-one.no-background::after {
    position: absolute;
    left: 10%;
    content: "";
    height: 100%;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    z-index: -1;
  }

  nav.navbar.navbar-style-one.no-background::before {
    position: absolute;
    left: 10%;
    content: "";
    height: 100%;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(20px);
    width: 100%;
    z-index: -1;
  }
}

/* -------------------------------------------new------------------------------------csss------------------------------------------- */

.header-light-bg {
  background-image: linear-gradient(45deg, #f2f1ef, #fdfbf9);
  border-radius: 0px 0px 100px 100px;
}

.banner-style-four-content {
  padding: 120px 0px 50px;
}
.curve-text img {
  height: auto;
  width: 90%;
}

.banner-style-four-content h2 {
  font-size: 3.5em;
  background: -webkit-linear-gradient(left, #1d577a, #e96c1e);
  background: linear-gradient(left, #1d577a, #e96c1e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  margin: 3px 3px 20px;
  display: inline-block;
}

.banner-style-four-content .curve-text svg {
  background: transparent;
  border: 2px solid #ffd8a3;
}

.banner-style-four-content .curve-text svg text {
  fill: #fff;
}

.banner-style-four-content .curve-text {
  margin: 20px 0px;
  text-align: center;
}
.hero-text {
  margin: 0 auto;
  padding: 40px 75px;
}
.hero-text p {
  color: var(--color-paragraph);
  margin: 0 0 20px;
  text-transform: none;
  font-weight: normal;
}
.hero-text-left {
  margin: 0 auto;
  padding: 40px 75px;
}

.hero-text-left p i {
  color: #000000;
  font-size: 15px;
  margin: 0 0;
  opacity: 0.3;
}
.hero-text-left h3 {
  font-weight: 600;
  color: var(--theme-color);
  font-size: 60px;
  line-height: 70px;
  margin: 0;
}
.hero-text-left p {
  color: var(--color-paragraph);
  margin: 0 0;
  text-transform: none;
  font-weight: normal;
}
.hero-btn {
  display: inline-block;
  text-align: center;
  background-color: #ebebeb;
  padding: 10px 50px;
  border-radius: 50px;
  color: var(--title-color);
}
.back-white {
  margin: 0px auto;
  border-radius: 80px;
  padding: 5px;
  background-color: #fff;
}
.btn-box-color-orange {
  background-color: var(--theme-color);
  padding: 10px 40px;
  border-radius: 80px;
  width: 50%;
  color: #fff;
  border: 1px solid var(--theme-color);
  cursor: pointer;
}
.btn-box-color-orange-border {
  background-color: var(--white);
  padding: 10px 40px;
  border-radius: 80px;
  width: 50%;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  cursor: pointer;
}
.mg-box {
  margin: 50px 0px 60px;
}
.blur-box {
  padding: 30px 25px;
  border-radius: 20px;
  background: rgb(80 80 80 / 15%);
  backdrop-filter: blur(15px);
  border: 1px solid #333333;
}
.box-tex {
  text-align: center;
}
.box-tex h3 {
  font-weight: 500;
  color: var(--white);
  line-height: 1.5em;
  margin: 0;
  font-size: 2.7em;
}
.box-tex p {
  color: var(--white);
  margin: 2px 0;
  font-size: 14px;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 0.4px;
}

.marquee-wrapper .marquee {
  background: #1d577a;
  position: relative;
  --duration: 120s;
  --gap: 0px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 0px;
  padding: 10px 0px;
  border-top: #ffcaa7 solid 5px;
  border-bottom: #ffcaa7 solid 5px;
}
.marquee-wrapper .marquee:first-child {
  --duration: 100s;
}
.marquee-wrapper .marquee:last-child {
  --duration: 100s;
}
.marquee-wrapper .marquee .marquee-group {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  min-width: 100%;
  -webkit-animation: scroll 80s linear infinite;
  animation: scroll 80s linear infinite;
}

.marquee-wrapper .marquee .marquee-group .text img {
  margin: 0px 12px 3px 2px;
  width: 30px;
  height: 30px;
}
.marquee-wrapper .marquee .marquee-group .text {
  font-weight: 300;
  font-size: 1.2em;
  letter-spacing: 1px;
  line-height: 2em;
  text-transform: capitalize;
  color: #fff;
  margin: 0px 50px;
}

/* Marquee ---------------------------------- */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* ----------------------slider----------------------------------------new----------------------------------addd----------------------------------------- */

/* Project Card ---------------------------------- */

.sub-title9 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: var(--theme-color);
  font-size: 0.9em;
  font-weight: 300;
  letter-spacing: 1.6px;
  position: relative;
  margin-bottom: 15px;

  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
}

.sub-title9:before,
.sub-title9:after {
  content: "";
  position: relative;
  height: 2px;
  width: 40px;
  background-color: var(--theme-color);
}

.sub-title9.after-none:after {
  display: none;
}

.sub-title9.before-none:before {
  display: none;
}

@media (max-width: 767px) {
  .sub-title9:before,
  .sub-title9:after {
    display: none;
  }
}

.title-area {
  margin-bottom: 20px;
}

.sec-title {
  font-size: 1.3em;
  font-weight: 300;
  position: relative;
  color: var(--title-color);
  margin-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sec-title-heading {
  font-size: 2.5em;
  line-height: 1.3em;
  font-weight: 600;
  color: var(--title-color);
  position: relative;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.project-area11 {
  background-color: #f2f2f2;
}

.services-projects {
  text-align: center;
}

.services-projects h3 {
  font-size: 2.3em;
  line-height: 1.3em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 25px;
}
.services-projects h3 span {
  font-weight: 600;
}

.project-slider11 {
  position: relative;
  display: inline-block;
}

.project-slider11 .slick-slide {
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
  padding: 0px 10px;
}

.project-slider11 .slick-dots {
  position: relative;
  margin: 20px auto 10px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-dots li {
  display: flex;
  margin: 8px;
}
.slick-dots button {
  font-size: 0;
  padding: 0;
  background-color: var(--title-color);
  width: 12px;
  height: 12px;
  line-height: 0;
  border-radius: 9999px;
  border: none;
  border: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: relative;
}
.slick-dots button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 25px;
  border: 1px solid var(--theme-color);
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  visibility: hidden;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}

.slick-dots .slick-active button::before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.project-slider11 .slick-slide .project-img {
  height: 440px;
  overflow: hidden;
}

.project-slider11 .slick-slide .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-slider11 .slick-center .project-card11 {
  width: 100%;
}

.project-slider11 .slick-center .project-card11 .project-content {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}

.project-slider11 .slick-center .project-card11 .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card11 {
  position: relative;
  overflow: hidden;
  --space: 0px;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
  border-radius: 15px;
}

.project-card11 .project-content {
  position: absolute;
  padding: 15px 0 20px;
  width: 100%;
  left: 0;
  bottom: 0px;
  text-align: center;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
  z-index: 2;
  background-color: #1e577a78;
  opacity: 0;
  visibility: hidden;
  border-radius: 25px 25px 0px 0px;
}
.project-card11 .project-content h3 {
  margin: 0;
}

@media (max-width: 1299px) {
  .project-card11 .project-content {
    -webkit-clip-path: none;
    clip-path: none;
  }
}

.project-card11 .box-title a {
  font-size: 1.3rem;
  font-weight: 300;
  position: relative;
  letter-spacing: 1.2px;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--color-paragraph-white);
}

@media (max-width: 1199px) {
  .project-card11 .project-content {
    bottom: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}

.services-pera {
  margin: 20px 0px 5px;
  text-align: center;
}
.services-pera p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 00px;
}
.services-pera p a {
  font-weight: normal;
  color: var(--theme-color);
  text-decoration: underline;
}

/* =---------------------------------------turnkey-projects------------ */
.turnkey-projects {
  padding: 5px 0px 10px;
}
.turnkey-projects h3 {
  font-size: 2.3em;
  line-height: 1.3em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 10px;
}

.turnkey-projects h3 span {
  font-weight: 600;
}

.turnkey-projects h4 {
  font-size: 1.1em;
  line-height: 1.5em;
  font-weight: 400;
  position: relative;
  color: var(--title-color);
  margin: 3px 0px 10px;
}

.turnkey-projects p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}

.turnkey-list {
  padding: 10px 0px;
}
.turnkey-list ul li img {
  width: 25px;
  height: auto;
  margin-right: 5px;
  filter: brightness(1) invert(0);
  transition: filter 0.3s ease;
}
.turnkey-list ul li {
  display: inline-table;
  align-items: center;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid var(--theme-color);
  margin: 2px 2px;
  font-weight: normal;
  color: var(--theme-color);
  transition: filter 0.3s ease;
}

.turnkey-list ul li:hover {
  background-color: var(--theme-color);
  color: #fff;
  transition: filter 0.3s ease;
  cursor: pointer;
}

.turnkey-list ul li:hover img {
  filter: brightness(0) invert(1);
}

.turnkey-white {
  padding: 10px 0px 5px;
}
.turnkey-box-color-orange {
  padding: 10px 40px;
  background-color: var(--title-color);
  border: 1px solid var(--title-color);
  border-radius: 50px;
  text-align: center;
  color: var(--white);
  font-weight: normal;
  cursor: pointer;
}
.turnkey-box-color-orange-border {
  padding: 10px 40px;
  border: 1px solid var(--title-color);
  border-radius: 50px;
  color: var(--title-color);
  text-align: center;
  font-weight: normal;
  cursor: pointer;
}

.turkey-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 10%;
}
.turkey-size {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.turkey-image-1 img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.turkey-box-color {
  background-color: var(--theme-color);
  border-radius: 15px;
  padding: 20px;
  margin-right: 80px;
}
.turkey-box-color p {
  color: var(--white);
  margin: 0px;
  font-size: 1.2em;
  font-weight: 300;
}

.turkey-box-color p span {
  font-weight: 600;
}
/* ----------------------------------------------project---------------------2---------------slider -------------+*/

.project-slider2 .slick-slide .project-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.project-slider2 .slick-current .project-card.style2 .project-card-content {
  color: var(--title-color);
  text-transform: none;
  font-weight: 600;
  font-size: 1rem;
  height: 100%;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}
.project-card.style2 .project-card-details .project-card-content {
  font-size: 1rem;
  font-weight: 600;
  height: 0;
  opacity: 0;
  display: none;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.project-card.style2 .project-card-details {
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0;
}

.project-card.style2 .project-card-details-wrap {
  text-align: center;
}

.project-slider2 .slick-slide {
  text-align: center;
}
.project-slider2 .slick-slide {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: 0.4s;
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.project-slider2 .slick-center {
  transform: scale(1.05);
}
.project-slider2 .slick-slide {
  margin: 15px 0px;
}
.project-slider2 .slick-active {
  margin: 15px 0px;
}
/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
}

.project-two__top {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-two__bottom {
  position: relative;
  display: block;
  padding: 0px 3%;
}

.project-two__box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.project-two__box li {
  position: relative;
  flex: 0 0 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.project-two__box li.active {
  flex: 0 0 50%;
}

.project-two__box.project-two__box2 li {
  flex: 0 0 50%;
}

.project-two__box-content {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 600px;
  z-index: 1;
}

.single-project-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 10px;
}

.project-two__box-content-inner-wrapper {
  position: relative;
  display: block;
}

.project-two__box-content-inner {
  position: absolute;
  padding: 25px;
  /* width: 90%; */
  bottom: 30px;
  margin: 0px 30px;
  opacity: 0;
  transform: perspective(540px) rotateY(0deg) translateY(-100px);
  transform-origin: top;
  transition: all 500ms ease;
  z-index: 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f3fbff;
  border-radius: 10px;
}

.project-two__box-content:hover .project-two__box-content-inner {
  opacity: 1;
  transform: perspective(540px) rotateY(0deg) translateY(0px);
  transition-delay: 500ms;
}

.project-two__box-content.project-two__box-content2
  .project-two__box-content-inner {
  opacity: 1;
  transform: perspective(540px) rotateY(0deg) translateY(0px);
  transition-delay: 500ms;
}

.project-two__box-content-inner .title-box {
  position: relative;
  display: block;
}

.project-two__box-content .img-holder-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    180deg,
    rgb(0 0 0 / 68%) 0%,
    rgb(0 0 0) 100%
  ) !important;
  opacity: 0.8;
  transition: 0.5s;
  transform-origin: top;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.project-two__box-content-inner-icon {
  position: absolute;
  top: 10%;
  left: 80%;
  right: 0%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) translateY(0);
  opacity: 1;
  transition: all 500ms ease;
  z-index: 6;
  height: 0;
  line-height: 0;
}

.project-two__box-content:hover .project-two__box-content-inner-icon {
  transform: scale(1) translateY(-50%);
  transition-delay: 500ms;
  opacity: 1;
}

.project-two__box-content-inner-icon > a {
  position: relative;
  display: flex;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--theme-color);
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 5;
  background: #fff;
  transform: rotate(315deg);
}

.project-two__box-content-inner-wrapper p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}

.project-two__box-content-inner-wrapper h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.project-two__box-content-inner-wrapper h5 a {
  color: var(--title-color);
}

.project-two__box-content-inner-wrapper h5 a:hover {
  color: var(--title-color);
}

.project-two__box li {
  flex: 1;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.project-two__box li.active {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  flex: 3;
}
.project-two__box.project-two__box2 li {
  flex: 3;
}
.project-two__box li.active .project-two__box-content .img-holder-img-bg {
  opacity: 0;
  transform: perspective(540px) rotateX(0deg);
}
.project-two__box
  li.active
  .project-two__box-content
  .project-two__box-content-inner {
  opacity: 1;
  transform: perspective(540px) rotateY(0deg) translateY(0px);
  transition-delay: 500ms;
}

.owl-carousel.owl-dot-style1 .owl-dots button {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0 !important;
  font: inherit;
  height: 16px;
  line-height: 10px;
  width: 16px;
  margin: 0 0px;
  border: none;
  border-radius: 50%;
  padding: 5px;
  margin: 3px;
  background-color: #cecfd2;
}
.owl-carousel.owl-dot-style1 .owl-dots button.active {
  background: #ff0000;
}
.owl-carousel.owl-dot-style1 .owl-dots {
  position: absolute;
  bottom: -55px;
  width: 100%;
  right: 0;
  text-align: center;
}
.owl-carousel.owl-dot-style1 .owl-dots button {
  position: relative;
  border: 3px solid #fff !important;
}
.owl-carousel.owl-dot-style1 .owl-dots button:after {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  background: #28a745;
  z-index: -1;
  border-radius: 50%;
  left: -4px;
  top: -4px;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.owl-carousel.owl-dot-style1 .owl-dots button.active:after {
  visibility: visible;
  opacity: 1;
}

.project-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -120px;
  right: 0px;
  margin: 0;
  z-index: 2;
}

.project-two__carousel.owl-theme .owl-nav .owl-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: #000;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 20px;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: #000;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 20px;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
  transform: rotate(-180deg);
}

.project-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 10px;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 10px;
}

.project-two__carousel.owl-theme .owl-nav .owl-next span,
.project-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-two__carousel.owl-theme .owl-nav .owl-next:hover,
.project-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--bondor-base);
  color: var(--bondor-white);
}

.project-two__carousel.owl-theme .owl-nav .disabled {
  opacity: 1;
}

.owl-carousel.owl-dot-style1 .owl-dots button {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0 !important;
  font: inherit;
  height: 16px;
  line-height: 10px;
  width: 16px;
  margin: 0 0px;
  border: none;
  border-radius: 50%;
  padding: 5px;
  margin: 3px;
  background-color: #cecfd2;
}
.owl-carousel.owl-dot-style1 .owl-dots button.active {
  background: #ff0000;
}
.owl-carousel.owl-dot-style1 .owl-dots {
  position: absolute;
  bottom: -55px;
  width: 100%;
  right: 0;
  text-align: center;
}
.owl-carousel.owl-dot-style1 .owl-dots button {
  position: relative;
  border: 3px solid #fff !important;
}
.owl-carousel.owl-dot-style1 .owl-dots button:after {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  background: #28a745;
  z-index: -1;
  border-radius: 50%;
  left: -4px;
  top: -4px;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.owl-carousel.owl-dot-style1 .owl-dots button.active:after {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------whychoose-box--------------------------------------------*/

.whychoose-box-con {
  position: relative;
}
.whychoose-all-box {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.whychoose-box-con .col-lg2 {
  display: inline-flex;
  width: 100%;
}
.whychoose-box-title {
  text-align: center;
}
.whychoose-box-title h4 {
  font-size: 2.2em;
  line-height: 1.2em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 20px;
}
.whychoose-box-title h4 span {
  font-weight: 600;
}
.whychoose-box-item {
  padding: 25px;
  background-color: var(--white);
  border-radius: 10px;
  transition: 1s;
  box-shadow: 0px 0px 7px 0px #18181846;
  width: 100%;
  height: 100%;
}
.whychoose-box-item img {
  width: 70px;
  height: auto;
}
.whychoose-box-item h5 {
  color: var(--theme-color);
  margin: 15px 0px;
}
.whychoose-box-item p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}
.whychoose-box-item:hover,
.service-box-item:hover {
  background: var(--theme-color);
}
.whychoose-box-item:hover h5,
.whychoose-box-item:hover p {
  color: var(--white);
}
.whychoose-box-item:hover img {
  filter: brightness(0) invert(1);
}

/* =---------------------------------------turnkey-projects------------ */
.Personal-projects {
  padding: 5px 0px 10px;
}
.Personal-projects h3 {
  font-size: 2.5em;
  line-height: 1.4em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 0px;
}

.Personal-projects h3 span {
  font-weight: 600;
}

.Personal-projects p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}

.Personal-white {
  padding: 30px 0px 10px;
}
.Personal-box-color-orange {
  padding: 10px 40px;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 50px;
}
.Personal-box-color-orange a {
  color: var(--white);
  text-align: center;
  font-weight: normal;
  cursor: pointer;
}
.Personal-box-color-orange-border {
  padding: 10px 40px;
  border: 1px solid var(--theme-color);
  border-radius: 50px;
}
.Personal-box-color-orange-border a {
  color: var(--theme-color);
  text-align: center;
  font-weight: normal;
  cursor: pointer;
}
.Personal-image {
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 15%,
    #4c4c4c 15%,
    #4c4c4c 85%,
    transparent 85%,
    transparent 100%
  );
  text-align: center;
  margin: 0px 0px 0px 10%;
}
.Personal-image img {
  width: 90%;
  height: auto;
  border-radius: 15px;
}

/* ============================================================== 
    # Why Choose us
=================================================================== */
.export-support-style-one-items {
  overflow: hidden;
}

.export-support-style-one {
  position: relative;
  padding: 40px;
  border-radius: 30px;
  background-color: var(--title-color);
}

.export-support-style-two {
  position: relative;
  padding: 40px;
  border-radius: 30px;
  background-color: var(--white);
}

.export-support-style-three {
  position: relative;
  padding: 40px;
  border-radius: 30px;
  background-color: var(--theme-color);
}

.export-support-style-one p,
.export-support-style-three p {
  color: var(--white);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}

.export-support-text {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-between;
}
.export-support-text h4 {
  color: var(--white);
  font-size: 1.7em;
  line-height: 1.5em;
  font-weight: 300;
  position: relative;
  margin: 0px 0px;
}
.export-support-text h4 span {
  font-weight: 600;
  display: block;
}

.export-support-style-two .export-support-text h4 {
  color: var(--title-color);
  font-size: 1.7em;
  line-height: 1.5em;
  font-weight: 300;
  position: relative;
  margin: 0px 0px;
}
.export-support-style-two p {
  color: var(--title-color);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}

.export-support-style-one a {
  border-radius: 50px;
  padding: 10px 40px;
  background-color: var(--white);
  color: var(--title-color);
  display: inline-block;
  margin-top: 15px;
  font-weight: normal;
}

.export-support-style-two a {
  border-radius: 50px;
  padding: 10px 40px;
  background-color: var(--title-color);
  color: var(--white);
  display: inline-block;
  margin-top: 15px;
  font-weight: normal;
}

.export-support-style-three a {
  border-radius: 50px;
  padding: 10px 40px;
  background-color: var(--white);
  color: var(--theme-color);
  display: inline-block;
  margin-top: 15px;
  font-weight: normal;
}

.circle-support {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 5%;
  top: 6%;
  border-radius: 50px;
}
.maintenance-projects {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.maintenance-projects h4 {
  font-size: 2.3em;
  line-height: 1.3em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 10px;
}
.maintenance-projects h4 span {
  font-weight: 600;
  display: block;
}

.maintenance-projects p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}
.maintenance-image {
  position: relative;
}
.maintenance-image p {
  position: absolute;
  background-color: var(--white);
  color: var(--title-color);
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: normal;
  right: 5%;
  bottom: 6%;
}
.maintenance-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
/* --------------------------------------gamers-part-------------------------------------- */
.gamers-part {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gamer-slider .swiper {
  max-width: 80%;
}
.gamer-slider .swiper-slide {
  border-radius: 25px;
}
.gamer-slider .swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gamers-part {
  background-image: url(../images/gamer-part.jpg);
  background-position: center center;
  width: 100%;
  display: block;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.gamers-part:before {
  background: #0a2437;
  opacity: 0.8;
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.built-game h3 {
  font-size: 2.5em;
  line-height: 1.3em;
  font-weight: 300;
  color: var(--white);
  position: relative;
  margin: 2px 0px 5px;
}
.built-game h3 span {
  font-weight: 600;
  color: var(--theme-color);
}
.built-game h4 {
  font-size: 1.3em;
  line-height: 1.5em;
  font-weight: 400;
  position: relative;
  color: #b1cbdb;
  margin: 5px 0px 15px;
}
.built-game h4 span {
  color: var(--theme-color);
}
.built-game-text p {
  position: relative;
  text-transform: none;
  font-weight: normal;
  margin: 0px;
  color: var(--white-color);
  width: 90%;
}

.built-all-box {
  position: relative;
  display: flex;
  gap: 10px;
  margin: 30px 0px;
  text-align: center;
}
.built-all-box .col-box {
  display: inline-flex;
  width: 100%;
}
.built-box-item {
  width: 100%;
  height: 100%;
}
.built-box-item img {
  width: 65px;
  height: auto;
}
.built-box-item p {
  color: var(--white);
  text-transform: none;
  font-weight: normal;
  margin: 10px 0px 0px;
}

.built-white {
  position: relative;
  padding: 5px 0px 5px;
}

.built-box-color-orange {
  padding: 10px 40px;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 50px;
}
.built-box-color-orange a {
  color: var(--white);
  text-align: center;
  font-weight: normal;
  cursor: pointer;
}

.built-box-color-orange-border {
  padding: 10px 40px;
  border: 1px solid var(--white);
  border-radius: 50px;
}

.built-box-color-orange-border a {
  color: var(--white);
  text-align: center;
  font-weight: normal;
  cursor: pointer;
}
/* ------------------------------Our Authorisations-------------------------------- */

.authorisations-title {
  text-align: center;
}
.authorisations-title h4 {
  font-size: 2.2em;
  line-height: 1.2em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 20px;
}
.authorisations-title h4 span {
  font-weight: 600;
}
.authorisations-text {
  text-align: center;
  margin-bottom: 20px;
}
.authorisations-text p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}
.authorisations-media {
  margin: 20px 0px;
}

.authorisations-img {
  text-align: center;
}
.authorisations-img img {
  width: 80%;
  height: auto;
  margin: 3px 0px;
}
.authorised-pera {
  text-align: center;
}
.authorised-pera p {
  color: var(--title-color);
  text-transform: none;
  font-weight: normal;
  margin: 15px 0px 5px;
}
/* -------------------------------------======================================Brand======================================------------------------------------- */

.brand-projects {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.brand-projects h4 {
  font-size: 2.2em;
  line-height: 1.2em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 0px;
}
.brand-projects h4 span {
  font-weight: 600;
}
.brand-projects p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
  width: 80%;
}

.brand-one-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.brand-one-box-details {
  border: 1px solid var(--bg-gray);
  padding: 12px;
  margin: 3px;
  background-color: #fff8f2;
}
.brand-one-box-details:hover {
  box-shadow: 0px 0px 20px 0px rgba(7, 20, 52, 0.1);
}
.brand-one-box-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.1, 0.29, 0.93);
}
.brand-one-box:hover img {
  transform: scale(1.2);
  transition: 1s;
}
/* ---------------------------------------=======================Smart-Secure-Scalable=======================--------------------------------------- */
.smart-secure {
  height: 500px;
  position: relative;
  background-color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.smart-secure-text {
  text-align: center;
}
.smart-secure-text h3 {
  font-size: 1.5em;
  font-weight: 300;
  margin: 0;
  position: relative;
  color: var(--white);
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  display: flex;
  letter-spacing: 2px;
}
.word-container {
  height: 70px;
  overflow: hidden;
  position: relative;
  font-size: 2.5em;
  font-weight: 600;
  color: var(--theme-color);
  line-height: 70px;
  margin-left: 10px;
  text-align: left;
}

.words {
  display: flex;
  flex-direction: column;
  animation: scrollWords 6s linear infinite;
}

@keyframes scrollWords {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-210px); /* 3 words x 70px height */
  }
}

/* ------------------------------------------------our clients----------------------------+-------------- */
.client-title {
  text-align: center;
}
.client-title h4 {
  font-size: 2.2em;
  line-height: 1.2em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 20px;
}
.client-title h4 span {
  font-weight: 600;
}

.client-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
.client-item img {
  transition: all 0.5s;
  display: block;
  width: auto;
  height: auto;
  border: 1px solid var(--bg-gray);
  padding: 6px;
}
/* 
.client-slider {
  direction: ltr;
  transform: scaleX(-1);
}
.client-slider .slick-slide {
  transform: scaleX(-1);
} */

/* ----------------------------------------faq+-----------------sectiop--------------------- */
.faq-box {
  margin-right: 50px;
}
.faq-text-secion {
  padding: 5px 0px 10px;
}
.faq-text-secion h3 {
  font-size: 2.5em;
  line-height: 1.4em;
  font-weight: 300;
  color: var(--title-color);
  position: relative;
  margin: 0px 0px 0px;
}

.faq-text-secion h3 span {
  font-weight: 600;
}

.faq-text-secion p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}

.faq-white {
  padding: 30px 0px 5px;
}
.faq-box-color-orange-border {
  padding: 10px 40px;
  border: 1px solid var(--theme-color);
  border-radius: 50px;
  display: inline-block;
}
.faq-box-color-orange-border a {
  color: var(--theme-color);
  text-align: center;
  font-weight: normal;
  cursor: pointer;
  display: inline-block;
}
.faq-accordion .accordion-button {
  margin: 3px 0px;
}
.faq-accordion .accordion-item,
.faq-accordion .accordion-button {
  color: var(--title-color);
  background-color: transparent !important;
  font-size: 1.1rem;
  position: relative;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  border-color: none !important;
  box-shadow: none !important;
}
.faq-accordion .accordion-body {
  padding: 0.1rem 2rem 1.5rem 1.25rem;
}

/* ============================================================== 
    # Footer
=================================================================== */

.footer-style-one {
  background-position: left;
  background-color: #11415e;
  padding: 60px;
  position: relative;
  z-index: 2;
  background-image: url(../images/footer-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

footer .about {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 30px;
}
footer .about p {
  color: var(--white);
  text-transform: none;
  font-weight: 300;
  margin: 0px;
  margin-bottom: 20px;
}

footer .widget-title {
  margin-bottom: 28px;
  font-weight: 600;
}

footer .contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .contact ul li {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
footer .contact ul li i {
  display: inline-block;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  background: #10415e;
  border-radius: 5px;
  margin-right: 15px;
  color: var(--white);
}

footer .contact ul li a {
  color: var(--white);
  text-transform: none;
  font-weight: 300;
  margin: 0px;
}

footer .contact ul li a:hover {
  color: var(--white);
}

footer .contact ul li .content {
  position: relative;
  color: var(--white);
  text-transform: none;
  font-weight: normal;
  margin: 0px;
}

footer .link li {
  margin-top: 10px;
}

footer .link li:first-child {
  margin-top: 0;
}

footer a {
  color: var(--white);
  text-transform: none;
  font-weight: 300;
  margin: 0px;
}

footer .bg-dark,
footer .bg-dark li,
footer .bg-dark a,
footer .bg-dark p,
footer.bg-dark,
footer.bg-dark li,
footer.bg-dark a,
footer.bg-dark p {
  color: #cccccc;
}

footer .bg-dark a:hover {
  color: var(--white);
}

ul.footer-social li {
  display: inline-block;
}

ul.footer-social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: #10415e;
  text-align: center;
  margin-right: 8px;
  margin-top: 10px;
  color: var(--white);
}

ul.footer-social li a:hover {
  background: #000000;
}

.footer-bottom img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding: 20px 0px 40px;
  position: relative;
  z-index: 1;
}

.footer-bottom::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 200%;
  width: 100%;
  background: #0e3f58;
  z-index: -1;
}

.footer-bottom .row {
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: #cccccc;
}

.footer-bottom-two ul li {
  display: inline-block;
}

.footer-bottom-two .text-end ul li {
  margin-left: 20px;
}

.footer-bottom-two {
  background: var(--dark-secondary);
  padding: 19px 0;
}

.footer-bottom-two p {
  margin: 0;
}

.footer-bottom-two ul li a:hover {
  color: var(--white);
}

.footer-bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-style-two .footer-bottom-shape {
  z-index: -1;
}

.footer-bottom-shape img {
  height: auto;
  max-width: 30%;
  opacity: 0.4;
}

.footer-style-two {
  position: relative;
  z-index: 1;
}

.footer-logo {
  position: relative;
  z-index: 1;
}
/* ---------------------------------------------------------------------------------------ABOUT_PAGE--------------------------------------------------------------------------------------- */

.about-style-content {
  padding: 120px 0px 50px;
}
.about-style-content .hero-text-about {
  margin: 30px 0px;
  text-align: center;
}

.hero-text-about {
  text-align: center;
}
.hero-text-about img {
  height: auto;
  width: 100%;
}
.about-style-content h2 {
  font-size: 3.5em;
  background: -webkit-linear-gradient(left, #1d577a, #e96c1e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  display: inline-block;
}
.about-us-service-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-hero-text p {
  margin: 0 auto;
  padding: 10px 0px;
  padding-right: 3rem !important;
}
.about-hero-text-box {
  padding: 30px 50px 19px;
}
.about-hero-text-box p i {
  color: var(--color-paragraph);
  font-size: 15px;
  margin: 0 0;
  opacity: 0.3;
}
.about-hero-text-box p {
  color: var(--color-paragraph);
  margin: 0 0;
  text-transform: none;
  font-weight: normal;
}
.about-hero-text-box h3 {
  font-weight: 600;
  color: var(--theme-color);
  font-size: 60px;
  line-height: 70px;
  margin: 0;
}

/* ==============================================================     #  Style Four 
=================================================================== */
.nav.nav-tabs.about-us-menu-nav.four .nav-link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 8px 120px;
  color: var(--theme-color);
}

.nav.nav-tabs.about-us-menu-nav.style-three.four button.active {
  color: var(--white);
  background-color: var(--theme-color);
}

.nav.nav-tabs.about-us-menu-nav.style-three.four {
  padding: 0;
  border: none;
}

.nav.nav-tabs.about-us-menu-nav.style-three.four button {
  padding: 10px 40px;
}

.tab-content.about-us-style-four-content {
  background: var(--white);
  padding: 80px;
  position: relative;
  width: 100%;
  top: -90px;
  border-radius: 20px;
  z-index: 1;
  padding-top: 100px;
}
.nav.nav-tabs.about-us-menu-nav.style-three.four button {
  position: relative;
  z-index: 1;
  border: 1px solid var(--theme-color);
  border-radius: 50px;
}

.nav.nav-tabs.about-us-menu-nav.style-three.four button::after {
  position: absolute;
  left: 50%;
  bottom: -37px;
  content: "";
  height: 17px;
  width: 44px;
  background: var(--white);
  display: block;
  right: auto;
  transform: translateX(-50%);
  z-index: -1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.nav.nav-tabs.about-us-menu-nav.style-three.four button.active::after {
  visibility: visible;
  opacity: 1;
}

.about-us-menu-style-four-items {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.about-us-menu-style-four-items .animate-up-down {
  position: absolute;
  right: -150px;
  bottom: 100px;
  max-width: 200px;
}
.tab-content.about-us-style-four-content .tabs-text h4 {
  font-size: 3.2em;
  color: #e96c1e;
  margin-bottom: 15px;
  display: inline-block;
}
.tab-content.about-us-style-four-content .tabs-text p {
  color: var(--color-paragraph);
  text-transform: none;
  font-weight: normal;
  margin: 00px;
}

.tab-content.about-us-style-four-content .tabs-images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 10px 0px;
}

/* ==============================================================   Responsive CSS   ============================================================== */
@media (max-width: 768px) {
  a.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translate(-0%, -50%);
    top: 50%;
  }
  .banner-style-four-content {
    padding: 70px 0px 30px;
  }
  .header-light-bg {
    border-radius: 0px 0px 20px 20px;
  }
  .banner-style-four-content h2 {
    font-size: 2.5em;
    margin: 0px 0px;
  }
  .banner-style-four-content .curve-text {
    margin: 20px 0px;
  }
  .curve-text img {
    width: 70%;
  }
  .hero-text,
  .hero-text-left {
    margin: 10px auto;
    padding: 10px;
    text-align: center;
  }
  .box-tex {
    margin: 15px 00px;
  }
  .back-white {
    margin: 0px 0px;
  }
  .blur-box {
    padding: 20px 20px;
  }
  .sec-title-heading,
  .turnkey-projects h3,
  .services-projects h3,
  .whychoose-box-title h4,
  .Personal-projects h3,
  .maintenance-projects h4,
  .built-game h3,
  .authorisations-title h4,
  .brand-projects h4,
  .client-title h4,
  .faq-text-secion h3 {
    font-size: 2em;
  }

  .project-card.style2 .project-card-details .project-card-content {
    opacity: 1;
  }
  .services-pera {
    margin: 5px 0px 5px;
    text-align: center;
  }
  .marquee-wrapper .marquee .marquee-group .text {
    margin: 0px 25px;
  }
  .turnkey-list ul li {
    display: block;
    padding: 12px 30px;
    margin: 8px 1px;
  }

  .turkey-image img {
    width: 100%;
    margin-bottom: 5%;
  }
  .turkey-size {
    gap: 15px;
  }
  .turkey-box-color {
    padding: 15px;
    margin-right: 0px;
  }

  .project-two__bottom {
    display: block;
    padding: 0px 0%;
  }
  .project-two__box li {
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
  }
  .project-two__box-content {
    min-height: 370px;
    margin: 5px 5px;
  }
  .project-two__box li {
    position: relative;
    flex: 0 0 100%;
    transition: none;
    transition: none;
  }
  .project-two__box-content-inner {
    padding: 20px;
    margin: 0px 10px;
  }
  .whychoose-all-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
  }
  .Personal-image {
    margin: 10px 0px 0px 0px;
  }
  /* ---------------------------btn-------------------- */
  .turnkey-white,
  .Personal-white {
    padding: 5px 0px 25px;
  }
  .turnkey-box-color-orange,
  .turnkey-box-color-orange-border,
  .Personal-box-color-orange,
  .Personal-box-color-orange-border,
  .built-box-color-orange-border,
  .built-box-color-orange {
    padding: 12px 30px;
  }
  /* ---------------------------btn-------------------- */

  .export-support-style-one,
  .export-support-style-two,
  .export-support-style-three {
    padding: 25px;
    margin: 10px 0px;
  }
  .export-support-text {
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
  }
  .export-support-text h4,
  .export-support-style-two .export-support-text h4 {
    font-size: 1.5em;
    line-height: 1.5em;
  }
  .export-support-style-one a,
  .export-support-style-two a,
  .export-support-style-three a {
    padding: 12px 30px;
    margin-top: 25px;
  }
  .maintenance-projects {
    gap: 0px;
    margin-bottom: 30px;
  }
  .maintenance-image {
    width: 100%;
    margin-bottom: 5%;
  }
  .gamer-slider .swiper {
    max-width: 85%;
  }
  .built-game {
    margin-top: 10%;
  }
  .built-game-text p {
    width: 100%;
  }
  .built-all-box {
    position: relative;
    display: grid;
    gap: 30px;
    margin: 15px 0px;
  }
  .built-white {
    justify-content: center;
    display: flex;
    padding: 20px 0px 5px;
  }
  .brand-projects p {
    margin: 0px;
    width: 100%;
  }
  .brand-projects {
    gap: 10px;
    margin-bottom: 20px;
  }
  .brand-one-box-details {
    padding: 20px;
    margin: 5px;
    text-align: center;
  }
  .authorisations-text {
    text-align: center;
    margin-bottom: 5px;
  }
  .authorisations-text p {
    margin: 10px 0px 10px;
  }
  .authorisations-img img {
    width: 75%;
    margin: 0px 0px;
  }
  .authorised-pera p {
    margin: 3px 0px 3px;
  }
  .smart-secure {
    height: 350px;
    flex-direction: column;
  }
  .smart-secure-text h3 {
    font-size: 1.5em;
    margin: 0;
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .word-container {
    height: 60px;
    font-size: 2em;
    line-height: 75px;
    margin-left: 0;
    text-align: center;
  }
  .words {
    display: flex;
    flex-direction: column;
    animation: scrollWords 5s linear infinite;
  }
  .faq-box {
    margin-right: 0px;
  }
  .faq-white {
    padding: 5px 0px 25px;
  }
  .footer-logo {
    position: relative;
    text-align: center;
    margin: 10px 0px;
  }
  .footer-style-one {
    background-color: #11415e;
    padding: 15px;
  }
  .footer-bottom p {
    text-align: center;
  }
  footer .widget-title {
    margin-bottom: 15px;
    margin-top: 31px;
    font-size: 1.5em;
  }
  .footer-bottom img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
  }
  footer .contact ul li {
    display: flex;
    align-items: start;
    margin-top: 20px;
  }
}
