/* ============================
   1. GLOBAL STYLES 
===============================
*/
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body::selection {
  background-color: #ffd15b;
  color: #000;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Exo", sans-serif;
  /* height: 600vh; */
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.container {
  width: 85%;
  margin: 0 auto;
}
/* ----------------------------------------------------------------
   2.Header & Navbar
---------------------------------------------------------------- 
*/
.header {
  background-color: #fff085;
  /* min-height: 100vh; */
  position: relative;
  z-index: 1;
}
.header .navbar {
  padding-block: 16px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}
.header .navbar .nav-box {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  padding-inline: 22px;
  border: 2px solid #000;
  border-radius: 16px;
}
.header .navbar .nav-box .nav-logo h1 {
  font-size: 30px;
  font-weight: 800;
  color: rgb(17, 17, 17);
}
.header .navbar .nav-box .nav-logo span {
  font-weight: 30px;
  font-size: 800;
  color: oklch(0.705 0.213 47.604);
}
.header .navbar .nav-box .nav-links {
  display: none;
}
.header .navbar .nav-box .nav-links ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.header .navbar .nav-box .nav-links ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: color 0.6s;
}
.header .navbar .nav-box .nav-links ul li a:hover {
  color: #ff7a50;
}
.header .navbar .nav-box .nav-links ul li i {
  font-size: 12px;
  font-weight: 600;
  color: oklch(0.872 0.01 258.338);
  margin-left: 12px;
}
.header .navbar .nav-box button {
  background-color: #ffd15b;
  padding: 10px 16px;
  border: 2px solid #000;
  border-radius: 30px;
  transition: all 0.3s;
  display: none;
}
.header .navbar .nav-box button a {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.header .navbar .nav-box button:hover {
  transform: translate(3px, 3px);
}
.header .navbar .nav-box .menu-toggle {
  background-color: #ffffff;
  border: 2px solid #000;
  border-radius: 5px;
  box-shadow: 3px 3px #000;
  padding: 10px;
  transition: all 0.3s;
}
.header .navbar .nav-box .menu-toggle i {
  font-size: 24px;
  color: #000;
}
.header .navbar .nav-box .menu-toggle:hover {
  transform: translateY(-3px);
}

/* ========= media qery ========== */
@media only screen and (max-width: 1280px) {
  .header .navbar .nav-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-inline: 30px;
  }
}
@media only screen and (min-width: 1281px) {
  .header .navbar .nav-box .menu-toggle {
    display: none;
  }
  .header .navbar .nav-box .nav-links {
    display: block;
  }
  .header .navbar .nav-box button {
    display: block;
  }
}
/* ----------------------------------------------------------------
   3.Header--square
---------------------------------------------------------------- 
*/
.header .square-desine-1 {
  width: 152px;
  height: 152px;
  background-color: #0000001e;
  position: absolute;
  z-index: -1;
  top: 50px;
  left: 50px;
  transform: rotate(12deg);
}
.header .square-desine-2 {
  width: 152px;
  height: 152px;
  background-color: oklch(63.78% 0.23729 25.422 / 0.082);
  position: absolute;
  z-index: -1;
  top: 140px;
  right: 60px;
  transform: rotate(45deg);
}
/* ----------------------------------------------------------------
   3.Header--content
---------------------------------------------------------------- 
*/
.header .content-header {
  padding-top: 110px;
}
.header .content-header .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-block: 60px;
  /* height: 85vh; */
}
.header .content-header .content {
  /* height: 602px; */
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.header .content-header .content .span-content {
  font-size: 18px;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  box-shadow: 3px 3px #000;
  border: 2px solid #000;
  transform: rotate(-2deg);
}
.header .content-header .content h2 {
  font-size: 72px;
  font-weight: 900;
  color: #000;
  text-shadow: 3px 3px #000c;
}
.header .content-header .content h2 .red {
  color: oklch(0.577 0.245 27.325);
}
.header .content-header .content h2 .blue {
  color: oklch(0.546 0.245 262.881);
}
.header .content-header .content p {
  font-size: 24px;
  font-weight: 500;
  background-color: #fff;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  padding: 16px;
}
.header .content-header .buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.header .content-header .buttons .btn-1 {
  font-size: 20px;
  font-weight: 700;
  background-color: #000;
  width: 100%;
  padding: 18px 32px;
  border: 3px solid #000;
  box-shadow: 6px 6px #000;
  transition: all 0.3s;
}
.header .content-header .buttons .btn-1 a {
  color: #fff;
}
.header .content-header .buttons .btn-1:hover {
  box-shadow: 0 0;
  transform: translate(3px, 3px);
}
.header .content-header .buttons .btn-2 {
  font-size: 20px;
  font-weight: 700;
  background-color: #fff;
  width: 100%;
  padding: 18px 32px;
  border: 3px solid #000;
  box-shadow: 6px 6px #000;
  transition: all 0.3s;
}
.header .content-header .buttons .btn-2 a {
  color: #000;
}
.header .content-header .buttons .btn-2:hover {
  box-shadow: 0 0;
  transform: translate(3px, 3px);
}
@media only screen and (min-width: 1024px) {
  .header .content-header .content {
    width: 576px;
  }
  .header .content-header .buttons .btn-1 {
    width: 50%;
  }
  .header .content-header .buttons .btn-2 {
    width: 50%;
  }
  .header .content-header .buttons {
    flex-wrap: nowrap;
  }
}
/* ----------------------------------------------------------------
   3.Header--image
---------------------------------------------------------------- 
*/
.header .content-header .image-header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.4s;
  margin-top: 40px;
}
.header .content-header .image-header:hover {
  transform: translate(-20px, -5px);
}
.header .content-header .image-header {
  width: 589px;
  height: 404px;
  background-image: url(../images/imgi_1_e7c75b833c-f09fa794a4e1fbd04b1e.png);
  background-size: cover;
  border: 4px solid #000;
  box-shadow: 5px 5px #000;
  transform: rotate(2deg);
}
/* .header .content-header .image img{
    width: 100%;
} */
.header .span-image {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 11px 16px;
  font-weight: 700;
  background-color: #fb2c36;
  color: #fff;
  z-index: 555;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  transform: rotate(18deg);
}
/* @media only screen and (max-width: 1280px) {
  .header .content-header .image-header{
    display: none;
  }
} */
/* ----------------------------------------------------------------
   4. section-2
---------------------------------------------------------------- 
*/
.section-2 {
  background-color: oklch(0.97 0 0);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 80px 0;
}
.section-2 .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.section-2 .latest-article {
  width: 800px;
}
@media only screen and (max-width: 1024px) {
  .section-2 .latest-article {
    width: 100%;
  }
  .section-2 .latest-article .head-section-2 {
    width: 100%;
  }
}
.section-2 .latest-article .head-section-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.section-2 .latest-article .head-section-2 h3 {
  font-size: 48px;
  font-weight: 900;
}
.section-2 .latest-article .head-section-2 span {
  color: #fff;
  font-weight: 700;
  background-color: #000;
  border: 2px soid #000;
  box-shadow: 3px 3px #000;
  padding: 8px 16px;
  transform: rotate(2deg);
}
/* ----------------------------------------------------------------
   4. section-2-----cards-----card-1
---------------------------------------------------------------- 
*/
.section-2 .latest-article .card-1 {
  background-color: #fff;
  border: 3px solid #000;
  box-shadow: 3px 3px #000;
  padding: 32px;
  margin: 32px 0 0;
  transition: all 0.4s;
}
.section-2 .latest-article .card-1:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px #000;
}
.section-2 .latest-article .card-1 .image {
  position: relative;
  width: 350px;

  /* width: 100%; */
}
@media only screen and (max-width: 1024px) {
  .section-2 .latest-article .card-1 .image {
    width: 100%;
  }
  .section-2 .latest-article .card-1 .content-card {
    flex-wrap: wrap;
  }
}
.section-2 .latest-article .card-1 .image span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  background-color: oklch(0.637 0.237 25.331);
  color: #fff;
  padding: 4px 8px;
  border: 2px solid #000;
  transform: rotate(23deg);
}
.section-2 .latest-article .card-1 .image img {
  width: 100%;
  display: block;
  /* padding: 5px; */
  border: 3px solid #000;
}
.section-2 .latest-article .card-1 .content-card {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: flex-start;
}
.section-2 .latest-article .card-1 .content-card .about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-left: 24px;
  padding-block: 10px;
}
.section-2 .latest-article .card-1 .content-card .about .tech {
  font-size: 12px;
  font-weight: 700;
  background-color: oklch(0.905 0.182 98.111);
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  padding: 4px 12px;
  transform: rotate(-2deg);
}
.section-2 .latest-article .card-1 .content-card .about h4 {
  font-size: 24px;
  font-weight: 700;
  color: oklab(0.0775679 0.029261 0.0151189);
}
.section-2 .latest-article .card-1:hover .content-card .about h4 {
  color: oklab(0.572937 0.21613 0.111672);
}
.section-2 .latest-article .card-1 .content-card .about p {
  font-size: 18px;
  color: #000;
}
.section-2 .latest-article .card-1 .content-card .about .statue {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.section-2 .latest-article .card-1 .content-card .about .statue i {
  margin-right: 8px;
}
.section-2 .latest-article .card-1 .content-card .about .statue .red {
  color: oklch(0.577 0.245 27.325);
}
/* ----------------------------------------------------------------
   4. section-2-----cards-----card-2
---------------------------------------------------------------- 
*/
.section-2 .latest-article .card-2 {
  background-color: #fff;
  border: 3px solid #000;
  box-shadow: 3px 3px #000;
  padding: 32px;
  margin: 32px 0 0;
  transition: all 0.4s;
}
@media only screen and (max-width: 1024px) {
  .section-2 .latest-article .card-2 .image {
    width: 100%;
  }
  .section-2 .latest-article .card-2 .content-card {
    flex-wrap: wrap;
  }
}
.section-2 .latest-article .card-2:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px #000;
}
.section-2 .latest-article .card-2 .image {
  position: relative;
  width: 350px;
}
.section-2 .latest-article .card-2 .image span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  background-color: #2b7fff;
  color: #fff;
  padding: 4px 8px;
  border: 2px solid #000;
  transform: rotate(-18deg);
  border-radius: 5px;
}
.section-2 .latest-article .card-2 .image img {
  width: 100%;
  display: block;
  /* padding: 5px; */
  border: 3px solid #000;
}
.section-2 .latest-article .card-2 .content-card {
  display: flex;
  /* flex-wrap: nowrap; */
  justify-content: space-between;
  align-items: flex-start;
}
.section-2 .latest-article .card-2 .content-card .about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-left: 24px;
  padding-block: 10px;
}
.section-2 .latest-article .card-2 .content-card .about .DESIGN {
  font-size: 12px;
  font-weight: 700;
  background-color: #7bf1a8;
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  padding: 4px 12px;
}
.section-2 .latest-article .card-2 .content-card .about h4 {
  font-size: 24px;
  font-weight: 700;
  color: oklab(0.0775679 0.029261 0.0151189);
}
.section-2 .latest-article .card-2:hover .content-card .about h4 {
  color: oklab(0.415586 -0.0231107 -0.185043);
}
.section-2 .latest-article .card-2 .content-card .about p {
  font-size: 18px;
  color: #000;
}
.section-2 .latest-article .card-2 .content-card .about .statue {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.section-2 .latest-article .card-2 .content-card .about .statue i {
  margin-right: 8px;
}
.section-2 .latest-article .card-2 .content-card .about .statue .red {
  color: oklch(0.577 0.245 27.325);
}
/* ----------------------------------------------------------------
   4. section-2-----cards-----card-3
---------------------------------------------------------------- 
*/
.section-2 .latest-article .card-3 {
  background-color: #fff;
  border: 3px solid #000;
  box-shadow: 3px 3px #000;
  padding: 32px;
  margin: 32px 0 0;
  transition: all 0.4s;
}
@media only screen and (max-width: 1024px) {
  .section-2 .latest-article .card-3 .image {
    width: 100%;
  }
  .section-2 .latest-article .card-3 .content-card {
    flex-wrap: wrap;
  }
}
.section-2 .latest-article .card-3:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px #000;
}
.section-2 .latest-article .card-3 .image {
  position: relative;
  width: 350px;
}
.section-2 .latest-article .card-3 .image span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  background-color: oklch(0.627 0.265 303.9);
  color: #fff;
  padding: 4px 8px;
  border: 2px solid #000;
  transform: rotate(30deg);
}
.section-2 .latest-article .card-3 .image img {
  width: 100%;
  display: block;
  /* padding: 5px; */
  border: 3px solid #000;
}
.section-2 .latest-article .card-3 .content-card {
  display: flex;
  /* flex-wrap: nowrap; */
  justify-content: space-between;
  align-items: flex-start;
}
.section-2 .latest-article .card-3 .content-card .about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-left: 24px;
  padding-block: 10px;
}
.section-2 .latest-article .card-3 .content-card .about .CULTURE {
  font-size: 12px;
  font-weight: 700;
  background-color: oklch(0.823 0.12 346.018);
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  padding: 4px 12px;
  transform: rotate(-3deg);
}
.section-2 .latest-article .card-3 .content-card .about h4 {
  font-size: 24px;
  font-weight: 700;
  color: oklab(0.0775679 0.029261 0.0151189);
}
.section-2 .latest-article .card-3:hover .content-card .about h4 {
  color: oklab(0.531732 0.146734 -0.231922);
}
.section-2 .latest-article .card-3 .content-card .about p {
  font-size: 18px;
  color: #000;
}
.section-2 .latest-article .card-3 .content-card .about .statue {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.section-2 .latest-article .card-3 .content-card .about .statue i {
  margin-right: 8px;
}
.section-2 .latest-article .card-3 .content-card .about .statue .red {
  color: oklch(0.577 0.245 27.325);
}
/* ----------------------------------------------------------------
   4. section-2-----cards-----button
---------------------------------------------------------------- 
*/
.section-2 .latest-article button {
  margin-top: 100px;
  margin-inline: 200px;
  padding: 18px 48px;
  font-size: 20px;
  font-weight: 700;
  background-color: #000;
  color: #ffffff;
  border: 1px solid #000;
  box-shadow: 7px 7px #000;
  transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
  .section-2 .latest-article button {
    width: 100%;
    margin-inline: 0;
  }
}
.section-2 .latest-article button:hover {
  box-shadow: 0px 0px #000;
  transform: translate(7px, 7px);
}
.section-2 .latest-article button a {
  color: #fff;
}
/* ----------------------------------------------------------------
   4. section-2-----trend-catgory
---------------------------------------------------------------- 
*/
@media only screen and (min-width: 1024px) {
  .section-2 .trend-ctgory {
    position: sticky;
    top: 0;
    right: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .section-2 .trend-ctgory {
    width: 100%;
  }
  .section-2 .trend-ctgory .trending {
    width: 100%;
  }
  .section-2 .trend-ctgory .catagory {
    width: 100%;
  }
}
/* .section-2 .trend-ctgory{
  /* width: 389px; */

.section-2 .trend-ctgory .trending {
  /* width: 389px; */
  height: 300px;
  background-color: #fff;
  border: 4px solid #000;
  box-shadow: 6px 6px #000;
  padding: 32px;
  margin: 0px 0px 32px;
}
.section-2 .trend-ctgory .catagory {
  /* width: 389px; */
  background-color: #fff;
  border: 4px solid #000;
  box-shadow: 6px 6px #000;
  padding: 32px;
  margin: 0px 0px 32px;
}
/* ========================= */
.section-2 .trend-ctgory .trending h4 {
  font-size: 30px;
  font-weight: 900;
  color: #000;
  margin: 0px 0px 24px;
}
.section-2 .trend-ctgory .trending .item-trend .item-1,
.item-2,
.item-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  margin-top: 10px;
}
.section-2 .trend-ctgory .trending .item-trend .item-1 .red {
  font-size: 36px;
  font-weight: 900;
  color: oklch(0.637 0.237 25.331);
  margin: 0 16px 0 0;
}
.section-2 .trend-ctgory .trending .item-trend .item-1:hover h5 {
  color: oklch(0.577 0.245 27.325);
}
.section-2 .trend-ctgory .trending .item-trend .item-1 h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  transition: all 0.4s;
}
.section-2 .trend-ctgory .trending .item-trend .item-1 p {
  font-size: 14px;
  color: oklch(0.439 0 0);
  margin: 8px 0 0;
}
/* =========== .item-2 ================ */
.section-2 .trend-ctgory .trending .item-trend .item-2 .blue {
  font-size: 36px;
  font-weight: 900;
  color: oklch(0.623 0.214 259.815);
  margin: 0 16px 0 0;
}
.section-2 .trend-ctgory .trending .item-trend .item-2:hover h5 {
  color: oklch(0.623 0.214 259.815);
}
.section-2 .trend-ctgory .trending .item-trend .item-2 h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  transition: all 0.4s;
}
.section-2 .trend-ctgory .trending .item-trend .item-2 p {
  font-size: 14px;
  color: oklch(0.439 0 0);
  margin: 8px 0 0;
}
/* =========== .item-3 ================ */
.section-2 .trend-ctgory .trending .item-trend .item-3 .move {
  font-size: 36px;
  font-weight: 900;
  color: oklch(0.627 0.265 303.9);
  margin: 0 16px 0 0;
}
.section-2 .trend-ctgory .trending .item-trend .item-3:hover h5 {
  color: oklch(0.627 0.265 303.9);
}
.section-2 .trend-ctgory .trending .item-trend .item-3 h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  transition: all 0.4s;
}
.section-2 .trend-ctgory .trending .item-trend .item-3 p {
  font-size: 14px;
  color: oklch(0.439 0 0);
  margin: 8px 0 0;
}
/* ----------------------------------------------------------------
   4. section-2-----catgory
---------------------------------------------------------------- 
*/
.section-2 .trend-ctgory h4 {
  font-size: 30px;
  font-weight: 900;
  color: #000;
  margin: 0px 0px 24px;
}
.section-2 .trend-ctgory .items-catgory {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.section-2 .trend-ctgory .items-catgory span {
  font-weight: 700;
  border: 2px solid #000;
  margin: 0px 0px 12px;
  padding: 12px 16px;
  transition: all 0.4s;
}
.section-2 .trend-ctgory .items-catgory span a {
  color: #000;
}
.section-2 .trend-ctgory .items-catgory .bg-1 {
  background-color: oklch(0.973 0.071 103.193);
}
.section-2 .trend-ctgory .items-catgory .bg-2 {
  background-color: oklab(0.962 -0.0404247 0.0173737);
}
.section-2 .trend-ctgory .items-catgory .bg-3 {
  background-color: oklab(0.948 0.0266683 -0.00853248);
}
.section-2 .trend-ctgory .items-catgory .bg-4 {
  background-color: oklab(0.932 -0.00796618 -0.0309926);
}
.section-2 .trend-ctgory .items-catgory .bg-5 {
  background-color: oklab(0.946 0.0199398 -0.0262945);
}
.section-2 .trend-ctgory .items-catgory .trn-1:hover {
  background-color: oklab(0.911783 -0.0247335 0.169101);
  box-shadow: 5.5px 5.5px #000000e6;
  transform: translate(-2px, -5.5px);
}
.section-2 .trend-ctgory .items-catgory .trn-2:hover {
  background-color: oklab(0.878178 -0.127844 0.0609643);
  box-shadow: 5.5px 5.5px #000000e6;
  transform: translate(-2px, -5.5px);
}
.section-2 .trend-ctgory .items-catgory .trn-3:hover {
  background-color: oklch(0.823 0.12 346.018);
  box-shadow: 5.5px 5.5px #000000e6;
  transform: translate(-2px, -5.5px);
}
.section-2 .trend-ctgory .items-catgory .trn-4:hover {
  background-color: oklab(0.821234 -0.0303051 -0.092915);
  box-shadow: 5.5px 5.5px #000000e6;
  transform: translate(-2px, -5.5px);
}
.section-2 .trend-ctgory .items-catgory .trn-5:hover {
  background-color: #b190cf;
  box-shadow: 5.5px 5.5px #000000e6;
  transform: translate(-2px, -5.5px);
}
/* ----------------------------------------------------------------
   5. section-3-----
---------------------------------------------------------------- 
*/
.section-3 {
  position: relative;
  /* z-index: ; */
  background-color: #ffd230;
  padding-block: 80px;
  border-bottom: 3px solid #000;
}
.section-3 .theem-1 {
  width: 152px;
  height: 152px;
  background-color: #0000001e;
  position: absolute;
  /* z-index: ; */
  top: 50px;
  right: 50px;
  transform: rotate(45deg);
}
.section-3 .theem-2 {
  width: 152px;
  height: 152px;
  background-color: oklch(63.78% 0.23729 25.422 / 0.082);
  position: absolute;
  /* z-index: ; */
  bottom: 50px;
  left: 50px;
  transform: rotate(-15deg);
}
@media only screen and (max-width: 1024px) {
  .section-3 .header-section-3 {
    width: 100%;
    /* align-items: flex-start; */
  }
}
.section-3 .header-section-3 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.section-3 .header-section-3 h3 {
  font-size: 42px;
  font-weight: 900;
}
.section-3 .header-section-3 p {
  color: oklch(0.439 0 0);
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}
.section-3 .header-section-3 .line {
  width: 128px;
  height: 8px;
  background-color: #000;
  /* margin: 16px 552px 0px; */
  transform: rotate(1deg);
}
@media only screen and (min-width: 1024px) {
  .section-3 .header-section-3 h3 {
    font-size: 48px;
  }
}
/* ----------------------------------------------------------------
   5. section-3-----cards
---------------------------------------------------------------- 
*/
@media only screen and (max-width: 1024px) {
  .section-3 .cards-section-3 {
    width: 100%;
  }
}
.section-3 .cards-section-3 {
  padding-top: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
/* ----------------------------------------------------------------
   5. section-3-----cards---1
---------------------------------------------------------------- 
*/
@media only screen and (min-width: 1024px) {
  .section-3 .cards-section-3 .card-1 {
    width: 389px;
  }
  .section-3 .cards-section-3 .card-2 {
    width: 389px;
  }
  .section-3 .cards-section-3 .card-3 {
    width: 389px;
  }
}
.section-3 .cards-section-3 .card-1 {
  position: relative;
  margin-bottom: 20px;
  height: 484px;
  background-color: oklch(0.973 0.071 103.193);
  border: 4px solid #000;
  box-shadow: 6px 6px #000;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-1:hover {
  transform: translate(-6px, -6px);
}
.section-3 .cards-section-3 .card-1 span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  font-weight: 700;
  background-color: oklch(0.637 0.237 25.331);
  color: #fff;
  border: 2px solid #000;
  padding: 4px 8px;
  transform: rotate(12deg);
}
.section-3 .cards-section-3 .card-1 .image {
  margin: 0 auto;
  width: 317px;
  height: 128px;
  text-align: center;
}
.section-3 .cards-section-3 .card-1 .image img {
  width: 40%;
  border: 4px solid #000;
  margin: 0px 94.6719px 0px 94.6562px;
}
.section-3 .cards-section-3 .card-1 h4 {
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  padding-top: 20px;
}
.section-3 .cards-section-3 .card-1:hover h4 {
  color: oklch(0.577 0.245 27.325);
}
.section-3 .cards-section-3 .card-1 .p-1 {
  line-height: 24px;
  font-weight: 700;
  color: oklch(0.439 0 0);
  padding-top: 10px;
}
.section-3 .cards-section-3 .card-1 .p-2 {
  line-height: 26px;
  color: #000;
  margin: 0 0 24px;
  padding-top: 10px;
}
.section-3 .cards-section-3 .card-1 .sochial {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 5px;
}
.section-3 .cards-section-3 .card-1 .sochial .bg-1 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-1 .sochial .bg-1:hover {
  background-color: #1da1f2;
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-1 .sochial .bg-1 i {
  color: #fff;
  font-size: 18px;
}
.section-3 .cards-section-3 .card-1 .sochial .bg-2 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-1 .sochial .bg-2:hover {
  background-color: oklch(0.546 0.245 262.881);
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-1 .sochial .bg-2 i {
  color: #fff;
  font-size: 18px;
}
.section-3 .cards-section-3 .card-1 .sochial .bg-3 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-1 .sochial .bg-3:hover {
  background-color: oklch(0.592 0.249 0.584);
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-1 .sochial .bg-3 i {
  color: #fff;
  font-size: 18px;
}
/* ----------------------------------------------------------------
   5. section-3-----cards---2
---------------------------------------------------------------- 
*/
.section-3 .cards-section-3 .card-2 {
  position: relative;
  /* width: 389px; */
  margin-bottom: 20px;
  height: 484px;
  background-color: oklch(0.962 0.044 156.743);
  border: 4px solid #000;
  box-shadow: 6px 6px #000;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-2:hover {
  transform: translate(-6px, -6px);
}
.section-3 .cards-section-3 .card-2 span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  font-weight: 700;
  background-color: oklch(0.623 0.214 259.815);
  color: #fff;
  border: 2px solid #000;
  padding: 4px 8px;
  transform: rotate(-12deg);
}
.section-3 .cards-section-3 .card-2 .image {
  margin: 0 auto;
  width: 317px;
  height: 128px;
  text-align: center;
}
.section-3 .cards-section-3 .card-2 .image img {
  width: 40%;
  border: 4px solid #000;
  margin: 0px 94.6719px 0px 94.6562px;
}
.section-3 .cards-section-3 .card-2 h4 {
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  padding-top: 20px;
}
.section-3 .cards-section-3 .card-2:hover h4 {
  color: oklch(0.546 0.245 262.881);
}
.section-3 .cards-section-3 .card-2 .p-1 {
  line-height: 24px;
  font-weight: 700;
  color: oklch(0.439 0 0);
  padding-top: 10px;
}
.section-3 .cards-section-3 .card-2 .p-2 {
  line-height: 26px;
  color: #000;
  margin: 0 0 24px;
  padding-top: 10px;
}
.section-3 .cards-section-3 .card-2 .sochial {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 5px;
}
.section-3 .cards-section-3 .card-2 .sochial .bg-1 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-2 .sochial .bg-1:hover {
  background-color: #1da1f2;
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-2 .sochial .bg-1 i {
  color: #fff;
  font-size: 18px;
}
.section-3 .cards-section-3 .card-2 .sochial .bg-2 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-2 .sochial .bg-2:hover {
  background-color: oklch(0.546 0.245 262.881);
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-2 .sochial .bg-2 i {
  color: #fff;
  font-size: 18px;
}
.section-3 .cards-section-3 .card-2 .sochial .bg-3 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-2 .sochial .bg-3:hover {
  background-color: oklch(0.592 0.249 0.584);
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-2 .sochial .bg-3 i {
  color: #fff;
  font-size: 18px;
}
/* ----------------------------------------------------------------
   5. section-3-----cards---3
---------------------------------------------------------------- 
*/
.section-3 .cards-section-3 .card-3 {
  position: relative;
  /* width: 389px; */
  margin-bottom: 20px;
  height: 484px;
  background-color: oklch(0.948 0.028 342.258);
  border: 4px solid #000;
  box-shadow: 6px 6px #000;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-3:hover {
  transform: translate(-6px, -6px);
}
.section-3 .cards-section-3 .card-3 span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  font-weight: 700;
  background-color: oklch(0.627 0.265 303.9);
  color: #fff;
  border: 2px solid #000;
  padding: 4px 8px;
  transform: rotate(45deg);
}
.section-3 .cards-section-3 .card-3 .image {
  margin: 0 auto;
  width: 317px;
  height: 128px;
  text-align: center;
  padding-top: 3px;
}
.section-3 .cards-section-3 .card-3 .image img {
  width: 40%;
  border: 4px solid #000;
  margin: 0px 94.6719px 0px 94.6562px;
}
.section-3 .cards-section-3 .card-3 h4 {
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  padding-top: 20px;
}
.section-3 .cards-section-3 .card-3:hover h4 {
  color: oklch(0.558 0.288 302.321);
}
.section-3 .cards-section-3 .card-3 .p-1 {
  line-height: 24px;
  font-weight: 700;
  color: oklch(0.439 0 0);
  padding-top: 10px;
}
.section-3 .cards-section-3 .card-3 .p-2 {
  line-height: 26px;
  color: #000;
  margin: 0 0 24px;
  padding-top: 10px;
}
.section-3 .cards-section-3 .card-3 .sochial {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 30px;
}
.section-3 .cards-section-3 .card-3 .sochial .bg-1 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-3 .sochial .bg-1:hover {
  background-color: #1da1f2;
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-3 .sochial .bg-1 i {
  color: #fff;
  font-size: 18px;
}
.section-3 .cards-section-3 .card-3 .sochial .bg-2 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-3 .sochial .bg-2:hover {
  background-color: oklch(0.546 0.245 262.881);
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-3 .sochial .bg-2 i {
  color: #fff;
  font-size: 18px;
}
.section-3 .cards-section-3 .card-3 .sochial .bg-3 {
  background-color: #000;
  width: fit-content;
  padding: 12px;
  border: 2px solid #000;
  transition: all 0.3s;
}
.section-3 .cards-section-3 .card-3 .sochial .bg-3:hover {
  background-color: oklch(0.592 0.249 0.584);
  box-shadow: 6px 6px #000;
  transform: translate(-3px, -3px);
}
.section-3 .cards-section-3 .card-3 .sochial .bg-3 i {
  color: #fff;
  font-size: 18px;
}
/* ----------------------------------------------------------------
   5. section-4-----
---------------------------------------------------------------- 
*/
.section-4 {
  background-color: oklch(0.97 0 0);
  border-bottom: 2px solid #000;
  padding: 100px 0px;
}
.section-4 .container {
  width: 87%;
}
.section-4 .header-section-4 {
  text-align: center;
}
.section-4 .header-section-4 h3 {
  font-size: 48px;
  font-weight: 900;
  color: #000;
  margin-bottom: 16px;
}
.section-4 .header-section-4 p {
  font-size: 28px;
  font-weight: 600;
  color: oklch(0.439 0 0);
}
.section-4 .header-section-4 .line {
  width: 128px;
  height: 8px;
  background-color: #000;
  margin: 30px auto;
  /* margin: 30px 552px 0px; */
  transform: rotate(-1deg);
}
/* ----------------------------------------------------------------
   5. section-4-----box
---------------------------------------------------------------- 
*/
.section-4 .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 80px;
}
/* ----------------------------------------------------------------
   5. section-4-----box--card-1
---------------------------------------------------------------- 
*/
.section-4 .box .card-1 {
  /* width: 610px; */
  padding-block: 50px;
}
.section-4 .box .card-1 h4 {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  padding-bottom: 35px;
}
.section-4 .box .card-1 p {
  font-size: 20px;
  font-weight: 600;
  line-height: 33px;
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  padding: 16px;
  margin-bottom: 32px;
}
.section-4 .box .card-1 .items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.section-4 .box .card-1 .items .item-1 i {
  background-color: oklch(0.637 0.237 25.331);
  color: #fff;
  width: fit-content;
  padding: 18px;
  font-size: 20px;
  margin: 0px 21px 0px 0px;
  border: 2px solid #000;
}
.section-4 .box .card-1 .items .item-1 {
  display: flex;
  /* flex-wrap: nowrap; */
  flex-direction: row;
  align-items: center;
}
.section-4 .box .card-1 .items .item-1 span {
  font-size: 18px;
  font-weight: 600;
}
.section-4 .box .card-1 .items .item-2 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
}
.section-4 .box .card-1 .items .item-2 i {
  background-color: oklch(0.623 0.214 259.815);
  color: #fff;
  width: fit-content;
  padding: 16px;
  font-size: 20px;
  margin: 0px 16px 0px 0px;
  border: 2px solid #000;
}
.section-4 .box .card-1 .items .item-2 span {
  font-size: 18px;
  font-weight: 600;
}
.section-4 .box .card-1 .items .item-3 i {
  background-color: oklch(0.627 0.265 303.9);
  color: #fff;
  width: fit-content;
  padding: 16px;
  font-size: 20px;
  margin: 0px 10px 0px 0px;
  border: 2px solid #000;
}
.section-4 .box .card-1 .items .item-3 {
  display: flex;
  /* flex-wrap: nowrap; */
  flex-direction: row;
  align-items: center;
}
.section-4 .box .card-1 .items .item-3 span {
  font-size: 18px;
  font-weight: 600;
}
.section-4 .box .card-1 .items .item-4 i {
  background-color: oklch(0.723 0.219 149.579);
  color: #fff;
  width: fit-content;
  padding: 17px;
  font-size: 20px;
  margin: 0px 18px 0px 0px;
  border: 2px solid #000;
}
.section-4 .box .card-1 .items .item-4 {
  display: flex;
  /* flex-wrap: nowrap; */
  flex-direction: row;

  align-items: center;
}
.section-4 .box .card-1 .items .item-4 span {
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .section-4 .box .card-1 button {
    width: 100%;
  }
  /* .section-4 .box .card-1 .items{ */
  /* gap: 0; */
}

.section-4 .box .card-1 button {
  font-size: 24px;
  font-weight: 700;
  background-color: #000;
  margin-top: 45px;
  padding: 24px 48px;
  border: 3px solid #000;
  box-shadow: 7px 7px #000;
  transition: all 0.3s;
}
.section-4 .box .card-1 button:hover {
  box-shadow: 0 0 #000;
  transform: translate(7px, 7px);
}
.section-4 .box .card-1 button a {
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .section-4 .box .card-1 {
    width: 610px;
  }
}
/* ----------------------------------------------------------------
   5. section-4-----box--card-2
---------------------------------------------------------------- 
*/
@media only screen and (max-width: 1024px) {
  .section-4 .box .card-2 {
    width: 100%;
  }
}
.section-4 .box .card-2 {
  border: 4px solid #000;
  box-shadow: 6px 6px #000;
  padding: 40px;
}
.section-4 .box .card-2 h5 {
  font-size: 30px;
  font-weight: 900;
  margin: 0px 0px 32px;
}
@media only screen and (min-width: 1024px) {
  .section-4 .box .card-2 {
    width: 584px;
  }
}
/* ----------------------------------------------------------------
   5. section-4-----box--card-2--reviews
---------------------------------------------------------------- 
*/
/* ----------------------------------------------------------------
   5. section-4-----box--card-2-reviews-review-1
---------------------------------------------------------------- 
*/
.section-4 .box .card-2 .review-1 {
  /* width: 496px; */
  background-color: oklch(0.971 0.013 17.38);
  border: 2px solid #000;
  margin: 0px 0px 32px;
  padding: 16px 16px 16px 24px;
}
.section-4 .box .card-2 .review-1 p {
  font-size: 18px;
  font-weight: 600;
  line-height: 29.5px;
  margin: 0px 0px 16px;
}
.section-4 .box .card-2 .review-1 .image {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  padding-block: 15px;
}
.section-4 .box .card-2 .review-1 .image .user {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.section-4 .box .card-2 .review-1 .image {
  height: 48px;
}
.section-4 .box .card-2 .review-1 .image img {
  width: 10%;
  border: 2px solid #000;
}
.section-4 .box .card-2 .review-1 .image .s-1 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.section-4 .box .card-2 .review-1 .image .s-2 {
  color: oklch(0.439 0 0);
  font-size: 14px;
}
/* ----------------------------------------------------------------
   5. section-4-----box--card-2-reviews-review-2
---------------------------------------------------------------- 
*/

.section-4 .box .card-2 .review-2 {
  /* width: 496px; */
  background-color: oklch(0.97 0.014 254.604);
  border: 2px solid #000;
  margin: 0px 0px 32px;
  padding: 16px 16px 16px 24px;
}
.section-4 .box .card-2 .review-2 p {
  font-size: 18px;
  font-weight: 600;
  line-height: 29.5px;
  margin: 0px 0px 16px;
}
.section-4 .box .card-2 .review-2 .image {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  padding-block: 15px;
}
.section-4 .box .card-2 .review-2 .image .user {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.section-4 .box .card-2 .review-2 .image {
  height: 48px;
}
.section-4 .box .card-2 .review-2 .image img {
  width: 10%;
  border: 2px solid #000;
}
.section-4 .box .card-2 .review-2 .image .s-1 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.section-4 .box .card-2 .review-2 .image .s-2 {
  color: oklch(0.439 0 0);
  font-size: 14px;
}
/* ----------------------------------------------------------------
   5. section-4-----box--card-2-reviews-review-3
---------------------------------------------------------------- 
*/
.section-4 .box .card-2 .review-3 {
  /* width: 496px; */
  background-color: oklch(0.977 0.014 308.299);
  border: 2px solid #000;
  margin: 0px 0px 32px;
  padding: 16px 16px 16px 24px;
}
.section-4 .box .card-2 .review-3 p {
  font-size: 18px;
  font-weight: 600;
  line-height: 29.5px;
  margin: 0px 0px 16px;
}
.section-4 .box .card-2 .review-3 .image {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  padding-block: 15px;
}
.section-4 .box .card-2 .review-3 .image .user {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.section-4 .box .card-2 .review-3 .image {
  height: 48px;
}
.section-4 .box .card-2 .review-3 .image img {
  width: 10%;
  border: 2px solid #000;
}
.section-4 .box .card-2 .review-3 .image .s-1 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.section-4 .box .card-2 .review-3 .image .s-2 {
  color: oklch(0.439 0 0);
  font-size: 14px;
}
/* ----------------------------------------------------------------
   6.Footer
---------------------------------------------------------------- 
*/
.footer {
  background-color: #000;
  color: #fff;
  padding: 90px 0px;
}
.footer .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 80px;
}
/* ----------------------------------------------------------------
   6.Footer-----box-1
---------------------------------------------------------------- 
*/
@media only screen and (min-width: 1024px) {
  .footer .box .box-1 {
    width: 464px;
  }
  .footer .box {
    flex-wrap: nowrap;
  }
}
.footer .box .box-1 {
  /* width: 100;     */
  padding-bottom: 20px;
}
.footer .box .box-1 .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.footer .box .box-1 .logo {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border: 2px solid #000;
  margin: 0px 16px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .box .box-1 .logo i {
  font-size: 24px;
  color: #000;
}
.footer .box .box-1 p {
  font-size: 18px;
  line-height: 29.5px;
  margin-top: 32px;
}
/* ----------------------------------------------------------------
   6.Footer-----box-2
---------------------------------------------------------------- 
*/
@media only screen and (min-width: 1024px) {
  .footer .box .box-2 {
    width: 208px;
  }
}
.footer .box .box-2 {
  padding-bottom: 20px;
}
.footer .box .box-2 h4 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 32px;
}
.footer .box .box-2 .links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  gap: 20px;
}
.footer .box .box-2 .links a {
  font-size: 18px;
  font-weight: 600;
  color: oklab(0.999994 0.0000455678 0.0000200868);
  line-height: 28px;
  transition: all 0.2s;
}
.footer .box .box-2 .links a:hover {
  color: #ffd230;
}
/* ----------------------------------------------------------------
   6.Footer-----box-3
---------------------------------------------------------------- 
*/
/* .footer .box .box-3 { */
/* width: 464px; */

.footer .box .box-3 h4 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 32px;
}
.footer .box .box-3 p {
  font-size: 18px;
  line-height: 29.25px;
  margin-bottom: 24px;
}
.footer .box .box-3 .sub {
  display: flex;
  flex-direction: column;
  /* flex-wrap: nowrap; */
  justify-content: space-between;
}
.footer .box .box-3 .sub input {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 0px 0px 16px;
  padding: 16px;
}
.footer .box .box-3 .sub button {
  background-color: oklab(0.905 -0.0256786 0.180179);
  border: 4px solid #ffd15b79;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding: 16px 0px;
  margin-top: 10px;
  text-align: center;
  box-shadow: #ffd230 4px 4px 0px 0px;
  transform: translate(-4px, -4px);
  transition: all 0.3s;
}
.footer .box .box-3 .sub button:hover {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px;
}
.footer .box .box-3 .sub button a {
  color: #000;
}
/* ----------------------------------------------------------------
   6.Footer-----box-4
---------------------------------------------------------------- 
*/
.footer .box-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer .box-5 {
  border-top: 4px solid #fff;
  padding: 32px 0 0 0;
}
.footer .box-5 p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: 10px;
}
.footer .box-5 .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer .box-5 .links a {
  color: oklab(0.999994 0.0000455678 0.0000200868);
  font-weight: 600;
  line-height: 24px;
  margin: 0 32px 0 0;
  transition: all 0.3s;
}
.footer .box-5 .links a:hover {
  color: #ffd230;
}
