/* Start Global Rules */

@font-face {
  font-family: "Inter";
  src: url("../webfonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
}

@font-face {
  font-family: "Libre";
  src: url("../webfonts/LibreBodoni-Regular.ttf") format("truetype");
}

/* Scroll Style */

:root {
  --main-color: #34383a;
  --second-color: #f9af42;
  --alt-color: #34383a;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--alt-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--second-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--second-color);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color: #fff;
  position: relative;

}

::selection {
  background-color: var(--main-color);
  color: #ffff;
}

body {
  font-family: "Inter", "Libre", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden visible;
  color: #fff;
  width: 100vw;
}

a {
  text-decoration: none;
  pointer-events: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--alt-color);
}

li {
  display: flex;
  align-items: center;
  position: relative;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

/* End Global Rules */
/* Start Header */
header .logo {
  width: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: auto;
}

.logo img {
  width: 100%;
  height: 100%;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  padding: 25px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

span.menu-icon {
  display: flex;
  position: relative;
  width: 40px;
  height: 17px;
  cursor: pointer;
  transition: 0.5s;
  opacity: 1;
}

.menu span.menu-icon {
  align-self: flex-end;
}

span.menu-icon div {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  transition: 0.3s;
  border-radius: 3px;
}

span.menu-icon div.top {
  top: 0;
}

span.menu-icon div.mid {
  top: 50%;
  width: 50%;
  opacity: 1;
}

span.menu-icon div.bottom {
  top: 100%;
  width: 25%;
}

.menu {
  position: absolute;
  right: 0;
  top: 0;
  background: rgb(0 0 0 / 70%);
  padding: 64px 80px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  z-index: 0;
  opacity: 0;
  display: flex;
}

.links li {
  font-size: 24px;
  margin-bottom: 25px;
}

.links li a {
  color: #fff;
  transition: 0.3s;
}

.links li a.active {
  color: var(--second-color);
}

.links li a:hover {
  color: var(--second-color);
}

ul.links {
  margin-top: 95px;
}

/* End Header */

.screen1 {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.screen1 .lt-scn {
  position: relative;
  width: 40%;
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 1;
}

.screen1 .rt-scn {
  width: 60%;
  border-left: 1px solid rgb(114 185 52 / 65%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.main-slg h6,
.main-slg p {
  font-size: 19px;
  font-weight: 400;
  color: var(--second-color);
  margin: 25px 0;
}

.rt-scn p {
  width: 410px;
  font-size: 16px;
  margin-right: 210px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.main-slg p {
  color: #fff;
  width: 99%;
}

.main-slg h1 {
  font-size: 65px;
  font-family: "Libre";
  line-height: 0.95;
  font-weight: 500;
  margin: 0;
  text-shadow: -2px -2px 7px rgb(0 0 0 / 70%);
  text-transform: uppercase;
  position: relative;
}

img.screen {
  min-height: 100%;
  object-fit: cover;
}

.screen-img {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}

.main-slg h1 span {
  color: var(--second-color);
}

.main-slg {
  transform: translateX(24vw);
  position: relative;
  width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
}

.rt-scn:after {
  content: "";
  background: rgb(0 0 0 / 30%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.main-slg::before {
  content: "";
  position: absolute;
  left: -88px;
  top: 50%;
  width: 119px;
  height: 150%;
  border: 5px solid var(--second-color);
  transform: translateY(-50%);
  clip-path: polygon(0% 0%,
      0% 100%,
      100% 100%,
      100% 86%,
      30% 86%,
      30% 14%,
      100% 14%,
      100% 0);
}

.m-hidden {
  display: none;
  justify-content: center;
}

.lt-scn:after {
  content: "";
  background: rgb(0 0 0 / 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.swiper-wrapper {
  min-height: 100vh;
  height: auto;
}

.swiper-slide {
  height: auto;
}

.swipero {
  width: 100%;
  min-height: 100vh;
  height: auto;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 95%;
  gap: 30px;
  z-index: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--second-color) !important;
}

/* Start Footer */
footer {
  width: 100%;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 25px;
}

svg {
  height: 20px;
  width: auto;
}

.socials li {
  margin-bottom: 12px;
}

.socials li:last-child {
  margin-bottom: 5px;
}

.swiper-scrollbar {
  display: none;
}

svg path {
  fill: #f9af42;
}

.copy {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.copy span {
  color: var(--second-color);
}

/* End Footer */
/* Start About */

.about-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-img {
  width: 800px;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  margin-right: 7%;
}

.about-img img {
  height: 100%;
  width: auto;
}

.about ul {
  color: #fff;
  list-style-type: disc;
  padding: 0 1em;
}

.heading-scn div {
  font-size: 65px;
  font-family: "Libre";
  font-weight: 300;
  transform: rotate(-90deg);
  margin: 0;
  text-transform: uppercase;
  width: 120px;
  margin-left: 25px;
}

.about ul li {
  display: list-item;
}

.heading-scn {
  display: flex;
  justify-content: flex-start;
}

.heading-scn p {
  width: 20px;
  transform: rotate(-90deg);
  margin: 0;
}

.heading-scn p {
  width: 20px;
  transform: rotate(-90deg) translateX(-50px);
  margin: 0;
  color: var(--second-color);
}

.heading-scn p span {
  color: #fff;
}

.heading-scn {
  display: flex;
  justify-content: flex-start;
  transform: translateY(100%);
  position: relative;
}

.about {
  display: flex;
  flex-direction: column;
  margin: 0 70px;
  width: 600px;
}

.heading-scn:after {
  content: "";
  width: 2px;
  height: 750%;
  background: var(--second-color);
  position: absolute;
  top: -100%;
  left: 40%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0% 0%,
      0% 100%,
      0 100%,
      0 15%,
      100% 15%,
      100% 85%,
      0 85%,
      0 100%,
      100% 100%,
      100% 0%);
}

.about h4 {
  text-transform: uppercase;
  font-weight: 300;
  color: var(--second-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about h4 svg path {
  fill: var(--second-color);
}

/* End About */

/* Start Services */
.services-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.services {
  margin: auto;
  width: 1600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.services-section .heading-scn {
  transform: translateY(0%);
  position: absolute;
  left: 0;
  bottom: 35%;
}

.serv-img {
  height: 450px;
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
}

.services h6 {
  font-weight: 400;
  color: var(--second-color);
  font-size: 18px;
  margin: 15px 0;
  align-self: flex-start;
  text-transform: uppercase;
}

.serv-img img {
  height: 300px;
  width: 100%;
}

.service {
  border-bottom: 1px solid rgb(249 175 66 / 35%);
}

.service:nth-child(n) {
  border-right: 1px solid rgba(249 175 66 / 35%);
}

.service:nth-child(2n) {
  border-right: 0px solid rgb(249 175 66 / 35%);
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.services ul {
  height: 90px;
  color: #fff;
  list-style: disc;
  margin-bottom: 40px;
  align-self: flex-start;
}

.services li {
  display: list-item;
  margin: 10px 0;
}

/* End Services */

/* Start Project */

.swiper {
  width: 70%;
  height: 70%;
}

.projects .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: black;
}

body {
  background: #000;
}

.swiper {
  width: 100%;

  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  transition: 0.3s scale;
}

.mySwiper2 {
  height: 650px;
  width: 1050px;
  margin: 0;
  border: 2px solid var(--second-color);
  margin-left: 20px;
}

.mySwiper {
  height: 650px;
  width: 250px;
  box-sizing: border-box;
  padding: 10px 0;
  margin: 0;
}

.mySwiper .swiper-slide {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border: 2px solid var(--second-color);
  opacity: 0.6;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.projects .swiper-slide {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  height: 100%;
}

.projects .swiper-wrapper {
  min-height: auto;
  height: 650px;
}

.projects .mySwiper .swiper-slide img {
  height: 100%;
}

.projects {
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects .heading-scn {
  color: #fff;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 50%;
}

.projects-c .swiper-backface-hidden .swiper-slide {
  height: 20px;
}

.projects-c .swiper-wrapper {
  height: auto;
  min-height: auto;
}

.projects-c {
  margin-bottom: 25px;
}

.projects-c .swiper {
  height: auto;
  width: 1400px;
  overflow-y: visible;
  overflow-x: hidden;
}

.projects-c .swiper::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.projects-c .swiper-backface-hidden .swiper-slide {
  height: 20px;
  background: transparent;
  text-align: center;
}

.swiper-slide a {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
}

.projects-c {
  color: #fff;
}

.projects-c .swiper-slide a.active {
  color: var(--second-color);
}

.projects_by_cat .mySwiper3 .swiper-button-next.swiper-button-disabled,
.projects_by_cat .mySwiper3 .swiper-button-prev.swiper-button-disabled {
  display: block;
}

.projects_by_cat .swiper-navigation-disabled .swiper-button-next,
.projects_by_cat .swiper-navigation-disabled .swiper-button-prev {
  display: block !important;
}

.projects_by_cat .mySwiper3 .swiper-button-next.swiper-button-disabled,
.projects_by_cat .mySwiper3 .swiper-button-prev.swiper-button-disabled,
.projects_by_cat .mySwiper3 .swiper-button-prev.swiper-button-disabled,
.projects_by_cat .mySwiper3 .swiper-button-prev.swiper-button-disabled {
  display: block !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--second-color);
  font-size: 30px;
}

.project-name {
  color: #fff;
  z-index: 1;
  position: absolute;
  right: -200px;
  top: 500px;
  transform: rotate(90deg);
  font-size: 24px;
  font-weight: 100;
  font-family: "Inter";
  text-transform: uppercase;
  width: 500px;
}

.project-name h3 {
  margin: 0;
  font-weight: 200;
  text-align: start;
}

/* End Project */

/* Start Form */
.login-form {
  width: 500px;
  margin: auto;
  position: relative;
  margin-top: 100px;
}

.login-form .contain form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.login-form form img {
  width: 150px;
  height: auto;
}

.login-form .contain {
  padding: 20px 30px;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  box-shadow: 0px 0px 20px 2px rgb(0 0 0 / 7%);
}

.login-form h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 20px 0;
}

span.log-error {
  color: #ff5722;
  margin: 0 0 20px;
  font-size: 14px;
}

.input-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 20px;
}

.login-form input,
.login-form textarea {
  width: 100%;
  padding: 7px 10px;
  font-size: 16px;
  background: transparent;
  outline: 0;
  border: 0;
  border-bottom: 1px solid #cdcdcd;
  transition: 0.3s;
  resize: none;
}

.login-form input:focus,
.login-form textarea:focus {
  border-bottom: 1px solid var(--second-color);
}

.login-form input:focus~span {
  color: var(--second-color);
}

.login-form input[type="submit"] {
  background: var(--second-color);
  color: #fff;
  padding: 15px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 40px;
}

.login-form input[type="submit"]:hover {
  opacity: 0.8;
}

.logout-btn a {
  padding: 20px;
  background: #fff;
  box-shadow: 0px 0px 4px rgb(0 0 0 / 8%);
  font-size: 14px;
  cursor: pointer;
  color: #000;
}

.panel h2 {
  font-size: 24px;
  font-weight: 400;
  color: #4a4a4a;
  text-align: center;
}

.banners-table .table-row {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  height: 90px;
  font-size: 14px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
}

.banners-table .table-row:hover {
  background-color: #f7f7f7;
}

.table-row.table-head {
  background: #f3f3f3;
  align-items: center;
  height: 40px;
  color: #9d9d9d;
  font-weight: 600;
}

.table-cell:nth-child(2),
.table-cell:nth-child(5),
.table-cell:nth-child(6) {
  grid-column: span 2;
}

.table-cell:nth-child(3) {
  grid-column: span 2;
}

.table-cell:nth-child(4) {
  grid-column: span 2;
}

.table {
  border: 1px solid #f7f7f7;
  margin: 10px 0;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.table-cell:first-child {
  text-align: center;
  color: #cdcdcd;
}

.table-cell {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.section-head {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
}

button.add {
  background: var(--second-color);
  border: 0;
  outline: 0;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button.add:hover {
  opacity: 0.8;
}

.section-head .h5 {
  font-size: 24px;
  font-weight: 700;
  color: #6c6c6c;
  text-transform: uppercase;
  opacity: 0.5;
}

.table-cell a img {
  width: 23px;
  height: 23px;
  margin: 0 5px;
}

.img-cell {
  height: 90px;
  display: flex;
  padding: 10px;
  justify-content: flex-start;
}

.login-form.add_banner,
.login-form.add_info,
.login-form.add_client {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 4;
  padding: 50px;
  width: 1100px;
  margin: 0;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  z-index: 2;
}

.login-form.add_banner,
.login-form.add_services,
.login-form.add_project,
.login-form.add_client,
.login-form.add_info {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 4;
  padding: 30px 40px;
  width: 1100px;
  margin: 0;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  z-index: 2;
  box-shadow: 0px 0px 20px 6px rgb(0 0 0 / 5%);
  display: none;
}

.add_banner h2,
.add_services h2,
.add_project h2,
.add_client h2,
.add_info h2 {
  font-weight: 600;
  font-size: 24px;
  text-align: start;
  margin: 0 0 30px;
}

button.close {
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.login-form img {
  width: 23px;
  height: 23px;
}

.pop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.input-box span {
  font-size: 12px;
  margin-bottom: 5px;
  color: #898989;
}

.header-dash img {
  width: 75px;
}

.header-dash {
  display: flex;
  justify-content: space-between;
  height: 120px;
  align-items: center;
}

.header-dash .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

hr {
  background: #e5e5e5;
  border: 0;
  height: 0.5px;
  margin: 70px 50px;
}

span.note {
  position: absolute;
  bottom: -25px;
  color: #ff4e4e !important;
  right: 0;
}

.services-table .table-cell:nth-child(3) {
  grid-column: span 6;
}

.table-cell img {
  width: 100%;
  object-fit: cover;
}

.services-table .table-cell:nth-child(4) {
  grid-column: span 4;
}

.services-table .table-cell:nth-child(5) {
  grid-column: span 1 !important;
}

.blackscreen {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgb(102 102 102 / 35%);
  left: 0;
  top: 0;
  z-index: 1;
}

.section-head input[type="search"] {
  padding: 10px 15px;
  font-size: 14px;
  outline: 0;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  transition: 0.3s;
  width: 400px;
  margin-right: 20px;
}

.section-head input[type="search"]:focus {
  border: 1px solid var(--second-color);
}

.table-cell.link a {
  color: var(--second-color);
  padding: 15px;
  text-decoration: underline;
}

.container.panel {
  padding-bottom: 90px;
}

.projects-table .table-cell:nth-child(2) {
  grid-column: span 3;
}

.projects-table .table-cell:nth-child(7) {
  grid-column: span 2;
  display: flex;
  justify-content: flex-end;
  padding-right: 45px;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nprojects {
  margin-right: 30px;
  font-size: 14px;
}

.projectdata {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.projectdata a img {
  width: 20px;
  height: 20px;
}

.projectdata a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  font-size: 16px;
}

.projectdata .doc a {
  color: var(--second-color);
}

.projectdata .youtube a {
  color: #ea412c;
}

form.login-form.w100 {
  width: 100%;
}

form.login-form.w100 {
  width: 100%;
  margin-top: 0;
}

.inputs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form.w100 input[type="submit"] {
  flex: 1;
}

.login-form.w100 a {
  flex: 0.5;
  border: 1px solid var(--second-color);
  color: var(--second-color);
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 40px;
  text-align: center;
}

.imgprv {
  display: flex;
  width: 100%;
  overflow: auto;
  height: 250px;
  gap: 40px;
  padding: 0 0 7px;
}

.imgprv .input-box {
  justify-content: flex-end;
}

.imgprv .input-box {
  justify-content: flex-end;
  width: 300px;
}

.imgprv input[type="file"] {
  display: none;
  height: 100%;
}

.imgprv label.imglabel img {
  width: 100%;
  height: auto;
}

.imgprv label.imglabel {
  width: 300px;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--second-color);
  border-radius: 5px;
  position: relative;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgprv label.imglabel:hover:after {
  display: block;
}

.imgprv label.imglabel:after {
  transition: 0.3s;
  display: none;
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  background-image: url(../images/pencil.png);
  width: 25px;
  height: 25px;
  z-index: 2;
  background-size: cover;
}

.table-row.no-result {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #898989;
}

.editpage h2 {
  font-weight: 700;
  color: darkgrey;
  margin: 30px 0;
}

.input-box span.doc {
  position: absolute;
  right: 0;
  top: 50%;
}

.input-box .doc a {
  text-decoration: underline;
  padding: 0;
  border: 0;
  font-size: 14px;
}

.editpage .input-box {
  margin-bottom: 30px;
}

.input-box input[type="checkbox"] {
  display: none;
}

.input-box input[type="checkbox"]:checked~label {
  color: red;
  background: #f7d0d0;
}

.input-box input[type="checkbox"]:checked~label span {
  content: "Deleted";
  color: red;
}

label.dellabel {
  padding: 5px;
  background: #fff6f6;
  margin: 5px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ffeaea;
  cursor: pointer;
}

::file-selector-button {
  display: none;
}

::-webkit-file-upload-button {
  display: none;
}

input[type="file"] {
  padding-left: 50px;
  font-size: 12px;
}

input[type="file"]~.input-box {
  background-color: red;
}

.input-box.fl:after {
  content: "+";
  position: absolute;
  left: 10px;
  top: 46%;
  background: var(--second-color);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
}

.input-box.fl.lt {
  margin-top: 30px;
}

.imgprv:empty {
  display: none;
}

/* End Form */

/* Start Loading */
.spinner-overlay {
  display: block;
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.spinner {
  width: 70px;
  text-align: center;
}

.spinner-overlay__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.spinner__bounce {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  animation: bouncedelay 1.4s infinite ease-in-out both;
  animation-delay: 0s;
}

.spinner__bounce--1 {
  animation-delay: -0.32s;
}

.spinner__bounce--2 {
  animation-delay: -0.16s;
}

@keyframes bouncedelay {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.loading {
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--second-color);
}

/* End Loading */

/* Start Request Section */

.home .container .coming-soon {
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding-top: 65px;
  padding-bottom: 65px;
  margin-bottom: 50px;
}

h5,
h6 {
  font-size: 16px;
  font-weight: 400;
  color: #9f9f9f;
  margin: 0;
  margin-bottom: 10px;
}

h2 {
  font-size: 42px;
  margin: 0;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--alt-color);
}

.hline {
  position: relative;
  width: 50%;
  margin: 20px;
  z-index: 0;
}

#blackscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(4 4 4 / 27%);
  z-index: 2;
}

.hline hr {
  opacity: 0.2;
}

.hline span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 20px;
  color: #9f9f9f;
}

h4 {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--alt-color);
}

.coming-soon form {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.inputs {
  width: 100%;
  display: flex;
}

.inputs input,
.inputs textarea {
  flex: 1;
  margin: 10px;
  padding: 10px;
  border: 1px solid #34383a;
  outline: 0;
  resize: none;
  background-color: #f9af42;
}

.inputs textarea {
  height: 150px;
}

input[type="submit"] {
  padding: 15px 20px;
  border: 0;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
}

.inputs input:focus,
.inputs textarea:focus {
  border: 1px solid var(--main-color);
}

/* Success */

.trigger_popup {
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  padding: 20px;
}

#success_trigger {
  background: #32ba7c;
  position: fixed;
  top: 20%;
  left: 20%;
}

#success {
  /* display: none; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.popup-content {
  /* display: block; */
  width: 326px;
  height: 408px;
  background: white;
  box-shadow: 4px 4px 70px 10px rgb(0 0 0/11%);
  border-radius: 25px;
  padding-top: 30px;
}

.imgbox {
  text-align: center;
}

.img {
  width: 112px;
}

.title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: center;
  margin: auto;
}

#success .title {
  color: #32ba7c;
}

#error .title {
  color: #ff3636;
}

.para {
  font-weight: 500;
  width: 80%;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  margin: auto;
  color: #32ba7c;
}

.button {
  width: 50%;
  display: block;
  margin: 20px auto;
  border-radius: 25px;
  padding: 10px;
  text-decoration: none;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
}

#s_button {
  background: #32ba7c;
}

#e_button {
  background: #ff3636;
}

.home {
  position: relative;
  z-index: 1;
}

.coming-soon label {
  color: #1b1b1b;
}

.coming-soon h4 {
  margin: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #b6b6b6;
}

.multi-input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px;
  padding: 10px 5px 17px;
  overflow: auto hidden;
}

.multi-input::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
.multi-input::-webkit-scrollbar-track {
  background: var(--alt-color);
}

/* Handle */
.multi-input::-webkit-scrollbar-thumb {
  background: var(--second-color);
}

/* Handle on hover */
.multi-input::-webkit-scrollbar-thumb:hover {
  background: var(--second-color);
}

.multi-input input {
  display: none;
}

.multi-input .inputs {
  justify-content: flex-start;
  width: 100%;
}

.multi-input span {
  border-radius: 10px;
  padding: 7px 10px;
  border: 1px solid #e9e9e9;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  text-wrap: nowrap;
  width: 90%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.container.editpage {
  padding-bottom: 50px;
}

input[type="radio"]:checked~span {
  background-color: #f8f8f8;
  border: 1px solid var(--second-color);
}

input[type="checkbox"]:checked~span {
  background-color: #f8f8f8;
  border: 1px solid var(--second-color);
}

/* input#voice {
  opacity: 0;
} */

span.voice {
  margin: 10px;
  font-size: 14px;
}

span.voice span.gn {
  color: var(--second-color);
  font-size: 18px;
  cursor: pointer;
}

span.upload {
  color: var(--second-color);
  font-size: 14px;
}

span.error {
  color: #f44336;
  font-size: 14px;
}

.requests-table .table-row {
  grid-template-columns: repeat(18, 1fr);
}

.requests-table .table-cell:nth-child(2),
.requests-table .table-cell:nth-child(5),
.requests-table .table-cell:nth-child(7),
.requests-table .table-cell:nth-child(6),
.requests-table .table-cell:nth-child(9) {
  grid-column: span 2;
}

.requests-table .table-cell:nth-child(3) {
  grid-column: span 2;
}

.requests-table .table-cell:nth-child(9) {
  display: flex;
  justify-content: center;
}

.requests-table .table-cell:nth-child(5),
.requests-table .table-cell:nth-child(6) {
  grid-column: span 2 !important;
}

.requests-table .table-cell:nth-child(8) {
  grid-column: span 3;
}

.requests-table .table-extend .table-cell:nth-child(8),
.requests-table .table-extend .table-cell:nth-child(6) {
  transition: 0.3s;
  display: flex;
  height: 100%;
  align-items: center;
  cursor: pointer;
}

.requests-table .table-extend .table-cell:nth-child(8):active,
.requests-table .table-extend .table-cell:nth-child(6):active {
  width: 1200px;
  border: 1px solid #dcdcdc;
  justify-content: flex-start;
  padding-left: 15px;
}

.gn {
  color: var(--second-color);
}

.swiper-slide:hover .img {
  transform: scale(1.8);
}

/* End Request Section */
.chs-cat {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -70px;
  gap: 15px;
  font-size: 16px;
}

select#category {
  border-radius: 5px;
  border: 0;
  background: transparent;
  color: var(--second-color);
  cursor: pointer;
  padding: 7px;
  outline: 0;
}

span.item-box {
  padding: 10px;
  background: var(--second-color);
  margin: 0 10px 0 0;
  border-radius: 5px;
  color: #fff;
  text-transform: capitalize;
}

span.item-box:empty {
  display: none;
}

.banners-table .table-cell:nth-child(5),
.table-cell:nth-child(6) {
  grid-column: span 3;
}

.projects-table .table-cell:nth-child(5),
.projects-table .table-cell:nth-child(6) {
  grid-column: span 2;
}

.contact-section,
.clients-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-section .heading-scn div,
.clients-section .heading-scn div {
  font-size: 45px;
}

.contact-section .heading-scn:after,
.clients-section .heading-scn:after {
  content: "";
  width: 2px;
  height: 750%;
  background: var(--second-color);
  position: absolute;
  top: -100%;
  left: 54%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0% 0%,
      0% 100%,
      0 100%,
      0 7%,
      100% 7%,
      100% 91%,
      0 91%,
      0 100%,
      100% 100%,
      100% 0%);
}

ul.connects {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
}

p.en {
  direction: ltr !important;
}

li.connect a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}

li.connect a.socials {
  padding: 8px;
  background: var(--second-color);
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.socials img{
  width: 20px;
  background-color: #f9af42;
  border-radius: 50%;
  padding: 4px;
}

li.connect.or {
  opacity: 0.4;
}

a.phone {
  background: var(--second-color);
  padding: 9px;
  border-radius: 5px;
}

form.contact-form {
  margin-left: 100px;
  background: #fff;
  padding: 45px;
  color: var(--alt-color);
  border-radius: 5px;
  border: 1px solid #cfcfcf;
  width: 40%;
}

.contact-form h3 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
}

.contact-form p {
  text-transform: capitalize;
  opacity: 0.7;
}

.contact-form input[type="submit"] {
  margin: 10px 50%;
  transform: translateX(-50%);
  background: var(--second-color);
}

li.connect svg path,
li.connect svg circle {
  fill: #fff;
}

.socialos {
  display: flex;
  gap: 20px;
}

.clients-section .heading-scn:after {
  content: "";
  width: 2px;
  height: 858%;
  background: var(--second-color);
  position: absolute;
  top: -130%;
  left: 54%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0% 0%,
      0% 100%,
      0 100%,
      0 10%,
      100% 10%,
      100% 90%,
      0 90%,
      0 100%,
      100% 100%,
      100% 0%);
}

.client-box {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #cfcfcf;
  display: flex;
  color: var(--alt-color);
  padding: 20px;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s;
  border: 2px solid transparent;
}

.client-box:hover {
  opacity: 0.9;
  border: 2px solid var(--second-color);
}

.client-img {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.client-img img {
  width: 100%;
}

.client-info .name {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #cfcfcf;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: auto;
  margin-bottom: 30px;
  justify-content: center;
}

.head-hide {
  display: none;
  z-index: 1;
  margin: 0 auto;
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Libre";
  margin-bottom: 30px;
}

.clients-table .table-cell:nth-child(2) {
  grid-column: span 9;
}

.clients-table .table-cell:nth-child(3) {
  grid-column: span 3;
}

.clients-table .table-cell:nth-child(4) {
  grid-column: span 1;
}

.bg_container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(0 0 0 / 75%);
  z-index: 9999999;
  display: none;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.close_bg {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 50px;
}

.bg_img_cont {
  width: 100%;
  height: 90%;
  display: flex;
  justify-content: center;
}

img#bg_img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.close_bg {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 33px;
  font-weight: 300;
  background: var(--second-color);
  margin: 0;
  padding: 10px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: monospace;
  line-height: 0px;
  padding-bottom: 15px;
}

img.img.main_img {
  cursor: -webkit-zoom-in;
}

.close_bg {
  top: 27px;
  right: 27px;
  font-size: 26px;
  height: 40px;
  width: 40px;
}



/* Start New Projects */
.project-body {
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100vw;
  overflow: hidden;
  margin-bottom: 35px;
}

.head-select-category {
  position: relative;
  height: 50px;
  width: 600px;
}

.head-select-category::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  right: 20px;
  top: 15px;
  z-index: 1;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  transform: rotate(-45deg);
  transition: 0.5s;
  pointer-events: none;
}

.head-select-category.active::before {
  top: 22px;
  transform: rotate(-225deg);
}

.head-select-category input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  padding: 12px 20px;
  outline: 0;
  border: 0;
  text-transform: uppercase;
  font-size: 28px;
  color: #fff !important;
  padding-left: 0;
}

.head-select-category .option {
  position: absolute;
  top: 50px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 20px rgb(0 0 0 / 38%);
  border-radius: 5px;
  overflow: hidden;
  height: 0px;
  z-index: 2;
  transition: 0.5s;
}

.head-select-category.active .option {
  display: block;
}

.head-select-category .option div {
  padding: 12px 20px;
  cursor: pointer;
  color: var(--alt-color);
  text-transform: uppercase;
}

.head-select-category .option div:hover {
  background-color: var(--second-color);
  color: #fff;
}

.projects_by_cat .swiper-wrapper,
.projects_by_cat_loading .swiper-wrapper,
.project_body .swiper-wrapper {
  min-height: auto;
}

.projects_by_cat_loading,
.projects_by_cat {
  position: relative;
  z-index: -1;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-left: 150px;
}

.project_btn {
  background: transparent;
  outline: 0;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-size: 18px;
}

a.project_btn span {
  transition: 0.5s;
  font-size: 0.9rem;
  text-wrap: wrap;
  width: calc(var(--img-height) * (16/9)) !important;
  min-height: 25px;
}

:root {
  --img-height: 262px;
}

.project_img {
  width: 100%;
  padding: 4px 0;
  border: 2px solid #fff;
  border-right: 0;
  border-left: 0;
  height: var(--img-height);
  width: calc(var(--img-height) * (16/9)) !important;
  transition: 0.5s;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.num_projects {
  color: var(--second-color);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0px;
}

.project_head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.project_name {
  font-size: 30px;
  position: relative;
  font-weight: 700;
}

.project_name:after {
  content: "";
  position: absolute;
  right: -40%;
  bottom: -10px;
  height: 1px;
  width: 100%;
  background: var(--second-color);
}

.project_head .buttons {
  display: flex;
  gap: 25px;
  align-items: center;
}

.project_head .buttons a {
  background: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  color: var(--second-color);
}

.project_head .buttons a.youtube {
  color: #ea412c;
}

.mySwiper6 .swiper-slide.swiper-slide-active {
  scale: 1.5;
  z-index: 1;
  opacity: 1;
}

.mySwiper6 {
  overflow: visible;
  cursor: grab;
}

.project_body {
  margin-top: 178px;
}

:root {
  --img2-height: 440px;
}

.projectimg {}

.projectimg img {
  object-fit: contain;
  background: transparent;
}

span.cat_label {
  font-weight: 200;
  font-size: 18px;
  color: var(--second-color);
}

a>iframe {
  border-radius: 5px;
  width: 100%;
  height: 200px;
  border: 2px solid var(--second-color) !important;
}

/* End New Projects */
.about.contact p {
  font-size: 18px;
  direction: rtl;
}

span.branch {
  font-size: 20px;
  font-weight: 700;
  color: var(--second-color);
}

ul.connects.phones {
  flex-direction: row;
  padding: 0;
}

.mySwiper8 {
  height: 40px;
}

.mySwiper8 label {
  width: 100%;
}

.mySwiper8 .swiper-button-next:after,
.mySwiper8 .swiper-button-prev:after {
  color: var(--second-color);
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--second-color);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.loader {
  font-size: 7px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);

}

.loading-bar {
  display: flex;
  width: 100%;
  height: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}



@keyframes mulShdSpin {

  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em var(--second-color), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em #dcf2c8, -1.8em -1.8em 0 0em #c6eba6;
  }

  12.5% {
    box-shadow: 0em -2.6em 0em 0em #c6eba6, 1.8em -1.8em 0 0em var(--second-color), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em #dcf2c8;
  }

  25% {
    box-shadow: 0em -2.6em 0em 0em #dcf2c8, 1.8em -1.8em 0 0em #c6eba6, 2.5em 0em 0 0em var(--second-color), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }

  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em #dcf2c8, 2.5em 0em 0 0em #c6eba6, 1.75em 1.75em 0 0em var(--second-color), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em #dcf2c8, 1.75em 1.75em 0 0em #c6eba6, 0em 2.5em 0 0em var(--second-color), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }

  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em #dcf2c8, 0em 2.5em 0 0em #c6eba6, -1.8em 1.8em 0 0em var(--second-color), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }

  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em #dcf2c8, -1.8em 1.8em 0 0em #c6eba6, -2.6em 0em 0 0em var(--second-color), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }

  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em #dcf2c8, -2.6em 0em 0 0em #c6eba6, -1.8em -1.8em 0 0em var(--second-color);
  }
}

