@import url("theme.css");

/*  ============================================================================================================== Header ============================= */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  margin: auto;
  position: relative;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #ffffff;
  border-bottom:1px solid var(--color-border);
}

header .logo {
  display: flex;
  align-items: center;
  margin: 15px;
}

header .logo img {
  height: 70px;
}

header .logo .site_name {
  font-size: 4vmin;
  font-weight: bolder;
  color: var(--color-primary);
  transition: all 0.3;
  font-family: logo, sans-serif;
  margin-left: 10px;
}

header .links {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .links nav {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0 30px;
}

header .links nav li .category {
  display: flex;
  height: 80px;
  align-items: center;
  margin: 0 20px;
  color: var(--color-text);
  border-radius: 0px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

header .links nav li .category:hover {
  color: var(--color-accent);
  transform: translateY(3px);
}

header .links nav li i {
  margin-left: 10px;
  font-size: 14px;
  color: var(--color-icon);
}

header .links nav li .sub {
  position: absolute;
  background-color: var(--color-bg);
  box-shadow: 0px 0px 7px 3px #00000015;
  z-index: 10;
  border-radius: 10px;
  width: max-content;
  display: none;
  transition: display 0.3s;
}

header .links nav li:hover .sub {
  display: block;
  overflow: hidden;
}

header .links nav li .sub li {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--color-border);
  transform: scale(1);
  transition: transform 0.3s, border 0.3s;
}

header .links nav li .sub li:hover {
  transform: translate(5px);
  border-bottom: 1px solid var(--color-accent);
  background-color: var(--color-card);
}

header menu {
  display: none;
}

header menu {
  width: 25px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin: 10px 15px;
}

header menu span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--color-accent);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

header menu span:nth-child(1) {
  top: 0px;
}

header menu span:nth-child(2) {
  top: 8px;
}

header menu span:nth-child(3) {
  top: 16px;
}

header menu.active span:nth-child(1) {
  top: 6px;
  transform: rotate(135deg);
}

header menu.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

header menu.active span:nth-child(3) {
  top: 6px;
  transform: rotate(-135deg);
}

/* -- responsive -- */

@media screen and (max-width: 800px) {
  header {
    display: block;
    height: auto;
  }

  header .logo {
    margin: 0px;
    width:max-content;
  }

  header menu {
    display: block;
    position: absolute;
    right: 10px;
    top: 15px;
  }

  header .links {
    display: none;
  }

  header menu.active + .links {
    display: block;
  }

  header .links nav {
    display: block;
    margin: 0;
    padding: 0;
  }

  header .links nav li .category {
    height: 60px;
    padding: 0 15px;
    margin: 0;
    border-bottom: 1px solid #e7ebee;
    transform: scale(1);
    transition: transform 0.3s, border 0.3s;
  }

  header .links nav li .category:hover {
    border-bottom: 1px solid var(--color-accent);
    background-color: var(--color-gray);
  }
}

@media screen and (max-width: 500px) {
  header .logo .site_name {
    font-size: 6vmin;
  }
}

/* ============================================================================================================== Footer ======================================== */

footer {
  width: 100%;
  background-color: var(--color-footer);
  border-top: 1px solid var(--color-border);
}

.footer-link {
  text-decoration: none;
}

#footer_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 3.5rem;
  grid-gap: 25px;
}

#footer_contacts h3 {
  margin-bottom: 0.75rem;
}
#footer_contacts p {
  font-size: 14px;
  color: var(--color-footer-gray);
}

#footer_social_media {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

#footer_social_media .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  transition: all 0.4s;
}

#footer_social_media .footer-link i {
  font-size: 1.25rem;
  color: var(--color-white);
}

#footer_social_media .footer-link:hover {
  opacity: 0.8;
}

#youtube {
  background: #f11515;
}

#instagram {
  background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#facebook {
  background-color: #4267b3;
}

#whatsapp {
  background-color: #25d366;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-list h3 {
  font-weight: 500;
}
.footer-list .footer-link {
  font-size: 14px;
  color: var(--color-footer-gray);
  transition: all 0.4s;
}

.footer-list .footer-link:hover {
  color: var(--color-blue);
}

#footer_copyright {
  display: flex;
  justify-content: center;
  background-color: var(--color-footer-dark);
  font-size: 0.9rem;
  padding: 1.5rem;
  font-weight: 400;
  gap: 7px;
  flex-wrap: wrap;
}

/* contact  */

