@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap");
@font-face {
  font-family: "Gilroy ExtraBold";
  src: url("<?php echo get_template_directory_uri(); ?>/assets/fonts/Gilroy-ExtraBold.woff2")
      format("woff2"),
    url("<?php echo get_template_directory_uri(); ?>/assets/fonts/Gilroy-ExtraBold.woff")
      format("woff"),
    url("<?php echo get_template_directory_uri(); ?>/assets/fonts/Gilroy-ExtraBold.ttf")
      format("truetype");
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

:root {
  --primary-color: #121127;
  --secondary-color: #7b61ff;
  --secondary-dark: #5d26b8;
  --dark-color: #2d2b48;
  --light-color: rgba(255, 255, 255, 56%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: var(--primary-color);
}

ul,
li {
  margin: 0;
  padding: 0;
}

.color {
  color: var(--secondary-color);
}

.secondary {
  color: var(--secondary-color);
  margin-right: 80px;
  margin-left: 80px;
  position: relative;
}

.secondary::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  top: 50%;
  left: -40px;
}

.secondary::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  top: 50%;
  right: -40px;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-title-color {
  font-size: 18px;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--secondary-color);
}

p {
  font-size: 18px;
  line-height: 32px;
}

.azim-btn {
  padding: 10px 30px;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.azim-btn:hover {
  background-color: #818181;
  color: #fff;
  text-transform: uppercase;
}

.azim-btn-1 {
  padding: 10px 40px;
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  transition: all ease 0.3s;
}

.azim-btn-1:hover {
  background-color: var(--secondary-color);
  transition: all ease 0.3s;
}

.azim-btn-2 {
  padding: 10px 30px;
  background-color: var(--secondary-color);
  color: #f1f1f1;
  text-transform: uppercase;
  transition: all 0.5s ease;
  font-weight: 400;
}

.azim-btn-2:hover {
  background-color: var(--secondary-dark);
  color: #fff;
  text-transform: uppercase;
}

/* Comment Form */
.comment-form {
  width: 100%;
  max-width: 600px;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: flex;
  flex-direction: column;
}

.comments-title {
  font-size: clamp(18px, 2vw, 20px);
  background-color: #e7e7e7;
  padding: 10px;
}

.submit {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
  padding: 4px 20px;
  transition: all ease.3s;
}

.submit:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transition: all ease.3s;
}

/* Aside */

.widget ul li {
  margin-bottom: 20px;
  list-style: none;
}

.wp-block-latest-posts__post-title {
  color: var(--dark-color);
  position: relative;
  left: 20px;
}

.wp-block-latest-posts__post-title:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.wp-block-latest-posts__post-title::before {
  content: "⇒";
  position: absolute;
  top: 0;
  left: -20px;
  color: var(--primary-color);
}

/* Topbar */
.topbar {
  background-color: var(--secondary-color);
  color: #333;
}

.s-icon i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  padding: 10px;
  background-color: #333;
  color: #fff;
}

.s-icon i:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Nav */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  z-index: 10;
}

.logo {
  font-size: 18px;
  color: #fff;
}

.active {
  color: #333;
}

.nav-menu ul {
  list-style-type: none;
}

.nav-menu ul li {
  display: inline;
  text-transform: uppercase;
  list-style-type: none;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  margin-right: 50px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 0, 0 100%);
}

.nav-menu ul li a:last-child {
  margin-right: 0;
}

.nav-menu ul li a:hover {
  color: var(--secondary-color);
  transform: translateY(-10px);
}

.menu-item {
  display: inline;
  margin-right: 15px;
}

.menu-item a {
  color: #fff;
}

.current-menu-item {
  font-weight: bold;
}

.current-menu-item a {
  color: var(--secondary-color);
}

/* Hero */
.hero {
  height: 60vh;
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
  top: 30px;
  margin-bottom: 40px;
}

.hero-title {
  font-family: "Gilroy ExtraBold", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2vw, 70px);
}

.hero p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32.4px;
}

