* {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
::selection {
  background-color: #1328af;
  color: white;
}
a,
input {
  outline: none;
}
header {
  padding: 0 30px;
}
footer {
  padding-top: 90px;
}
section {
  padding: 90px 30px;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #eeeff7;
}
button {
  cursor: pointer;
}
img {
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -o-user-select: none;
  user-select: none;
}
.altr {
  background-color: transparent;
}
.p2 {
  padding: 15px 20px;
}
.button {
  z-index: 1;
  position: relative;
  color: #eeeff7;
  font-size: 15px;
  border-radius: 5px;
  padding: 10px 15px;
  outline: none;
  border: none;
  background-color: #1328af;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background-color: rgba(19, 40, 175, 0.659);
}
.button::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  right: 0;
  border: 4px solid rgba(23, 47, 184, 0.295);
  transform-origin: center;
  transform: scale(1);
}
.button:hover::before {
  transition: all 1s ease-in-out;
  transform-origin: center;
  transform: scale(1.4);
  opacity: 0;
}
.button-svg {
  width: 20px;
  margin-left: 7px;
}
.title {
  margin-bottom: 60px;
  text-align: center;
  text-transform: capitalize;
}
.title .title-heading {
  font-size: 35px;
  font-weight: bold;
}
.title .title-heading-2 {
  font-size: 24px;
  font-weight: bold;
}
.title .title-desc {
  width: 500px;
  margin-top: 15px;
}
.logo {
  margin-right: 30px;
  height: 70px;
}
.go-to-blog {
  height: 15px;
  margin-left: 5px;
}
.section-container {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 468px) {
  section,
  header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.accordion {
  background-color: white;
  color: black;
  cursor: pointer;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(99, 116, 230, 0.3);
  outline: none;
  transition: 0.2s ease;
  font-size: 16px;
}
.panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  max-width: 290px;
}
.panel p {
  font-size: 13px;
  padding: 15px;
  color: white;
  background-color: #6374e6;
  border-radius: 5px;
  margin-top: 15px;
}
.panel a {
  color: #1328af;
} /*!
 * delicious-hamburgers
 * @description Beautiful SASS powered hamburger menu toggle buttons
 * @author Kasper Koman
 * @link https://github.com/kapoko/delicious-hamburgers
 */
