@font-face {
  font-family: 'Bebas';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("../font/BebasNeue-Regular.woff2") format('woff2');
  /* src: url("../font/BebasNeue-Regular.ttf") format('ttf'); */

}

@font-face {
  font-family: "Sharp";
  src: url("../font/SharpGroteskBook15.woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
    font-family: "Sharp";
    src: url("../font/SharpGroteskLight15.woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  } */

:root {
  --Bebas: "Bebas";
  --sharp: "Sharp";
  --primary-color: #101010;
  --secondary-color: #000000;
  --color-gray: #545454;
  --red: #d50e0e;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  list-style: none;
  text-decoration: none;
}

ul {
  padding-inline-start: 0;
}

body {
  background-color: var(--secondary-color);
  max-height: 100vh;
  font-family: var(--Bebas);
}

*,
*::after,
*::before {
  outline: none;
  border: none;
  text-decoration: none;
  margin-block: 0;
  margin-inline: 0;
  list-style: none;
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container-x {
  padding-right: 100px;
  padding-left: 100px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: all 2s;
}

#preloader .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  transition: transform 1s;
}

#preloader .content {
  position: relative;
  z-index: 1;
  transition: opacity .5s;
}

#preloader.hide {
  z-index: -1;
}

#preloader.hide .background {
  transform: translateY(100%);
  transition: transform 1s;
}

#preloader.hide .content {
  opacity: 0;

}





#preloader video {
  object-fit: contain;
  width: 240px;
}

.content {
  position: fixed;
  width: 250px;
  height: 250px;
  min-height: 102px;
}

#preloader .small-circle {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transform-origin: 50%;
  animation: 1s draw-small infinite alternate;
}

@keyframes draw-small {
  0% {
    stroke-dashoffset: 0;
    transform: rotate(0deg);
  }

  100% {
    stroke-dashoffset: 210;
    transform: rotate(360deg);
  }
}

#preloader .big-circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transform-origin: 50%;
  animation: 1s draw-big infinite alternate 0.5s;
}

@keyframes draw-big {
  0% {
    stroke-dashoffset: 0;
    transform: rotateY(180deg) rotate(360deg);
  }

  100% {
    stroke-dashoffset: 240;
    transform: rotateY(180deg) rotate(0deg);
  }
}


/* header */
header {
  background-color: var(--secondary-color);
}

header .left-header {
  padding-bottom: 16px;
}

header .logo {
  width: 95px;
  height: 110px;
  border-top: 5px solid var(--red);
}

header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header .text-logo {
  color: white;
  font-size: 34px;
  line-height: 28px;
}

.header-vertical-line {
  width: 1px;
  height: 70px;
  background-color: #8b8b8b;
}

.menu-btn-2 {
  height: 32px;
  width: 35px;
  cursor: pointer;
}

