#loader {
  height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loader img{
    animation: Loading 1.3s 0s infinite;

}


   @keyframes Loading {
    0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(359deg);
      }
    
   }
#content{
    display: none;
}


@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");


/* .Custom_animation{
  animation: Custom_animation 4  0 infinite forwards ;
}
@-webkit-keyframes Custom_animation {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes Custom_animation {
  0% {opacity: 0;}
  100% {opacity: 1;}
} */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background: #212121;
    color: #212121;
    font-family: 'Poppins', sans-serif;
  }
  
  a {
    color: #b9b9b9;
    text-decoration: none;
    transition: 0.5s;
  }
  
  a:hover,
  a:active,
  a:focus {
    color: #fff;
    outline: none;
    text-decoration: none;
  }
  
  p {
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
  }

.carousel .slide-image.active {
  opacity: 1;
  transition: opacity 1s ease-in;
}

.carousel .slide-image {
  opacity: 0;
  display: block;
  left: 0;
  transition: opacity 1s ease-out;
}  


[class^=char]{
  display: inline-block !important;
  position: relative;
  text-align: center;

}

  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #c7a151;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #71dfbe;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
  #topbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    padding: 0;
    height: 40px;
  }
  
  #topbar .contact-info i {
    font-style: normal;
    color: #c7a151;
  }
  
  #topbar .contact-info i a,
  #topbar .contact-info i span {
    padding-left: 5px;
    color: #444;
  }
  
  #topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  
  #topbar .contact-info i a:hover {
    color: #c7a151;
  }
  
  #topbar .social-links a {
    color: #555;
    padding: 0 15px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid #e9e9e9;
  }
  
  #topbar .social-links a:hover {
    color: #c7a151;
  }
  
  #topbar .social-links a:first-child {
    border-left: 0;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  /* Header */

.uli{
  width: fit-content;
  padding-right: 80px;
}
  #header {
    height: 120px;
    transition: all 0.5s;
    z-index: 997;
    background:white;;
  }
  
  #header.addcolor{
    
  }
  
  #header #logo h1 {
    font-size: 100000px;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  #header #logo h1 a {
    color: #0c2e8a;
  }
  
  #header #logo h1 a span {
    color: #c7a151;
  }
  
  #header #logo img {
    padding: 0;
    margin: 0;
	width: 50%;
  }
  
  @media (max-width: 768px) {
    #header {
      height: 60px;
    }
  
    #header #logo h1 {
      font-size: 34px;
    }
  
    #header #logo img {
      max-height: 40px;
    }
  }
  
  .scrolled-offset {
    margin-top: 0px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #c9c9c9;
  }

  .qodef-menu-item-arrow{
    transform: rotate(180deg);
    width: 8px;
  }

  .qodef-menu-item-arrow2{
    transform: rotate(90deg);
    width: 8px;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #212121;
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #B9B9B9;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #fff;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    right: calc(100% - 30px);
    visibility: hidden;
    left: auto;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    border-top: 1px solid #c9c9c9;
    width: 32px;
    height: 19px;
    border-bottom: 1px solid #c9c9c9;
    position: relative;
    transition: 0.5s;
    display: none;
    margin-right: 15px;
  }
  .mobile-nav-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #c9c9c9;
    top: 50%;
    transform: translate(10px,-50%);
    transition: 0.5s;
}
.navbar-mobile .mobile-nav-toggle::after{
  transform: translate(-10px,-50%);
}
  
  .mobile-nav-toggle.bi-x {
    color: #000;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #212121;
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #212121;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #fff;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #171717;
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #fff;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 100vh;
    position: relative;
 
    padding: 0;
  }
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px rgba(227, 223, 209, 0.9);
}
.circle.gray{
  position: absolute;
  left: 22px;
  top: 35%;
  background: rgba(199, 161, 81, 0.9);
  z-index: -1;
  transform: translate(0%, -50%);
}

  
  #hero .hero-content {
    position: absolute;
    bottom: 0;
    top: 8rem;
  left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero_main{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
  }
  
  #hero .hero-content h2 {
    color: #dbdbdb;

    margin-bottom: 0px;
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 30px;
  }
  #hero .hero-content p{
    color: #adadad;
    padding-left: .5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
  }
  
  #hero .hero-content h2 span {
    color: #dbdbdb;

    /* text-decoration: underline; */
  }
  
  @media (max-width: 767px) {
    #hero .hero-content h2 {
      font-size: 34px;
    }
  }
  
  #hero .hero-content .btn-get-started,
  .btn-projects {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    position: relative;
    transition: all 0.4s ease-in-out;
  }
  