footer .contact {
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: white;
  border-bottom: 0.1px solid var(--color-footer-dark);
  padding: 15px;
}

footer .contact .links {
  margin: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

footer .contact .links:hover i {
  color: var(--color-blue);
}

footer .contact .links i {
  margin: 0px 5px;
  font-size: 25px;
  color: var(--color-accent);
}

footer .contact .links .text {
  margin-left: 15px;
}

footer .contact .links .text .big {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-footer-text);
}

footer .contact .links .text .small {
  font-size: 14px;
  color: var(--color-footer-gray);
  margin: 3px 0px;
}

@media screen and (max-width: 768px) {
  #footer_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 426px) {
  #footer_content {
    grid-template-columns: repeat(1, 1fr);
    padding: 3rem 2rem;
  }
}

/* ============================================================================================================== Footer END ======================================== */

/* ============================================================================================================== WhatsApp Floating ===================== */

.whats-float {
  position: fixed;
  transform: translate(150px, 0px);
  bottom: 3vh;
  right: 0;
  width: 200px;
  overflow: hidden;
  background-color: #032e13;
  color: #fff;
  border-radius: 50vh 0 0 50vh;
  z-index: 5;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
  cursor: pointer;
  z-index: 999;
}

.whats-float a span {
  color: white;
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 16px;
  font-weight: bolder;
}

.whats-float i {
  font-size: 30px;
  color: white;
  line-height: 30px;
  padding: 10px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.whats-float small {
  color: #e7e6e6;
}

.whats-float:hover {
  color: #ffffff;
  transform: translate(0px, 0px);
}

.whats-float:hover i {
  transform: rotate(360deg);
}

/* ============================================================================================================== Floating Hero ================= */

.floating_hero {
  margin-bottom: 15px;
  height: max-content;
  position: relative;
  background-color: var(--color-bg);
}

/* ============================================================================================================== Languages ================= */
.floating_language {
  padding: 3px;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}

.floating_language #languages {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.floating_language #languages img {
  width: 50px;
  position: absolute;
  transition: ease 1.5s;
  animation: floater 2s ease-in-out infinite;
  filter: opacity(0.15);
}

@media screen and (max-width: 600px) {
  .floating_language #languages img {
    width: 30px;
  }
}

@keyframes floater {
  0% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*  ============================================================================================================== hero============================= */
.hero {
  width: 100%;
  background-color: rgba(247, 252, 250, 0.596);
  padding: 15px;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 40vw 1fr;
  position: relative;
}

.hero .left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------left */

.hero .left .solar {
  height: 240px;
  width: 240px;
  margin: 30px;
  margin-left: 20px;
}

.hero .left .solar > div {
  height: 240px;
  width: 240px;
  border-radius: 50%;
  position: absolute;
}

/* --language */

.hero .left .solar .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(2, 102, 189);
  animation: rotate 5s linear infinite;
}

.hero .left .solar .lang div {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(0, 116, 248);
}

.hero .left .solar .lang div img {
  width: 30px;
  height: 30px;
}

.hero .left .solar .lang div:nth-child(1) {
  top: -5px;
  right: 30px;
  transform: rotate(45deg);
}

.hero .left .solar .lang div:nth-child(2) {
  left: -25px;
  transform: rotate(-90deg);
}

.hero .left .solar .lang div:nth-child(3) {
  right: 30px;
  bottom: -5px;
  transform: rotate(145deg);
}

.hero .left .solar .code {
  border: 2px solid rgb(0, 4, 248);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.6);
  animation: rotate-op 8s linear infinite;
}

.hero .left .solar .code div {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(0, 4, 248);
}

.hero .left .solar .code div img {
  width: 35px;
  height: 35px;
  animation: spin 8s ease-in-out infinite;
}

.hero .left .solar .code div:nth-child(1) {
  top: -30px;
}

.hero .left .solar .code div:nth-child(2) {
  left: -30px;
}

.hero .left .solar .code div:nth-child(3) {
  bottom: -30px;
}

.hero .left .solar .code div:nth-child(4) {
  right: -30px;
}

.hero .left .solar .logo {
  background: #f9fdfb;
  transform: scale(0.3);
}

.hero .left .solar .logo img {
  width: 100%;
  border-radius: 50%;
  animation: spin 20s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes rotate-op {
  from {
    transform: scale(0.6) rotate(360deg);
  }

  to {
    transform: scale(0.6) rotate(0deg);
  }
}

/* ---- right */
.hero .right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  gap: 10px;
}