.menu-btn-2 span,
.menu-btn-2 span::before,
.menu-btn-2 span::after {
  background: #ffff;
  content: "";
  position: absolute;
  width: 32px;
  height: 2px;
  /* margin-top: 13px; */

  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotateY(180deg);

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.menu-btn-2 span::before {
  margin-top: -8px;
}

.menu-btn-2 span::after {
  margin-top: 8px;
}

.menu-btn-2.active span {
  background: transparent;
}

.menu-btn-2.active span::before {
  margin-top: 0;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-btn-2.active span::after {
  margin-top: 0;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-btn-2.active {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.lang {
  color: #ffff;
  font-size: 25px;
  font-family: var(--sharp);
  margin-top: 4px;
}

/* mobile menu  */

header .right-header.collapsible .collapse-content {
  position: fixed;
  top: 126px;
  left: 0;
  width: 100%;
  overflow: hidden;
  /* height: calc(100vh - 126px);
    visibility: hidden;
    opacity: 0; */
  height: 0;
  z-index: 0;
  background: rgba(252, 252, 252, 0);
  transition: all .3s;
}

header .right-header.collapsible.collapsible--expanded .collapse-content {
  /* opacity: 1;
    visibility: visible; */
  height: 100vh;
  background: var(--primary-color);
  transition: all 0.5s;

}

.mobile-menu-item a .mobile-menu-item-title {
  color: white;
  font-size: 46px !important;
}

.mobile-menu-social-media li a {
  font-size: 18px;
  color: #545454;
  font-weight: 600;
}

.email,
.phone-number {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s;
  font-family: var(--sharp);
}

.email:hover,
.phone-number:hover {
  color: var(--red);
}

.mobile-menu-social-media-item {
  background-color: #101010;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
}

.mobile-menu-social-media-item>a {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.blog-cnt .blog-main-title {
  font-size: 56px;
  margin-left: 8px;
}

.mobile-menu-social-media-item a img {
  width: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.mobile-menu-social-media-item:hover {
  background-color: #101010;
  transition: all 0.3s;
}

/* main */
/* 
main {
  margin-top: 126px;
} */


.slide {
  padding-left: 100px;
  padding-top: 126px;
}

.hero-title h6 {
  font-size: 45px;
  color: #8b8b8b;
  transition: all 0.5s;
  line-height: 37px;
  /* letter-spacing: -2px; */
  padding-right: 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}

.hero-title span {
  font-size: 18px;
  color: #ffffff;
  font-family: var(--sharp);
}

/* .d-flex>div:nth-child(3) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  } */

.hero-left .hero-description {
  height: 234px;
}

.hero-description-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  border-left: 1px solid #fff;
  padding-left: 16px;
  margin-right: 16px;

}

/* 
.hero-description ,.category .mobile-more-tag{
  opacity: 0;
  animation: opacity 0s 5s forwards;

  
}


@keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
} */


/* .content  {
  width: 100%;
  height: 100%;
} */
.singleProject {
  margin-top: 126px;
}

.hero-left .hero-description-text {
  color: #ffffff;
  font-size: 17px;
  font-family: var(--sharp);
  line-height: 26px;
  height: fit-content;
  margin-bottom: -24px;
}

.hero-left span.custom-btn {
  float: right;
  padding: 1px 0 0 0;
  margin-right: 8px;
  margin-top: -6px;
}

.hero-left .custom-btn .custom-btn-text {
  margin-top: 2.5px;
  color: #fff;
  font-size: 20px;
}

.allBlog .testCat .custom-btn .custom-btn-text {
  font-size: 24px;
}

.allBlog .testCat>.row {
  margin-bottom: 32px;
  border-bottom: 1px solid #ffffff73;
}

.custom-btn .custom-btn-text {
  margin-top: 2.5px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  align-items: center;
  display: flex;
}

.all-project.custom-btn .custom-btn-text {
  font-size: 28px;
}

#submit.custom-btn .custom-btn-text {
  font-weight: 600;
  color: #000;
}

.email.custom-btn .custom-btn-text {
  font-size: 22px;
}

.phone-number.custom-btn .custom-btn-text {
  font-size: 22px;
}

.hero-left span.custom-btn span {
  color: #fff;
  align-items: center;
}

.hero-description-arrow {
  width: 18px;
  height: 18px;
}

.hero-vertical-line {
  width: 1px;
  height: 100px;
  background-color: #8b8b8b;
}

.hero-img {
  transition: filter 0.3s ease;
}

.grayscale {
  filter: grayscale(1) brightness(0.4);
  transition: all 0.3s;
}

/* .hero-right .hero-img {
    filter: grayscale(1) brightness(0.6);
    transition: all 0.5s;
  }
  .hero-right .hero-img .slide.hero-section .row:hover .hero-img,
  .slide .row:hover .hero-img {
    filter: grayscale(0);
  } */

.slide.hero-section .row:hover .hero-title h6,
.slide .row:hover .hero-title h6 {
  /* font-size: 40px; */
  color: var(--red);
}

.hero-right {
  margin-left: -26.5%;
}

.hero-img {
  height: 264px;
  width: 100%;
}

.hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  /* object-position: 10rem center; */
}

/* .slide.hero-section .row:hover .hero-img img,
  .slide .row:hover .hero-img img {
    transform: translateX(309px);
    transition: all 0.5s;
  } */

.hero-col-1 {
  width: 5%;
}

.pr-0 {
  padding-right: 0 !important;
}

.all-project {
  background-color: var(--secondary-color);
}

.all-project {
  margin-top: 100px;
  /* padding-bottom: 100px; */
}

.the-arrow {
  width: 64px;
  transition: all 0.3s;
}

.the-arrow.-left {
  position: absolute;
  top: 50%;
  left: 0;
}

.the-arrow.-left>.shaft {
  width: 0;
  background-color: #ffffff;
}

.the-arrow.-left>.shaft:before,
.the-arrow.-left>.shaft:after {
  width: 0;
  background-color: #ffffff;
}

.the-arrow.-left>.shaft:before {
  transform: rotate(0);
}

.the-arrow.-left>.shaft:after {
  transform: rotate(0);
}

.the-arrow.-right {
  top: 50%;
  overflow: visible;
}

.the-arrow.-right>.shaft {
  width: 46px;
  transition-delay: 0.2s;
  overflow: visible;
}

.the-arrow.-right>.shaft:before,
.the-arrow.-right>.shaft:after {
  width: 8px;
  transition-delay: 0.3s;
  transition: all 0.6s;
}

.the-arrow.-right>.shaft:before {
  transform: rotate(40deg);
}

.the-arrow.-right>.shaft:after {
  transform: rotate(-40deg);
}

.the-arrow>.shaft {
  background-color: #ffffff;
  display: block;
  height: 1px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0;
  will-change: transform;
}

.the-arrow>.shaft:before,
.the-arrow>.shaft:after {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transition-delay: 0;
}

.the-arrow>.shaft:before {
  transform-origin: top right;
}

.the-arrow>.shaft:after {
  transform-origin: bottom right;
}

.animated-arrow {
  display: inline-block;
  color: #ffffff;
  font-size: 1.25em;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}

.animated-arrow:hover {
  color: #eaeaea;
}

.animated-arrow:hover>.the-arrow.-left>.shaft {
  width: 64px;
  transition-delay: 0.3s;
  background-color: #eaeaea;
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before,
.animated-arrow:hover>.the-arrow.-left>.shaft:after {
  width: 8px;
  transition-delay: 0.3s;
  background-color: #eaeaea;
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before {
  transform: rotate(40deg);
}

.animated-arrow:hover>.the-arrow.-left>.shaft:after {
  transform: rotate(-40deg);
}

/* .animated-arrow:hover>.main {
    transform: translateX(80px);
  }
  
  .animated-arrow:hover>.main>.the-arrow.-right>.shaft {
    width: 0;
    transform: translateX(200%);
    transition-delay: 0;
  }
  
  .animated-arrow:hover>.main>.the-arrow.-right>.shaft:before,
  .animated-arrow:hover>.main>.the-arrow.-right>.shaft:after {
    width: 0;
    transition-delay: 0;
    transition: all 0.3s;
  }
  
  .animated-arrow:hover>.main>.the-arrow.-right>.shaft:before {
    transform: rotate(0);
  }
  
  .animated-arrow:hover>.main>.the-arrow.-right>.shaft:after {
    transform: rotate(0);
  } */

.animated-arrow>.main {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.animated-arrow>.main>.text {
  margin: 0 16px 0 0;
  line-height: 1;
  font-size: 30px;
  font-weight: 100;
}

.animated-arrow>.main>.the-arrow {
  position: relative;
}

/* footer */
footer {
  padding-top: 100px;
  padding-bottom: 40px;
  background-color: var(--secondary-color);
}

.logo-footer {
  width: 100px;
  height: fit-content;
  border-bottom: 5px solid var(--red);
  ;
}

.logo-footer img {
  width: 100%;
  object-fit: contain;
  padding-bottom: 7px;
}

.social-media-item {
  background-color: #000;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  transition: all 0.3s;
}

.social-media-item:hover {
  background-color: #000;
  transition: all 0.3s;
}

.social-media-logo {
  width: 20px;
  height: 30px;

}

.social-media-logo img {
  width: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.social-media-item:hover .social-media-logo img {
  /* scale: 1.2; */
  transition: all 0.3s;
}

/*
  .adrian-img {
    width: 35px;
    height: 35px;
  }
  
  .adrian-img img {
    width: 100%;
    object-fit: cover;
  }
  
  .adrian-text {
    color: white;
    font-size: 16px;
  } */
.footer-pragragh {
  font-size: 18px;
  color: white;
  padding-left: 40px;
  padding-right: 40px;
  font-family: var(--sharp);
}

.footer-adrian-logo img {
  height: 28px;
}

.footer-adrian-logo {
  width: 154px;
}

.footer-adrian-logo .custom-btn-text {
  font-size: 14px;
  font-family: var(--sharp);
}

.footer-address,
.footer-number a,
.footer-menu li>a,
.copy-right {
  font-size: 18px;
  color: white;
  font-family: var(--sharp);
  transition: all .3s;
}

.footer-menu li>a:hover,
.footer-number a:hover {
  color: var(--red);
  transition: all .3s;
  font-weight: 900;
}


.footer-menu-line {
  width: 1px;
  height: 15px;
  background-color: white;
  position: relative;
  top: 50%;
  transform: translateY(4%);
}

.footer-menu-line:last-child {
  background-color: transparent;
}

/* all project page */
.pagination {
  --bs-pagination-focus-box-shadow: unset !important;
  --bs-pagination-focus-color: #000000 !important;
}

.page-link {

  padding: unset;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--sharp);
  background-color: transparent;
  border: unset;
}

.pagination .custom-btn .custom-btn-text {
  color: rgb(255 255 255 / 50%) !important;

}

.page-link:focus {
  background-color: rgba(255, 255, 255, 0);
}

.page-link.active {
  background-color: rgba(255, 255, 255, 0);
  /* box-shadow: 0 0 0 0.25rem rgb(211 211 211 / 25%) !important; */
  z-index: 1;
  color: rgb(255, 255, 255) !important;
}

.page-link.active.custom-btn .custom-btn-text {
  color: rgb(255, 255, 255) !important;
}

.pagination .custom-invisible span.custom-btn-text {
  color: #fff !important;
}

.pagination .page-link:hover {
  z-index: 2;
  color: #ffffff !important;
  background-color: #35353500 !important;
  border: unset !important;
}

.active-tab {
  height: 1px;
  width: 100%;
  background-color: var(--red);
  position: absolute;
  bottom: -1px;
}

.page-item-arrow span {
  font-size: 27px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.page-link.active {
  border: unset !important;
}

/* single project page */
.singleProject {
  /* padding-top: 100px; */
  padding-bottom: 0px;
}

/* h6.project-name {
    font-weight: 900;
    font-size: 40px;
  }
  
  .main-image-single-project {
    width: 100%;
    height: 770px;
  }
  
  .main-image-single-project img {
    width: 100%;
    object-fit: cover;
  }
  
  .peoject-creator {
    font-size: 25px;
    font-weight: 900;
  }
  
  .project-client {
    font-size: 18px;
    font-weight: 600;
  }
  
  .singleProject hr {
    color: white;
    border-top: 2px solid;
  } */

.hero-section-single-project {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #000000),
    url("../img/p1.jpg");
  height: 650px;
  padding-left: 100px;
}

.project-name {
  font-size: 44px !important;
  line-height: 40px;
}

.project-creator {
  line-height: 6px;
}

.project-creator h5 {
  font-size: 30px;
  font-weight: 500;
}

.project-creator span {
  font-size: 22px;
  font-family: var(--sharp);
}


.single-project-discription p {
  font-size: 21px;
  line-height: 36px;
  max-width: 1000px;
  font-family: var(--sharp);
}

.project-images .project-image-cover {
  width: 1000px;
  height: 100%;
}

.all-prjt {
  padding-top: 126px;
}

/* contact us page */
.contactUs {
  /* padding-top: 126px; */
  padding-bottom: 100px;
}

.contactUs h6.title {
  font-size: 60px;
}

.right-section-contact h6.title {
  padding-right: 50px;
}

.left-section-contact-discription {
  font-size: 22px;
  font-family: var(--sharp);
}

.left-section-contact-address {
  font-size: 22px;
  padding-right: 15rem;
  font-family: var(--sharp);

}

.form-control {
  background-color: transparent !important;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid hsl(0deg 0% 51% / 50%);
  font-family: var(--sharp);
}

.right-section-contact ::placeholder {
  color: #ffffff;
}

.form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid white;
  color: white;
}

.form-control:focus::placeholder {
  color: white;
}

form .btn {
  background-color: rgb(255, 255, 255);
  color: black;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sharp);
}

form .btn:hover {
  background-color: #fff;
}

.text-gray {
  color: #8b8b8b;
}

/* all blog page */
.allBlog {
  padding-top: 0px;
}

.blog {
  /* background-image: linear-gradient(135deg, rgba(0, 0, 0, 0) 60%, #fff); */
  /* border-radius: 20px; */
  padding: 1px;
  overflow: hidden;
  height: 356px;
}

footer .custom-btn .custom-invisible .white-text span {
  color: #ffff;
}

.mobile-menu-information .custom-btn .custom-invisible .white-text span {
  color: #fff;
}

.footer-adrian-logo.custom-btn .custom-invisible .white-text span {
  color: #fff !important;
  font-weight: 500 !important;
}

.testCat {
  z-index: 2;
  position: relative;
}

.mobile-menu-information .custom-btn span.custom-btn-text {
  font-weight: 400 !important;
}

header {
  z-index: 10;
}

.men-test.active-tab>div.text-center.py-2 {
  border-bottom: 1px solid var(--red);
}

.recently-blog .blog {
  height: 290px;
}

.recently-blog .blog-content {
  padding-left: 12px;
}

.recently-blog .blog-img {
  padding-right: 12px;
}

.recently-blog .blog-content .blog-pragragh span {
  -webkit-line-clamp: 4;
}

.my-element .blog,
.allBlog .small-blog .blog {
  transition: all .3s !important;
}

.my-element .blog:hover .blog-card,
.allBlog .small-blog .blog:hover .blog-card {
  transform: translateY(-56px) !important;
  transition: all .3s !important;
}

.my-element .blog-card,
.allBlog .blog-card {
  /* background-image: linear-gradient(135deg, #383c45, #14161a 50%, #12151c); */
  /* border-radius: 20px; */
  /* padding: 35px; */
  transition: all .3s !important;

}

.blog-img {
  /* width: 576px;
    height: 296px; */
  overflow: hidden;
  height: 280px;
}

.blog-img img {
  transition: all 0.3s;
}

.blog-title span {
  font-size: 35px;
  font-family: var(--Bebas);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}

textarea {
  resize: none;
}

.main-page-blog-title {
  line-height: 29px;
}

.blog-date span {
  font-size: 18px;
  font-family: var(--sharp);
}

.blog-date-line {
  width: 19%;
  height: 1px;
  background-image: linear-gradient(to right, #ffffff, rgba(0, 0, 0, 0));

}

.blog-pragragh span {
  font-size: 19px;
  font-family: var(--sharp);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;

}

.read-more .main {
  color: #ffffff91;
  text-align: center;
  /* background-image: linear-gradient(135deg, #ffffff, #d50e0e); */
  /* border-radius: 6px; */
  /* padding: 11px 2px; */
  /* font-family: Jost, sans-serif; */
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  gap: 4px;
  /* box-shadow: 0 0 3px rgba(255, 255, 255, 0.459); */
  /* background-color: white; */
}

/* .blog:hover .read-more .main {
  color: white;
} */

.read-more span {
  /* background-color: var(--primary-color); */
  border-radius: 6px;
  /* padding: 11px 35px; */
  margin: 0;
  transition: background-color 0.3s;
  /* box-shadow: inset 0 2px 15px rgba(28, 5, 167, 0.47); */
  font-family: var(--Bebas);
  color: #fff !important;
}

/*
  .blog:hover .read-more span {
    background-color: transparent;
    box-shadow: none;
    color: black;
    transition: all 0.3s;
    font-weight: 700;
  } */

/* .blog:hover .blog-img img {
  scale: 1.1;
  transition: all 0.3s;
} */


/* .blog:hover .animated-arrow {
  color: #eaeaea;
} */

/* .blog:hover .animated-arrow .the-arrow.-left>.shaft {
  width: 64px;
  transition-delay: 0.3s;
  background-color: #eaeaea;
}

.blog:hover .animated-arrow .the-arrow.-left>.shaft:before,
.blog:hover .animated-arrow .the-arrow.-left>.shaft:after {
  width: 8px;
  transition-delay: 0.3s;
  background-color: #eaeaea;
}

.blog:hover .animated-arrow .the-arrow.-left>.shaft:before {
  transform: rotate(40deg);
}

.blog:hover .animated-arrow .the-arrow.-left>.shaft:after {
  transform: rotate(-40deg);
} */

/*   
  .blog:hover .animated-arrow .main {
    transform: translateX(80px);
  }
  
  .blog:hover .animated-arrow .main>.the-arrow.-right>.shaft {
    width: 0;
    transform: translateX(200%);
    transition-delay: 0;
  }
  
  .blog:hover .animated-arrow .main>.the-arrow.-right>.shaft:before,
  .blog:hover .animated-arrow.main>.the-arrow.-right>.shaft:after {
    width: 0;
    transition-delay: 0;
    transition: all 0.3s;
  }
  
  .blog:hover .animated-arrow .main>.the-arrow.-right>.shaft:before {
    transform: rotate(0);
  }
  
  
  .blog:hover .animated-arrow .main>.the-arrow.-right>.shaft:after {
    transform: rotate(0);
    width: 0px;
  } */
.blog-content .animated-arrow>.main>.the-arrow,
.blog-content .the-arrow.-left {
  flex-wrap: wrap;
  display: flex;
}

/* single blog page */
.singleBlog {
  padding-bottom: 100px;
  /* padding-top: 145px; */
}

.single-blog-title {
  /* -webkit-text-fill-color: transparent;
    background-image: linear-gradient(315deg,
        #d50e0e,
        #ffffff 50%,
        #d50e0e 85%,
        #ffffff);
    -webkit-background-clip: text;
    background-clip: text; */
  font-size: 80px !important;
  color: white;
  line-height: 63px;
}

.single-blog-time {
  margin-top: -12px;
  padding-bottom: 12px;
}

.single-blog-subject span,
.single-blog-time span {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--sharp);
}

.single-blog-date-line {
  width: 70%;
  height: 1px;
  background-image: linear-gradient(to right, #ffffff, rgba(0, 0, 0, 0));
}

.single-blog-image {
  width: 100%;
  height: 543px;
}

.single-blog-image img {
  height: 100%;
}

.single-blog-image-content {
  color: white;
  font-size: 18px;
  font-family: var(--sharp);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#forget_overlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #101010;
  opacity: 0.9;
  z-index: 99999999;
}

.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #101010;
}

.myloader,
.myloader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -4.05em;
}

.myloader {
  left: 50%;
  margin-left: -4em;
  font-size: 10px;
  border: 0.8em solid var(--red);
  border-left: 0.8em solid rgb(229 229 229);
  animation: spin 1.1s infinite linear;
}

.text-center {
  direction: rtl;
  display: flex;
  justify-content: center;
}

.border-red {
  border-bottom: 1px solid red !important;
}

.language_bar_list {
  margin-bottom: 0;
  padding-left: 0;
}

.language_bar_list span {
  font-size: 25px;
  color: #fff !important;
  margin-top: 4px;

}

.language-wrapper .language_bar_list li a {
  justify-content: end !important;
}

.men-test.categories a {
  width: fit-content;
  border-radius: 16px;
}

.allBlog .custom-btn .custom-btn-text {}

.all-project.pb {
  padding-bottom: 0px;
}

.page-item:last-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius) !important;
  border-bottom-left-radius: var(--bs-pagination-border-radius) !important;
}

.page-item:last-child .page-link {
  border-radius: 1rem !important;
}

.page-item {
  cursor: pointer;
}

.page-item:first-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius) !important;
  border-bottom-right-radius: var(--bs-pagination-border-radius) !important;
}