ul.cats_list {
  position: fixed;
  left: 0;
  top: 20vh;
}

ul.cats_list li a {
  color: #fff;
  padding: 20px 50px;
  position: relative;
  transition: 0.3s;
}

ul.cats_list li a:hover {
  color: var(--second-color);
}

.slide-up {
  opacity: 0;
  animation-name: slideUp;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
    -webkit-transform: translate3d(0, 80px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
}

ul.cats_list li a.active {
  color: var(--second-color);
}

ul.cats_list li a.active:after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  background: #fff;
  width: 40px;
  height: 4px;
}

.project_img:hover {
  border-color: var(--second-color);
}

.projects_by_cat.project_page {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.projects_by_cat.project_page h2 {
  letter-spacing: 0;
  color: white;
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}

.projects_by_cat.project_page .actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin: 10px 10px;
}

.projects_by_cat.project_page .actions a {
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 7px 15px;
  color: #fff;
}

.mySwiper88 {
  height: 650px;
  width: 100%;
  margin: 0 !important;
  border: 2px solid var(--second-color);
}

.mySwiper99 {
  height: 200px;
  width: 100%;
  margin: 0 !important;
  margin-bottom: 30px !important;
}

.mySwiper99 .swiper-wrapper,
.mySwiper88 .swiper-wrapper {
  height: 100%;

}

