/********************** Common Classes 
*************************************/

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-column {
  display: flex;
  flex-direction: column;
}

.d-center {
  display: flex;
  align-items: center;
}

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

.f-wrap {
  flex-wrap: wrap;
}

.j-between {
  justify-content: space-between;
}

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

.font-normal {
  font-weight: 400;
}

.text-upper {
  text-transform: uppercase;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.mx-auto {
  margin: 0 auto;
}

.relative {
  position: relative;
}

.container {
  max-width: 1920px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.content-container {
  max-width: 1560px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.full-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.max-container {
  max-width: 1920px;
  margin: 0 auto;
}

.box-container {
  background-color: var(--white-color);
  position: relative;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ellipsis-1-lines {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.ellipsis-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.ellipsis-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

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

.text-white {
  color: var(--white-color);
}

.underline {
  text-decoration: underline;
}

.pb-5 {
  padding-bottom: 5px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mt-4 {
  margin-top: 4px;
}


.body-overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 25;
}

.btn-outline {
  display: inline-block;
  border-radius: 100px;
  border: 1px solid #000;
  padding: 12px 27px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
}

/********************** Header Section 
*************************************/
header {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.header {
  background-image: url(../images/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 607px;
  transition: all 0.3s linear 0s;
  position: relative;
}

/* .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 0;
} */

.header.sticky {
  background-color: #000;
}

.header .content {
  height: 100%;
  padding: var(--wp-admin--admin-bar--height, 32px) 40px 0;
  position: relative;
}

.header.sticky .header-content-top {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--wp-admin--admin-bar--height, 0);
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 40px;
  background-color: #000;
  z-index: 99;
}

header .content .features {
  max-width: 844px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 90px;
}

.header.sticky .features {
    padding-top: 150px;
}

.features h1 {
  font-size: 30px;
  line-height: 45px;
  color: #fff;
  font-family: var(--font-medel);
  font-weight: 400;
  text-transform: uppercase;
}

.features form {
	display: flex;
	gap: 5px;
	padding-top: 10px;
	padding-bottom: 20px;
	position: relative;
}

.features .wpcf7-response-output{
	position: absolute;
	bottom: -15px;
	color: #959595;
}

.features .wpcf7 form .wpcf7-response-output {
    position: absolute;
	bottom: -15px;
	color: #959595;
	padding: 1px 5px !important;
}

.features input {
  width: 638.4px;
  max-width: 100%;
  border-radius: 4px 0 0 4px;
  font-weight: 500;
}

.features [type="submit"],
.features input {
  height: 80px;
  padding: 25px 30px;
  font-size: 16px;
  line-height: 30px;
  color: #000;
  background: #fff;
  border: none;
}

.features [type="submit"] {
  background: #3db59c;
  color: #fff;
  width: 200.46px;
  border-radius: 0 4px 4px 0;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.features span {
  color: #959595;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
}

.features .form-footer{
  display: block;
/*   padding-top: 20px; */
}

.features span a {
  text-decoration: underline;
}

.features .bottom-text {
  color: #959595;
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  padding-top: 35px;
}

.header .tag-wrapper a{
  border: 1px solid #fff;
  background-color: transparent;
}

.header .tag-wrapper a:hover{
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

/* Category Dropdown */
.header .category-dropdown{
  position: absolute;
  right: 0;
  top: 73px;
  width: fit-content;
  min-width: 212px;
  max-width: 95%;
  height: max-content;
  max-height: 50vh;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.header .category-dropdown.show{
  visibility: visible;
  opacity: 1;
}

.header .category-dropdown .tag-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header .category-dropdown .tag-wrapper:last-child {
  border-bottom: 0;
}

.header .category-dropdown .tag-wrapper a{
  font-size: 18px;
  line-height: 22px;
  border-width: 0;
  border-radius: 0;
  color: #000;
  justify-content: start;
  height: auto;
  padding: 13px 20px;
}

.header .category-dropdown .tag-wrapper.active a{
  color: #61c2ae;
}

.header .category-dropdown .tag-wrapper a:hover{
  color: #61c2ae;
  background-color: #fff;
}

.header .category-dropdown .tag-wrapper .tag-icon{
  display: none;
}

/* .header .category-dropdown .tag-wrapper .tag-icon img{
  filter: invert(1);
  transition: all 0.2s ease-in-out;
}

.header .category-dropdown .tag-wrapper a:hover img{
  filter: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(833%) hue-rotate(118deg) brightness(92%) contrast(90%);
} */

.category-dropdown::-webkit-scrollbar {
	width: 5px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #F5F5F5;
}
 
.category-dropdown::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #F5F5F5;
}
 
.category-dropdown::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.1);
	background-color: rgba(0,0,0,.1);
}

/* Tag Buttons */
.tag-wrapper a {
  padding: 0 25px;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 25px;
  color: #fff;
  font-family: var(--font-muli);
  font-size: 16px;
  font-weight: normal;
  line-height: 32px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.tag-wrapper.active a{
  background-color: #fff;
  color: #000;
}

.tag-wrapper.active img{
  filter: invert(1);
}

.tag-wrapper.active a:hover img{
  filter: invert(0);
}

.tag-wrapper a:hover{
  background-color: #fff;
  color: #000;
}

.tag-wrapper a .icon {
 display: block;
 max-width: 20px;
 height: auto;
}

.hamburger-icon-area {
  height: 56px;
  position: relative;
  max-width: 20%;
  flex-basis: 20%;
  display: flex;
  justify-content: flex-start;
}

.header-logo img {
  max-width: 320px;
  height: 59px;
}

.resources {
  max-width: 20%;
  flex-basis: 20%;
  display: flex;
  justify-content: flex-end;
}

.resources .btn {
  font-family: var(--var-font-family-resource);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2.4px;
  width: 212px;
  height: 59px;
  border-radius: 100px;
  border: 2px solid #fff;
  text-transform: uppercase;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  color: #000;
  text-align: center;
  font-style: normal;
}

.resources .btn a {
  font-family: var(--font-questrial);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
  width: 212px;
  height: 59px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hamburger Menu */

.hamburger-navigation {
  width: 319px;
  position: absolute;
  left: 0;
  top: 55px;
  text-align: left;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
  transform: translateY(-500%);
  z-index: 30;
}

.hamburger-navigation.show {
  transform: translateX(0);
}

.hamburger-navigation ul.nav-list {
  padding: 50px 60px;
  list-style: none;
}

.hamburger-navigation ul.nav-list li a {
  color: var(--var-black);
  font-size: 1.25rem;
  line-height: 60px;
  text-transform: uppercase;
  transition: 0.3s;
  font-style: normal;
  font-weight: 600;
}

.hamburger-navigation ul.nav-list li a:hover {
  color: #61c2ae;
}

.close-btn-area {
  display: none;
}

#js-hamburger-icon {
  width: 56px;
  height: 100%;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 30;
}

#js-hamburger-icon #js-hamburger-wrapper {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#js-hamburger-icon.open #js-hamburger-wrapper {
  width: 70%;
}

#js-hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 56px;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}

#js-hamburger-icon span:nth-child(1),
#js-hamburger-icon span:nth-child(2),
#js-hamburger-icon span:nth-child(3) {
  transform-origin: left center;
}

#js-hamburger-icon span:nth-child(1) {
  top: 15px;
}

#js-hamburger-icon span:nth-child(2) {
  top: 27px;
}

#js-hamburger-icon span:nth-child(3) {
  top: 39px;
}

#js-hamburger-icon.open span {
  width: 40px;
}

#js-hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

#js-hamburger-icon.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

#js-hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 39px;
}