.page-item:first-child .page-link {
  border-radius: 1rem !important;
}

.blog-cnt {
  padding-right: 100px;
  padding-left: 100px;
}

.men-test.categories a .d-flex.justify-content-center {
  color: #fff;
  font-size: 24px;
  transition: all .3s;
}

.men-test.categories a {
  /* background: rgb(255, 255, 255); */
  width: fit-content;
  border-radius: 16px;
}

.men-test.categories a:hover {
  /* background-color: #8b8b8b; */

}

.w-fit-content {
  width: fit-content;
}

.singleProject .blog-img {
  height: 300px;
}

.singleProject .blog-img img {
  height: 100%;
}

.blog-card .custom-btn>div {
  height: 24px;
}

.custom-btn .custom-visible {
  transition: all 0.3s;
  height: 100%;
}

.custom-btn span {
  overflow: hidden;
  transition: all 0.3s;
  font-weight: 300;
}

.custom-btn .custom-invisible {
  transform: translateY(100%);
  transition: all 0.3s;
  height: 100%;
}

.custom-btn:hover .custom-visible {
  transform: translateY(-100%);
  transition: all 0.3s;
}

.custom-btn:hover .custom-invisible {
  transform: translateY(0%);
}

.all-project .read-more-project span {
  font-size: 30px !important;
}