.btn-projects {
    background: #212121;
    border: 1px solid #212121;
    color: #fff !important;
  }
 .btn-projects::after{
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border: 1px solid #fff;
      top: 10px;
      right: -10px;
      z-index: -1;
      transition: all 0.4s ease-in-out;
  }
  .btn-projects:hover::after{
      top: 0px;
      right: 0px;
      border: 2px solid #212121;
  }

  
  #hero .hero-slider {
    z-index: 8;
    height: 100vh;
  }
  
  #hero .hero-slider::before {
    content: "";
    background-color: transparent;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 7;
  }
  
  #hero .hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: opacity;
  }
  
  /*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
  section {
    padding: 40px 0;
    overflow: hidden;
  }
  
  /* Sections Header
  --------------------------------*/
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 32px;
    color: #0c2e8a;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
  }
  
  .section-header h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #c7a151;
    bottom: 0;
    left: 0;
  }
  
  .section-header p {
    padding: 0;
    margin: 0;
  }
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 20px 0;
    background-color: #fafafa;
    min-height: 40px;
  }
  
  .breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
  }
  
  @media (max-width: 992px) {
    .breadcrumbs h2 {
      margin: 0 0 10px 0;
    }
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
  }
  
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
  
    .breadcrumbs ol {
      display: block;
    }
  
    .breadcrumbs ol li {
      display: inline-block;
    }
  }
  
  /* About Section
  --------------------------------*/
  #about {
    padding: 60px 0 30px 0;
  }
  
  #about .about-img {
    overflow: hidden;
  }
  
  #about .about-img img {
    margin-left: -15px;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    #about .about-img {
      height: auto;
    }
  
    #about .about-img img {
      margin-left: 0;
      padding-bottom: 30px;
    }
  }
  
  #about .content h2 {
    color: #0c2e8a;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
  }
  
  #about .content h3 {
    color: #555;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
  }
  
  #about .content p {
    line-height: 26px;
  }
  
  #about .content p:last-child {
    margin-bottom: 0;
  }
  
  #about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #c7a151;
  }
  
  #about .content ul {
    list-style: none;
    padding: 0;
  }
  
  #about .content ul li {
    padding-bottom: 10px;
  }
  
  /* Services Section
  --------------------------------*/
  #services {
    padding: 40px 0;
  }
  
  #services .box {
    padding: 40px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
    height: 100%;
  }
  
  #services .box:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
  }
  
  #services .box .icon {
    float: left;
  }
  
  #services .box .icon i {
    color: #444;
    font-size: 64px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 34px;
  }
  
  #services .box .icon i:before {
    background: #0c2e8a;
    background: linear-gradient(45deg, #c7a151 0%, #a3ebd5 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  #services .box h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  #services .box h4 a {
    color: #444;
  }
  
  #services .box p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
  }
  
  @media (max-width: 767px) {
    #services .box .box {
      margin-bottom: 20px;
    }
  
    #services .box .icon {
      float: none;
      text-align: center;
      padding-bottom: 15px;
    }
  
    #services .box h4,
    #services .box p {
      margin-left: 0;
      text-align: center;
    }
  }
  
  /* Clients Section
  --------------------------------*/
  #clients {
    padding: 30px 0;
  }
  
  #clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
  }
  
  #clients img:hover {
    opacity: 1;
  }
  
  #clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  #clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #c7a151;
  }
  
  #clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #c7a151;
  }
  
  /* Our Portfolio Section
  --------------------------------*/
  #portfolio {
    background: #fff;
    padding: 30px 0;
  }
  
  #portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
  }
  
  #portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 18px 12px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #f7f7f7;
    border-radius: 4px;
  }
  
  #portfolio #portfolio-flters li:hover,
  #portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #c7a151;
  }
  
  #portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  #portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  #portfolio .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
  #portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: #c7a151;
    padding: 15px 20px;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
  }
  
  #portfolio .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  #portfolio .portfolio-item .portfolio-info .preview-link,
  #portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: rgba(255, 255, 255, 0.6);
    transition: ease-in-out 0.3s;
  }
  
  #portfolio .portfolio-item .portfolio-info .preview-link:hover,
  #portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #fff;
  }
  
  #portfolio .portfolio-item .portfolio-info .details-link {
    right: 15px;
  }
  
  #portfolio .portfolio-item:hover img {
    top: -30px;
  }
  
  #portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #c7a151;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #c7a151;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  
  /* Testimonials Section
  --------------------------------*/
  #testimonials {
    padding: 30px 0;
  }
  
  #testimonials .testimonials-carousel,
  #testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  #testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 0 30px;
    margin: 30px 15px;
    text-align: center;
    min-height: 350px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  }
  
  @media (max-width: 767px) {
    #testimonials .testimonial-item {
      margin: 30px 10px;
    }
  }
  
  #testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
  }
  
  #testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
  }
  
  #testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
  }
  
  #testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
  }
  
  #testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
  }
  
  #testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
  }
  
  #testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  #testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #c7a151;
  }
  
  #testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #c7a151;
  }
  
  /* Call To Action Section
  --------------------------------*/
  #call-to-action {
    background: #081e5b;
    background-size: cover;
    padding: 40px 0;
  }
  
  #call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  
  #call-to-action .cta-text {
    color: #fff;
  }
  
  @media (min-width: 769px) {
    #call-to-action .cta-btn-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
  }
  
  #call-to-action .cta-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
  }
  
  #call-to-action .cta-btn:hover {
    background: #c7a151;
    border: 3px solid #c7a151;
  }
  
  /* Our Team Section
  --------------------------------*/
  #team {
    background: #fff;
    padding: 30px 0 0 0;
  }
  
  #team .member {
    text-align: center;
    margin-bottom: 20px;
  }
  
  #team .member .pic {
    overflow: hidden;
    text-align: center;
  }
  
  #team .member .pic img {
    max-width: 100%;
  }
  
  #team .member .details {
    background: #c7a151;
    color: #fff;
    padding: 15px;
    border-radius: 0 0 3px 3px;
  }
  
  #team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
  }
  
  #team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
  }
  
  #team .member .social {
    margin-top: 5px;
  }
  
  #team .member .social a {
    color: #fff;
  }
  
  #team .member .social i {
    font-size: 16px;
    margin: 0 2px;
  }
  
  /* Contact Section
  --------------------------------*/
 
  
  #contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
  }
  
  #contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #c7a151;
  }
  
  #contact .contact-info address,
  #contact .contact-info p {
    margin-bottom: 0;
    color: #212121;
  }
  
  #contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
  }
  
  #contact .contact-info a {
    color: #212121;
  }
  
  #contact .contact-info a:hover {
    color: #c7a151;
  }
  
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
  
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
      padding: 20px 0;
    }
  }
  
  @media (min-width: 768px) {
    #contact .contact-phone {
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
    }
  }
  
  #contact #google-map {
    height: 290px;
    margin-bottom: 20px;
  }
  
  @media (max-width: 576px) {
    #contact #google-map {
      margin-top: 20px;
    }
  }
  
  #contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  #contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  #contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  #contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  #contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  #contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  #contact .php-email-form input,
  #contact .php-email-form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
  }
  
  #contact .php-email-form input::focus,
  #contact .php-email-form textarea::focus {
    background-color: #c7a151;
  }
  
  #contact .php-email-form button[type=submit] {
    background: #c7a151;
    border: 0;
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
  }
  
  #contact .php-email-form button[type=submit]:hover {
    background: #2dc899;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #f2f5f8;
    padding: 0 0 30px 0;
    font-size: 14px;
  }
  
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }
  
  #footer .credits {
    text-align: center;
    font-size: 13px;
    color: #555;
  }
  
  #footer .credits a {
    color: #0c2e8a;
  }

  /* contact */
  .home_contact{
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg');
background-color: rgb(53, 53, 53);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .home_contact .container{
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .home_contactInner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .h-contactleft{
    height: 800px;
    width: 50%;
  }
  
  .h-contactleft img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .h-contactright{
    width: 50%;
    padding: 0px 150px;
  }

  .home_contactInner h2{
    font-size: 64px;
    color: rgb(205, 205, 205);
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: 10px;
  }
  .home_contactInner p{
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
  }
  .home_contactInner form{
    max-width: 500px;
  }
  .input_form{
    margin-bottom: 15px;
    text-align: left;
  }
  .input_form label{
    display: block;
    color: #aaa;
    margin-bottom: 6px;
  }
  .input_form input, .input_form textarea{
    width: 100%;
    height: 50px;
    border-radius: 0;
    border: none;
    padding: 10px;
    background: #fff;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
    color: #212121;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .input_form textarea{
    height: 200px;
  }
  .submit_btn .btn-projects{
    background: #fff;
    border: 1px solid #fff;
    color: #212121 !important;
  }

  .submit_btn{
    text-align: right;
  }
  .input_form input:focus, .input_form textarea:focus, .input_form input:focus-visible, .input_form textarea:focus-visible{
    border: 2px solid #000 !important;
    outline: none;
  }
  .orang_span{
    position: absolute;
    bottom: 40%;
    left: 25%;
    width: 30px;
    height: 30px;
    background: #fa921e;
    border-radius: 50%;
    box-shadow: -2.65px 4.24px 24px 0px rgb(250 146 30 / 50%);
  }
  .s_skyblue_span{
    top: 104%;
    right: 47%;
    z-index: 0;
    background: #19e2d1;
    border-radius: 50%;
    box-shadow: -0.359px 0.177px 24px 0px rgb(25 226 209 / 50%);
    width: 20px;
    height: 20px;
    position: absolute;
  }
  .blue_span{
    position: absolute;
    top: 100%;
    left: 27%;
    width: 30px;
    height: 30px;
    background: #19a5e2;
    border-radius: 50%;
    box-shadow: -2.65px 4.24px 24px 0px rgb(25 165 226 / 50%);
    display: block;
  }
  .s_red_span{
    position: absolute;
    bottom: 36%;
    left: 24%;
    width: 20px;
    height: 20px;
    background: #f90000;
    border-radius: 50%;
    box-shadow: -6.359px 10.177px 24px 0px rgb(249 0 0 / 50%);
  }

  /* section one */
  .text-block-main{
    background-image: url(..//images/test4-modified.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .text-block-inner{
    padding: 100px;
    text-align: center;
  }
  .text-block-inner h2{
    font-size: 50px;
    font-weight: 300;
    color: #fff;
  }
  .text-block-inner p{
    font-size: 20px;
    color: #fff;
    max-width: 700px;
    margin: auto;
  }

  /* wwd */
  .wwd_main{
    background: #fff;
    padding: 0px 0px;
  }
  .wwd_single{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wwd_single:nth-child(even){
    flex-direction: row-reverse;
  }
  .wwd_left{
    width: 50%;
    padding: 0px 50px 0px 50px;
  }
  .wwd_single:nth-child(even) .wwd_left{
    padding: 0px 50px 0px 50px;
  }
  .wwd_left h2{
    font-size: 36px;
  }
  .wwd_left p{
    color: #aaa;
    font-size: 16px;
  }
  .wwd_left .btn-projects::after{
    border: 1px solid #212121;
    z-index: 1;
  }
  .wwd_right{
    width: 50%;
    height: 550px;
  }
  .wwd_right img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* footer */
  footer{
    background: #fff;
    padding: 100px 0px 50px;
	color: #000;
  }
  .footer_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer_logo, .newsletter{
    width: 50%;
    position: relative;
  }
  .newsletter input{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #b9b9b9;
    padding: 10px;
    color: #fff;
  }
  .newsletter input:focus, .newsletter input:focus-visible{
    outline: none;
    border: none;
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  .newsletter button{
    background: transparent;
    position: absolute;
    right: 0;
    width: 150px;
    height: 45px;
    top: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media only screen and (max-width: 600px) {
   .newsletter{
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 4px;
    flex-direction: column;

   }
     .newsletter button{
      position: relative;
      right: 0;
      width: 100px;
      height: 45px;
      top: 2px;
      border-bottom: 1.5px solid white;
    } 

  }
 

  .footer_block{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	color: #000;
  }
  .footer-single-block{
    width: 25%;
  }
  .footer-single-block h2{
    font-size: 16px;
    letter-spacing: 0.35em;
    line-height: 20px;
    font-weight: 500;
   color: #000;
    text-transform: uppercase;
  }
  .footer-single-block ul{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footer-single-block ul a{
  color: #000;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
    font-weight: 300;
  }
  .footer-single-block ul a:hover{
    color: #b9b9b9;
  }
  .footer-bottom{
    margin-top: 120px;
    text-align: center;
    color: #b9b9b9;
    font-size: 1.2rem;
  }

  /* portfolio */
  .portfolio_mian{
  background-image: url('../images/ta_corp5.jpg');
  background-repeat:no-repeat;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size:cover;
background-position:center;

  }
  .portfolio_banner{
    margin-top: 8rem;
    background: rgb(255, 255, 255);
    text-align: center;
    padding: 100px;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .portfolio_banner p{
    color: #000000;
    font-size: 12px;
    padding-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
  }
  .portfolio_banner h2{
    color: rgb(0, 0, 0);
    margin-top: 2px;
    margin-bottom: 0;
    margin: 0px;
    font-size: 64px;
    font-weight: 400;
  }

  .tabs-nav{
    column-gap: 5rem;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #000;
  }
  .tabs-nav a{
    font-size: 16px;
    margin: 0px 20px;
    letter-spacing: 1px;
    padding: 20px 0px;
    display: block;
    border-bottom: 1px solid transparent;
  }
  .tabs-nav .tab-active a{
    border-bottom: 1px solid #fff;
    color: #fff;
  }
  .tabs_contant{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
	text-align: center;
  }
  .d_none{
    display: none;
  }
  .portfolio_card{
    width: calc(33.3% - 12px);
    margin-bottom: 10px;
  }
  .port_img{
    width: 100%;
    display: block;
    height: 250px;
    position: relative;
    overflow: hidden;
  }
  .port_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
  }
  .tabs-stage{
    margin: 25px 0;
  }
  .port_text{
    display: block;
    padding: 10px;
  }
  .port_text h2{
    margin-bottom: 0px !important;
    font-size: 25px;
    font-style: bold;
    color: #212121;
  }
  .port_text p{
    color: #B9B9B9;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
  }
  .port_img:hover img{
     transform: scale(1.2);
  }



  /* single portfolio */
  .single-portfolio-inner{
    display: flex;
    column-gap: 0;
    justify-content: center;
    margin: 25px 0px;
  }
  .spcontainer{
    margin: 0 50px;
  }
  .sp_left{
    width: 70%;
    /* padding-right: 50px; */
  }
  .sp_left img{
    display: block;
    width: 100%;
  }
  .sp_right{
    width: 30%;
    background: #fff;
    padding: 25px;
  }
  .sp_right h2{
    margin-bottom: 50px;
padding: 10px 0;
      font-size: 36px;
      font-style: bold;
  }
  .sp-block h3{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .sp-block P{
    color: #b9b9b9;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
  }

  /* responsive */
  @media (max-width:991px){
    .home_contactInner{
    flex-wrap: wrap;
    }
    .h-contactleft {
    height: auto;
    width: 100%;
    }
    .h-contactright {
    width: 100%;
    padding: 100px 100px 0px;
    }
    .footer_logo, .newsletter {
      width: 100%;
      position: relative;
   }
   .portfolio_card {
    width: calc(50% - 10px);
   }
   .tabs-nav a{
    font-size: 14px;
   }
  }

  @media (max-width:767px){
    .wwd_single{
      flex-wrap: wrap;
    }
    .wwd_left, .wwd_single:nth-child(even) .wwd_left {
      width: 100%;
      padding: 50px 20px;
  }
  .wwd_right {
    width: 100%;
    height: auto;
}
.home_contactInner h2{
  font-size: 32px;
}
.h-contactright{
    width: 100%;
    padding: 50px 20px;
}
.text-block-inner{
  padding: 50px 20px;
}
.text-block-inner h2{
  font-size: 30px;
}
.text-block-inner p{
  font-size: 16px;
}
footer{
  padding: 50px 0px 50px;
}
.footer_logo img{
  width: 250px;
    margin-bottom: 40px;
}
.footer-single-block {
  width: 100%;
  margin-bottom: 30px;
}
.home_contact{
  padding: 50px 0px !important;
}
#hero .hero-content{
  text-align: center;
  align-items: center;
}
.portfolio_banner{
 margin-top: 4rem;
  padding: 100px 20px;
}
.portfolio_banner h2{
  font-size: 40px;
}
.tabs-nav, .single-portfolio-inner{
  flex-wrap: wrap;
}
.portfolio_card {
  width: 100%;
}
.single-portfolio-inner{
  margin: 50px 0px;
}
.sp_left {
  width: 100%;
  padding-right: 0;
}
.sp_right{
  width: 100%;
  margin-top: 50px;
}
  }

  /* Button */

  .my_submit_button {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #fff;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
 }
  .my_submit_button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    color: #18d26e;
    background-color: rgba(255, 255, 255, 0.301);
    transition: all 0.3s;
    z-index: -1;
 }
  .my_submit_button:hover {
    color: #fff;
 }
  .my_submit_button:hover:before {
    width: 100%;
 }
 /* optional reset for presentation */

  .submit_btn_container {
   position: relative;
   bottom: 10%;
    text-align: center;
 }
 .border_radius_none{
  border-radius: none !important;
 }
/* Contact CSS */

/*# sourceMappingURL=style.css.map */

 /* ========Login Css========= */
 

/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');

#login{
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.7;
	color: #ffffff;
	background-color: #1f2029;
	overflow-x: hidden;
}
a {
	cursor: pointer;
  transition: all 200ms linear;
}
a:hover {
	text-decoration: none;
}
.link {
  color: #272727;
}
.link:hover {
  color: #a0a0a0;
}
.login_text{
  color: white;
}
p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
}
h4 {
  font-weight: 600;
}
h6 span{
  padding: 0 20px;
  text-transform: uppercase;
  font-weight: 700;
}
.section{
  position: relative;
  width: 100%;
  display: block;
}
.full-height{
  min-height: 90vh;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.checkbox:checked + label,
.checkbox:not(:checked) + label{
  position: relative;
  display: block;
  text-align: center;
  width: 60px;
  height: 16px;
  border-radius: 8px;
  padding: 0;
  margin: 10px auto;
  cursor: pointer;
  background-color: #ffffff;
}
.checkbox:checked + label:before,
.checkbox:not(:checked) + label:before{
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffeba7;
  background-color: #9a9a9a;
  content: '';
  z-index: 20;
  top: -10px;
  left: -10px;
  line-height: 36px;
  text-align: center;
  font-size: 24px;
  transition: all 0.5s ease;
}
.checkbox:checked + label:before {
  transform: translateX(44px) rotate(-270deg);
}


.card-3d-wrap {
  position: relative;
  width: 440px;
  max-width: 100%;
  height: 400px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  perspective: 800px;
  margin-top: 60px;
}
.card-3d-wrapper {
  width: 100%;
  height: 100%;
  position:absolute;    
  top: 0;
  left: 0;  
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all 600ms ease-out; 
}
.card-front, .card-back {
  width: 100%;
  height: 100%;
  background-color: #c9c9c9;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 300%;
  position: absolute;
  border-radius: 6px;
  left: 0;
  top: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.card-back {
  transform: rotateY(180deg);
}
.checkbox:checked ~ .card-3d-wrap .card-3d-wrapper {
  transform: rotateY(180deg);
}
.center-wrap{
  position: absolute;
  width: 100%;
  padding: 0 35px;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 35px) perspective(100px);
  z-index: 20;
  display: block;
}


.form-group{ 
  position: relative;
  display: block;
    margin: 0;
    padding: 0;
}
.form-style {
  padding: 13px 20px;
  padding-left: 55px;
  height: 48px;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  outline: none;
  color: #ffffff;
  background-color: #1f2029;
  border: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  box-shadow: 0 4px 8px 0 rgba(21,21,21,.2);
}
.form-style:focus,
.form-style:active {
  border: none;
  outline: none;
  box-shadow: 0 4px 8px 0 rgba(21, 21, 21, 0.537);
}
.input-icon {
  position: absolute;
  top: 0;
  left: 18px;
  height: 48px;
  font-size: 24px;
  line-height: 48px;
  text-align: left;
  color: #a7a7a7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:-ms-input-placeholder  {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input::-moz-placeholder  {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:-moz-placeholder  {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input::-webkit-input-placeholder  {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus:-ms-input-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus::-moz-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus:-moz-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus::-webkit-input-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btn{  
  border-radius: 4px;
  height: 44px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition : all 200ms linear;
  transition: all 200ms linear;
  padding: 0 30px;
  letter-spacing: 1px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  background-color: #202020;
  color: #c5c5c5;
  box-shadow: 0 8px 24px 0 rgba(255,235,167,.2);
}
.btn:active,
.btn:focus{  
  background-color: #c5c5c5;
  color: #000000;
  box-shadow: 0 8px 24px 0 rgba(16,39,112,.2);
}
.btn:hover{  
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 8px 24px 0 rgba(16,39,112,.2);
}

.section{
  margin-top: 2.5rem;
}


.logo {
	position: absolute;
	top: 30px;
	right: 30px;
	display: block;
	z-index: 100;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
}

.text-transform-lowercase{
text-transform: lowercase !important;
font-size: 14px !important;
}

body, html{
  overflow-x: hidden;
}