.actions a img {
  width: 20px;
}

.projects_by_cat.project_page .actions a {
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 7px 15px;
  color: #fff;
  gap: 10px;
}

.mySwiper99 .swiper-wrapper .swiper-slide {
  border: 1px solid var(--main-color);
}

.mySwiper99 .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--second-color);
}

.mySwiper88 .swiper-wrapper .swiper-slide img {
  object-fit: contain;
  cursor: zoom-in;
}

.cats_list_mobile {
  padding: 0 45px !important;
}

.cats_list_mobile .swiper-wrapper .swiper-slide,
.cats_list_mobile .swiper-wrapper {
  height: 30px !important;
}

.cats_list_mobile .swiper-wrapper .swiper-slide {
  justify-content: center;
  display: flex;
  text-align: center;
  align-items: center;
}

.cats_list_mobile .swiper-wrapper .swiper-slide a.active {
  color: var(--second-color);
}

.cats_list_mobile .swiper-wrapper .swiper-slide a.active:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 125%;
  background: #fff;
  width: 50%;
  height: 1px;
  transform: translateX(-50%);
}

.cats_list_mobile .swiper-button-next,
.cats_list_mobile .swiper-button-prev {
  outline: 12px solid #000;
}

.cats_list_mobile {
  display: none;
}