.hero-img {
  display: none;
  height: auto;
  object-fit: cover;
  aspect-ratio: auto;
}

.article-single {
  position: relative;
  top: 50px;
  margin-bottom: 100px;
}

article {
  min-height: 50vh;
}

article p {
  font-size: 16px;
}

.article-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}

.blog-card {
  border: 1px solid var(--dark-color);
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 40px;
}

.blog-card:not(:last-child) {
}

.blog-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
  margin-bottom: 20px;
}

.entry-title {
  font-size: 24px;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transition: all 1s ease-in;
}

.show {
  opacity: 1;
  filter: blur(0);
}

.hidden2 {
  opacity: 0;
  filter: blur(2px);
  transform: translateX(-100%);
  transition: all 2s ease-in;
}

.show2 {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.hidden3 {
  opacity: 0;
  filter: blur(2px);
  transform: translateX(100%);
  transition: all 1.5s ease-in;
}

.show3 {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.page-header {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8),
      rgba(1, 1, 1, 0.4)
    ),
    url(../images/sunset.jpeg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  position: relative;
  top: 68px;
}

.features-section {
  padding: 100px 0px;
  margin-bottom: 50px;
}

.features-section i {
  font-size: 40px;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Intro */
.intro-section {
  background-color: #f3f3f3;
}

.sub-title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.intro-title {
  font-size: clamp(24px, 2vw, 40px);
  text-align: center;
}

.intro-image {
  margin-bottom: 20px;
}

.intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: auto;
}

.content {
  color: #555;
}

.learn-more {
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
}

.learn-more:hover {
  background-color: #9840ef;
  color: #fff;
}

/* Services */
.services {
  padding: 100px 0px;
  background-color: var(--primary-color);
}

.service-heading {
  color: #fff;
}

.service-title {
  font-size: clamp(18px, 2vw, 20px);
  color: #fff !important;
}

.s-text {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--light-color);
}

.service-card {
  background-color: var(--dark-color);
  color: var(--light-color) !important;
  transition: all ease 0.4s;
}

.service-card:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--light-color);
  transition: all ease 0.4s;
}

.service-card:hover > .service-img {
  background-color: var(--primary-color);
  color: #333;
}

.service-img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  padding: 12px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-img i {
  font-size: 50px;
  font-weight: 300;
  color: #fff;
}

/* Features */
.features-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-title {
  font-weight: 600;
}

.feature-text {
  font-size: clamp(16px, 2vw, 18px);
}

/* Insights */
.insights-section {
  background-color: #e7e7e7;
  padding: 100px 0px;
}

