/* DESKTOP NAVBAR */
.desktop-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.desktop-nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.desktop-nav .container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  justify-content: space-between;
  position: relative;
}
.desktop-nav-logo {
  flex: 0 0 auto;
}
.desktop-nav-logo img {
  width: 140px;
  height: auto;
  transition: all 0.3s;
}
.desktop-nav.scrolled .desktop-nav-logo img {
  width: 120px;
}
.desktop-nav-logo:hover img {
  opacity: 0.85;
}
.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.desktop-nav-lang {
  flex: 0 0 auto;
}
.desktop-nav-lang a {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s;
}
.desktop-nav-lang a:hover {
  color: #fff;
}
.desktop-nav-lang a.nav-lang-active {
  color: #fff;
  font-weight: 600;
}
.nav-lang-slash {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  margin: 0 2px;
  user-select: none;
}
.desktop-nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  font-family: 'Poppins', sans-serif;
  padding: 4px 0;
}
.desktop-nav-links a:hover,
.desktop-nav-links a.active {
  color: #fff;
}
.desktop-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0069ff;
  transition: width 0.3s;
  border-radius: 1px;
}
.desktop-nav-links a:hover::after,
.desktop-nav-links a.active::after {
  width: 100%;
}
/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 991.98px) {
  .desktop-nav {
    display: none !important;
  }
}
@media (min-width: 992px) {
  #humburger {
    display: none !important;
  }
  .nav_layer {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .desktop-nav-links {
    gap: 20px;
  }
  .desktop-nav-links a {
    font-size: 10px;
    letter-spacing: 2px;
  }
}
/* --------------------------------- */

/* MODULES BLOCK */
.modules_block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 30px;
}
.modules_block h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}
.module_item {
  border-left: 2px solid #3b82f6;
  padding-left: 14px;
}
.module_name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3b82f6;
  font-family: monospace;
  margin-bottom: 4px;
}
.module_desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* FOOTER */
.footer_logo {
  width: 50px;
  height: auto;
}
.footer_logo_main {
  width: 160px;
  height: auto;
  display: block;
}
.site_footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 0 30px;
}
.footer_brand {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
}
.footer_social {
  color: #888;
  font-size: 20px;
  transition: color .25s;
}
.footer_social:hover {
  color: #fff;
  text-decoration: none;
}
.footer_email {
  color: #888;
  font-size: 14px;
  transition: color .25s;
}
.footer_email:hover {
  color: #fff;
  text-decoration: none;
}
.footer_nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 25px;
  margin-bottom: 10px;
}
.footer_nav a {
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 12px;
  transition: color .25s;
}
.footer_nav a:hover {
  color: #fff;
  text-decoration: none;
}
.footer_copy {
  color: #555;
  font-size: 12px;
}

/* SCROLL UP BUTTON */
.scroll-up-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--co-1, #fff);
  color: var(--co-4, #050505);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.scroll-up-btn.show {
  opacity: 1;
  visibility: visible;
}
.scroll-up-btn:hover {
  opacity: 0.8;
}
/* --------------------------------- */

/* BODY */
body {
  background: var(--co-4);
  margin: 0;
  padding: 0;
  
}
/* --------------------------------- */

