:root {
  --color-title: #333333;
  --color-lorem: #898989;
  --color-third: #ebd061;
  --color-fourth: #d9d9d9;
  --color-white: #fff;
  --color-black: #000;
  --linear-primary-right: linear-gradient(to right, #b50009 -50%, transparent);
  --linear-primary-top: linear-gradient(to top, #b50009, transparent);
  --linear-second: linear-gradient(to left, #bd833b, #f1d08e);
  --linear-primary-image: linear-gradient(to right, #bd833b, #f1d08e) 1;
  --linear-black: linear-gradient(to top, #000, transparent);
  --bg-main: #1a1a1a;
  --bg-second: #f8f8f8;
}
* {
  line-height: normal;
  /* font-weight: 400; */
}
html {
  font-size: 16px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
ul {
  margin-bottom: 0;
}
p {
  margin: 0;
}
/* setting-hover-image-start */
.setting-hover-image img {
  transition: all 0.3s ease;
}
.setting-hover-image {
  overflow: hidden;
}
.setting-hover-image:hover img {
  transform: scale(1.1);
}

.setting-hover-image-to-top-child{
  position: absolute;
  top: 100%;
  left: 0;
  transition: all .3s ease;
}
.setting-hover-image-to-top:hover .setting-hover-image-to-top-child{
  top: 0;
}
/* setting-hover-image-end */

/* setting-button-hover-to-right-start */
.button-hover-to-right::before {
  content: "";
  position: absolute;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  z-index: 1;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}
.button-hover-to-right:hover:before {
  right: 0;
}
.button-hover-to-right:hover p {
  color: #fff;
}
.button-hover-to-right:hover svg path {
  fill: #fff;
}
/* setting-button-hover-to-right-start */

/* setting-hover-opacity-svg-start */
.setting-hover-opacity-svg svg{
  transition: all .3s ease;
}
.setting-hover-opacity-svg svg{
  opacity: 0;
  visibility: hidden;
}
.setting-hover-opacity-svg:hover svg{
  opacity: 1;
  visibility: visible;
}
/* setting-hover-opacity-svg-end */

/* setting-hover-text-start */
.setting-hover-text-primary {
  transition: all 0.3s ease;
}
.setting-hover-text-primary:hover {
  color: var(--color-primary) !important;
}
/* setting-hover-text-end */

/* setting-hover-transform-start */
.setting-hover-trans-box-10 {
  transition: all 0.3s ease;
}
.setting-hover-trans-box-10:hover {
  transform: translateY(-10px);
}

.tp-button svg {
  position: relative;
  transition: all 0.3s ease;
}
.tp-button:hover svg {
  transform: translateX(5px);
}

.setting-button-hover-svg {
  transition: all 0.3s ease;
}
.setting-button-hover-svg:hover svg {
  transform: rotate(45deg);
}
/* setting-hover-transform-end */

/* setting-hover-box-circle-start */
.setting-hover-box-circle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: all 0.5s ease;
}
.setting-hover-box-circle:hover:before {
  width: 100%;
  height: 100%;
}
/* setting-hover-box-circle-end */

/* setting-hover-icon-start */
.menu-icon-hover{
  transition: all .3s ease;
}
.menu-icon-hover:hover{
  color: var(--color-primary);
}
/* setting-hover-icon-end */

/* setting-hover-line-dot-start */
.td-li-hover {
  position: relative;
  transition: all .3s ease;
}
.td-li-hover::before {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease;
}
.td-li-hover::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--color-primary);
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all .3s ease;
  visibility: hidden;
  opacity: 0;
}
.td-li-hover.active::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
  animation: line-bot .3s linear;
}
.td-li-hover.active{
  padding-left: 15px;
}
.td-li-hover.active::after{
  visibility: visible;
  opacity: 1;
}
.td-li-hover:hover{
  padding-left: 15px;
}
.td-li-hover:hover:after{
  visibility: visible;
  opacity: 1;
}
.td-li-hover:hover:before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
@keyframes line-bot {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* setting-hover-line-dot-end */

/* settings-hover-start */
.hover-text-p:hover {
  color: var(--color-primary);
}
/* settings-hover-end */
/* container-boxbox */
.boxbox {
  width: 100%;
}
/* animation-pulse */
.animation-pulse {
  animation: pulse 1s linear infinite;
}
/* setting font family */
.averta-cy {
  font-family: "Averta Std CY";
}
/* settings-font-size-start */
.f-12 {
  font-size: 0.75rem;
}
.f-13 {
  font-size: 0.75rem;
}
.f-14 {
  font-size: 0.875rem;
}
.f-15 {
  font-size: 0.9375rem;
}
.f-16 {
  font-size: 1rem;
}
.f-17 {
  font-size: 1.0625rem;
}
.f-18 {
  font-size: 1.125rem;
}
.f-19 {
  font-size: 1.1875rem;
}
.f-20 {
  font-size: 1.25rem;
}
.f-21 {
  font-size: 1.3125rem;
}
.f-news {
  font-size: 1.4rem;
}
.f-22 {
  font-size: 1.375rem;
}
.f-23 {
  font-size: 1.4375rem;
}
.f-24 {
  font-size: 1.5rem;
}
.f-25 {
  font-size: 1.5625rem;
}
.f-26 {
  font-size: 1.625rem;
}
.f-27 {
  font-size: 1.6875rem;
}
.f-28 {
  font-size: 1.75rem;
}
.f-32 {
  font-size: 2rem;
}
.f-36 {
  font-size: 2.25rem;
}
.f-40 {
  font-size: 2.5rem;
}
.f-48 {
  font-size: 3rem;
}
.f-50 {
  font-size: 3.125rem;
}
.f-64 {
  font-size: 4rem;
}
.f-96 {
  font-size: 6rem;
}
/* settings-font-size-end */
/* settings-fill */
.fill-p {
  fill: var(--color-primary);
}
/* settings-line-height-start */
.lh-25 {
  line-height: 25px;
}
.lh-24 {
  line-height: 24px;
}
.lh-26 {
  line-height: 26px;
}
.lh-20 {
  line-height: 20px;
}
.lh-21 {
  line-height: 21px;
}
.lh-23 {
  line-height: 23px;
}
.lh-27 {
  line-height: 27px;
}
.lh-30 {
  line-height: 30px;
}
.lh-32 {
  line-height: 32px;
}
.lh-40 {
  line-height: 40px;
}
.lh-45 {
  line-height: 45px;
}
.lh-50 {
  line-height: 50px;
}
/* settings-line-height-end */
.pointer {
  cursor: pointer;
}
.trans-dot-1s {
  transition: all 0.1s ease;
}
.trans-dot-2s {
  transition: all 0.2s ease;
}
.trans-dot-3s {
  transition: all 0.3s ease-in-out !important;
}
.trans-dot-4s {
  transition: all 0.4s ease-in-out;
}
.trans-dot-5s {
  transition: all 0.5s ease-in-out;
}
/* setting limit line text start */
/* ---------------- */
/* setttings-flex-box-start */
.flex-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-ac {
  display: flex;
  align-items: center;
}
.flex-ae {
  display: flex;
  align-items: end;
}
.flex-as {
  display: flex;
  align-items: start;
}
.flex-b {
  display: flex;
  justify-content: space-between;
}
.flex-c {
  display: flex;
  justify-content: center;
}
.flex-b-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-sc {
  display: flex;
  justify-self: center;
}
.flex-r-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.flex-d-c {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.flex-c-c-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.flex-d-jc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex-d-b {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flex-r-e {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.j-s-c {
  justify-self: center;
}
.j-e {
  justify-content: end;
}
.flex-d-c {
  flex-direction: column;
}
.a-i-s {
  align-items: start;
}
/* setttings-flex-box-end */
.line-clamp-1 {
  @supports (-webkit-line-clamp: 1) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.line-clamp-2 {
  @supports (-webkit-line-clamp: 2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.line-clamp-3 {
  @supports (-webkit-line-clamp: 3) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.line-clamp-4 {
  @supports (-webkit-line-clamp: 4) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
.line-clamp-5 {
  @supports (-webkit-line-clamp: 5) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
.line-clamp-6 {
  @supports (-webkit-line-clamp: 6) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }
}
.line-clamp-7 {
  @supports (-webkit-line-clamp: 7) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
  }
}
.line-clamp-8 {
  @supports (-webkit-line-clamp: 8) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
  }
}
/* setting limit line text end */
/* ---------------- */
/* line staic new cusom */
.static1-line {
  width: 85px;
  height: 5px;
  background-color: var(--color-primary);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.static1-line::before {
  position: absolute;
  width: 5px;
  height: 7px;
  content: "";
  background-color: #fff;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  animation: static1-line 2s linear infinite;
  z-index: 2;
}
@keyframes static1-line {
  0% {
    right: calc(100% + 5px);
  }
  100% {
    right: -5px;
  }
}
/* overflow hidden and position relative */
.pos-over {
  position: relative;
  overflow: hidden;
}
/* overflow hidden */
.over {
  overflow: hidden;
}
/* setting perspective */
.pers {
  perspective: 1000px;
}
/* animation rotateY 3d */
.animate-rotate-3d {
  animation: rotateAnimation 3s linear infinite;
}
@keyframes rotateAnimation {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
/* animation-shake */
.animation-shake-custom {
  --fa-animation-duration: 2s;
  -webkit-animation-name: fa-shake-custom;
  animation-name: fa-shake-custom;
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(
    --fa-animation-iteration-count,
    infinite
  );
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
  animation-timing-function: var(--fa-animation-timing, linear);
}
@keyframes fa-shake-custom {
  0% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  4% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  8%,
  24% {
    -webkit-transform: rotate(-23deg);
    transform: rotate(-23deg);
  }

  12%,
  28% {
    -webkit-transform: rotate(23deg);
    transform: rotate(23deg);
  }

  16% {
    -webkit-transform: rotate(-27deg);
    transform: rotate(-27deg);
  }

  20% {
    -webkit-transform: rotate(27deg);
    transform: rotate(27deg);
  }

  32% {
    -webkit-transform: rotate(-17deg);
    transform: rotate(-17deg);
  }

  36% {
    -webkit-transform: rotate(17deg);
    transform: rotate(17deg);
  }

  40%,
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* settings-end */
/* ------------ */
/* setting-grid-start */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
/* setting-grid-end */

/* settings-text-transform-start */
.t-u {
  text-transform: uppercase;
}
.t-c {
  text-transform: capitalize;
}
.t-un {
  text-decoration: underline;
}
.t-i {
  font-style: italic;
}
.t-u-c {
  text-decoration-color: var(--color-primary);
}
/* settings-text-transform-end */

/* settings-with-div-start */
.w-50 {
  width: 50%;
}
/* settings-with-div-end */

/* settings-font-weight-start */
.f-100 {
  font-family: "SVN-Gilroy-100";
}
.f-200 {
  font-family: "SVN-Gilroy XLight-200";
}
.f-300 {
  font-family: "SVN-Gilroy-300";
}
.f-400 {
  font-family: "SVN-Gilroy-400";
}
.f-500 {
  font-family: "SVN-Gilroy-500";
}
.f-600 {
  font-family: "SVN-Gilroy-600";
}
.f-700 {
  font-family: "SVN-Gilroy-700";
}
.f-800 {
  font-family: "SVN-Gilroy-700";
}
.f-900 {
  font-family: "SVN-Gilroy-900";
}
/* settings-font-weight-end */

/* settings-color-text-start */
.color-primary {
  color: var(--color-primary);
}
.color-second {
  color: var(--color-second);
}
.color-fourth {
  color: var(--color-fourth);
}
.color-lorem {
  color: var(--color-lorem);
}
.color-title {
  color: var(--color-title);
}
/* settings-color-text-start */

/* setting-default */

.w-h-100-c {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-start {
  text-align: start;
}
.wrap-content {
  max-width: 1200px;
  width: calc(100% - 30px);
  margin: auto;
}
.o-co {
  object-fit: cover;
}
.o-ca {
  object-fit: contain;
}
.h-f {
  height: fit-content;
}
.w-h-1-1 {
  width: 100%;
  height: 100%;
}
.border-1-r {
  border: 1px solid red;
}
.border-1-b {
  border: 1px solid blue;
}
.border-1-primary {
  border: 1px solid var(--color-primary);
}
.border-1-second {
  border: 1px solid var(--color-second);
}
.border-1-w {
  border: 1px solid #fff;
}
.border-15-w {
  border: 1.5px solid #fff;
}
.pos-r {
  position: relative;
}
.pos-a {
  position: absolute;
}
.t-0-l-0 {
  top: 0;
  left: 0;
}
.t-s-0-4-4-25-b {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.b-s-0-4-4-25-b {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.b-s-0-0-15-15-b {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.b-s-0-0-15-10-b {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.b-s-0-0-10-10-b {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.b-s-4-4-10-50-b {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
.border-1-w {
  border: 1px solid #fff;
}
.setting-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.setting-wh {
  width: 100%;
  height: 100%;
}
.setting-image-c {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bg-w {
  background-color: #fff;
}
.bg-p {
  background-color: var(--color-primary);
}
.bg-t {
  background-color: var(--color-title);
}
.bg-f {
  background-color: var(--color-fourth);
}
.bg-b-l {
  background: var(--linear-black);
}
.bg-none {
  background: none;
}
.fc {
  width: fit-content;
}
/* setttings-position */
.pos-r {
  position: relative;
}
.pos-a {
  position: absolute;
}
.pos-f {
  position: fixed;
}
.setting-wh {
  width: 100%;
  height: 100%;
}
/* border-radius-start */
.br-5 {
  border-radius: 5px;
}
.br-7 {
  border-radius: 7px;
}
.br-50 {
  border-radius: 50%;
}
/* border-radius-end */

/* box-shadow-inset-start */
.bs-0-4-4-25-inset {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}
.bs-5-5-15-inset {
  box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.25);
}
.ts-0-4-4-25-inset {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
}
/* box-shadow-inset-end */

/* letter-spacing-start */
.lt-16-10 {
  letter-spacing: 1.6px;
}
.lt-32-5 {
  letter-spacing: 1.6px;
}
.lt-20-10 {
  letter-spacing: 2px;
}
.lt-40-10 {
  letter-spacing: 4px;
}
.lt-96-5 {
  letter-spacing: 4.8px;
}
/* letter-spacing-end */

/* z-index-start */
.z-d-1 {
  z-index: -1;
}
.z-0 {
  z-index: 0;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-4 {
  z-index: 4;
}
.z-5 {
  z-index: 5;
}
.z-6 {
  z-index: 6;
}
.z-7 {
  z-index: 7;
}
.z-8 {
  z-index: 8;
}
/* z-index-end */

/* setting-position-start */
.pos-c-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pos-x-50 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pos-y-50 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pos-x-50-y-50 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pos-0-0 {
  position: absolute;
  top: 0;
  left: 0;
}
.pos-l-0-b-0 {
  position: absolute;
  bottom: 0;
  left: 0;
}
/* setting-position-end */

/* setting-rotate-start */
.rotate-180 {
  transform: rotate(180deg);
}
/* setting-rotate-end */

/* menu-start */
.logo-head-custom img {
  position: relative;
  z-index: 3;
}
.logo-head-custom {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo-head-custom::before {
  content: "";
  position: absolute;
  width: 171px;
  height: 134px;
  background-color: var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  z-index: 2;
}
.menu ul li a {
  font-size: 16px;
  color: var(--color-title);
  font-family: "SVN-Gilroy-700";
}
.menu-main-wrap {
  width: 36%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w-menu {
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 13px;
}
.w-menu-active {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
}
.menu-padding-custom {
  padding: 0 31px !important;
}
/* menu-end */

/* about-start */
.dk-button {
  padding: 19px 49px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-primary);
  overflow: hidden;
  position: relative;
}
.dk-button::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 100%;
  top: 100%;
  z-index: 1;
  background-color: var(--color-primary);
  transition: all 0.4s ease;
  border-radius: 50%;
}
.dk-button:hover span {
  color: #fff;
}
.dk-button:hover svg {
  transform: rotate(45deg);
}
.dk-button:hover svg path {
  fill: #fff;
}
.dk-button span {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.dk-button svg {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.dk-button svg path {
  transition: all 0.4s ease;
}
.dk-button:hover:before {
  top: -90px;
  right: -60px;
  width: 300px;
  height: 300px;
}
.dk-button svg path {
  fill: var(--color-primary);
}
.about {
  background-image: url("../images/image-about-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: fit-content;
}
.about-text-space {
  margin-right: 7px;
}
.about-lorem {
  margin-top: 19px;
  margin-bottom: 35px;
}
.dk-line-cirle {
  position: relative;
  width: 71px;
  height: 2px;
  background-color: var(--color-primary);
}
.dk-line-cirle::before {
  position: absolute;
  content: "";
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dk-line-cirle::after {
  position: absolute;
  content: "";
  z-index: 2;
  width: 15px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-line-space {
  margin-top: 14px;
  margin-bottom: 37px;
}
.dk-icon {
  width: 11px;
  height: 11px;
}
.about-container {
  display: flex;
  justify-content: space-between;
}
.about-left {
  width: 50%;
  height: 100%;
  position: relative;
}
.about-left::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 40%;
  background-image: url("../images/about-airplane.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  left: -15%;
  top: 0;
}
.about-left::after {
  content: "";
  position: absolute;
  width: 15%;
  height: 60%;
  background-image: url("../images/about-dots.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  right: 28px;
  bottom: 20px;
}
.about-right {
  width: calc(100% - 50% - 62px);
}
.about-exp {
  position: absolute;
  padding: 8px 33px 14px 33px;
  border-left: 4px solid var(--color-primary);
  bottom: 77px;
  right: 74px;
  background: #fff;
  z-index: 3;
}
.about-exp::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: -5px;
}
.about-image-1 {
  width: 415px;
  height: 465px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.about-image-2 {
  width: 415px;
  height: 355px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.about-image-all:hover img {
  scale: 1.1;
}
.about {
  padding: 56px 0;
}
.about-lorem p {
  font-size: 16px;
  line-height: 25px;
  color: var(--color-lorem);
  text-transform: capitalize;
  font-family: var(--bs-font-sans-serif);
}
.tp-title {
  padding: 0px 23px;
  position: relative;
}
.tp-title::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.tp-title::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.tp-title-space {
  margin-bottom: 15px;
}
a.tp-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
}

.tp-button-icon {
  margin-left: 23px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tp-button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  left: -13px;
  z-index: 1;
}

.tp-button-icon svg {
  position: relative;
  z-index: 2;
}
.about-button-box-image {
  width: 189px;
  height: 90px;
  background-image: url("../images/image-about-small-right.png");
  background-size: cover;
  background-repeat: no-repeat;
}
/* about-end */

/* services-start */
.services-left {
  width: 50%;
  height: 100%;
}

.services-right {
  width: calc(100% - 50% - 62px);
  padding-top: 42px;
}
.services {
  padding: 57px 0;
}
.about-boxes {
  margin-top: 70px;
  margin-bottom: 47px;
}
.services-lorem {
  margin-top: 21px;
  margin-bottom: 42px;
}
.about-container:nth-child(odd) .services-left {
  order: 1;
}
/* services-end */

/* achie-start */
.achie-number span:first-child {
  margin-right: 16px;
}
.achie-number span:last-child {
  margin-left: 16px;
}
.achie-title {
  margin-top: 27px;
}
.achie-box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: var(--color-fourth);
  z-index: 1;
}
.achie-box:last-child:before {
  display: none;
}
.achie {
  background-color: #f7f7f7;
  padding: 50px 0;
}
/* achie-end */

/* crit-start */
.crit-left {
  width: 50%;
  height: 100%;
}
.crit-right {
  width: calc(50% - 62px);
}
.crit-right-top p {
  margin-top: 7px;
  margin-left: 13px;
}

.crit-right-top {
  margin-top: -30px;
}
.crit-box-right {
  margin-left: 16px;
}
.crit-box-left {
  width: 83px;
  height: 83px;
  min-width: 83px;
  min-height: 83px;
  position: relative;
}
.crit-box-left::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  z-index: 1;
  background-color: var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 7px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}
p.crit-title {
  margin-bottom: 11px;
}
.crit-box-space {
  margin-bottom: 22px;
}
.crit-box-space:last-child {
  margin-bottom: 0;
}
.crit-boxes {
  margin-top: 11px;
}
span.crit-right-top-num {
  -webkit-text-stroke: 2px #fff;
}
.crit {
  padding-top: 58px;
  padding-bottom: 34px;
}
/* crit-end */

/* sercost-start */
.sercost {
  padding-bottom: 35px;
  padding-top: 52px;
}
.sercost-boxes {
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px; */
  margin-top: 54px;
  margin-bottom: 27px;
}
.sercost-img {
  width: 380px;
  height: 440px;
}

.sercost-hover {
  width: 100%;
  padding: 17px;
  bottom: 0;
}

.sercost-hover-content {
  padding: 20px;
  backdrop-filter: blur(20px);
}
.sercost-icon-left {
  right: calc(100% + 30px);
}
.sercost-icon-right {
  left: calc(100% + 30px);
}
.sercost-boxes .slick-slide {
  margin: 0 15px;
}
/* sercost-end */

/* proc-start */
.proc-box-icon {
  width: 103px;
  height: 103px;
}
.proc-box-image {
  width: 230px;
  height: 190px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
}
.proc-box-title-space {
  margin-top: 21px;
}
.proc-image-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 29px;
  height: 73px;
  background-image: url("../images/image-double-arrow-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.proc-box:last-child .proc-image-wrap::before {
  display: none;
}
.proc-boxes {
  display: flex;
  justify-content: space-between;
  gap: 13px;
}
.proc {
  padding: 63px 0px;
  background-image: url("../images/image-proc-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.proc-boxes-space {
  margin-top: 58px;
}
/* proc-end */

/* projects-start */
.projects .wrap-content {
    max-width: 1400px;
}
.projects-content {
  padding: 21px 25px;
}
.projects-content-title-space {
  margin-bottom: 15px;
}
.projects-hover {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
}
/* .projects-image {
  width: 320px;
  height: 400px;
} */
.projects-boxes .slick-list {
    overflow: visible;
}
.projects {
  padding-top: 63px;
  padding-bottom: 133px;
}
.projects-boxes-space {
  margin-top: 63px;
}
.projects .slick-slide {
  margin: 0 20px;
}
.projects .slick-slide:nth-child(even) {
  position: relative;
  margin-top: 63px;
}
.projects .slick-slide:nth-child(odd) {
  position: relative;
  margin-top: 0px;
}
@keyframes animate-to-bottom {
  0%{
    top: 0;
  }
  100%{
    top: 63px;
  }
}
@keyframes animate-to-top {
  0%{
    top: 63px;
  }
  100%{
    top: 0;
  }
  
}
.projects .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  content: "";
  border-radius: 50%;
  text-align: center;
  border: 2px solid var(--color-lorem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.projects .slick-dots li button:after {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.projects .slick-dots li.slick-active button:before {
  border-color: var(--color-primary);
}
.projects .slick-dots li.slick-active button:after {
  background-color: var(--color-primary);
}
.projects .slick-dots {
  position: absolute;
  bottom: -75px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.projects-boxes .slick-track {
  /* margin: 0 180px; */
  /* padding-bottom: 63px; */
}
/* projects-end */

/* td-video-start */
.td-video-image {
  width: 78.3333%;
  height: 100%;
}
.td-video {
  padding: 60px 0;
}
.td-video::before {
  content: "";
  position: absolute;
  width: 37.5%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-image: url("../images/image-td-video-banner-left.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.td-video-right {
  position: absolute;
  width: 62.5%;
  height: 100%;
  z-index: 1;
  top: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.td-video-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 2;
}
/* td-video-end */

/* comments-start */
.comments-button-left {
  margin-right: 10px;
}
.comments-left {
  width: 37.5%;
  height: 100%;
}
.comments-right {
  width: calc(100% - 37.5% - 106px);
}
.comments-right-space {
  padding-top: 90px;
}
.comments-button {
  width: 50px;
  height: 50px;
}
.comments-button:hover svg {
  transform: rotate(45deg);
}
.comments-button:hover svg path {
  fill: #fff;
}
.comments-box-image {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
}
.comments-box-image-space {
  margin-right: 13px;
}
.comments-box-lorem-space {
  margin-top: 31px;
  margin-bottom: 35px;
}
.comments-box {
  padding: 32px 30px 70px 30px;
}
/* .comments-boxes{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
} */
.comments-boxes {
  margin-top: 66px;
  margin-bottom: 30px;
}
.blog-wrap-b {
  position: absolute;
  top: -10px;
  right: 20px;
}
.blog-block {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  padding: 11px;
  padding-top: 0;
  width: 25px;
  height: 43px;
  clip-path: polygon(100% 0, 100% 100%, 50% 75%, 0 100%, 0 0);
}
.blog-wrap-b::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 9px;
  background-color: #8d0006;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  right: calc(100% - 1px);
  top: 0;
  z-index: 2;
}
.comments-box-quote {
  right: 29px;
  bottom: 36px;
}
.comments-boxes .slick-slide {
  margin: 0 20px;
  padding-top: 9px;
}
/* commnets-end */

/* newsindex-start */
.blog-au {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

p.blog-au-by {
  margin-right: 27px;
}

.blog-dots {
  padding: 0 14px;
  position: relative;
}
.blog-dots::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.newsindex-title {
  margin-top: 7px;
}
.newsindex-cover {
  padding: 0px 22px 16px 22px;
}
.newsindex-right .newsindex-img {
  width: 100%;
  height: 100%;
}
.newsindex-right {
  width: calc(100% - 47% - 22px);
  gap: 23px;
}
.newsindex-left {
  width: 47%;
  height: 100%;
}
.newsindex {
  padding: 44px 0;
}
.newsindex-container {
  margin: 39px 0;
}
.newsindex-cover {
  height: 60%;
}
.newsindex-right .newsindex-box-image {
  width: 100%;
  height: 100%;
  display: block;
}

.newsindex-right .newsindex-image {
  width: 100%;
  height: 100%;
}
/* newsindex-end */

/* partnerindex-start */
.partnerindex {
  padding: 45px 0;
  background-color: #f7f7f7;
}
.partnerindex-boxes {
  margin-top: 42px;
}
.partnerindex-boxes .slick-slide {
  margin: 0 7px;
}
/* partnerindex-end */

/* footer-start */
.footer-box-icon {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  margin-right: 12px;
}
.footer-box {
  margin-bottom: 7px;
}
.footer-news-form-desc {
  line-height: 23px;
  margin-bottom: 24px;
}
.footer-news-input {
  padding: 17px;
  width: 100%;
  outline: none;
  margin-bottom: 12px;
  color: var(--color-lorem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.footer-news-input::placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-lorem);
}
button.footer-news-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  outline: none;
}

button.footer-news-submit svg {
  margin-left: 6px;
}
.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px !important;
}
.footer-title-c {
  margin-bottom: 37px;
}
.footer-lorem-c {
  margin-top: 16px;
  margin-bottom: 27px;
}
ul.social {
  margin-bottom: 31px;
  margin-top: 18px;
}
.footer-box-icon svg {
  margin-top: 14px;
  width: 15px;
}
.footer-boxes .footer-box:nth-child(1) .footer-box-icon svg {
  margin-top: 9px;
}
.footer-news-text {
  line-height: 30px;
  padding-left: 14px;
  position: relative;
  display: block;
  color: #fff;
  width: fit-content;
}
.footer-news-text::before {
  position: absolute;
  content: "";
  z-index: 1;
  width: 4px;
  height: 4px;
  min-width: 4px;
  min-height: 4px;
  border-radius: 50%;
  top: 14px;
  left: 0;
  background-color: #fff;
  transition: all 0.3s ease;
}
.footer-ul-services {
  margin-bottom: 34px;
}
.footer-maps-box {
  width: 58px;
  height: 58px;
}
.footer-maps-wrap::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  top: -11%;
  left: -11%;
  background-color: #e68e55;
  opacity: 0.5;
  z-index: 1;
  animation: pulse 1s linear infinite;
}
.footer-article {
  padding-top: 46px;
  background-image: url("../images/image-footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-maps {
  padding: 26px 0;
}
.footer-maps::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #e68e55 50%,
    transparent 100%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.footer {
  background-color: #141414;
}

/* footer-end */

/* breadcrumb-start */
.breadCrumbs {
  margin-top: 113px;
  background: #ebe7e7;
  padding: 10px 0;
}
.breadcrumb-item span {
  color: var(--color-title);
  font-weight: 600;
  font-size: 16px;
}
.breadcrumb-item.active span {
  color: var(--color-primary);
}
/* breadcrumb-end */

/* search-input */
.menu-box-search {
  width: 50px;
  position: absolute;
  top: calc(100% + 30px);
  right: -33px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  overflow: hidden;
}
.search-icon-active {
  display: none;
}
.close-icon-active {
  display: block !important;
}
.close-icon {
  display: none;
}
i#close-icon {
  font-size: 18px;
}
#menu-box-search {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-box-search-active {
  opacity: 1 !important;
  visibility: visible !important;
  width: 250px;
}

input.menu-box-input {
  width: 100%;
  padding: 15px 35px 15px 15px;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--color-lorem);
}

.menu-box-search .search-icon {
  position: absolute;
  color: #000;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.menu-box {
  width: 16px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: end;
}
/* menu-end */



/* news-start */
.news-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.news-gallery-box {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-gallery-space{
  margin-top: 20px;
}
/* news-end */