:root {
  --font-space-grotesk: "Space Grotesk", sans-serif;
  --font-inter: "Inter", sans-serif;
  --light-blue: #34cae7;
  --dark-blue: #051129;
  --gray: #a6b3ba;
  --white: #fff;
  --black: #000;
  --transition: all 400ms ease-in-out;
}
.post,
.page {
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  text-decoration: none;
  box-sizing: border-box;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0px;

  color: var(--white);
  margin-bottom: 0;
  font-family: var(--font-inter);
  background: linear-gradient(180deg, #04102a 0%, #08101b 100%);
}

.menu-toggle,
.main-navigation.toggled ul {
  display: none;
}
html.menu-active {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 20px;
}
h1 span,
.h1 span {
  color: var(--light-blue);
}
h1,
.h1 {
  font-family: var(--font-space-grotesk);
  color: var(--white);
  font-weight: 700;
  font-size: 54px;
  line-height: 55px;
  letter-spacing: -2px;
}

h2,
.h2 {
  font-family: var(--font-space-grotesk);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}

h3,
.h3 {
  font-family: var(--font-space-grotesk);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

h4,
.h4 {
  font-family: var(--font-inter);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.52px;
  color: #ffffff;
}

h5,
.h5 {
  font-family: var(--font-inter);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h6,
.h6 {
  font-family: var(--font-inter);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

p {
  font-family: var(--font-inter);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: var(--white);
  margin-bottom: 24px;
}
li {
  font-family: var(--font-inter);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: var(--white);
}
a,
a:focus,
a:visited {
  text-decoration: none;
  /* display: inline-flex; */
  line-height: normal;
  color: var(--light-blue);
  transition: var(--transition);
}
a:hover {
  text-decoration: none;
  color: var(--white);
}
p:last-child,
li:last-child {
  margin-bottom: 0;
}
.btn.bordered:hover,
.btn:focus,
.btn:visited,
.btn {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  color: #041027;
  background-color: var(--light-blue);
  padding: 12px 40px;
  border-radius: 100px;
  border: 1px solid var(--light-blue);
}
.btn.bordered,
.btn:hover {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(166, 179, 186, 0.15);
}

.cta_link:focus,
.cta_link:visited,
.cta_link {
  max-width: max-content;
  font-family: var(--font-inter);
  color: var(--light-blue);
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.cta_link::after {
  transition: var(--transition);
  background-image: url(../images/icon_cta_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  margin-left: 7px;
  width: 12px;
  height: 12px;
}
.cta_link:hover::after {
  background-image: url(../images/icon_cta_right_w.svg);
}
.search_page_title {
  text-align: center;
  margin-bottom: 30px;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
  display: block;
}

.no-results.not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.no-results.not-found .page-content {
  margin-top: 0;
}
.no-results.not-found .search-form {
  display: flex;
  align-items: center;
  gap: 15px;
}
.no-results.not-found .search-form label {
  flex-grow: 1;
}
.no-results.not-found .search-form .search-field {
  width: 100%;
  background-color: rgba(166, 179, 186, 0.15);
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0px;
  box-shadow: none;
  color: var(--white) !important;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(166, 179, 186, 0.15);
  border-image: initial;
  padding: 10px 20px;
  border-radius: 100px;
  outline: none;
  transition: var(--transition);
  flex-grow: 1;
  appearance: none;
}
.no-results.not-found .search-form .search-submit {
  background-color: var(--light-blue);
  border: none;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  padding: 11px 25px;
  border-radius: 100px;
  color: var(--dark-blue);
  flex-shrink: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.container {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.tips_tricks_label {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 11px;
  line-height: normal;
  letter-spacing: 0px;
  text-transform: uppercase;
  padding: 4px 10px;
  background-color: var(--light-blue);
  border: 1px solid var(--light-blue);
  border-radius: 150px;
  max-width: max-content;
  color: rgba(5, 17, 41, 1);
  margin-bottom: 9px;
  text-align: center;
}
.tips_tricks_label:hover {
  background-color: rgba(166, 179, 186, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.site-header {
  background-color: #0d1c2c;
  border-bottom: 1px solid rgba(166, 179, 186, 0.2);
  padding: 7px 0;
}
.site-header .site-branding {
  width: 238px;
  flex-shrink: 0;
  display: flex;
}
.site-header .site-branding * {
  display: flex;
}
.site-header .site-branding img {
  max-width: 123px;
}
.site-header .search_wrap {
  order: 13;
  flex-shrink: 0;
}
.site-header .search_wrap > * {
  color: var(--white);
}
.search_form form {
  position: relative;
}
.search_wrap form #search {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  padding: 12.5px 45px 12.5px 16px;
  border: 1px solid rgba(166, 179, 186, 0.35);
  background-color: rgba(166, 179, 186, 0.15);
  border-radius: 100px;
  color: var(--white);
  outline: none;
  box-shadow: none;
  width: 238px;
  transition: var(--transition);
}
.search_wrap form #search:focus {
  background-color: rgba(166, 179, 186, 0.25);
}
.search_wrap form #search::placeholder {
  color: rgba(166, 179, 186, 1);
}
.search_wrap form button {
  right: 20px;
  cursor: pointer;
  position: absolute;
  background-color: #fff0;
  border: none;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

:not(.home).site-header.sticky {
  transition: var(--transition);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: stickySlideDown;
  animation-name: stickySlideDown;
  background-image: url(images/shape-blur.svg);
  background-repeat: no-repeat;
  background-position: calc(50% - 279.001px) -160px;
}
.site-header.sticky .site-branding img {
  max-height: 80px;
}

@keyframes stickySlideDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.header_inner {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.site-header .main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .main-navigation ul li a {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  display: flex;
  text-transform: capitalize;
  color: var(--white);
}
.site-header .main-navigation ul li:not(:last-child) {
  margin-right: 30px;
}
.site-header .main-navigation ul li.current-menu-item a,
.site-header .main-navigation ul li a:hover {
  color: var(--light-blue);
}
.menu_icon {
  display: none;
  order: 14;
  margin-left: 15px;
}
.menu_icon button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}
.menu_icon button img {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}
.menu_icon button .menu_close {
  display: none;
}

/* Footer Style */
.site-footer {
  background-color: #051129;
  padding: 40px 0 35px;
}

.footer_top {
  display: flex;
}
.footer_top .footer_left {
  margin-right: 141px;
  flex-shrink: 0;
}
.footer_logo:not(:last-child) {
  margin-bottom: 20px;
}
.footer_logo {
  max-width: 213px;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--gray);
}
.footer_left p {
  max-width: 287px;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--gray);
}
.footer_top .footer_right {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}
.footer_title {
  font-family: var(--font-space-grotesk);
  font-weight: 700;
  font-size: 16px;
  line-height: 16.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer_top .footer_right .footer_col {
  width: calc(33.33% - 20px);
}
.footer_menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer_menu ul li:not(:last-child) {
  margin-bottom: 16px;
}
.footer_menu ul li a {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 19.5px;
  letter-spacing: 0.3px;
  color: var(--gray);
}
.footer_menu ul li a:hover {
  color: var(--light-blue);
}

.footer_post_grid .footer_post_item:not(:last-child) {
  margin-bottom: 16px;
}
.footer_post_grid .footer_post_item a {
  display: block;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: var(--white);
}
.footer_post_grid .footer_post_item a:hover {
  color: var(--light-blue);
}
.footer_post_grid .footer_post_item .date {
  font-family: var(--font-inter);
  color: var(--gray);
  font-weight: 300;
  font-style: Italic;
  font-size: 11px;
  line-height: 22px;
  letter-spacing: 0.3px;
}
.copyright_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(166, 179, 186, 0.15);
  color: var(--gray);
  position: relative;
}
.footer-social-inner-wrap,
.footer-social-inner-wrap * {
  display: flex;
}
/* Footer Style */

/* footer news letter style  start*/

/* :root {
    --font-space-grotesk: "Space Grotesk", sans-serif;
    --font-inter: "Inter", sans-serif;
    --light-blue: #34CAE7;
    --dark-blue: #051129;
    --gray: #A6B3BA;
    --white: #fff;
    --black: #000;
    --transition: all 400ms ease-in-out;
} */
.trending_stories,
.newsletter-section {
  margin-bottom: 80px;
}

.newsletter_form_wrap {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter_form_wrap .section_title:not(:last-child) {
  margin-bottom: 40px;
  text-align: center;
}
.newsletter_form_wrap .section_title h2 {
  margin-bottom: 30px;
  font-family: var(--font-space-grotesk);
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
}
.newsletter_form_wrap .section_title h2 span {
  color: var(--light-blue);
}
.newsletter_form_wrap .section_title p {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--gray);
}

.subscribe_form .mc4wp-form-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.subscribe_form .mc4wp-form-fields label {
  flex-grow: 1;
  width: 100%;
}
.subscribe_form input[type="email"] {
  width: 100%;
  background-color: rgba(166, 179, 186, 0.15);
  border: 1px solid rgba(166, 179, 186, 0.15);
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0px;
  padding: 16px 20px;
  border-radius: 100px;
  color: var(--white) !important;
  outline: none;
  box-shadow: none;
  transition: var(--transition);
}
.subscribe_form input[type="email"]:focus {
  background-color: rgba(166, 179, 186, 0.25);
}
.subscribe_form button[type="submit"] {
  background-color: var(--light-blue);
  border: none;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  padding: 17px 25px;
  border-radius: 100px;
  color: var(--dark-blue);
  min-width: 200px;
  transition: var(--transition);
  flex-shrink: 0;
}
.subscribe_form button[type="submit"]:hover {
  background-color: var(--gray);
  color: var(--dark-blue);
}
.subscribe_form input[type="email"]::placeholder {
  color: var(--gray);
}
.mc4wp-alert {
  margin-top: 15px;
  text-align: center;
}
.mc4wp-success p {
  color: #16a34a;
}
.mc4wp-alert p {
  font-size: 14px;
  font-weight: 600;
}
.mc4wp-error p {
  color: #f00;
}

@media only screen and (min-width: 768px) {
  .footer-social-inner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    top: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe_form button[type="submit"] {
    width: 100%;
  }
  .trending_stories,
  .newsletter-section {
    margin-bottom: 40px;
  }
  .newsletter_form_wrap .section_title h2 {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .newsletter_form_wrap .section_title:not(:last-child) {
    margin-bottom: 25px;
  }
  .subscribe_form .mc4wp-form-fields {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-social-inner-wrap {
    margin-top: 10px;
  }
}
/* footer news letter style end */

/* Blog Page Style */
.blog_main_page {
  position: relative;
  padding-top: 60px;
  margin-bottom: 80px;
}

/* Blog Page Style */

/* Top Shado Effect */
.banner_blur::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 900px;
  opacity: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/shape_blur.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  /* backdrop-filter: blur(349px); */
  z-index: -1;
}
/* Top Shado Effect */

/* Error Page Style */
.error-404 {
  padding: 130px 0;
}
.error_content_wrap {
  text-align: center;
}
.error_content_wrap h1 {
  font-size: 180px;
  line-height: 1;
  margin: 0 0 30px 0;
  text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.2);
  color: var(--light-blue);
}
.error_content_wrap p {
  color: var(--gray);
}
.error_content_wrap .btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
/* Error Page Style */

.wpcf7-not-valid-tip {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 0;
  line-height: normal;
}
.wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
  display: none;
}

@media only screen and (max-width: 1199px) {
  /* Footer Style */
  .footer_top .footer_left {
    margin-right: 70px;
  }
  /* Footer Style */
}

@media only screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 44px;
    line-height: 45px;
  }

  h2,
  .h2 {
    font-family: var(--font-space-grotesk);
    font-size: 32px;
    line-height: 34px;
    letter-spacing: -1px;
  }

  .site-branding,
  .top_banner,
  .search_wrap,
  .menu_icon {
    display: flex;
    position: relative;
    z-index: 999;
  }
  .menu_icon {
    display: block;
  }
  .menu-active .menu_icon .menu_open {
    display: none;
  }
  .menu-active .menu_icon button .menu_close {
    display: block;
    width: 18px;
    height: auto;
  }
  .main-navigation-outer {
    pointer-events: none;
    z-index: 4;
    position: absolute;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
    /* -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    transition: var(--transition);
    overflow: hidden;
  }
  .main-navigation {
    overflow-x: clip;
    overflow-y: auto;
    transform: translateX(-40px);
    align-items: flex-start;
    background-image: url(images/shape-blur.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-position: calc(50% - 279.001px) -160px;
    background-position: right -225px bottom -210px;
    background-size: 700px;
    display: flex;
    flex-direction: column;
    left: 0;
    position: absolute;
    top: 0;
    transition: var(--transition);
    width: 100%;
    z-index: 90;
    justify-content: flex-start;
    padding: 120px 15px 30px;
    height: 100dvh;
    clip-path: inset(0% 100% 0% 0%);
    background-color: #0d1c2c;
  }
  .menu-active .main-navigation-outer {
    pointer-events: all;
    margin: 0;
  }
  .menu-active .main-navigation {
    clip-path: inset(0% 0% 0% 0);
    transform: translateX(0);
  }
  .main-navigation ul {
    flex-direction: column;
    display: flex;
  }
  .site-header .main-navigation ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .header_inner {
    position: unset;
  }
  .site-header .site-branding {
    width: 90px;
  }
  .site-header .site-branding img {
    max-width: 100%;
  }
  .site-header .main-navigation {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .site-header .search_wrap {
    margin-left: auto;
  }

  /* Footer Style */
  .footer_top {
    flex-direction: column;
  }
  .footer_top .footer_left {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .footer_logo:not(:last-child) {
    margin-bottom: 0;
  }
  .footer_logo {
    flex-shrink: 0;
  }
  .footer_left p {
    margin-left: 20px;
    max-width: 100%;
  }
  .footer_top .footer_right {
    margin-top: 40px;
  }
  /* Footer Style */
}

@media only screen and (max-width: 767px) {
  .btn.bordered:hover,
  .btn {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 24px;
  }
  .search_wrap form #search {
    font-size: 16px;
  }
  /* Footer Style */
  .site-footer {
    padding: 40px 0 25px;
  }
  .footer_logo {
    max-width: 190px;
  }
  .footer_top .footer_left {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_logo:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer_top .footer_right {
    flex-wrap: wrap;
    margin-bottom: -30px;
  }
  .footer_top .footer_right .footer_col {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
  .copyright_bottom {
    flex-direction: column;
    margin-top: 30px;
    line-height: normal;
    font-size: 14px;
  }
  .copyright_bottom .site-info {
    margin-top: 10px;
  }
  .footer_post_grid .footer_post_item:not(:last-child),
  .footer_menu ul li:not(:last-child) {
    margin-bottom: 12px;
  }
  /* Footer Style */

  .blog_main_page {
    position: static;
  }

  /* Error Page Style */
  .banner_blur::before {
    background-size: 700px;
  }
  .error-404 {
    padding: 40px 0;
  }
  .error_content_wrap .btn_wrap {
    margin-top: 30px;
  }
  .error_content_wrap h1 {
    font-size: 90px;
    margin: 0 0 20px 0;
  }
  /* Error Page Style */

  .no-results.not-found .search-form {
    flex-direction: column;
    align-items: flex-start;
  }
  .no-results.not-found .search-form .search-submit,
  .no-results.not-found .search-form label {
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .site-header .site-branding {
    width: 60px;
  }
}

@media only screen and (max-width: 360px) {
  .search_wrap form #search {
    font-size: 16px;
    padding: 10.5px 45px 10.5px 16px;
    width: 170px;
  }
}

.tips_tricks_label_wrap {
  display: flex;
  gap: 8px;
}
.wp-block-separator {
  border: none;
  border-top: 0px solid;
}