body .mf-cursor::before {
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: all .3s;
  top: -30px;
  left: -30px;
  background: #fff;
}

.mf-cursor .mf-cursor-text {
  color: #000;
  font-size: 20px;
}

.mf-cursor.mouse::before {
  opacity: 1;
}

.mf-cursor.project-cursor::before {
  opacity: 1;
}

.category .hero-description:not(:hover),
.category .mobile-more-tag:not(:hover) {
  opacity: 0;
  transition: all 3s;
}

.category:hover .hero-description,
.category:hover .mobile-more-tag {
  opacity: 1;
  transition: none;
}

/* about */
.first-sec h1 {
  font-size: 36px;
  color: #fff;
}

.first-sec p {
  color: #fff;
  font-size: 20px;
  font-family: 'Sharp';
}

.mostafa-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.mostafa-img img {
  border-radius: 50%;
}

.gallery-slider.slick-slider,
.awards-slider.slick-slider {
  direction: unset !important;
}

.about-main-img-gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 62.01%, #0a0a0a 100%);
}

.about-main-img-gradient.top {
  rotate: 180deg;
}

.gallery-slide {
  width: 90% !important;
  height: 300px;

}

/* .gallery-slider .slick-prev {
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}

.gallery-slider .slick-next {
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
} */
.language-wrapper .language_bar_list li {
  margin-right: 5px !important;
}
/* .gallery-slider .slick-slide>div {
  display: flex;
  justify-content: center;
} */