.hero .right .title {
  font-size: 30px;
  color: var(--color-title);
}

.hero .right .title .logo {
  font-weight: bolder;
  color: var(--color-accent);
}

.hero .right .title .logo .accent_two {
  color: var(--color-accent-two);
}

.hero .right .summary {
  color: var(--color-text);
  text-align: justify;
}

.hero .right a {
  background-color: var(--color-accent);
  border-radius: 50vh;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 15px;
  border: 2px solid var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero .right a i {
  color: white;
  font-size: 20px;
  transform: rotate(-35deg);
  transform-origin: top;
}

.hero .right a:hover i {
  color: var(--color-accent);
}

.hero .right a:hover {
  background-color: transparent;
  color: var(--color-accent);
}

/* ---- @media Q Hero--- */
@media screen and (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero .right .title {
    font-size: 24px;
  }

  .hero .right .summary {
    text-align: justify;
  }
}

/* ============================================================================================================== Text Carasoul ============ */

.text_carasoul {
  display: flex;
  overflow: hidden;
  position: relative;
}

.text_carasoul::before,
.text_carasoul::after {
  content: "";
  display: block;
  width: 60px;
  left: 0px;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 999;
}

.text_carasoul::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.text_carasoul::after {
  left: initial;
  right: 0px;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.text_carasoul .texts {
  display: flex;
  align-items: center;
  padding-top: 15px;
  animation: marquee 40s linear infinite;
}

.text_carasoul .texts span {
  margin-right: 45px;
  font-size: 50px;
  text-wrap: nowrap;
  font-weight: bolder;
  color: transparent;
  -webkit-text-stroke: 3px var(--color-primary);
  letter-spacing: 3px;
  animation: hue 10s linear infinite;
}

@media screen and (max-width: 768px) {
  .text_carasoul .texts span {
    font-size: 25px;
    -webkit-text-stroke: 1.5px var(--color-primary);
  }
}

/* ============================================================================================================== services============== */

.services-content {
  padding: 0px 15px;
}

.services-content .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 10px;
  margin-top: 20px;
}

.services-content .services .service {
  width: 100%;
  background-color: var(--color-card);
  margin-bottom: 30px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 15px;
  position: relative;
  cursor: pointer;
  text-align: center;
}

.services-content .services .service::before {
  content: "";
  height: 3px;
  background-color: var(--color-primary);
  position: absolute;
  top: 0px;
  width: 50px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s ease;
}

.services-content .services .service:hover {
  transform: translateY(-10px);
}

.services-content .services .service:hover::before {
  width: 90%;
}

.services-content .services .service .icon {
  height: 60px;
  width: 60px;
  background-image: linear-gradient(
    var(--color-accent),
    var(--color-accent-second)
  );
  margin: 15px auto 20px;
  border-radius: 50%;
}

.services-content .services .service:hover .icon {
  transform: rotate(360deg);
}

.services-content .services .service .icon i {
  font-size: 25px;
  color: #fff !important;
  line-height: 60px;
}

.services-content .services .service h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.services-content .services .service p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-text-lite);
  margin: 5px 0 10px;
  text-align: center;
}

.services-content .services .service .icons {
  display: flex;
  justify-content: space-between;
  margin: 30px 20px 30px 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.services-content .services .service i {
  font-size: 25px;
}

.services-content .services .service i:nth-child(1) {
  color: var(--color-red);
}

.services-content .services .service i:nth-child(2) {
  color: var(--color-primary-dark);
}

.services-content .services .service i:nth-child(1):hover {
  text-shadow: 1px 3px 10px #ff373759;
}

.services-content .services .service i:nth-child(2):hover {
  text-shadow: 1px 3px 10px #00c08667;
}

@media screen and (max-width: 600px) {
  .services-content .services {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* ============================================================================================================== ITEM ============================ */

.items_content {
  padding: 10px 15px;
  position: relative;
}

.items_content .items_content_title {
  color: var(--color-button);
  border-left: 5px solid var(--color-button);
  padding-left: 5px;
  font-size: 24px;
}

.items_content > #left,
.items_content > #right {
  position: absolute;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 45%;
  color: rgba(255, 255, 255, 0.582);
  background-color: #ffffff2c;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  font-size: 20px;
}

.items_content > #left {
  left: 0;
}

.items_content > #right {
  right: 0;
}

.items_content > #left:hover,
.items_content > #right:hover {
  color: var(--color-button-text);
  background-color: #21144d5b;
}