.insights-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.insights-item {
  /* border: 1px solid lightgray;
  border-radius: 5px;
  padding: 20px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insights-sub-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-color);
}

.insights-title {
  font-size: clamp(24px, 2vw, 40px);
  text-align: center;
  text-transform: capitalize;
  color: var(--light-color);
}

.post-title {
  font-size: clamp(18px, 2vw, 20px);
}

.insights-wrapper .read-more {
  color: var(--secondary-color);
}

.read-more > span {
  transition: all ease 0.4s;
}

.read-more:hover > span {
  margin-left: 5px;
  transition: all ease 0.4s;
}

/* Insights List */
.insights-list-section {
  padding: 100px 0px;
}

.insights-list-wrapper {
  display: block;
}

.insights-list-title {
  font-size: clamp(24px, 2vw, 40px);
  text-align: center;
  text-transform: capitalize;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.insight-list-content {
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
}

.insight-list-content:hover > a {
  color: var(--secondary-color);
}

.insight-list-content p {
  font-size: 16px;
}

.insight-list-content a {
  color: var(--dark-color);
}

.insight-list-content a:hover {
  color: var(--secondary-color);
}

.insights-post-title {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: -10px;
}

.insights-read-more {
  color: var(--secondary-color);
}

.insights-read-more:hover {
  color: var(--light-color);
}

.insights-read-more span {
  margin-left: 0px;
}

.insights-read-more:hover > span {
  margin-left: 10px;
}

.azim-dark-link {
  color: #fff;
}

.azim-dark-link:hover {
  color: var(--secondary-color);
}

/* Before Footer */
.before_footer {
  background-color: var(--primary-color);
  color: #f2f2f2;
  padding: 60px 20px;
}

.b4-title {
  font-size: clamp(16px, 2vw, 42px);
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.b4-title2 {
  font-size: clamp(16px, 2vw, 18px);
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.footer {
  background-color: #f5f5f5;
  color: #333;
}

.footer-wrapper {
  text-align: center;
}

.footer-wrapper.copy p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
}

.footer a {
  color: #333;
}

.footer a:hover {
  color: var(--secondary-color);
}

/* .copy {
  position: absolute;
  top: 50%;
} */

/* Widget */
.sidebar {
  width: 300px;
  max-width: 100%;
}

.widget {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.widget-title {
  font-size: 20px;
  color: var(--primary-color);
}

.wp-block-heading {
  font-size: 20px;
  border-bottom: 2px solid var(--dark-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.page-numbers {
  background-color: lightgray;
  padding: 5px 10px;
}

.page-numbers.current {
  background-color: var(--primary-color);
  color: #fff;
}

.page-numbers.dots {
  background: none;
}

.prev.page-numbers,
.next.page-numbers {
  background: none;
}

/* Partners */
.partners-section {
  padding: 50px 0px;
  margin-bottom: 100px;
}

.partners-title {
  font-size: clamp(24px, 2vw, 60px) !important;
  text-align: center;
  text-transform: capitalize;
}

.partners-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

.partner-item {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: none;
  border-bottom: 1px solid #e7e7e7;
  transition: all ease 0.3s;
}

.partner-item:hover {
  background-color: #f0f0f0;
  transition: all ease 0.3s;
}

/* .partner-item:nth-child(3),
.partner-item:nth-child(6) {
  border-right: none;
} */

.partner-item:nth-child(6) {
  border-bottom: none;
}

.partner-item img {
  width: 100%;
  max-width: 200px;
  filter: grayscale(100%);
}

.partner-item:hover > img {
  filter: grayscale(0%);
}

@media only screen and (max-device-width: 1366px) {
  .hero {
    background-attachment: scroll;
  }
}

@media (min-width: 600px) {
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partners-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-item {
    border-right: 1px solid #e7e7e7;
  }

  .partner-item:nth-child(2),
  .partner-item:nth-child(4),
  .partner-item:nth-child(6) {
    border-right: none;
  }

  .partner-item:nth-child(5),
  .partner-item:nth-child(6) {
    border-bottom: none;
  }
}

@media (min-width: 991px) {
  .hero {
    height: 90vh;
    top: 116px !important;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-img {
    display: block;
    /* width: 600px; */
    height: auto;
    object-fit: cover;
    aspect-ratio: auto;
  }

  .hero-img img {
    width: 100%;
    height: 100%;
  }

  .logo {
    font-size: 28px;
  }

  .scroll-section {
    background-color: var(--dark-color);
    color: #fff;
    padding: 30px 100px;
    width: 100%;
    position: relative;
    top: 0px;
  }

  .intro-section {
    background-color: #fff;
    clip-path: polygon(0 0%, 100% -122%, 100% 100%, 0% 100%);
  }

  .sub-title,
  .intro-title {
    text-align: left;
  }

  .features-section {
    margin-bottom: 100px;
  }

  .features-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }

  .insights-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .insight-list-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .partners-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33.333%, 1fr));
  }

  .partner-item {
    border-right: 1px solid #e7e7e7 !important;
  }

  .partner-item:nth-child(3),
  .partner-item:nth-child(6) {
    border-right: none !important;
  }

  .partner-item:nth-child(4),
  .partner-item:nth-child(5),
  .partner-item:nth-child(6) {
    border-bottom: none;
  }

  .footer-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
  }
}

@media (max-width: 1208px) {
  .service-blocks {
    width: 100% !important;
    order: 2;
  }

  .service-head {
    width: 100% !important;
    order: 1;
  }
}
