/* =========================================== start general style ================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-box-shadow: 5px 5px 0 1px black;
  --main-border: 4px solid black;
  --thin-border: 2px solid black;
}
html {
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
body {
  font-family: EXO, sans-serif;
  font-style: normal;
}

.border {
  border: var(--main-border);
}
a,
button {
  cursor: pointer;
}
.container {
  width: 96%;
  margin: auto;
}
.section {
  padding-block: 80px;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.flex-space-between-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.flex-flex-start-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.flex-center-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.flex-column-center-center {
  display: flex;
  flex-direction: column;
}
.gap-20 {
  gap: 20px;
}

.heading-section-h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 48px;
  margin-bottom: 16px;
}
.heading-section-p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 16px;
  color: #525252;
}

/* =========================================== end general style ================================================== */

/* =========================================== start navbar style ================================================== */
.navbar {
  width: 98%;
  height: 70px;
  position: fixed;
  top: 10px;
  left: 1%;
  background-color: #ffffff;
  padding-inline: 20px;
  z-index: 99999;
  border: var(--thin-border);
  border-radius: 15px;
}
.menu-toggle,
.menu-open,
.menu-close,
.menu-overlay {
  display: none;
}
.navbar-logo a {
  color: black;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 36px;
}
.navbar-color-text {
  color: #f97200;
}

.nb-link a {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 20px;
  color: black;
  transition: 0.2s;
}
.NB-star {
  font-size: 0.625rem;
  color: rgb(210, 208, 208);
}
.navbar-button {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 20px;
  border-radius: 50px;
  background-color: #ffd15b;
  border: var(--thin-border);
  transition: transform 0.2s;
}
.navbar-button:hover {
  transform: translate(3px, 3px);
}
.nb-link:hover a {
  color: #f97200;
}
.navbar-links li a.active {
  color: #f97200;
  border-bottom: 2px solid #f97200;
}
/* =========================================== end navbar style ================================================== */

/* =========================================== start hero section ( one ) style ================================================== */
.hero-section {
  background-color: #fff085;
  position: relative;
  padding-top: 150px;
  border-bottom: 4px solid black;
}
.left-hero::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 40px;
  width: 130px;
  height: 130px;
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(20deg);
}
.left-hero::before {
  content: "";
  position: absolute;
  top: 150px;
  left: 80%;
  width: 100px;
  height: 100px;
  background-color: rgba(203, 8, 8, 0.1);
  transform: rotate(20deg);
}
.hero-parent {
  display: grid;
  grid-template-columns: 50% 50%;
}
.hero-bg-p {
  padding: 15px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 20px;
  transform: rotate(-2deg);
  background-color: black;
  color: #ffffff;
  box-shadow: var(--main-box-shadow);
  position: absolute;
  top: 160px;
}
.hero-left-h1 {
  margin-top: 80px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 90px;
  text-shadow: 3px 5px black;
}
.hero-left-h1-red {
  color: #e7000b;
  display: block;
}
.hero-left-h1-blue {
  color: #155dfc;
}
.hero-p {
  width: 90%;
  padding: 10px;
  margin-block: 30px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 32px;
  background-color: #ffffff;
  box-shadow: var(--main-box-shadow);
  border: var(--thin-border);
  position: relative;
  z-index: 2;
}

.left-hero-button {
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 90%;
  gap: 2%;
}
.left-hero-button::after {
  content: "";
  position: absolute;
  top: -90px;
  left: 70%;
  width: 130px;
  height: 130px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(20deg);
}
.dark-btn,
.white-btn {
  width: 48%;
  padding: 20px;
  background-color: black;
  color: #ffffff;
  border: 4px solid black;
  box-shadow: 5px 5px 0px 1px black;
  transition: 0.2s;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 28px;
  z-index: 2;
}
.white-btn {
  background-color: #ffffff;
  color: black;
}
.hero-btn-i {
  font-size: 1.25rem;
}
.dark-btn:hover {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 0 black;
}