.items_content .items {
  overflow-y: hidden;
  overflow-x: auto;
  display: flex;
  scroll-behavior: smooth;
}

.items_content .items .item {
  min-width: 160px;
  background-color: var(--color-card);
  margin: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid var(--color-border);
  cursor: pointer;
}

/* ============================================================================================================== Nested Heading ======================================== */

.nested_header {
  display: flex;
  justify-content: space-between;
  margin: 0px 0px 10px 0;
  padding: 0 10px;
  height: 40px;
  align-items: center;
}

.nested_header .heading_title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bolder;
  color: var(--color-current);
  margin-top: 10px;
  font-size: 18px;
}

.nested_header .heading_title::before {
  content: "";
  display: block;
  height: 25px;
  width: 6px;
  border-radius: 50vw;
  background: var(--color-current);
  background-size: 400% 400%;
}

.nested_header .heading_more {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bolder;
  font-size: 14px;
  color: var(--color-text-lite);
  cursor: pointer;
}

.nested_header .heading_more i {
  font-size: 18px;
  color: var(--color-text-lite);
  position: relative;
}

.nested_header .heading_more:hover,
.nested_header .heading_more:hover i,
.nested_header .heading_more:hover span {
  color: var(--color-blue);
}

.nested_header .heading_more:hover i {
  animation: left_right 1s ease-in-out infinite;
}

@keyframes left_right {
  0% {
    right: 0;
  }

  50% {
    right: 3px;
  }

  100% {
    right: 0;
  }
}

/* -------------------Team thumb scroll bar start---------------------- */
.items_content .items::-webkit-scrollbar {
  height: 5px;
}

.items_content .items::-webkit-scrollbar-track {
  border-radius: 50vh;
  margin-left: 40vw;
  margin-right: 40vw;
  height: 40px;
  border: 1px solid #ebfcf7;
  background-color: #ebfcf7;
}

.items_content .items::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
}

@media screen and (max-width: 600px) {
  .items {
    scroll-snap-type: x mandatory;
  }
  .items .item {
    scroll-snap-align: center;
  }
}

/* ============================================================================================================== Nested Heading END ======================================== */

/* ============================================================================================================== Hire Now ================= */

.items_content .items.hire .item .cover {
  height: 140px;
  width: 120px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
}

.items_content .items.hire .item .cover .bg {
  /* position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 50%; */
  /* border: 2px solid transparent;
  outline: 2px dashed var(--color-primary);
  animation: rotate 7s linear infinite; */
}

.items_content .items.hire .item .cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid transparent;
}

.items_content .items.hire .item .name {
  font-weight: 600;
  font-size: 16px;
  position: relative;
  text-align: center;
  color: var(--color-accent);
  overflow: hidden;
}

.items_content .items.hire .item .name::before {
  content: "";
  display: block;
  height: 16px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 3px;
  transform: rotate(15deg);
  background: linear-gradient(
    to left,
    transparent,
    var(--color-card) 70%,
    transparent
  );
  animation: shade 3s ease-in infinite;
}

.items_content .items.hire .item .type {
  font-size: 15px;
  color: var(--color-text-gray);
  text-align: center;
  display: none;
}

.items_content .items.hire .item a {
  text-decoration: none;
  text-align: center;
  padding: 5px 25px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  background-color: var(--color-primary);
}
.items_content .items.hire .item a:hover {
  filter: opacity(0.8);
}

/* ============================================================================================================== Team =============== */

.items_content .items.team {
  gap: 25px;
}
.items_content .items.team .item {
  min-width: 200px;
  overflow: hidden;
}

.items_content .items.team .item .cover {
  height: 200px;
  width: 160px;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
}

.items_content .items.team .item .cover .bg {
  /* position: absolute;
  height: 200px;
  width: 180px;
  border-radius: 20px;
  border: 2px solid transparent;
  outline: 2px dashed var(--color-primary);
  animation: hue 20s linear infinite; */
}

.items_content .items.team .item .cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  border: 2px solid transparent;
}

.items_content .items.team .item .name {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 16px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.items_content .items.team .item .name::before {
  content: "";
  display: block;
  height: 16px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 3px;
  transform: rotate(15deg);
  background: linear-gradient(
    to left,
    transparent,
    var(--color-card) 70%,
    transparent
  );
  animation: shade 3s ease-in infinite;
}

.items_content .items.team .item .type {
  font-size: 15px;
  color: var(--color-text-gray);
  text-align: center;
}

.items_content .items.team .item a {
  display: none;
  text-decoration: none;
  text-align: center;
  padding: 5px 25px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-button);
}