/* LOADER */
.loader_screen {
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  --path: #ffffff;
  --dot: #5628EE;
  --duration: 3s;
  width: 44px;
  height: 44px;
  position: relative;
  transform: scale(1.5);
}
.loader svg {
  display: block;
  width: 100%;
  height: 100%;
}
.loader svg rect {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
@-webkit-keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
/* --------------------------------- */

/* SECTIONS BAR */
.scrollspy_bar {
  position: fixed;
  top: 50px;
  bottom: 50px;
  left: 20px;
  padding: 30px 0;
  width: 90px;
  z-index: 99;
}
.scrollspy_bar::before {
  position: absolute;
  content: '';
  width: 2px;
  background: #0c0c0c;
  top: 0;
  bottom: 0;
  left: 30px;
}
.scrollspy_bar li {
  cursor: pointer;
  position: relative;
}
.scrollspy_bar .small_group {
  position: absolute;
}
.scrollspy_bar .small_point {
  position: relative;
  left: 29px;
  width: 4px;
  height: 4px;
  background: #666;
  border-radius: 50%;
  transition: all .25s;
}
.scrollspy_bar .small_point.active {
  background: var(--co-1);
}
.scrollspy_bar .small_point:not(:first-child) {
  margin-top: 10px;
}
.scrollspy_bar span {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}
.scrollspy_bar .active span {
  color: #FFF;
}
.scrollspy_bar .num {
  position: relative;
  left: 45px;
  transition: all .25s;
}
.scrollspy_bar .active .num {
  left: 0;
}
.scrollspy_bar .dot {
  position: absolute;
  left: 29px;
  width: 4px;
  height: 4px;
  background: #666;
  border-radius: 50%;
}
.scrollspy_bar .active .dot {
  background: var(--co-1);
}
.scrollspy_bar .name {
  position: relative;
  visibility: hidden;
  opacity: 0;
  left: 25px;
  white-space: nowrap;
  transition: all .25s;
}
.scrollspy_bar .active .name {
  visibility: visible;
  opacity: 1;
  left: 30px;
}
@media(max-width: 1365.98px) {
  .scrollspy_bar {
    display: none;
  }
}
/* --------------------------------- */



/* HOME SECTION */
.home_se {
  z-index: 2;
  background-size: cover;
  height: 100vh;
}
/* text */
.home_se .text {
  padding: 150px 0 100px;
}
.home_se .home_quote {
  font-size: 90px;
  color: #FFF;
  font-weight: 900;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
  line-height: 1.1;
}
@media(max-width: 767.98px) {
  .home_se {
    height: auto;
    min-height: 20vh;
  }
  .home_se .text {
    padding: 100px 0 60px;
  }
}
@media(max-width: 991.98px) {
  .home_se .home_quote {
    font-size: 25px;
    text-transform: uppercase;
  }
}
.mouse {
	width: 50px;
	height: 90px;
	border: 1px solid rgba(4, 57, 73, 0.959);
	border-radius: 60px;
	position: relative;
  margin: 0 auto;
  top: 10%;
}
  .mouse::before {
		content: '';
		width: 12px;
		height: 12px;
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		background-color: rgba(4, 57, 73, 0.959);
		border-radius: 50%;
		opacity: 1;
		animation: wheel 2s infinite;
		-webkit-animation: wheel 2s infinite;
	}
@keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}
@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}



/* --------------------------------- */



/* SECTION II */
.se_ii  {
  z-index: 2;
  background-size: cover;
  height: 100vh;
}
.se_ii .text {
  padding: 100px 0;
}
.se_ii .text p span{
  margin-bottom: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 40px;
	color: #999;
  line-height: 2.0;
}

.se_ii .text p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 25px;
	color: #999;
  line-height: 1.5;
  font-weight: 200;
}

/* bar */
.se_ii .links_cont .bar {
  height: 2px;
  width: 60px;
  background: #666;
}
/* social links */
.se_ii .links_cont .social_links a {
  font-size: 20px;
  color: #FFF;
  transition: all .25s;
}
.se_ii .links_cont .social_links a:hover {
  color: var(--co-1);
}
@media(max-width: 991.98px) {
  .se_ii {
    background-image: unset !important;
    background-color: #0a0a0a;
  }
  .se_ii .text h2 {
    font-size: 36px;
  }
}
@media(max-width: 767.98px) {
  .se_ii {
    height: auto;
    min-height: auto;
  }
  .se_ii .text {
    padding: 60px 0;
  }
}

/* SECTION III - SERVICES SECTION */
/* box */
.se_iii .box {
  padding: 60px 40px;
  border-radius: 16px;
  background: #0a0a0a;
}
/* icon */
.se_iii .box .icon {
  width: 60px;
}
/* title */
.se_iii .box .title {
  font-size: 24px;
	color: #FFF;
  font-weight: 600;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
}
.se_iii .box p {
  font-size: 16px;
	color: #999;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* .se_iii .box p:hover {
  -webkit-line-clamp: 10;
} */
/* --------------------------------- */