.white-btn:hover {
  box-shadow: 0 0 0 0 black;
  transform: translate(5px, 5px);
}
.right-hero {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center;
}
.right-hero-image {
  width: 558px;
  margin: auto;
  height: 376px;

  position: relative;
}
.right-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid black;
  box-shadow: var(--main-box-shadow);
  transform: rotate(2deg);
  transition: 0.2s;
}
.right-hero-image:hover img {
  transform: rotate(2deg) translate(-2px, -2px);
}
.right-hero-overlay {
  top: -10px;
  right: -15px;
  padding: 10px 15px;
  background-color: #fb2c36;
  box-shadow: 3px 3px 0 1px black;
  transform: rotate(16deg);
  border: var(--thin-border);
  color: #ffffff;
}

/* =========================================== end hero section ( one ) style ================================================== */

/* =========================================== start  section ( two ) style ================================================== */
.section-2 {
  background-color: #f5f5f5;
}
.section2-content {
  display: grid;
  grid-template-columns: 65% 32%;
  gap: 3%;
}
.section2-heading {
  margin-bottom: 48px;
  justify-content: flex-start;
}
.section2-h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 48px;
}
.section2-p {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  background-color: black;
  padding: 10px 20px;
  box-shadow: 3px 3px 0 1px black;
  transform: rotate(2deg);
}
.card-parent {
  align-items: flex-start;
  margin-top: 10px;
}
.card {
  margin-bottom: 32px;
  box-shadow: 3px 4px 0 1px black;
  transition: 0.2s;
  padding: 30px;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 1px black;
}

.card:hover .content-card-h3 {
  color: #e7000b;
}
.card2:hover .content-card-h3 {
  color: #155dfc;
}
.card3:hover .content-card-h3 {
  color: #9810fa;
}
.image-card {
  width: 22%;
  margin-right: 3%;
  border: var(--thin-border);
}
.content-card {
  width: 75%;
}
.image-card img {
  width: 100%;
}
.image-card-absolute {
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 16px;
  background-color: #fb2c36;
  border: inherit;
  color: #fff;
  top: -5px;
  right: -15px;
  transform: rotate(12deg);
}
.card-p2 {
  background-color: #2b7fff;
  transform: rotate(-12deg);
}
.card-p3 {
  background-color: #ad46ff;
  transform: rotate(35deg);
}

.content-card-p-color {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 16px;
  width: fit-content;
  padding: 2px 10px;
  border: var(--thin-border);
  box-shadow: 2px 2px 0 1px black;
  background-color: #ffdf20;
  transform: rotate(-2deg);
  margin-bottom: 12px;
}
.color-p2 {
  background-color: #7bf1a8;
  transform: rotate(2deg);
}
.color-p3 {
  background-color: #fda5d5;
  transform: rotate(-3deg);
}
.content-card-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 12px;
}
.content-card-p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 14px;
}
.content-card-user1 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 20px;
}
.red-card-user {
  color: #e7000b;
}
.section2-left-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dark-left-btn {
  padding: 10px 30px;
  background-color: black;
  color: #ffffff;
  box-shadow: 5px 5px 0px 1px black;
  transition: 0.2s;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 28px;
}
.dark-left-btn:hover {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 0 black;
}

.section2-right {
  position: relative;
}
.section2-stikky-cards {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
}
.stikky-card {
  box-shadow: var(--main-box-shadow);
}

