body {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 17px;
}

.navitems {
  display: none;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 4;
}

.menu_block {
  border-bottom: 3px solid black;
  width: 20px;
}

.mobile {
  background-color: #003333;
  padding: 22px 20px;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 5;
  display: block;
  /* left: 0; */
  width: 100%;
  right: -100%;
  transition: right 0.3s ease-in-out;
}

.mobile_nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 75vh;
}

.mobile_nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}

.mobile .social_media {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.mobile .mobile_nav img {
  display: block;
}

.mobile .social_media p.title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.mobile .social_media .icons {
  color: #fff;
  display: flex;
  gap: 20px;
}

.mobile .social_media .icons i {
  color: #fff;
  font-size: 25px;
}

nav .large {
  display: none;
}

nav .icons_large {
  display: none;
  gap: 24px;
  align-items: center;
}

nav .icons_large i {
  font-size: 20px;
}

nav .small {
  width: 40px;
  height: 40px;
  display: block;
}

.close_icon {
  display: flex;
  justify-content: flex-end;
}

#hero {
  background-color: #003333;
  background-image: url(images/hero_bg.png);
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  position: absolute;
  display: grid;
  place-items: center;
  height: 158px;
  top: 0;
  z-index: -1;
  width: 100%;
}

#hero p.sub {
  text-align: center;
  color: #fff;
  font-family: "Nunito";
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  line-height: 15.12px;
  margin-bottom: 17px;
}

#hero p.title {
  text-align: center;
  color: #fff;
  font-family: "Outfit";
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  line-height: 40px;
}

#hero p.sub_title {
  text-align: center;
  color: #fff;
  font-family: "Outfit";
  font-weight: 400;
  font-size: 16px;
  margin-top: 8px;
  margin: 0;
}

#form {
  padding: 56px 17px;
  margin-top: 180px;
}

#form p.title {
  margin: 0;
  text-align: left;
  font-family: "Outfit";
  font-weight: 500;
  font-size: 28px;
  color: #222222;
  text-align: center;
}

#form p.sub {
  color: #4e637a;
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
  margin: 0;
  text-align: center;
}

form {
  margin-top: 24px;
}

form .form_row {
  gap: 24px;
}

form .new_row {
  margin-top: 24px;
}

form .form_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form label {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
}

form input {
  border: none;
  outline: none;
  height: 46px;
  border-radius: 8px;
  background-color: #f5f6fa;
  padding: 9px 15px;
  color: #4e637a;
  font-size: 14px;
  font-weight: 400;
}

form input::placeholder {
  color: #7c8091;
  font-size: 14px;
  font-weight: 400;
}

form input:focus {
  border: 1px solid #da7000;
}

form .message {
  margin-top: 24px;
}

form textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 8px;
  background-color: #f5f6fa;
  padding: 9px 15px;
  color: #4e637a;
  font-size: 14px;
  font-weight: 400;
}

form textarea::placeholder {
  color: #7c8091;
  font-size: 14px;
  font-weight: 400;
}

form textarea:focus {
  border: 1px solid #da7000;
}

form .btn_box {
  margin-top: 24px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

form button {
  color: #fff;
  border: none;
  outline: none;
  width: 100%;
  background-color: #003333;
  border-radius: 8px;
  margin-left: 0;
  padding: 13px;
  font-size: 16px;
  font-weight: 500;
}

#accordion {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding: 56px 17px;
}

#accordion p.sub {
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 300;
  color: #738c8c;
}

#accordion p.title {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
  width: 175px;
}

footer {
  padding: 56px 17px;
}

footer img {
  height: 18px;
  width: 56px;
}

footer ul {
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eeeeee;
  width: auto;
  margin-bottom: 17px;
}

footer ul li a {
  font-weight: 300;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  color: #474747;
}

footer p {
  font-size: 10px;
  color: #474747;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  margin: 0;
}

footer .other_links {
  display: flex;
  gap: 8px;
  align-items: center;
}

footer .other_links a {
  font-size: 10px;
  color: #474747;
  font-weight: 500;
}

footer .icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

footer .icons i {
  font-size: 14px;
  color: #474747;
}

.social {
  padding: 56px 17px;
}

.social_content {
  background-color: #ffedfa;
  border-radius: 20px;
}

.social_content p.title {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
  margin: 0;
  text-align: left;
  width: 191px;
}

.social_content p.sub {
  margin: 0;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 300;
  color: #222222;
  width: 294px;
}

.social_content .grid_system {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 72px;
  padding-top: 29px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 0;
}

.social_content .stores {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

/* .social_content .stores img {
  width: 100%;
  height: 200px;
}

.social_content .mockup img:nth-child(1) {
  width: 100%;
  height: 200px;
  display: none;
}

.social_content .mockup img:nth-child(2) {
  width: 100%;
  height: auto;
  display: block;
} */

.blog-container {
  padding: 56px 17px;
}

.blog-item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  border: 2px solid #dee5ed;
  gap: 12px;
  border-radius: 16px;
  height: auto;
}

.blog-item .content {
  padding: 0px 8px;
}

.blog-container .blog-item .content p.title {
  text-align: left;
  color: #474747;
  font-size: 18px;
  font-weight: 600;
  width: auto;
  margin-bottom: 8px;
  font-family: "Outfit";
}