/* SECTION IV - TESTIMONIALS SECTION */
/* slider */
.se_iv .slick-list {
  margin: 0 -10px;
}
.se_iv .slick-slide {
  margin: 0 10px;
}
/* item */
.se_iv .item {
  outline: none;
  padding: 40px 30px 30px;
  background: #0a0a0a url(./../../images/icons/writer.svg) no-repeat;
  background-size: 40px;
  background-position: 20px 20px;
  border: 1px solid #000;
  border-radius: 16px;
}
/* text */
.se_iv .item_text {
  font-size: 16px;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.8;
}
/* avatar */
.se_iv .item .item_avatar {
  width: 52px;
  border-radius: 50%;
}
/* avatar (initials, no photo) */
.se_iv .item .item_avatar_initials {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: var(--co-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
}
/* name & url */
.se_iv .item .user_name {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
/* job */
.se_iv .item .user_job {
  font-size: 14px;
  color: #999;
}
/* slider dots */
.se_iv .slider_dots ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.se_iv .slider_dots li {
  margin: 0 8px;
}
.se_iv .slider_dots li button {
  text-indent: 100px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  overflow: hidden;
  opacity: .3;
  transition: all .25s;
}
.se_iv .slider_dots li.slick-active button {
  opacity: 1;
  background: var(--co-1);
}
/* --------------------------------- */


/* --------------------------------- */

/* SECTION VI */
/* box */
.se_vi .gallery .gallery_box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover !important;
}
.se_vi .gallery .gallery_box::before {
  position: absolute;
  content: '';
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  background: rgba(0, 0, 0, .5);
  z-index: 9;
  opacity: 0;
  border-radius: 20px;
  transition: all .25s;
}
.se_vi .gallery .gallery_box:hover::before {
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .6;
}
/* scale button */
.se_vi .gallery .scale_btn {
  position: relative;
  background: #FFF;
  padding: 15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--co-4);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.2);
  transition: all .25s;
}
.se_vi .gallery .scale_btn:hover {
  color: #FFF;
  background: var(--co-4);
}
.se_vi .gallery .gallery_box:hover .scale_btn {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
/* larg box */
.se_vi .lg_box {
  height: 400px;
}
/* small box */
.se_vi .sm_box {
  height: 185px;
}
/* --------------------------------- */

/* SECTION VII */
/* item */
.se_vii .item {
  padding: 20px 30px;
  width: 100%;
  background: rgba(0, 0, 0, .1);
  border-radius: 26px;
}
.se_vii .item img {
  width: 60px;
  margin-bottom: 10px;
}
.se_vii .item p {
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
}
/* item color classes */
.se_vii .item_1,
.se_vii .item_2,
.se_vii .item_3,
.se_vii .item_4,
.se_vii .item_5,
.se_vii .item_6,
.se_vii .item_7 {
  background: transparent;
}
/* group */
.se_vii .timeline .group:not(:last-child) {
  margin-bottom: 60px;
}
/* year */
.se_vii .timeline .year {
  min-width: 75px;
  font-weight: bold;
  color: var(--co-1);
  padding: 7px 15px;
  border-radius: 8px;
  background: #0a0a0a;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
}
/* job box */
.se_vii .timeline .job_box:not(:last-child) {
  margin-bottom: 15px;
}
.se_vii .timeline .job_box .title {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
}
.se_vii .timeline .job_box .location {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}
@media (max-width: 1199.98px) {
  /* item */
  .se_vii .item {
    padding: 30px;
    width: 100%;
    height: unset;
  }
  .se_vii .item img {
    width: 70px;
    margin-bottom: 15px;
  }
  .se_vii .item p {
    font-size: 20px;
  }
  /* job box */
  .se_vii .timeline .job_box {
    padding: 20px;
    border: 1px solid var(--co-4);
    background: #0a0a0a ;
    border-radius: 16px;
  }
  .se_vii .timeline .job_box:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  /* item */
  .se_vii .item img {
    width: 50px;
  }
}
/* --------------------------------- */

/* SECTION VIII */
/* label */
#contact{
  padding-bottom: 80px;
}
.se_viii .contact_form label:not(.user_label) {
  cursor: pointer;
  position: relative;
}
.se_viii .contact_form label:not(.user_label) input {
  display: none;
}
.se_viii .contact_form label:not(.user_label) i {
  transform: scale(0);
  margin-right: 0;
  color: #FFF;
  font-size: 18px;
  left: 30px;
  width: 0;
  transition: all .25s;
}
.se_viii .contact_form label:not(.user_label) input:checked + span i {
  transform: scale(1);
  width: 30px;
}
.se_viii .contact_form label:not(.user_label) span {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  border: 2px solid #FFF;
  border-radius: 50px;
  transition: all .25s;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
}
.se_viii .contact_form label:not(.user_label) input:checked + span {
  background: var(--co-1);
  color: #FFF;
  border-color: var(--co-1);
}
.se_viii .contact_form .title {
  color: #FFF;
  font-weight: 900;
}
/* user label */
.se_viii .contact_form .user_label input {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, .05);
  outline: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: #FFF;
  font-size: 20px;
  transition: all .25s;
}
.se_viii .contact_form .user_label input::-webkit-input-placeholder {
  color: #666;
}
.se_viii .contact_form .user_label input::-moz-placeholder {
  color: #666;
}
.se_viii .contact_form .user_label input:-ms-input-placeholder {
  color: #666;
}
.se_viii .contact_form .user_label input::-ms-input-placeholder {
  color: #666;
}
.se_viii .contact_form .user_label input::placeholder {
  color: #666;
}
.se_viii .contact_form .user_label input:focus {
  border-color: #555;
}
.se_viii .contact_form .user_label textarea {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, .05);
  outline: none;
  padding: 15px 30px;
  border-radius: 20px;
  color: #FFF;
  font-size: 20px;
  transition: all .25s;
  resize: none;
  width: 100%;
}
.se_viii .contact_form .user_label textarea::placeholder {
  color: #666;
}
.se_viii .contact_form .user_label textarea:focus {
  border-color: #555;
}
/* social list */