.stikky-card-data-container {
  padding: 32px;
}
.stikky-card-h3 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 36px;
  margin-bottom: 32px;
}
.stikky-card-data {
  justify-content: flex-start;
  margin-bottom: 24px;
}
.stikky-card-data-left-h4 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 40px;
  color: #fb2c36;
}
.stikky-card-data-right-h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 28px;
}
.stikky-card-data-right-p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
}
.stikky-card-data:hover .stikky-card-data-right-h4 {
  color: #e7000b;
}
.h4-blue {
  color: #2b7fff;
}
.stikky-card-data:hover .h4-blue-hover {
  color: #155dfc;
}
.h4-purpel {
  color: #ad46ff;
}
.stikky-card-data:hover .h4-purpel-hover {
  color: #9810fa;
}
.stikky-card-1,
.stikky-card-2,
.stikky-card-3,
.stikky-card-4,
.stikky-card-5 {
  margin-bottom: 10px;
  padding: 10px 16px;

  border: var(--thin-border);
}
.stikky-card-data-h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px;
}
.stikky-card-data2 {
  transition: 0.2s;
}
.stikky-card-data2:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--main-box-shadow);
}
.stikky-card-1 {
  background-color: #fef9c2;
}
.stikky-card-1:hover {
  background-color: #ffdf20;
}
.stikky-card-2 {
  background-color: #dbfce7;
}
.stikky-card-2:hover {
  background-color: #7bf1a8;
}
.stikky-card-3 {
  background-color: #fce7f3;
}
.stikky-card-3:hover {
  background-color: #fda5d5;
}
.stikky-card-4 {
  background-color: #dbeafe;
}
.stikky-card-4:hover {
  background-color: #8ec5ff;
}
.stikky-card-5 {
  background-color: #f3e8ff;
}
.stikky-card-5:hover {
  background-color: #dab2ff;
}
/* =========================================== end    section ( two ) style ================================================== */

/* =========================================== start    section ( three ) style ================================================== */
.section-3 {
  background-color: #ffd230;
  border-top: 5px solid black;
  border-bottom: 5px solid black;
}
.section-3-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.section-3-heading::after {
  content: "";
  position: absolute;
  top: -40px;
  right: 20px;
  width: 160px;
  height: 160px;
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(140deg);
}

.line {
  width: 10%;
  height: 8px;
  background-color: black;
  margin: auto;
  transform: rotate(1deg);
}
.section3-cards-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.section3-card-child {
  text-align: center;
  padding: 32px;
  box-shadow: var(--main-box-shadow);
  position: relative;
  transition: 0.2s;
}
.section3-card-child:hover {
  transform: translate(-2px, -2px);
}
.child1 {
  background-color: #fef9c2;
}

.child-image {
  width: 120px;
  height: 120px;
  margin: auto;
  margin-bottom: 24px;
}
.child-image img {
  width: 100%;
  height: 100%;
}
.child-absolute {
  position: absolute;
  padding: 5px 10px;
  top: 30px;
  right: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  background-color: #fb2c36;
  border: var(--thin-border);
  transform: rotate(15deg);
}
.child-data {
  width: 90%;
  margin: auto;
  text-align: center;
}
.child-data-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 36px;
  margin-bottom: 8px;
  transition: 0.2s;
}
.child1:hover .h2-child1 {
  color: #e7000b;
}
.child-data-p-bold {
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px;
  color: #525252;
  margin-bottom: 16px;
}
.child-data-p-normal {
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 24px;
}
.child-icons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}
.child-icons-1 {
  padding: 10px;
  background-color: black;
  border: var(--thin-border);
  transition: 0.2s;
}
.child-icons-1:hover {
  box-shadow: var(--main-box-shadow);
  transform: translate(-2px, -2px);
}
.child-icons-1 a {
  color: #fff;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
}
.child2 {
  background-color: #dbfce7;
}
.child2:hover .h2-child2 {
  color: #155dfc;
}
.child3 {
  background-color: #fce7f3;
}
.child3:hover .h2-child3 {
  color: #9810fa;
}
.child-absolute-3 {
  transform: rotate(45deg);
  background-color: #ad46ff;
}
.child-absolute-2 {
  transform: rotate(-15deg);
  background-color: #2b7fff;
}
.icon-1-hover:hover {
  background-color: #1da1f2;
}
.icon-2-hover:hover {
  background-color: #155dfc;
}
.icon-3-hover:hover {
  background-color: #e60076;
}
/* =========================================== end    section ( three ) style ================================================== */

/* =========================================== start    section ( four ) style ================================================== */
.section-4 {
  background-color: #f5f5f5;
}
.section-4-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.line-section4 {
  width: 10%;
  height: 8px;
  background-color: black;
  margin: auto;
  transform: rotate(-1deg);
}