/* ============================================================================================================== Recent Works =============== */

.items.recent .item {
  min-width: 460px;
}

.items.recent .item .cover {
  width: 100%;
  height: auto;
  border-radius: 25px;
  overflow: hidden;
}

.items.recent .item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
}

.items.recent .item .title {
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  color: var(--color-text);
}

.items.recent .item .extra {
  width: 100%;
  margin: 10px 15px;
  display: flex;
  justify-content: space-between;
}

.items.recent .item .extra > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.items.recent .item .extra > div span {
  color: #39cf67;
  font-size: 14px;
}

.items.recent .item .extra > div i {
  color: #39cf67;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background-color: #f2fff7;
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .items.recent .item {
    min-width: 100%;
  }
}

/* ========================================= Timeline ======================================= */

#timeline .nested_header {
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 30px !important;
}
#timeline .nested_header .heading_title {
  font-size: 22px;
  font-weight: 700;
}

#timeline .nested_header .heading_title::after {
  content: "";
  display: block;
  height: 25px;
  width: 6px;
  border-radius: 50vw;
  background: var(--color-current);
  background-size: 400% 400%;
}

/* Some Cool Stuff */
.timeline_card:nth-child(1) {
  order: 1;
}

.timeline_card:nth-child(2) {
  order: 4;
}

.timeline_card:nth-child(3) {
  order: 2;
}

.timeline_card:nth-child(4) {
  order: 5;
}

.timeline_card:nth-child(5) {
  order: 3;
}

.timeline_card:nth-child(6) {
  order: 6;
}

#timeline {
  padding: 20px 0;
  background: var(--color-bg);
  border-top: 1px solid rgba(0, 48, 119, 0.897);
  border-bottom: 1px solid rgba(1, 92, 95, 0.507);
}

#timeline .timeline_wrapper {
  position: relative;
  margin: auto;
}

#timeline .timeline_wrapper::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgb(1, 58, 218);
}

#timeline .timeline_card {
  position: relative;
  display: block;
  margin: 10px auto 80px;
  max-width: 94%;
  z-index: 2;
  border-radius: 25px;
}

#timeline .timeline_card .head {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
}

#timeline .timeline_card .head .number-box {
  display: inline;
  float: left;
  margin: 15px;
  padding: 10px;
  font-size: 35px;
  line-height: 35px;
  font-weight: 600;
  background: rgba(4, 20, 167, 0.226);
  border-radius: 15px;
}

#timeline .timeline_card .head .number-box span{
  color:var(--color-white);
}

#timeline .timeline_card .head h2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

#timeline .timeline_card .head h2 span {
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  color:var(--color-white);
}

#timeline .timeline_card .head h2 span:nth-child(1) {
  font-size: 22px;
  font-weight: bolder;
}

#timeline .timeline_card .body {
  background: var(--color-bg);
  border: 1px solid rgba(0, 79, 250, 0.4);
  border-radius: 25px;
  border-top: 0;
  padding: 10px;
}

#timeline .timeline_card .body img {
  display: block;
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
}

#timeline .timeline_card .body p {
  font-size: 14px;
  line-height: 18px;
  margin: 10px;
  font-weight: normal;
  text-align: justify;
  /*color:var(--color-white);*/
}

#timeline .timeline_card--step1 {
  background-color: #e40000;
}

#timeline .timeline_card--step1 .head::after {
  border-color: #e40000;
}

#timeline .timeline_card--step2 {
  background-color: #00853c;
}

#timeline .timeline_card--step2 .head::after {
  border-color: #00853c;
}

#timeline .timeline_card--step3 {
  background-color: #5622ce;
}

#timeline .timeline_card--step3 .head::after {
  border-color: #5622ce;
}

#timeline .timeline_card--step4 {
  background-color: #039196;
}

#timeline .timeline_card--step4 .head::after {
  border-color: #039196;
}

#timeline .timeline_card--step5 {
  background-color: #706e01;
}

#timeline .timeline_card--step5 .head::after {
  border-color: #706e01;
}

