@font-face {
  font-family: "yekanbakhnum";
  font-style: normal;
  font-display: swap;
  src: url("../font/YekanBakhFaNum04Regular.woff") format('woff');

}

@font-face {
  font-family: "yekanbakh";
  src: url("../font/YekanBakhFa08Fat.woff") format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "yekanbakh";
  src: url("../font/YekanBakhFa07Heavy.woff") format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "yekanbakh";
  src: url("../font/YekanBakhFa06Bold.woff") format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "yekanbakh";
  src: url("../font/YekanBakhFa05Medium.woff") format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: "yekanbakh";
  src: url("../font/YekanBakhFa04Regular.woff") format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "yekanbakh";
  src: url("../font/YekanBakhFa03Light.woff") format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "yekanbakh";
  src: url("../font/YekanBakhFa02Thin.woff") format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sharp";
  src: url("../font/SharpGroteskBook15.woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --fanum: "yekanbakhnum";
  --sharp: "Sharp";
  --Bebas: "yekanbakh";
  --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;
}

.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: 102px;
  height: 102px; */

  min-height: 102px;
}

.content img {
  scale: .5;
}

#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: 30px;
  line-height: 34px;
  font-weight: 700;
}

.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;
  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: 40px !important;
}

.mobile-menu-social-media li a {
  font-size: 18px;
  color: #545454;
  font-weight: 600;
}

.email {
  font-family: var(--sharp);
}

.phone-number {
  font-family: var(--fanum);
}

.email,
.phone-number {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s;
}

.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%);
}

.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;
} */
.brd {
  margin-top: 126px;
}

.slide {
  padding-right: 100px;
  padding-top: 126px;

}

.hero-title h6 {
  font-size: 40px;
  color: #8b8b8b;
  transition: all 0.5s;
  line-height: 37px;
  /* letter-spacing: -2px; */
  font-weight: 700;
  padding-left: 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}

.hero-title span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

/* .d-flex>div:nth-child(3) {
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
-webkit-line-clamp: 6;
text-overflow: ellipsis;
} */


.hero-left span.custom-btn {
  float: right;
  padding: 1px 0 0 0;
  margin-left: 0px;
  margin-top: -6px;
}

.hero-left .custom-btn .custom-btn-text {
  margin-top: 2.5px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.allBlog .testCat .custom-btn .custom-btn-text {
  font-size: 24px;
}

.allBlog .testCat>.row {
  margin-bottom: 32px;
  border-bottom: 1px solid #ffffff73;
}

.blog-cnt .custom-btn .custom-btn-text {
  margin-top: 2.5px !important;
}

.custom-btn .custom-btn-text {
  margin-top: 2.5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}



.mobile-menu-social-media-item .custom-btn .custom-btn-text {
  display: flex
}

.all-project.custom-btn .custom-btn-text {
  font-size: 22px;
  font-weight: 600;
}

#submit.custom-btn .custom-btn-text {
  font-weight: 600;
  color: #000;
}

.email.custom-btn .custom-btn-text {
  font-size: 24px;
}

.phone-number.custom-btn .custom-btn-text {
  font-size: 24px;
}

.hero-left span.custom-btn span {
  color: #fff;
}

.custom-btn svg {
  transform: rotate(180deg);
}

.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;
  align-items: center;
}

.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%);
}

.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-right: 1px solid #fff;
  padding-right: 16px;
  margin-left: 0px;
}

.hero-left .hero-description-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: -24px;
}

.hero-left span.btn {
  float: right;
  /* padding-bottom: 7px;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0; */
  padding: 1px 0 0 0;
}

.hero-description-arrow {
  width: 18px;
  height: 18px;
  rotate: 180deg;
}

.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-right: -26.5%;
  transition: all 0.3s;
}

.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 .read-more-project {
  margin-top: 100px;
  /* margin-bottom: 100px; */
}

.the-arrow {
  width: 64px;
  transition: all 0.3s;
}

.the-arrow.-left {
  position: absolute;
  top: 50%;
  right: 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;
  left: 0;
  transition: all 0.3s;
  transition-delay: 0;
}

.the-arrow>.shaft:before {
  transform-origin: top left;
}

.the-arrow>.shaft:after {
  transform-origin: bottom left;
}

.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 0 0 16px;
  line-height: 1;
  font-size: 28px;
  font-weight: 100;
  font-weight: 600;
}

.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: 20px;
  display: flex;
}

.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: 16px;
  color: white;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 500;

}

.footer-adrian-logo img {
  height: 28px;
}

.footer-adrian-logo {
  width: 172px;
}

.footer-adrian-logo .custom-btn-text {
  font-size: 13px;
}

.footer-address,
.footer-number a,
.footer-menu li>a,
.copy-right {
  font-size: 15px;
  color: white;
  transition: all .3s;
  font-family: var(--fanum);
}

.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(-14%);
}

.footer-menu-line:first-child {
  background-color: transparent;
}

/* all project page */
.pagination {
  --bs-pagination-focus-box-shadow: unset !important;
  --bs-pagination-focus-color: #000000 !important;
}

.page-link {
  color: rgb(255 255 255 / 50%);
  padding: unset;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--fanum) !important;
  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;
}