/* #Navigation
================================================== */


#menu-wrap{
  position: fixed;
padding-bottom:10px;
width:100%;
z-index:500;
top:0;
left:0;
}

.menu-back{
background:rgba(60,60,60,.9);
}


.cbp-af-header {
-webkit-transition : all 0.5s ease-out;
-moz-transition : all 0.5s ease-out;
-o-transition :all 0.5s ease-out;
transition : all 0.5s ease-out;
}

.cbp-af-header.cbp-af-header-shrink {
background:rgba(60,60,60,1);
}
.cbp-af-header.cbp-af-header-shrink .logo{
width:116px;
height:60px;
background:url('../images/logo\ alfa.png') no-repeat center center;
background-size: 99px 80px;
-webkit-transition : all 0.5s ease-out;
-moz-transition : all 0.5s ease-out;
-o-transition :all 0.5s ease-out;
transition : all 0.5s ease-out;
}

.cbp-af-header.cbp-af-header-shrink ul.slimmenu {
margin-top:1px;
margin-bottom:0;
-webkit-transition : all 0.5s ease-out;
-moz-transition : all 0.5s ease-out;
-o-transition :all 0.5s ease-out;
transition : all 0.5s ease-out;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li:first-child {
background:none;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li ul li:first-child { 
background:none; }
ul.slimmenu li ul li a {
  color: #fff;
}
ul.slimmenu li ul li a:hover {
}
ul.slimmenu li ul li { 
background:none;
padding-left:0; }
ul.slimmenu li ul {
background:rgba(60,60,60,.95);
box-shadow: 0 0 15px rgba(0,0,0,0.1);
}






.logo{
position:absolute;
width:146px;
height:80px;
z-index:10000;
left:10px;
top:10px;
background:url('../images/logo\ alfa.png') no-repeat center center;
background-size: 99px 80px;
}



.menu-collapser {
  position: relative;
  width: 100%;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box
}
.collapse-button {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 40px;
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.075);
  padding: 7px 10px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-size: 14px;
  text-align: center;

  transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box
}
.collapse-button:hover, .collapse-button:focus {
  background-image: none;
  background-color: #040404;
  color: #FFF;
}
.collapse-button .icon-bar {
  background-color: #fff;
  border-radius: 1px 1px 1px 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  display: block;
  height: 2px;
  width: 18px;
  margin: 2px 0;
}

ul.slimmenu {
padding-top:10px;
padding-right:10px;
text-align:right;
margin-top:13px;
margin-bottom:10px;
}
ul.slimmenu li {
  position: relative;
  display: inline-block;
background:url('../images/line.png') 0 14px no-repeat;
background-size:15px 10px;
padding-left:20px;
}
ul.slimmenu > li {}
ul.slimmenu > li:first-child { border-left: 0 }
ul.slimmenu > li:last-child { margin-right: 0 }
ul.slimmenu li a {
  display: block;
  color: #fff;
  padding: 10px 0px;
cursor:pointer;
  margin: 0px 12px;

font-weight:700;
text-transform:uppercase;
  border-bottom:1px solid rgba(0,0,0,0);
  font-size: 12px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear; 
}
ul.slimmenu li a:hover {
  text-decoration: none;
}
ul.slimmenu li {
}
ul.slimmenu li:first-child {
background:none;
}

ul.slimmenu li .sub-collapser {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  z-index: 999;
  cursor: pointer;
}
ul.slimmenu li .sub-collapser:before {
display:none;
}
ul.slimmenu li .sub-collapser > i {
display:none;
}
ul.slimmenu li ul {
  margin: 0;
  list-style-type: none;
}
ul.slimmenu li ul a{
  font-size:10px;
}
ul.slimmenu li ul li:first-child { 
background:none; }
ul.slimmenu li ul li {
background:none;
padding-left:0; }
ul.slimmenu li > ul {
  display: none;
  position: absolute;
text-align:left;
  left: 0;
  top: 100%;
  z-index: 999;
  width: 150%;
}
ul.slimmenu li > ul > li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  width: 100%;
}
ul.slimmenu.collapsed {
padding:0;
margin:0;
}
ul.slimmenu.collapsed li {
  display: block;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
ul.slimmenu.collapsed li a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box
}
ul.slimmenu.collapsed li .sub-collapser {
  height: 40px;
}
ul.slimmenu.collapsed li > ul {
  display: none;
  position: static;
}