@use "sass:math";
button.hamburger {
  height: 50px;
  width: 50px;
}
div.hamburger {
  height: 50px;
  width: 50px;
}
div.hamburger > .inner {
  top: 50%;
}
.hamburger {
  background-color: rgba(0, 0, 0, 0);
  border: 0 rgba(0, 0, 0, 0) solid;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  opacity: 1;
  overflow: visible;
  padding: 5px;
  text-transform: none;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
    background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger:hover {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}
.hamburger:hover span.bar {
  background-color: #eeeff7;
}
.hamburger:hover > .inner:nth-child(1)::before,
.hamburger:hover > .inner:nth-child(1)::after,
.hamburger:hover > .inner:nth-child(2)::before,
.hamburger:hover > .inner:nth-child(2)::after,
.hamburger:hover > .inner:nth-child(3)::before,
.hamburger:hover > .inner:nth-child(3)::after,
.hamburger:hover span.bar:nth-child(1)::before,
.hamburger:hover span.bar:nth-child(1)::after,
.hamburger:hover span.bar:nth-child(2)::before,
.hamburger:hover span.bar:nth-child(2)::after,
.hamburger:hover span.bar:nth-child(3)::before,
.hamburger:hover span.bar:nth-child(3)::after {
  background-color: #eeeff7;
}
.hamburger.active {
  background-color: rgba(0, 0, 0, 0);
}
.hamburger.active span.bar {
  background-color: #eeeff7;
}
.hamburger.active > .inner:nth-child(1)::before,
.hamburger.active > .inner:nth-child(1)::after,
.hamburger.active > .inner:nth-child(2)::before,
.hamburger.active > .inner:nth-child(2)::after,
.hamburger.active > .inner:nth-child(3)::before,
.hamburger.active > .inner:nth-child(3)::after,
.hamburger.active span.bar:nth-child(1)::before,
.hamburger.active span.bar:nth-child(1)::after,
.hamburger.active span.bar:nth-child(2)::before,
.hamburger.active span.bar:nth-child(2)::after,
.hamburger.active span.bar:nth-child(3)::before,
.hamburger.active span.bar:nth-child(3)::after {
  background-color: #eeeff7;
}
.hamburger > .inner {
  margin: 0;
  margin-top: -1px;
  position: relative;
  width: 100%;
}
.hamburger span.bar {
  background-color: #eeeff7;
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
}
.hamburger span.bar:nth-child(1) {
  top: -10px;
}
.hamburger span.bar:nth-child(3) {
  top: 10px;
}
.hamburger:focus {
  outline: 0;
}
@use "sass:math";
.hamburger--criss-cross > .inner::before,
.hamburger--criss-cross > .inner::after {
  background-color: #eeeff7;
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform-origin: 0 50%;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--criss-cross > .inner::before {
  transform: rotate(45deg) translate3d(0px, -20px, 0) scaleX(0);
}
.hamburger--criss-cross > .inner::after {
  transform: rotate(-45deg) translate3d(0px, 20px, 0) scaleX(0);
  transition-delay: 0.1s;
}
.hamburger--criss-cross span.bar {
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    width 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--criss-cross span.bar:nth-child(1) {
  transition-delay: 0.33s;
}
.hamburger--criss-cross span.bar:nth-child(2) {
  transition-delay: 0.36s;
}
.hamburger--criss-cross span.bar:nth-child(3) {
  transition-delay: 0.39s;
}
.hamburger--criss-cross.active > .inner::before,
.hamburger--criss-cross.active > .inner::after {
  opacity: 1;
}
.hamburger--criss-cross.active > .inner::before {
  transform: rotate(45deg) translate3d(0px, -20px, 0);
  transition-delay: 0.4s;
}
.hamburger--criss-cross.active > .inner::after {
  transform: rotate(-45deg) translate3d(0px, 20px, 0);
  transition-delay: 0.5s;
}
.hamburger--criss-cross.active span.bar {
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
  width: 50%;
}
.hamburger--criss-cross.active span.bar:nth-child(1) {
  transition-delay: 0s;
}
.hamburger--criss-cross.active span.bar:nth-child(2) {
  transition-delay: 0.2s;
}
.hamburger--criss-cross.active span.bar:nth-child(3) {
  transition-delay: 0.1s;
}
nav {
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.13);
}
.logo {
  height: 70px;
  transition: 0.4s ease-out;
}
.logo:hover {
  transform: scale(1.1);
}
.hamburger {
  display: none;
  z-index: 6;
  position: absolute;
  right: 30px;
}
.hamburger.fixed {
  position: fixed;
}
.mobile-menu-container {
  display: none;
}
.nav-top {
  height: 40px;
  width: 100%;
  background-color: black;
}
.dropdown {
  padding: 15px;
  position: absolute;
  display: none;
}
.dropdown-menu {
  padding: 10px 0;
  margin-top: 4px;
}
.dropdown-menu li > a {
  color: red;
}
.nav-links-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links-container .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
}
.nav-links-container .nav-links li:hover div {
  display: block;
}
.nav-links-container .nav-links li > a {
  padding: 0px 15px;
  font-size: 15px;
  position: relative;
}
.nav-links-container .nav-links li > a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #eeeff7;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.nav-links-container .nav-links li > a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.mobile-swipe {
  background-color: #1328af;
  width: 240px;
  padding: 0 30px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 4;
  transform: translateX(245px);
}
.mobile-menu {
  background-color: black;
  width: 230px;
  padding: 0 30px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  z-index: 4;
  overflow-y: scroll;
  transform: translateX(230px);
}
.mobile-menu .mobile-links {
  display: flex;
  flex-direction: column;
  margin-top: 145px;
}
.mobile-menu .mobile-links a {
  padding: 10px;
}
@media screen and (max-width: 1135px) {
  .nav-links-container .nav-links li > a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1100px) {
  .nav-links-container {
    display: none;
  }
  .hamburger,
  .mobile-menu-container {
    display: block;
  }
}
@media screen and (max-width: 468px) {
  .hamburger {
    right: 15px;
  }
}
header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/hero.webp");
  height: 66vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-container,
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.header-container {
  height: calc(55vh - 140px);
  color: #eeeff7;
  justify-content: center;
  text-align: center;
}
.header-container .header-info {
  max-width: 800px;
}
.header-container .header-info p {
  font-size: 16px;
  margin-top: 5px;
  color: rgba(238, 239, 247, 0.75);
}
.header-container .header-info p .button-svg {
  margin-right: 7px;
}
.header-container .header-info h1 {
  font-size: 55px;
  font-weight: bold;
}
.header-info-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 350px;
  margin-top: 30px;
}
.header-info-contact a {
  margin-right: 30px;
}
.header-tag {
  background: linear-gradient(90deg, #1328af 0%, #6374e6 100%);
  height: 150px;
  width: 650px;
  border-radius: 10px;
  left: -30px;
  position: relative;
  bottom: 75px;
  margin-bottom: -75px;
}
@media screen and (max-width: 376px) {
  .header-container .header-info h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  header {
    height: 95vh;
  }
  .header-info {
    margin-top: 80px;
  }
}
footer {
  background-color: #22284d;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 60px;
}
.footer-container .footer-title {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.footer-container .footer-info {
  margin-bottom: 30px;
}
.footer-left {
  display: flex;
}
.footer-left img {
  height: 200px;
  margin-right: 30px;
}
.footer-left .get-started {
  max-width: 350px;
  color: #eeeff7;
  font-size: 16px;
}
.footer-links-container {
  display: flex;
}
.footer-links-container .footer-links {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 90px;
}
.footer-links-container .footer-links a {
  transition: 0.5s all ease;
  margin-bottom: 5px;
}
.footer-links-container .footer-links a:hover {
  transform: translateX(10px);
}
.footer-end {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #090f32;
  position: relative;
  padding: 20px 30px;
}
.footer-end img {
  height: 60px;
  margin-right: 15px;
}
.footer-end p {
  font-size: 16px;
  color: white;
}
@media screen and (max-width: 1100px) {
  .footer-links-container .footer-links {
    margin-right: 30px;
  }
}
@media screen and (max-width: 900px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-links-container {
    justify-content: space-between;
    flex-direction: column;
    margin-top: 30px;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-links-container .footer-links {
    margin-top: 30px;
  }
}
@media screen and (max-width: 468px) {
  .footer-container {
    padding: 0 15px;
  }
  .footer-container .footer-title {
    font-size: 22px;
  }
  .footer-links-container {
    flex-direction: column;
  }
}
.error {
  text-align: center;
}
.error h2 {
  padding-bottom: 30px;
}
.item-container {
  max-width: 1300px;
  margin: 0 auto;
  max-width: 1000px;
}
.item-info-container {
  margin-top: 40px;
}
.item-info {
  margin-bottom: 30px;
}
.item-info:nth-last-child(1) {
  margin-bottom: 0;
}
.item-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.item-image-p {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.item-author {
  margin: 40px 0 0 0;
  display: flex;
}
.author-image {
  height: 48px;
  width: auto;
  border-radius: 50%;
  margin-right: 20px;
}
.title {
  margin-bottom: 20px;
  text-align: left;
}
.item-text {
  font-size: 18px;
  line-height: 2;
}
.item-text a {
  color: #1328af;
}
.graphics-list-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: -15px;
  margin-top: 15px;
}
.bottom-padding {
  padding-bottom: 15px;
}
.item-list {
  margin-top: 15px;
}
.list-item {
  font-size: 18px;
  margin: 0 0 15px 18px;
  list-style: disc;
}
.contact-links {
  display: flex;
  margin-top: 60px;
}
.contact-links .button {
  text-align: left;
}
.contact-links .portfolio {
  margin-left: 30px;
}
.visit-link {
  color: #1328af;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}
.pricing-grid-item {
  margin-top: 35px;
  transition: all 0.5s ease-in-out;
}
.pricing-grid-item:hover {
  transform: scale(1.05);
}
.pricing-grid-item.recommended-item {
  margin-top: 0px;
}
.pricing-grid-item.recommended-item:hover {
  transform: scale(1.05);
}
.recommended {
  background-color: #1328af;
  padding: 5px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: -3px;
  text-align: center;
}
.grid-card {
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 30px 25px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 26px 0px;
}
.grid-card .marging-top {
  margin-top: 30px;
  width: 100%;
}
.grid-card .card-heading {
  text-align: center;
}
.grid-card .card-heading .card-title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}
.grid-card .card-heading .card-sub-title {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
.grid-card .card-heading .price {
  line-height: 1;
  font-size: 30px;
  font-weight: bold;
  color: #6374e6;
  margin: 25px 0 24px 0;
}
.grid-card .card-heading .price .sub {
  font-size: 20px;
}
.grid-card .pricing-features {
  margin-top: 30px;
}
.grid-card .pricing-features .question {
  height: 15px;
  cursor: pointer;
  margin-left: 5px;
}
.grid-card .pricing-features li {
  text-transform: capitalize;
  padding: 15px 0;
  border-bottom: 1px solid rgba(99, 116, 230, 0.3);
}
.grid-card .pricing-features li .explaination {
  position: relative;
}
.grid-card .pricing-features li .explaination:hover > .explain-info {
  display: block;
}
.grid-card .pricing-features li .explain-info {
  display: none;
  position: absolute;
  bottom: 30px;
  left: -150px;
  padding: 15px;
  width: 300px;
  font-size: 13px;
  border-radius: 5px;
  background-color: #6374e6;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
}
.grid-card .pricing-features li .explain-info .explain-text {
  color: white;
  text-transform: initial;
}
.last-portfolio {
  margin: 0 auto;
}
@media screen and (max-width: 1236px) {
  .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 1100px) {
  .item-image {
    height: 400px;
  }
}
@media screen and (max-width: 890px) {
  .grid-card .pricing-features .explaination:hover > .explain-info {
    position: relative;
    left: 0;
    transform: translate(0%, 0);
    top: 0;
    margin-top: 15px;
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-content: center;
  }
  .pricing-grid-item {
    margin-top: 0px;
  }
  .pricing-grid-item:hover {
    transform: none;
  }
  .pricing-grid-item.recommended-item:hover {
    transform: none;
  }
}
@media screen and (max-width: 667px) {
  .header-container .header-info h1 {
    font-size: 35px;
  }
  .item-text {
    font-size: 16px;
  }
  .graphics-list-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: -10px;
  }
  .list-item {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .item-image {
    height: 300px;
  }
}
@media screen and (max-width: 532px) {
  .contact-links .portfolio {
    margin: 0 0 0 15px;
    height: auto;
  }
  .item-image {
    object-fit: cover;
  }
}
@media screen and (max-width: 376px) {
  .header-container .header-info h1 {
    font-size: 30px;
  }
}