/*************************** Post Card 
*************************************/

.item {
  max-width: calc(33.33% - 36px);
  width: calc(33.33% - 36px);
}

/* Item Hover Effect */
.item:hover .card-img img,
.item:focus .card-img img{
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;
}
	
.hoverline {
	width: calc(100%);
	background-image: linear-gradient(transparent calc(100% - 2px), #fff 10px);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: background-size 1s;
}
	
.title-link:hover .hoverline,
.title-link:focus .hoverline {
	background-size: 100% 100%;
}
/* Item Hover Effect End */

.item-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.2);
}

.item-card .card-img {
  position: relative;
  padding-bottom: 124%;
  display: block;
}

.item-card .card-img:after {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.item-card .card-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.item-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 100%;
  z-index: 1;
  padding: 24px;
}

.item-card .read-more-btn{
  font-family: var(--font-muli);
}

.item-card .card-content:after {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    transparent 55.07%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: -1;
}

.item-card .tag-wrapper {
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
}

.item-card .tag-wrapper a {
  border: 1px solid #fff;
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  padding: 2px 15px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-muli);
}

.item-card .tag-wrapper a:hover{
  background: rgba(0, 0, 0, 0.5);
}

.item-card .tag-wrapper .date{
  text-transform: uppercase;
}

.item-card .card-content .title {
  color: #fff;
  font-family: var(--font-medel);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-right: 30px;
}

.item-card .card-content .read-more-btn a {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  text-decoration-line: underline;
  text-underline-offset: 10px;
}

