/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# root
-> Reset and base styles
-> Utility classes
-> Section header css
-> Section hero css
-> Section services css
-> Section about css
-> Section price css
-> Section footer css
--------------------------------------------------------------*/
:root {
  --body-color: #000000;
  --body-color-rgb: 0, 0, 0;
  --primary-color: #1726ce;
  --primary-color-rgb: 23, 38, 206;
  --secondary-color: #FFE700;
  --secondary-color-rgb: 255, 231, 0;
  --light-color: #fff;
  --light-color-rgb: 255, 255, 255;
  --body-bg: #fff;
  --body-bg-rgb: 255, 255, 255;

  --font-family-body: "Montserrat", sans-serif;;
  --font-family-code: "Allan", serif;
  --font-weight-body: 400;
  --line-height-body: 1.4;
  --font-size-body: 1rem;
  --border-color: #1C1678;
  --border-color-rgb: 28, 22, 120;

  --line-height-headings: 1.2;

  --header-padding-y: 40px;
}
@media (max-width: 991px) {
  :root {
    --header-padding-y: 26px;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, br,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

mark {
  background-color: var(--body-bg);
  color: var(--body-color);
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

hr {
  display: block;
  height: 0.1rem;
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 1rem 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

body {
  background-color: var(--body-bg);
  color: var(--body-color);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

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

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

.d-inline-flex {
  display: inline-flex;
}

.justify-content-start {
  justify-content: start;
}

.justify-content-end {
  justify-content: end;
}

.justify-content-center {
  justify-content: center;
}

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

.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: start;
}

.align-items-end {
  align-items: end;
}

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

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

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

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

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

.flex-column-reverse {
  flex-direction: column-reverse;
}

.reset-ul {
  list-style: none;
}

.list-position {
  list-style-position: inside;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden-x {
  overflow-x: hidden;
}

.overflow-hidden-y {
  overflow-y: hidden;
}

.px-15 {
  padding-inline: 16px;
}

.container-fluid {
  max-width: 100%;
}

.container {
  margin-inline: auto;
  max-width: 1320px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1320px;
    }
}

.w-fit {
  width: fit-content;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.fw-extrabold {
  font-weight: 800;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.fw-light {
  font-weight: 300;
}

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

.link-text {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.text-center {
  text-align: center;
}

.link-text:hover {
  text-decoration: underline;
}
.rotate-n12 {
  transform: rotate(-12deg);
}
.rotate-15 {
  transform: rotate(15deg);
}
@media (min-width: 1279px) and (max-width: 1367px) {
  .rotate-15 {
    transform: rotate(10deg);
  }
  .rotate-n12 {
    transform: rotate(-8deg);
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-headings);
}
.display-1 {
  font-size: 75px;
}
@media (max-width: 991px) {
  .display-1 {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 36px;
  }
}

/*---- section-header css ----*/
.section-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.section-header-wrap {
  padding: var(--header-padding-y) 0;
}
.section-header-logo {
  width: 152px;
}
.section-header-logo img {
  width: 100%;
}
.section-header-main-menu {
  padding-left: 20px;
}
.menu-wrap {
  gap: 42px;
}
.menu-wrap li {
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: var(--light-color);
}
.menu-wrap li a {
  text-decoration: none;
  color: currentColor;
  transition: all 0.3s ease-in-out;
}
.menu-wrap li:hover > a {
  color: var(--secondary-color);
}
@media (max-width: 991px) {
  .section-header-logo {
    width: 138px;
  }
  .section-header-main-menu {
    padding-left: 15px;
  }
  .menu-wrap {
    gap: 22px;
  }
  .menu-wrap li {
    font-size: 16px;
  }
}

/*---- section-hero css ----*/
.section-hero {
  background-image: url('../images/hero-bg1-1.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-inline: 30px;
  margin-bottom: 100px;
}
.section-hero-wrap {
  padding-top: calc(var(--header-padding-y) + 118px);
}
.bill-box {
  background: linear-gradient(180deg,rgba(28, 1, 233, 1) 0%, rgba(28, 22, 120, 1) 94%);
  border-radius: 16px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 34px;
  padding: 11px 18px;
}
.bill-text {
  font-size: 100px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  display: block;
}
.bill-text span {
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  color: var(--light-color)
}
.section-hero-title {
  margin-bottom: 22px;
  color: var(--light-color);
}
.section-hero-desc {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--light-color);
  margin-bottom: 100px;
}
.section-hero-subtitle {
  font-family: var(--font-family-code);
  font-size: 40px;
  line-height: 1;
  color: #1C1678;
  margin-bottom: 22px;
}
.arrow-wrap {
  margin-bottom: 16px;
}
.btn {
  background: linear-gradient(90deg, rgba(28, 22, 120, 1) 16%, rgba(91, 35, 255, 1) 100%);
  color: var(--light-color);
  padding: 9px 20px;
  border-radius: 16px;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-inline: auto;
  gap: 14px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.btn-primary {
  padding: 17px 30px;
  border-radius: 20px;
  font-size: 40px;
  font-weight: 700;
  width: fit-content;
}
.btn-primary:hover svg {
  fill: currentColor;
}
.btn:hover {
  background: var(--secondary-color);
  color: var(--body-color);
}

.section-hero-content {
  width: 100%;
}
.section-hero-inner-wrap {
  --shape-img-width: 23%;
}
.section-hero-image-wrap {
  width: var(--shape-img-width);
  padding-top: 58px;
}

.section-hero-image {
  border-radius: 22px;
  overflow: hidden;
}
.hero-img2 {
  transform: rotate(15deg) translate(35px, -48px);
}
.hero-img4 {
  transform: rotate(-12deg) translate(-46px, -40px);
}
.section-hero-image img {
  border-radius: 22px !important;
  width: 100%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.section-hero-content {
  width: calc(100% - calc(var(--shape-img-width) * 2) - 0px);
  padding-inline: 25px;
}

@media (max-width: 1200px) {
  .bill-box {
    padding: 11px 15px;
    margin-bottom: 24px;
  }
  .bill-text {
    font-size: 70px;
  }
  .bill-text span {
    font-size: 32px;
  }
  .section-hero-desc {
    font-size: 16px;
    margin-bottom: 60px;
  }
  .section-hero-subtitle {
    font-size: 36px;
    margin-bottom: 18px;
  }
  .btn-primary {
    padding: 12px 18px;
    font-size: 34px;
  }
  .hero-img2 {
    transform: rotate(15deg) translate(-12px, -26px);
  }
  .hero-img4 {
    transform: rotate(-12deg) translate(14px, -20px);
}
}
@media (max-width: 991px) {
  .section-hero {
    margin-bottom: 60px;
  }
  .section-hero-wrap {
    padding-top: calc(var(--header-padding-y) + 100px);
  }
}
@media (max-width: 768px) {
  .section-hero {
    margin-bottom: 50px;
  }
  .section-hero-wrap {
    padding-top: calc(var(--header-padding-y) + 90px);
  }
  .bill-text {
    font-size: 42px;
  }
  .bill-text span {
    font-size: 22px;
  }
  .section-hero-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .btn { font-size: 20px; }
  .btn-primary {
    padding: 12px 18px;
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .section-hero-content {
    width: 100%;
    padding-inline: 0;
  }
  .section-hero-image-wrap { display: none; }
}

/*---- section-services css ----*/
.section-services {
  padding-bottom: 100px;
}
.section-services-wrapper {
  background-image: url('../images/services-bg1-1.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 20px;
  padding: 56px 92px;
  overflow: hidden;
}
.section-services-title {
  font-size: 30px;
  color: var(--light-color);
  margin-bottom: 30px;
}
.section-services-grid {
  --gap: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
.services-card {
  width: calc((100% - (2 * var(--gap))) / 3);
  background-color: rgba(var(--body-bg-rgb),0.15);
  border-radius: 15px;
  border: 1px solid rgba(var(--body-bg-rgb),0.15);
  transition: all 0.3s ease-in-out;
  padding: 14px 25px;
}
.services-card:hover {
  background-color: rgba(var(--body-bg-rgb),0.2);
  border-color: rgba(var(--body-bg-rgb),0.2);
  transform: translateY(-2px);
}
.services-card-title {
  font-size: 25px;
  color: var(--light-color);
  margin-bottom: 18px;
}
.services-card p {
  color: var(--light-color);
}

@media (max-width: 1200px) {
  .section-services-wrapper {
    padding: 50px 40px;
  }
}
@media (max-width: 991px) {
  .section-services {
    padding-bottom: 60px;
  }
  .section-services-wrapper {
    padding: 30px 20px;
  }
  .section-services-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .section-services-grid {
    --gap: 20px;
  }
  .services-card {
    width: calc((100% - (2 * var(--gap))) / 3);
    border-radius: 10px;
    padding: 10px 20px;
  }
  .services-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .section-services {
    padding-bottom: 50px;
  }
  .section-services-wrapper {
    padding: 30px 20px;
  }
  .services-card {
    width: calc((100% - (1 * var(--gap))) / 2);
    padding: 10px 16px;
  }
}
@media (max-width: 600px) {
  .services-card {
    width: calc((100% - (0 * var(--gap))) / 1);
  }
}

/* ---- section-about css ---- */
.section-about {
  margin-bottom: 100px;
}
.section-about-wrapper {
  background: var(--body-bg);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0px 2px 8px 0px rgba(23, 38, 206, 0.25);
}
.section-about-image {
  width: 42%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.section-about-image img {
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 10px!important;
}
.section-about-image:hover img {
  transform: scale(1.05) rotate(1deg);
}
.section-about-content {
  width: 56%;
  padding-left: 40px;
}
.section-about-tag {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: inline-block;
}
.section-about-title {
  font-size: 30px;
  margin-bottom: 20px;
}
.section-about-desc {
  font-size: 16px;
  color: var(--body-color);
}
.section-about-desc + .section-about-desc {
  margin-top: 16px;
}
@media (max-width: 991px) {
  .section-about {
    margin-bottom: 60px;
  }
  .section-about-wrapper {
    padding: 30px;
  }
  .section-about-image {
    width: 75%;
  }
  .section-about-content {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .section-about-title {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .section-about-tag {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .section-about {
    margin-bottom: 50px;
  }
  .section-about-image {
    width: 100%;
  }
}

/*---- section-price css ----*/
.section-price {
  padding-bottom: 100px;
}
.section-price-grid {
  --price-tag-bg: #E62727;
  --gap: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
.price-card {
  width: calc((100% - (2 * var(--gap))) / 3);
  background-color: var(--light-color);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 26px 30px;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
  position: relative;
}
.price-card:hover {
  transform: translateY(-1px);
  box-shadow: 0px 6px 15px 0px rgba(0,0,0,0.25);
}
.popular-card {
  background: linear-gradient(180deg, rgba(28, 1, 233, 1) 0%, rgba(28, 22, 120, 1) 100%);
  border-color: transparent;
}
.card-inner {
  padding: 0 10px;
}
.popular-tag {
  position: absolute;
  width: 114px;
  top: -1px;
  right: -1px;
  background-color: var(--price-tag-bg);
  padding: 7px 15px;
  border-radius: 0px 20px 0px 20px;
}
.popular-tag-text {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: var(--light-color);
}
.price-card-title {
  font-size: 30px;
  color: var(--body-color);
  margin-bottom: 18px;
}
.price-card-bill {
  font-size: 80px;
  font-weight: 800;
  color: var(--body-color);
}
.price-card-bill span {
  font-size: 20px;
  color: var(--body-color);
}
.divider {
  border: 1.5px solid #000;
  margin-top: 16px;
  margin-bottom: 22px;
}
.price-card-desc {
  font-size: 18px;
  color: #5B5B5B;
  margin-bottom: 18px;
}
.price-card-list {
  margin-bottom: 30px;
}
.price-card-list li {
  --check-list-size: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--body-color);
  display: flex;
  gap: 11px;
}
.price-card-list li + li {
  margin-top: 22px;
}
.price-card-list li::before {
  position: relative;
  content: '';
  top: 2px;
  display: inline-block;
  width: var(--check-list-size);
  height: var(--check-list-size);
  border-radius: 50%;
  background-image: url('../images/checkmark-dark1-1.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.popular-card .divider {
  border-color: var(--light-color);
}
.popular-card .price-card-title,
.popular-card .price-card-bill,
.popular-card .price-card-bill span,
.popular-card .price-card-desc,
.popular-card .price-card-list li {
  color: var(--light-color);
}
.popular-card .price-card-list li::before {
  background-image: url('../images/checkmark-light1-1.svg');
}
.popular-card .btn {
  background: var(--secondary-color);
  color: var(--body-color);
}

@media (max-width: 1200px) {
  .price-card {
    padding: 26px 20px;
  }
  .price-card-bill {
    font-size: 56px;
  }
  .price-card-bill span {
    font-size: 18px;
  }
  .popular-tag {
    width: 90px;
    padding: 7px 10px;
  }
  .popular-tag-text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .section-price {
    padding-bottom: 60px;
  }
  .price-card {
    width: calc((100% - (1 * var(--gap))) / 2);
    padding: 26px 20px;
  }
  .price-card-list {
    margin-bottom: 24px;
  }
  .price-card-list li {
    font-size: 17px;
    gap: 8px;
  }
  .price-card-list li + li {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .section-price {
    padding-bottom: 50px;
  }
  .price-card {
    width: calc((100% - (0 * var(--gap))) / 1);
    padding: 16px 10px;
  }
}

/* Footer css */
.footer {
  background: var(--border-color);
  color: var(--light-color);
  text-align: center;
  padding: 20px;
}

.footer a {
  color: var(--light-color);
  text-decoration: none;
  margin: 0 10px;
}