.tipper { height: 1px; left: -99999px; position: absolute; pointer-events: none; top: -99999px; width: 1px;z-index:100000; }
.tipper .tipper-content { background: rgba(0, 0, 0, 0.95);box-shadow: 0 0 25px rgba(0,0,0,0.5);text-transform:uppercase; border-radius: 3px; color: #fff; display: block; float: left; font-size: 10px; margin: 0; padding: 6px 20px; position: relative; white-space: nowrap; }
.tipper .tipper-caret { background: url('../images/tipper-icon.png') no-repeat; display: block; height: 11px;  position: absolute; width: 100%; }

.tipper.right .tipper-content { box-shadow: 1px 0 3px rgba(0, 0, 0, 0.25); }
.tipper.right .tipper-caret { background-position: left center; left: -5px; top: 0; }

.tipper.left .tipper-content { box-shadow: -1px 0 3px rgba(0, 0, 0, 0.25); }
.tipper.left .tipper-caret { background-position: right center; right: -5px; top: 0; }

.tipper.top .tipper-caret,
.tipper.bottom .tipper-caret { display: block; float: none; height: 5px;  width: 12px;margin-left:-6px; }

.tipper.top .tipper-content { box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.25); }
.tipper.top .tipper-caret { background-position: center bottom; bottom: -5px; left: 0; text-align:center;}