.view-all-btn a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: underline !important;
  text-underline-offset: 7px;
  font-family: var(--font-muli);
}

/********************** Footer Section 
*************************************/
.footer {
  background-image: url(../images/footer_bg.webp);
  background-color: #000;
  background-size: cover;
  background-position: 50%;
  max-width: 1920px;
  margin: 0 auto;
}

.footer .container {
  max-width: 1585px;
  padding: 0 15px;
  width: 100%;
}

.footer-content {
  padding: 127px 0;
}

.footer-links-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-direction: column;
  max-width: 1032px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.footer-item {
  width: 100%;
}

ul.footer-menu-list {
  display: flex;
  gap: 52px;
  border-bottom: 1px solid #363636;
  padding: 0 0 25px;
  margin: 0;
}

ul.footer-menu-list li {
  font-size: 1.125rem;
  line-height: 60px;
  color: #7e7e7e;
}

ul.footer-menu-list li a {
  color: #7e7e7e;
  text-transform: uppercase;
  transition: 0.3s;
  text-wrap: nowrap;
}

ul.footer-menu-list li a:hover {
  color: #fff;
}

ul.footer-social-list li a img {
  transition: filter 0.3s;
  filter: brightness(0.45);
}

ul.footer-social-list li a img:hover {
  filter: brightness(1);
}

.footer-logo img {
  width: 168px;
  height: 192px;
  max-width: 100%;
}