.se_viii .contact_form .social_list a {
  font-size: 30px;
  color: #555;
  transition: all .25s;
}
.se_viii .contact_form .social_list a:hover {
  color: #FFF;
}
/* --------------------------------- */

/* GALLERY MODAL */
.gallery_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 150px 0;
  background: rgba(0, 0, 0, .95);
  z-index: 98;
  overflow-y: auto;
}
.gallery_modal::-webkit-scrollbar {
  width: 4px;
}
.gallery_modal::-webkit-scrollbar-thumb {
  background: var(--co-1);
}
/* dismiss button */
.gallery_modal .dismiss_btn {
  position: fixed;
  top: 40px;
  right: 40px;
  background: transparent;
  padding: 0;
  color: #FFF;
  height: 48px;
  width: 48px;
  border: 2px solid #FFF;
  font-size: 20px;
  border-radius: 50%;
  transition: all .25s;
}
.gallery_modal .dismiss_btn:hover {
  background: #FFF;
  color: var(--co-4);
}
/* box */
.gallery_modal .box {
  max-width: 800px;
}
/* title */
.gallery_modal .title {
  font-size: 36px;
  font-weight: 900;
  color: #FFF;
  font-family: 'GT-Walsheim', 'Poppins', sans-serif;
}
/* description */
.gallery_modal .des {
  font-size: 17px;
  color: #999;
}
/* image */
.gallery_modal img {
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  .gallery_modal .dismiss_btn {
    top: 20px;
    right: 29px;
  }
}
/* --------------------------------- */

/* Message Notification */
.message_notification {
  display: none;
  position: fixed;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  background-color: #03C4A1;
  padding: 14px 28px;
  border-radius: 50px;
  z-index: 98;
}
.message_notification.message_notification_2 {
  background-color: #F05454;
}
.message_notification p {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
}
/* --------------------------------- */
#header {
  position: relative;
 display: flex;
 color: #F05454;
}
.logo{
  left:60px; 
  position:relative;}
.logo img{
  max-width: 200px;
  transition:all 1s ease-out;
}
.navbar{
  position: relative;
  right: 50px;
}

/* MOBILE RESPONSIVE - smaller spacing */
@media(max-width: 767.98px) {
  .space_lg {
    height: 40px;
  }
  .space_xl {
    height: 60px;
  }
  .se_iii,
  .se_iv,
  .se_v,
  .se_vi,
  .se_vii,
  .se_viii {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .se_title h2 {
    font-size: 28px !important;
  }
}