.tipper.bottom .tipper-content { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25); }
.tipper.bottom .tipper-caret { background-position: center top; top: -5px; left: 0; }

/* #Home
================================================== */
@media only screen and (max-width: 800px) {

  .logo{
    width:80px;
    height:50px;
    left:10px;
    top:10px;
    background:url('../images/logo\ alfa.png') no-repeat center center;
    background-size:80px 50px;
  }
  .cbp-af-header.cbp-af-header-shrink .logo{
    width:80px;
    height:50px;
    left:10px;
    top:10px;
    background:url('../images/logo\ alfa.png') no-repeat center center;
    background-size:80px 50px;
    -webkit-transition : all 0.5s ease-out;
    -moz-transition : all 0.5s ease-out;
    -o-transition :all 0.5s ease-out;
    transition : all 0.5s ease-out;
  }
  .cbp-af-header.cbp-af-header-shrink ul.slimmenu li a {
      border-bottom:none;
  }
  .cbp-af-header.cbp-af-header-shrink ul.slimmenu li a:hover {
      border-bottom:none;
    background:none;
  }
  .cbp-af-header.cbp-af-header-shrink ul.slimmenu li {
    background:none;
  }
  ul.slimmenu li a: {
      border-bottom:none;
  }
  ul.slimmenu li a:hover {
      border-bottom:none;
    background:none;
  }
  ul.slimmenu li {
    background:none;
  }
  ul.slimmenu li > ul {
      width: 100%;
    text-align:right;
  }
  }
  