.section-4-parent {
  display: grid;
  grid-template-columns: 47% 48%;
  justify-content: space-between;
}
.section-4-left {
  padding-top: 40px;
}
.section-4-right {
  padding: 40px;
  box-shadow: var(--main-box-shadow);
}
.section-4-left-h2 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 40px;
  margin-bottom: 32px;
}
.section-4-left-p {
  padding: 16px;
  margin-bottom: 32px;
  box-shadow: 3px 3px 0 1px black;
  border: var(--thin-border);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 33px;
  background-color: #ffffff;
}
.section-4-left-data-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.section-4-left-data-card-icon {
  padding: 15px;
  align-self: flex-start;
  border: var(--thin-border);
  color: #fff;
}
.l-d-c-i-1 {
  background-color: #fb2c36;
}
.l-d-c-i-2 {
  background-color: #2b7fff;
}
.l-d-c-i-3 {
  background-color: #ad46ff;
}
.l-d-c-i-4 {
  background-color: #00c950;
}
.l-d-c-4 {
  margin-bottom: 0;
}
.section-4-left-data-card-p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 28px;
}
.section-4-left-btn {
  padding: 24px 48px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 24px;
  background-color: black;
  box-shadow: var(--main-box-shadow);
  color: #fff;
  margin-top: 48px;
  transition: 0.2s;
}
.section-4-left-btn:hover {
  transform: translate(5px, 5px);
  box-shadow: 0px 0px 0 0px black;
}
.section-4-right-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 36px;
  margin-bottom: 32px;
}
.section-4-right-data {
  border: var(--thin-border);
  margin-bottom: 32px;
  padding: 16px 16px 16px 24px;
}
.s-4-r-data1 {
  background-color: #fef2f2;
}
.section-4-right-data-p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 29px;
  margin-bottom: 16px;
}
.section-4-right-data-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.section-4-r-d-info-image {
  width: 50px;
  border: var(--thin-border);
  margin-right: 20px;
}
.section-4-r-d-info-image img {
  width: 100%;
}
.section-4-r-d-info-name-h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 29px;
}
.s-4-r-data2 {
  background-color: #eff6ff;
}
.s-4-r-data3 {
  background-color: #faf5ff;
  margin-bottom: 0;
}
/* =========================================== end    section ( four ) style ================================================== */

/* =========================================== START    section ( FOOTER ) style ================================================== */
.footer {
  background-color: black;
  color: #fff;
}
.footer-parent-1 {
  display: grid;
  grid-template-areas: " area1 area1  area2  area3 area3";
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 4px solid white;
}

.footer-child-logo {
  margin-bottom: 40px;
}
.footer-child-logo-image {
  width: 60px;
  height: 60px;
  background-color: #fff;
  margin-right: 20px;
}
.footer-child-logo-image img {
  width: 30px;
}
.footer-child-logo-h2 h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 39px;
}
.footer-child-1 {
  grid-area: area1;
}
.footer-child-2 {
  grid-area: area2;
}
.footer-child-3 {
  grid-area: area3;
}
.footer-child-p,
.footer-child-3-p {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}
.footer-child-h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 32px;
  margin-bottom: 32px;
}
.footer-child-li {
  margin-bottom: 16px;
}
.footer-child-li a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  transition: 0.2s;
}
.footer-child-li:hover a {
  color: #ffdf20;
}
.footer-child-3 > * {
  margin-bottom: 24px;
}

.footer-child input {
  padding: 16px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #fff;
  outline: none;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 28px;
  transition: 0.2s;
  color: #fff;
}
.footer-input:focus {
  border: 1px solid #fdc700;
}
.footer-child button {
  padding: 16px;
  width: 100%;
  background-color: #ffdf20;
  border: 3px solid #ca9f00;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 28px;
  transition: 0.2s;
}
.footer-btn:hover {
  transform: translate(5px, 5px);
  background-color: #fdc700;
}
.footer-parent-2 {
  padding-top: 32px;
}
.footer-2-left p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.footer-2-right-data > *:not(:last-child) {
  margin-right: 32px;
}
.footer-2-right-data a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  transition: 0.2s;
}
.footer2-link:hover {
  color: #ffdf20;
}
/* =========================================== end    section ( FOOTER ) style ================================================== */