.blog-container .blog-item .content p {
  text-align: left;
  color: #474747;
  font-size: 12px;
  font-weight: 300;
  width: auto;
  font-family: "Outfit";
}

.blog-container .blog-item img {
  width: 100%;
  height: auto;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 16px;
}

.blog-container .blog-item .image {
  width: 100%;
  height: 211px;
  background-color: #f5f6fa;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-radius: 0;
}

#article {
  padding: 80px 17px;
}

#article .title {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  width: 341px;
}

#article p {
  font-size: 14px;
}

#article .article-item .content .large_image {
  width: 100%;
  height: 277px;
  margin-bottom: 24px;
  margin-bottom: 24px;
  background-color: #f5f6fa;
  border-radius: 30px;
  display: none;
}

#article .article-item .content .small_image {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  margin-bottom: 24px;
  border-radius: 30px;
  display: block;
}

#hero_home .content {
  display: block;
  position: absolute;
  top: 8%;
}

#hero_home .content p.title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  margin: 0;
  line-height: 22px;
  color: #003333;
}

#hero_home .animation {
  position: relative;
  left: 0;
  z-index: -1;
  margin-top: -14.9%;
}

#hero_home .content img {
  display: none;
}

#about-container {
  display: flex;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 50px;
  padding-right: 17px;
  padding-left: 17px;
}

#about-container p.title {
  text-align: center;
  font-family: "Outfit";
  color: #222222;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}
#about-container .center {
  width: auto;
}

#about-container p.sub {
  text-align: center;
  font-family: "Outfit";
  color: #4e637a;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

#first_section {
  padding: 56px 17px;
  scroll-snap-type: y mandatory;
  scroll-snap-align: start;
}

#first_section p.title {
  font-family: "Outfit";
  font-size: 28px;
  font-weight: 500;
  color: #313030;
  width: auto;
  margin: 0;
  text-align: center;
  line-height: 32px;
}

#first_section p.sub {
  margin-top: 12px;
  color: #474747;
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
  width: auto;
  text-align: center;
}

#first_section .grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#first_section .grid .image {
  display: flex;
  justify-content: center;
}

#first_section img {
  height: 227px;
  width: 236px;
  margin-top: 24px;
}

#second_section {
  padding: 56px 17px;
  height: auto;
}

#second_section .grid_2 {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

#second_section .grid_2 .image {
  display: flex;
  justify-content: center;
}

#second_section .center {
  display: flex;
  justify-content: center;
}

#second_section .small {
  width: 341px;
  display: flex;
  justify-content: center;
}

#second_section p.title {
  font-family: "Outfit";
  font-size: 28px;
  font-weight: 500;
  color: #313030;
  width: auto;
  margin: 0;
  text-align: center;
  line-height: 32px;
}

#second_section p.sub {
  margin-top: 12px;
  color: #474747;
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
  width: auto;
  text-align: center;
}

#second_section img {
  height: 227px;
  width: 236px;
}

#third_section {
  padding: 56px 17px;
}

#third_section p.title {
  text-align: center;
  color: #313030;
  font-size: 28px;
  font-weight: 500;
  font-family: "Outfit";
  margin: 0;
}

#third_section .content {
  display: flex;
  justify-content: center;
}

#third_section p.sub {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
  color: #474747;
  margin-top: 12px;
  width: auto;
}

#more {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 32px 17px;
  gap: 24px;
}

#about_second {
  padding: 56px 17px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

#about_second .left .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#about_second .left .content .content_card {
  padding: 24px 16px;
  background-color: #fff;
  color: #000000;
  transition: background-color 0.3s ease;
  border-radius: 12px;
}

#about_second p.title {
  font-family: "Outfit";
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 24px;
  text-align: center;
}

#about_second .left {
  width: 100%;
}

#about_second aside {
  border-radius: 20px;
  border: 1px sold #dee5ed;
  background-color: #f5f6fa;
  padding: 48px;
  width: 100%;
}

#about_second .left .content .content_card p.title {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 8px;
  font-family: "Outfit";
  text-align: left;
}

#about_second .left .content .content_card p.sub {
  color: #4e637a;
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
  margin: 0;
  text-align: left;
  width: auto;
}

#others {
  padding: 56px 17px;
}

#otherBlogs .others_content p.title {
  font-size: 28px;
  font-weight: 500;
  font-family: "Outfit";
  margin: 0;
}

#otherBlogs .others_content p.sub {
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
  color: #474747;
  margin-top: 12px;
  margin-bottom: 12px;
}

#otherBlogs .others_content .more {
  display: flex;
  align-items: center;
  color: #da7000;
  font-size: 12px;
  font-weight: 500;
  font-family: "Outfit";
  gap: 8px;
}

#otherBlogs .others_content .more p {
  color: #da7000;
  font-size: 12px;
  font-weight: 300;
  font-family: "Outfit";
  margin: 0;
}

#otherBlogs .others_content img {
  width: 100%;
  height: auto;
  margin-top: 24px;
}

#grid-container {
  padding: 56px 17px;
}

#grid-container h4 {
  color: #222222;
  text-align: center;
  padding-bottom: 26px;
  font-size: 16px;
  font-weight: 400;
}

#grid-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#grid-content p.title {
  color: #474747;
  font-size: 12px;
  font-weight: 300;
  font-family: "Outfit";
}

#grid-content .grid-card img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 12px;
}