@media (min-width: 1000px) {
  #timeline .timeline_wrapper {
    display: flex;
    flex-flow: column wrap;
    width: 1170px;
    height: 1650px;
    margin: 0 auto;
  }

  #timeline .timeline_wrapper::after {
    border-left: 1px solid #01268b;
  }

  #timeline .timeline_card:nth-child(even) .head::after,
  #timeline .timeline_card:nth-child(odd) .head::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  #timeline .timeline_card:nth-child(even) .head::before,
  #timeline .timeline_card:nth-child(odd) .head::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #004492;
    border-radius: 9px;
    box-shadow: 0px 0px 2px 8px #006eec54;
  }

  #timeline .timeline_card {
    max-width: 450px;
    height: auto;
    margin: 90px;
    margin-top: 45px;
    margin-bottom: 45px;
  }

  #timeline .timeline_card:nth-child(odd) {
    margin-right: 5px;
  }

  #timeline .timeline_card:nth-child(odd) .head::after {
    border-left-width: 15px;
    border-left-style: solid;
    left: 100%;
  }

  #timeline .timeline_card:nth-child(odd) .head::before {
    left: 491.5px;
  }

  #timeline .timeline_card:nth-child(even) {
    margin-left: 45px;
  }

  #timeline .timeline_card:nth-child(even) .head::after {
    border-right-width: 15px;
    border-right-style: solid;
    right: 100%;
  }

  #timeline .timeline_card:nth-child(even) .head::before {
    right: 489.5px;
  }

  #timeline .timeline_card:nth-child(2) {
    margin-top: 180px;
  }
}

@media (min-width: 480px) {
  #timeline .timeline_card {
    max-width: 60%;
    box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
  }
}

@media (min-width: 720px) {
  #timeline .timeline_card {
    max-width: 40%;
  }
}

/* =======================================Counter==================== */

.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 20px;
  padding: 20px;
  background: var(--color-bg);
  border: none;
}

.counters .counter {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 20px 30px 20px;
  position: relative;
  font-size: 16px;
  border-radius: 0.5em;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-bottom: 10px solid var(--color-button);
  cursor: pointer;
  gap: 10px;
}

.counters i {
  color: var(--color-accent);
  font-size: 2.5em;
  text-align: center;
}

.counters span.num {
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
}

.counters span.text {
  color: var(--color-text);
  font-size: 1em;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 400;
  text-align: center;
}

/* ============================================== Contact ================================ */

.contact_blank {
  padding-top: 30px;
}

.contact {
  border-radius: 25px;
  border-radius: 1px solid var(--color-border);
  margin: 10px;
}


.contact .nested_header {
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 30px !important;
}
.contact .nested_header .heading_title {
  font-size: 22px;
  font-weight: 700;
}

.contact .nested_header .heading_title::after {
  content: "";
  display: block;
  height: 25px;
  width: 6px;
  border-radius: 50vw;
  background: var(--color-current);
  background-size: 400% 400%;
}

.contact .topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 15px;
  margin: 15px;
}

.contact .topics .topic {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.contact .topics .topic input[type="radio"] {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 20px;
  width: 20px;
  padding: 3px;
  appearance: none;
  display: inline-block;
  border-radius: 50%;
  background-clip: content-box;
  border: 2px solid var(--color-border);
}

.contact .topics .topic input[type="radio"]:checked {
  background-color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.contact .topics .topic input[type="radio"]:checked + label {
  border: 1px solid var(--color-blue);
}

.contact .topics .topic label {
  border: 1px solid var(--color-border);
  border-radius: 25px;
}

.contact .topics .topic label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.contact .topics .topic img {
  height: 70px;
  width: 60px;
  object-fit: cover;
  border-radius: 15px;
  margin: 10px;
  margin-bottom: 5px;
}

.contact .topics .topic span {
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 10px;
}

.contact .contact_box {
  display: flex;
  gap: 10px;
  margin: 10px;
}

.contact .contact_box .msg {
  width: 100%;
  height: 40px;
}

.contact .contact_box .msg input {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 10px;
}

.contact .contact_box .msg input:focus {
  outline: none;
}

.contact .contact_box .send {
  background-color: var(--color-button);
  height: 40px;
  min-width: max-content;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  border-radius: 15px;
  padding: 0 10px;
  cursor: pointer;
}

.contact .contact_box .send * {
  color:var(--color-white);
}


.contact .contact_box .send i {
  transform: rotate(-35deg);
  transform-origin: top;
}

.contact .contact_box .send span {
  font-size: 14px;
  font-weight: 700;
}

.contact .contact_box .send:hover {
  filter: opacity(0.8);
}

@media screen and (max-width: 600px) {
  .contact .contact_box {
    flex-direction: column;
  }

  .contact .contact_box .msg {
    height: auto;
  }

  .contact .contact_box .msg input {
    height: 60px;
    text-align: left;
  }
}