/* .awards-slider{
  padding-left: 100px;
} */
.awards-slide-img {
  height: 250px;
}

.awards-slide-img img {
  object-fit: contain;
}

.awards-slide {
  color: #fff;
  font-size: 18px;
  font-family: 'Sharp';
  text-align: center;
}

.awards-slider .slick-dots li button,.gallery-slider .slick-dots li button{
  font-size: 0;
  width: 20px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  padding-block-end: 0;
  padding-block-start: 0 !important;
}

/* .awards-slider .slick-dots li{
  height: 3px;
} */

.awards-slider .slick-dots,.gallery-slider .slick-dots{
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  padding-right: 290px;
}

.awards-slider .slick-dots li.slick-active button ,.gallery-slider .slick-dots li.slick-active button{
  background-color: var(--red);
  width: 32px;
  height: 3.8px;
  /* margin-top: 14px; */
}

.awards-slider .slick-prev,.gallery-slider .slick-prev{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(calc(-50% + 48px), 5px);
  cursor: pointer;
  z-index: 2;
}

.awards-slider .slick-next,.gallery-slider  .slick-next{
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(calc(-50% + -183px), 5px);
  cursor: pointer;
  z-index: 2;
}
.see-more .the-arrow {
  width: unset;
  align-items: center;
  display: flex
;
}
.see-more .the-arrow.-right>.shaft, .animated-arrow:hover>.the-arrow.-left>.shaft {
  width: 25px;
}

.about-content {
  gap: 120px;
  display: flex;
  flex-direction: column;
}

/* .awards-slider{
  padding-right: 0 !important;
} */
.pr-0 {
  padding-right: 0 !important;
}

.about-main-img {
  height: 937px;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .awards-slider .slick-dots li{
  display: flex;
  align-items: center;
} */
.awards-slide {
  width: 80% !important;
}

.awards-slide-img img {
  object-fit: contain;
}

.awards-slider .slick-list,.gallery-slider .slick-list {
  padding-left: 0 !important;
}

/* .gallery-slider .slick-list {
  border-radius: 24px;
} */

.brd {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #000000), url(../img/p1.jpg);
  height: 250px;
  margin-top: 126px;
  /* padding-bottom: 38px; */
}

.allBlog .testCat>.row:first-child {
  padding-left: 0;
}

.pl-0 {
  padding-left: 0;
}
.sharp{
  font-family: var(--sharp);
}
.blog .read-more-project,.blog .blog-content .custom-btn{
  opacity: 0;
  transition: all .3s ;
}
.blog-cnt .blog:hover .read-more-project,.blog:hover .blog-content .custom-btn{
  opacity:1;
}
.error-page{
  font-family: var(--sharp);
}