.footer-bottom {
  padding: 30px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.footer-social-list {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.footer-copy-right {
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  color: #7e7e7e;
}

.footer-copy-right a {
  color: #7e7e7e;
  transition: 0.3s;
}

.footer-copy-right a:hover {
  color: #fff;
}

ul.last-item {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

ul.last-item li {
  margin: 0 12px 0 0;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  color: #7e7e7e;
  text-transform: capitalize;
}

ul.last-item li:last-child {
  margin: 0;
}

ul.last-item li a {
  color: #7e7e7e;
  transition: 0.3s;
}

ul.last-item li a:hover {
  color: #fff;
}

.copyBtn{
  cursor: pointer;
}

/*Top Button*/
.top-btn {
  display: none;
  cursor: pointer;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  padding: 18px;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 38px;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0,0,0,8%)0 4px 12px;
}

.top-btn:after {
  content: "";
  position: absolute;
  margin: -3px 0 0 -7px;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(135deg);
}

/*Copy Status*/
.copy-status{
  position: fixed;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 130px);
  z-index: 1050;
  right: 40px;
  color: green;
  background: #fff;
  border: 2px solid green;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.5s ease-in-out;
}

@media screen and (min-width: 1920px) {
  .footer-links-content {
    flex-direction: row;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  ul.footer-social-list {
    padding: 0 0 0 15px;
    gap: 40px;
  }

  .footer-item {
    max-width: 989px;
    width: 100%;
  }

  .footer-bottom {
    padding: 30px 0 0;
  }

  ul.footer-menu-list {
    gap: 81px;
    justify-content: flex-end;
  }

  .footer-copy-right {
    text-align: center;
  }
}

@media screen and (min-width: 1680px) {
  .footer-links-content {
    flex-direction: row;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  ul.footer-social-list {
    padding: 0 0 0 15px;
    gap: 40px;
  }

  .footer-item {
    max-width: 989px;
    width: 100%;
  }

  .footer-bottom {
    padding: 30px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  ul.footer-menu-list {
    gap: 49px;
    justify-content: flex-end;
  }

  .footer-copy-right {
    text-align: center;
  }
}

@media screen and (max-width: 1200px) {
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199.98px) {
  .hamburger-navigation ul.nav-list li a:active,
  .hamburger-navigation ul.nav-list li a:focus {
    color: #61c2ae;
  }

  .header-logo img {
    max-width: 320px;
    height: auto;
  }
	
  .hamburger-icon-area {
    flex-basis: auto;
  }
	
  .resources {
    flex-basis: auto;
  }

  .resources .btn {
    font-size: 1rem;
    width: 170px;
  }

  ul.footer-menu-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  ul.footer-menu-list li {
    line-height: 30px;
  }

  ul.footer-social-list {
    justify-content: center;
    gap: 30px;
  }

  .footer-copy-right {
    text-align: center;
    color: var(--var-site-grey-3);
  }

  ul.last-item {
    justify-content: center;
  }

  .footer-content {
    padding: 86px 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.375rem;
  }

  h3 {
    font-size: 2.125rem;
  }

  h4 {
    font-size: 1.875rem;
  }

  h5 {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 1.25rem;
  }

  .hamburger-navigation {
    left: unset;
    right: 0;
  }

  .body-overlay {
    z-index: 9;
  }

  .header {
    height: fit-content;
    padding-bottom: 50px;
  }

  .header .content .header-logo {
    order: -1;
  }

  .resources {
    display: none;
  }

  .features h1 {
    line-height: 36px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .hamburger-navigation {
    width: 80.5%;
    height: calc(100% + 80px);
    position: fixed;
    right: 0;
    top: 0;
    text-align: left;
    background-color: var(--var-black);
    transform: translateX(140%);
    transition: all 0.3s linear 0s;
    z-index: 13;
  }

  .hamburger-navigation ul.nav-list {
    padding: 20px 50px;
  }

  .hamburger-icon-area {
    order: unset;
    justify-content: flex-end;
  }

  .hamburger-navigation {
    width: 300px;
    height: auto;
    position: absolute;
    right: 0;
    top: 55px;
    text-align: left;
    background-color: #fff;
    transition: all 0.3s linear 0s;
    z-index: 13;
    border-radius: 8px;
  }

  .hamburger-navigation.visible {
    transform: translateX(0%);
    right: 0;
  }

  .hamburger-navigation.visible {
    background-color: #fff;
    border-radius: 0;
  }

  .close-btn-area {
    height: 65px;
    width: 100%;
    position: relative;
    display: none;
  }

  .hamburger-navigation ul.nav-list li a {
    color: #000;
    line-height: 60px;
  }

  ul.footer-menu-list {
    flex-wrap: unset;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 50px 0;
    gap: 20px;
  }

  .footer-content {
    padding: 50px 0;
  }

  .footer-links-content {
    gap: 30px;
    padding-top: 30px;
  }

  .footer-bottom {
    padding: 50px 15px 0;
  }

  ul.footer-menu-list li {
    line-height: 30px;
  }

  ul.footer-social-list {
    justify-content: center;
    padding: 0 0 30px;
    padding-bottom: 0;
    gap: 30px;
  }

  .footer-copy-right {
    text-align: center;
    color: var(--var-site-grey-3);
    padding-bottom: 0px;
  }

  ul.last-item {
    justify-content: center;
  }

  #js-hamburger-icon span {
    right: 0;
  }

  #js-hamburger-icon.open span {
    background: #fff;
    right: 8px;
  }

  #js-hamburger-icon.open span:nth-child(1) {
    top: 11px;
  }

  #js-hamburger-icon.open span:nth-child(3) {
    top: 39px;
  }

  .layout-blog-detail .page-title {
    font-size: 38px;
    line-height: 40px;
  }
}

@media screen and (max-width: 575px) {
  .content-container{
    padding: 0px 20px;
  }

  .header .content {
    padding: 32px 30px 0;
  }

  .header .content .header-content-top{
    position: absolute;
    top: 0;
    background: #000;
    left: 0;
    right: 0;
    padding: 10px 20px;
  }

  .header.sticky .content .header-content-top{
    position: fixed;
  }

  .header .content .header-logo {
    width: 100%;
  }

  .header-logo img {
    max-width: 234px;
    object-fit: contain;
  }
}

@media screen and (max-width: 420px) {
  .features h1{
    font-size: 24px;
    line-height: 30px;
  }
}

@media screen and (max-width: 375px) {
  .header .content {
    gap: 15px;
  }

  ul.last-item li {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
	.header-logo img {
		max-width: 200px;
	}
}

/* Klaviyo form */
[data-testid="POPUP"].kl-private-reset-css-Xuajs1 h1 span{
	line-height: 48px;
}

.features .klaviyo-form [data-testid="form-component"]:nth-child(1){
		border-radius: 4px 0 0 4px !important;
}

.features .klaviyo-form [data-testid="form-component"] input{
		border: none !important;
}

.features .klaviyo-form [data-testid="form-component"] button{
		border-radius: 0 4px 4px 0 !important;
	padding: 0 20px !important;
}

@media screen and (max-width: 600px) {
	.features .klaviyo-form{
		padding: 15px 0 !important;
	}
	.features .klaviyo-form [data-testid="form-row"]{
		flex-direction: column !important;
		gap: 5px;
	}
	
	.features .klaviyo-form [data-testid="form-component"]{
		flex: auto !important;
		width: 100%;
	}
	
	.features .klaviyo-form [data-testid="form-component"]:nth-child(1){
		border-radius: 4px !important;
	}
	
	.features .klaviyo-form [data-testid="form-component"]:nth-child(2){
		padding: 0 !important;
	}
	
	.features .klaviyo-form [data-testid="form-component"] button{
		border-radius: 4px !important;
  }
}