.page-item-arrow span {
  font-size: 27px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.page-link.active,
.page-item:first-child .page-link {
  border: unset !important;
}

.page-item {
  border-radius: 50% !important;
}

.page-item:first-child .page-link {
  border-radius: 50% !important;

}

/* single project page */
.singleProject {
  margin-top: 126px;
  /* padding-bottom: 100px; */
}

/* 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-right: 100px;
}

.project-name {
  font-size: 44px !important;
  line-height: 40px;
  font-weight: 800;
}

.project-creator {
  line-height: 6px;
}

.project-creator h5 {
  font-size: 30px;
  font-weight: 600;
}

.project-creator span {
  font-size: 21px;
  font-weight: 500;
}


.single-project-discription p {
  font-size: 20px;
  line-height: 36px;
  max-width: 1000px;
  font-weight: 500;
}

.project-images .project-image-cover {
  width: 1000px;
  height: 100%;
}

.footer-menu-line:last-child {
  background-color: transparent;
}

.all-prjt {
  padding-top: 126px;
}

/* contact us page */
.contactUs {
  /* padding-top: 126px; */
  padding-bottom: 100px;
}

.contactUs h6.title {
  font-size: 40px;
  font-weight: 600;
}

/* 
.right-section-contact h6.title {
  padding-right: 50px;
} */

.left-section-contact-discription span {
  font-size: 20px;
  font-weight: 500;
}

textarea {
  resize: none;
}

.container.testCat {
  padding-right: 24px;
  padding-left: 24px;
}

.left-section-contact-address {
  font-size: 20px;
  /* padding-left: 15rem; */
  font-weight: 500;
  font-family: var(--fanum);
}

.form-control {
  background-color: transparent !important;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid hsl(0deg 0% 51% / 50%);
}

.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;
}

form .btn:hover {
  background-color: rgba(255, 255, 255, 0.747);
}

.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; */
}

.blog-card {
  /* background-image: linear-gradient(135deg, #383c45, #14161a 50%, #12151c); */
  /* border-radius: 20px; */
  /* padding: 35px; */
}

.blog-img {
  /* width: 576px; */
  height: 300px;
  overflow: hidden;
}

.blog-img img {
  transition: all 0.3s;
}

header {
  z-index: 10;
}

.blog-cnt .blog-main-title {
  font-size: 36px;
  margin-left: 8px;
  font-weight: 600;
}

.blog-title span {
  font-size: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  font-weight: 600;
}

.blog-date span {
  font-size: 16px;
  font-family: var(--fanum);
}

.blog-date-line {
  width: 19%;
  height: 1px;
  background-image: linear-gradient(to right, #ffffff, rgba(0, 0, 0, 0));
}

.blog-pragragh span {
  font-weight: 500;
  font-size: 15px;
  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;
  /* 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;
  font-size: 16px;
  font-weight: 600;
  /* box-shadow: inset 0 2px 15px rgba(28, 5, 167, 0.47); */
}

.blog {
  /* background-image: linear-gradient(135deg, rgba(0, 0, 0, 0) 60%, #fff); */
  /* border-radius: 20px; */
  padding: 1px;
  overflow: hidden;
  height: 347px;

}

.my-element .blog-card,
.allBlog .blog-card {
  transition: all .3s !important;
}

.recently-blog .blog-content {
  padding-right: 12px;
}

.recently-blog .blog-img {
  padding-left: 12px;
}

.active-tab {
  height: 1px;
  width: 100%;
  background-color: var(--red);
  position: absolute;
  bottom: -1px;
}


.mobile-menu-information .custom-btn span.custom-btn-text {
  font-weight: 300 !important;
}

footer .custom-btn .custom-btn-text {
  color: #fff;
  font-weight: 500;
}

.mobile-menu-information .custom-btn .custom-invisible .white-text span {
  color: #ffff;

}

.mobile-menu-information .custom-btn span.custom-btn-text {
  font-weight: 400 !important;
}

.copy-right span {
  font-size: 14px;
}

.recently-blog .blog {
  height: 290px;
}

.footer-adrian-logo.custom-btn .custom-invisible .white-text span {
  color: #fff !important;
  font-weight: 500 !important;
}

.testCat {
  z-index: 2;
  position: relative;
}

.blog-img {
  overflow: hidden;
  height: 280px;
}

.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 .small-blog .blog:hover .blog-card {
  transition: all .3s !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-top: 145px; */
  padding-bottom: 100px;
}

.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: 50px !important;
  color: white;
  line-height: 56px;
  font-weight: 600;
}

.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(--fanum);
}

.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;
}

@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;
  font-family: var(--sharp);
}

.language-wrapper .language_bar_list li a {
  justify-content: end !important;
}

.btn.border-0.mobile-more-tag span {
  font-size: 15px;
  font-weight: 600;
}

.men-test.categories a .d-flex.justify-content-center {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s;
}

.men-test.categories a {
  width: fit-content;
  border-radius: 16px;
}

.men-test.categories a:hover {}

.blog-cnt {
  padding-right: 100px;
  padding-left: 100px;
}

/* .men-test.categories a:hover .d-flex.justify-content-center{
  color:#fff;
} */
.pagination {
  font-family: var(--fanum);
}


body .mf-cursor::before {
  width: 60px;
  height: 60px;
  opacity: 0;
  top: -30px;
  left: -30px;
  background: #fff;
  transition: all .3s;
}

.mf-cursor .mf-cursor-text {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.mf-cursor.blog-cursor::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: 34px;
  color: #fff;
  font-weight: 600;
}

.first-sec p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
}

.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;
}

.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: 16px;
  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-left: 290px;
  /* z-index: 999; */
  position: relative;
}

.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-next,
.gallery-slider .slick-next {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(calc(-50% + 24px), 2px);
  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;
}
.awards-slider .slick-prev,
.gallery-slider .slick-prev {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(calc(-50% + 283px), 2px);
  cursor: pointer;
  z-index: 2;
}

.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-right: 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;
}

.allBlog .testCat>.row:first-child {
  padding-left: 0;
}

.pl-0 {
  padding-right: 0;
}

.w-fit-content {
  width: fit-content;
}
.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;
}