* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

@font-face {
  font-family: Audiowide;
  src: url(Fonts/Audiowide.ttf);
}

h1,
h2 {
  font-family: Audiowide;
}

p,
li,
a,
button,
form,
select,
textarea {
  font-family: "Inter", sans-serif;
}

video {
  width: 55vw;
}

/* -----------------navigation------------------- */
.nav {
  width: 100%;
  display: flex;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  justify-content: space-between;
  position: fixed;
  z-index: 9;
  border-bottom: 4px solid;
  border-image: url("/image/gradient\ 1-01.png") 30;
}

.logo {
  z-index: 10;
}

.menu {
  display: inline-flex;
  width: 63vw;
  justify-content: space-between;
  align-items: center;
}

.menu ul li {
  text-decoration: none;
  list-style: none;
}

.menu ul li a {
  text-decoration: none;
  list-style: none;
  color: black;
  padding: 10px 30px;
  transition: all 0.2s ease-in-out;
}

.menu ul li a:hover {
  font-weight: 600;
  font-size: 18px;
}

#active {
  font-weight: 600;
  text-decoration: underline;
  color: #001aff;
}

.gradient_header {
  width: 100vw;
  height: 66px;
  background-image: url("image/gradient.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-size: 65%;
  position: sticky;
}

/* -----------------Search Bar------------------- */
#search-bar {
  width: 180px;
  height: 30px;
  background-color: rgb(255, 255, 255);
  border: 1px solid black;
  font-size: 14px;
  color: rgb(97, 97, 97);
  transition: width 0.4s ease-in-out;
  padding: 0 16px;
  border-radius: 20px;
  animation: search-hover 3s ease-in-out;
}

#search-button {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  padding: 0 16px;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background-color: transparent;
}

#search-button img {
  width: 20px;
  height: auto;
  position: relative;
  left: -10px;
  bottom: -4px;
  transition: 0.4s ease-in-out;
}

#search-button img:hover {
  width: 25px;
  transition: 0.4s ease-in-out;
}

@keyframes search-hover {
  0% {
    width: 0px;
  }

  50% {
    width: 220px;
  }

  100% {
    width: 180px;
  }
}

/* -----------------HOme Content------------------- */
.home {
  display: grid;
  grid-template-columns: 19% 13% auto;
  grid-column-gap: 20px;
}

.content {
  display: flex;
  background-image: url("image/gradient.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.content img {
  width: auto;
  height: 100vh;
  position: relative;
  left: -123px;
  bottom: 0px;
}

#d_hide {
  display: none;
}

#hide {
  display: none;
}

/* text */
#home-into {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  left: -50px;
}

#my-name {
  font-family: Inter;
  font-size: 25.5px;
}

#hi {
  font-family: Inter;
  font-size: 25.5px;
  color: #001aff;
}

#home-into h1 {
  font-size: 48px;
  margin-top: 40px;
}

#spacing-text {
  font-weight: 400;
  line-height: 138.99%;
  letter-spacing: 0.3em;
}

.company_logo {
  position: relative;
  left: 10px;
  width: 450px;
  overflow: hidden;
  display: flex;
  padding-top: 20px;
  /* background-color: #001AFF; */
}

.logo_track {
  display: flex;
  animation: cambio 50s infinite linear;
}

.company_logo img {
  height: 20px;
  width: auto;
  padding-left: 30px;
  /* opacity: 0.7; */
}

@keyframes cambio {
  from {
    margin-left: 0%;
  }

  to {
    margin-left: -100%;
  }
}

/*End Less Auto Scroll*/
.auto-slider {
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 220px;
  overflow: hidden;
  padding-left: 45px;
}

.slider img {
  width: 150px;
  max-height: 100%;
  margin-bottom: 25px;
  box-shadow: -8px 6px 11px rgba(0, 0, 0, 0.25);
}

.photobanner {
  height: auto;
  width: 220px;
}

/*keyframe animations*/
.photobanner {
  -webkit-animation: scrollUp 50s ease-in-out infinite normal;
  animation: scrollUp 50s ease-in-out infinite normal;
}

-webkit-keyframes scrollUp {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes scrollUp {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

/* -----------------Work CONtent------------------- */
nav {
  width: 100vw;
  position: fixed;
  z-index: 10;
  background-color: #001aff;
  color: white;
  padding: 8px 50px;
  display: flex;
  justify-content: space-between;
  z-index: 9;
}
nav i {
  padding-right: 10px;
  padding-left: 10px;
}
nav a {
  font-size: 14px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease-in-out;
}
nav a:nth-child(1):hover {
  transform: translateX(-20px);
}
nav a:nth-child(2):hover {
  transform: translateX(20px);
}

#ui_head {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 60px;
}

.ex_page_header {
  display: grid;
  grid-template-columns: 45% auto;
  justify-content: space-between;
}

.ex_page_header video {
  margin-top: 60px;
}

.sticky {
  position: relative;
  width: 300px;
  height: 300px;
  padding: 30px;
  background-color: #fdf0ad;
  clip-path: polygon(100% 0, 100% 85%, 84% 100%, 0 100%, 0 0);
  transform: rotateZ(-6.66deg);
  transition: all 0.3s ease-in-out;
}

#sticky_pera {
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
}
.sticky {
  position: relative;
  width: 280px;
  height: 280px;
  padding: 30px;
  background-color: #ffef9f;
  clip-path: polygon(100% 0, 100% 85%, 84% 100%, 0 100%, 0 0);
  transform: rotateZ(-6.66deg);
  transition: all 0.3s ease-in-out;
}
.sticky:hover {
  transform: rotateZ(-4.66deg);
}

.sticky2 {
  margin-left: 40px;
  position: relative;
  width: 250px;
  height: 250px;
  padding: 20px;
  background-color: #fffae1;
  clip-path: polygon(100% 0, 100% 85%, 84% 100%, 0 100%, 0 0);
  transform: rotateZ(7.36deg);
  transition: all 0.3s ease-in-out;
}
.sticky2:hover {
  width: 256px;
  height: 256px;
  transform: rotateZ(4.36deg);
}

.triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  background-color: #ffd400;
  clip-path: polygon(87% 86%, 85% 100%, 100% 84%);
}

.drop_shadow {
  box-shadow: -1px 8px 22px rgba(0, 0, 0, 0.25);
}

#big_circle {
  position: absolute;
  left: -150px;
  top: -150px;
  width: 800px;
  height: 800px;
  background-image: url(image/gradient.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 500px;
  z-index: 1;
}

.work_slide {
  margin-top: 50px;
  background-color: #001aff;
  width: 90vw;
  height: auto;
  overflow: hidden;
  display: flex;
  padding-top: 80px;
  padding-bottom: 80px;
}

.work_slide_track {
  display: flex;
  animation: slido 50s infinite linear;
}

.mob {
  width: 400px;
  height: auto;
  padding-left: 40px;
}

@keyframes slido {
  from {
    margin-left: 0%;
  }

  to {
    margin-left: -100%;
  }
}

.work {
  width: 100vw;
  height: auto;
  background-color: #fff;
}

hr {
  color: #f6f9ff88;
  margin-top: 10%;
}

.box90 {
  width: 90vw;
  height: auto;
  padding: 30px 0px;
  margin: auto;
  display: grid;
  justify-content: center;
}

.work_tabs {
  display: flex;
  padding-bottom: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.work_tabs a {
  color: black;
  font-size: 14px;
  border: 1px solid black;
  border-radius: 50px;
  padding: 7px 20px;
  margin-bottom: 7px;
  margin-right: 7px;
  transition: all 0.2s ease-in-out;
}

#a_whiteText {
  color: white;
}

.work_active,
.work_tabs a:hover {
  font-size: 14px;
  background-color: black;
  color: #fff;
  font-weight: 500;
  box-shadow: -6px 20px 21px rgba(0, 0, 0, 0.25);
}
.content_baseBox {
  width: 100%;
  height: auto;
  border: 3px solid;
  background-color: white;
  border-image: url("/image/gradient\ 1-01.png") 30;
  box-shadow: -6px 20px 21px rgba(0, 0, 0, 0.3);
  padding: 40px 50px;
}

.ui_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: space-between;
  z-index: 5;
  position: relative;
}

.ui_box h1 {
  font-size: 40px;
  padding-bottom: 10px;
}

.ui_box p {
  padding-bottom: 50px;
  font-size: 18px;
}

.ui_box a {
  font-size: 14px;
  font-weight: 600;
  color: #aeaeae;
  transition: all 0.3s ease-in-out;
}

#explore:hover {
  font-size: 16px;
}

.top60 {
  margin-top: 100px;
}

#blue {
  color: #001aff;
}

.one_image {
  padding-top: 30px;
  max-width: 100%;
}
.p-20 {
  padding-right: 20px;
}

.gallery_grid {
  column-count: 3;
  column-gap: 20px;
}

@media (max-width: 992px) {
  .gallery_grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery_grid {
    column-count: 1;
  }
}

.gallery_grid img {
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

video {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  break-inside: avoid;
}

.event-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 40px 0 20px;
  font-family: "Unbounded", sans-serif;
  color: #222;
}

.event-divider {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.event-divider hr {
  width: 100%;
  border: none;
  height: 2px;
  background: linear-gradient(to right, #ccc, #333, #ccc);
  border-radius: 2px;
}

.footer {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f9ff;
  padding-right: 20px;
}

.footer a {
  text-decoration: underline;
  color: #001aff;
  padding-right: 30px;
}

/* -----------------Service CONtent------------------- */
.service {
  max-width: 90vw;
  /* border: 1px solid black; */
  display: flex;
  overflow-x: auto;
  padding: 50px;
  background-color: #f6f9ff;
}

.service_item {
  min-width: 300px;
  height: 56vh;
  background-color: white;
  padding: 30px;
  margin-right: 50px;
  border: 3px solid;
  border-image: url("/image/gradient\ 1-01.png") 30;
  box-shadow: -6px 20px 21px rgba(0, 0, 0, 0.3);
  position: relative;
}

.service_item h1 {
  padding-bottom: 20px;
}

.service_item ul li {
  list-style: inside square;
  line-height: 140%;
  padding-left: 20px;
}

.service_item div {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.service_item a {
  color: #001aff;
  text-decoration: underline;
}

.service_item div button {
  background-color: black;
  color: white;
  padding: 10px 70px;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
}

#button_a {
  color: white;
  text-decoration: none;
}

/* .style_fix{
  position: fixed;
  left: 0;
  bottom: 0;
} */

/* -----------------About CONtent------------------- */
.about {
  max-width: 80vw;
  display: grid;
  grid-column-gap: 10%;
  grid-template-columns: 20% 70%;
  padding-top: 20px;
  align-items: center;
}

.about p {
  padding-bottom: 30px;
  line-height: 130%;
}

.about img {
  padding-bottom: 30px;
}

/* -----------------CONTACT CONtent------------------- */
.contact {
  width: 80vw;
  display: block;
  float: left;
  position: relative;
}

.contact img {
  max-width: 500px;
  height: auto;
}

#contact_form {
  width: 80%;
  background-color: white;
  border: 3px solid;
  border-image: url("/image/gradient\ 1-01.png") 30;
  box-shadow: -6px 20px 21px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 20%;
  top: 10%;
  padding: 3%;
}

#contact_form h1 {
  font-size: 40px;
  padding-bottom: 20px;
}

.form_item {
  display: flex;
  padding-top: 10px;
}

.form_item div {
  padding-right: 3%;
  flex-grow: 1;
}

.form_item textarea {
  flex-grow: 1;
}

.form_item label {
  padding-bottom: 6px;
}

.form_item input {
  width: 100%;
  padding: 8px 18px;
  font-size: 10px;
  color: #999999;
}

.form_item select {
  width: 100%;
  padding: 8px 18px;
  font-size: 10px;
  color: #999999;
  background-color: white;
}

.form_item textarea {
  width: 100%;
  padding: 8px 18px;
  font-size: 10px;
  color: #999999;
  background-color: white;
}

#contact_form button {
  background-color: black;
  color: white;
  padding: 10px 70px;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
}

/* -----------------Home footer------------------- */
.social {
}
.home_footer {
  padding: 10px 30px;
  position: fixed;
  left: 0;
  bottom: 0;
}

.fa-brands {
  color: black;
  font-size: 20px;
  padding: 10px 20px;
  transition: all 0.2s ease-in-out;
}

.fa-brands:hover {
  font-size: 25px;
  color: #001aff;
}

/* -----------------mobile Bottom Menu------------------- */
.mobile_menu {
  width: 100vw;
  height: auto;
  display: flex;
  padding: 10px 30px;
  background-color: #fff;
  justify-content: space-between;
  border-top: solid rgb(215, 215, 215) 1px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 8;
  visibility: hidden;
}

.mobile_menu_item div {
  display: grid;
  justify-content: center;
  padding-bottom: 3px;
}

.mobile_menu_item img {
  width: 20px;
  height: auto;
}

.mobile_menu_item p {
  font-size: 12px;
  font-weight: 400;
}

/* -----------------Media Query 1210------------------- */
@media screen and (max-width: 1210px) {
  .menu ul li a {
    font-size: 12px;
    padding: 10px 10px;
  }

  #search-bar {
    font-size: 12px;
  }

  .home {
    grid-template-columns: 15% 20% auto;
    grid-column-gap: 0px;
  }

  #home-into {
    left: -80px;
  }

  .company_logo {
    width: 320px;
    left: 5px;
  }

  .company_logo img {
    height: 17px;
    padding-left: 20px;
  }

  .slider {
    padding-left: 65px;
  }

  .slider img {
    width: 150px;
  }

  #hide {
    display: none;
  }

  #my-name {
    font-size: 19.5px;
  }

  #home-into h1 {
    font-size: 35px;
    margin-top: 40px;
  }

  #my-name span {
    color: #001aff;
    font-size: 15px;
  }

  #spacing-text {
    font-weight: 400;
    line-height: 138.99%;
    letter-spacing: 0.1em;
  }

  .service_item {
    height: 370px;
  }
}

/* -----------------Media Query 850------------------- */
@media screen and (max-width: 850px) {
  video {
    width: 90vw;
    margin-top: 30px;
  }

  .nav {
    padding: 15px 20px 5px 20px;
  }

  .gradient_header {
    width: 100vw;
    height: 58px;
  }

  .menu ul {
    display: none;
  }

  #search-container {
    position: absolute;
    right: 20px;
    bottom: 10px;
  }

  .home {
    display: grid;
    grid-template-columns: 10% 40% 50%;
    grid-column-gap: 5px;
  }

  .mob_content {
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: visible;
  }

  #my-name {
    font-family: Inter;
    font-size: 30px;
  }

  #hi {
    font-family: Inter;
    font-size: 25px;
    color: #001aff;
  }

  .mob_content h1 {
    font-size: 60px;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  #spacing-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.35em;
  }

  .content img {
    position: fixed;
    bottom: 0;
    left: 50px;
  }

  .slider {
    width: 180px;
    padding-left: 45px;
  }

  .slider img {
    max-width: 130px;
    max-height: 100%;
    margin-bottom: 10px;
  }

  .photobanner {
    height: auto;
    width: 180px;
  }

  #m_hide {
    display: block;
  }

  #hide {
    display: none;
  }

  .home_footer {
    display: flex;
    flex-direction: column;
    bottom: 80px;
  }

  .home_footer a i {
    text-decoration: none;
    font-style: none;
    color: black;
  }

  .fa-brands {
    padding: 20px 0px;
    text-decoration: none;
    font-style: none;
    color: black;
  }

  .hidden {
    display: none;
  }

  .mobile_menu {
    visibility: visible;
  }

  .home {
    grid-template-columns: 2% 25% auto;
    grid-column-gap: 10px;
  }

  #home-into {
    display: none;
  }

  .box90 {
    width: 96vw;
    height: auto;
    padding: 15px 0px;
    margin: auto;
  }

  .work_tabs a {
    color: black;
    font-size: 10px;
  }

  .content_baseBox {
    padding: 20px 25px;
  }

  .ui_box h1 {
    font-size: 30px;
  }

  .ui_box p {
    font-size: 14px;
  }

  #big_circle {
    left: -150px;
    top: -150px;
    width: 500px;
    height: 500px;
    border-radius: 500px;
  }

  #ui_head {
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 30px;
  }

  .ex_page_header {
    padding-top: 30px;
    display: inline;
  }

  .work_slide {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* .work_slide_track {
    display: flex;
    animation: slido 50s infinite linear;
  } */

  .mob {
    width: 180px;
    height: auto;
    padding-left: 20px;
  }

  .p-20 {
    padding-right: 5px;
  }

  .service {
    max-width: 96vw;
    padding: 50px 20px;
  }

  .service_item {
    min-width: 280px;
    height: 370px;
    margin-right: 30px;
  }

  .about {
    display: block;
  }

  .contact {
    width: 96vw;
  }

  .contact img {
    max-width: 200px;
    height: auto;
  }

  #contact_form {
    width: 90%;
    left: 6%;
    top: 10%;
    padding: 5%;
  }

  .form_item {
    display: block;
    padding-top: 0px;
  }

  .form_item label {
    padding-top: 15px;
  }

  .footer {
    height: auto;
    display: grid;
    padding-left: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
    margin-bottom: 60px;
  }

  .footer a {
    font-size: 12px;
  }
}

/* -----------------Media Query 799px------------------- */
@media screen and (max-width: 799px) {
  video {
    width: 90vw;
    margin-top: 30px;
  }

  .nav {
    padding: 15px 20px 5px 20px;
  }

  .gradient_header {
    width: 100vw;
    height: 58px;
  }

  .menu ul {
    display: none;
  }

  #search-container {
    position: absolute;
    right: 20px;
    bottom: 10px;
  }

  .home {
    display: grid;
    grid-template-columns: 0% 40% 60%;
    grid-column-gap: 5px;
  }

  .mob_content {
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: visible;
  }

  .content img {
    position: fixed;
    bottom: 0;
    left: 24px;
  }

  .slider {
    width: 150px;
    padding-left: 40px;
  }

  .slider img {
    max-width: 80px;
    max-height: 100%;
    margin-bottom: 10px;
  }

  .photobanner {
    height: auto;
    width: 150px;
  }

  #m_hide {
    display: none;
  }

  #d_hide {
    display: block;
  }

  #hide {
    display: none;
  }

  .home_footer {
    display: flex;
    flex-direction: column;
    bottom: 80px;
  }

  .home_footer a i {
    text-decoration: none;
    font-style: none;
    color: black;
  }

  .fa-brands {
    padding: 20px 0px;
    text-decoration: none;
    font-style: none;
    color: black;
  }

  .hidden {
    display: none;
  }

  .mobile_menu {
    visibility: visible;
  }

  .home {
    grid-template-columns: 2% 25% auto;
    grid-column-gap: 10px;
  }

  #home-into {
    display: none;
  }

  .box90 {
    width: 96vw;
    height: auto;
    padding: 15px 0px;
    margin: auto;
  }

  .work_tabs a {
    color: black;
    font-size: 10px;
  }

  .content_baseBox {
    padding: 20px 25px;
  }

  .ui_box h1 {
    font-size: 30px;
  }

  .ui_box p {
    font-size: 14px;
  }

  .p-20 {
    padding-right: 5px;
  }

  .service {
    max-width: 96vw;
    padding: 50px 20px;
  }

  .service_item {
    min-width: 280px;
    height: 370px;
    margin-right: 30px;
  }

  .about {
    display: block;
  }

  .contact {
    width: 96vw;
  }

  .contact img {
    max-width: 200px;
    height: auto;
  }

  #contact_form {
    width: 90%;
    left: 6%;
    top: 10%;
    padding: 5%;
  }

  .form_item {
    display: block;
    padding-top: 0px;
  }

  .form_item label {
    padding-top: 15px;
  }

  .footer {
    height: auto;
    display: grid;
    padding-left: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
    margin-bottom: 60px;
  }

  .footer a {
    font-size: 12px;
  }
}

/* -----------------Media Query 376------------------- */
@media screen and (max-width: 376px) {
  video {
    width: 90vw;
    margin-top: 30px;
  }

  .nav {
    padding: 15px 20px 5px 20px;
  }

  .gradient_header {
    width: 100vw;
    height: 58px;
  }

  .menu ul {
    display: none;
  }

  #search-container {
    position: absolute;
    right: 20px;
    bottom: 10px;
  }

  .home {
    display: grid;
    grid-template-columns: 0% 40% 60%;
    grid-column-gap: 5px;
  }

  .mob_content {
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: visible;
  }

  .content img {
    position: fixed;
    bottom: 0;
    left: 33px;
  }

  .slider {
    width: 150px;
    padding-left: 40px;
  }

  .slider img {
    max-width: 80px;
    max-height: 100%;
    margin-bottom: 10px;
  }

  .photobanner {
    height: auto;
    width: 150px;
  }

  #m_hide {
    display: none;
  }

  #d_hide {
    display: none;
  }

  #hide {
    display: block;
  }

  .home_footer {
    display: flex;
    flex-direction: column;
    bottom: 80px;
  }

  .home_footer a i {
    text-decoration: none;
    font-style: none;
    color: black;
  }

  .fa-brands {
    padding: 20px 0px;
    text-decoration: none;
    font-style: none;
    color: black;
  }

  .hidden {
    display: none;
  }

  .mobile_menu {
    visibility: visible;
  }

  .home {
    grid-template-columns: 2% 25% auto;
    grid-column-gap: 10px;
  }

  #home-into {
    display: none;
  }

  .box90 {
    width: 96vw;
    height: auto;
    padding: 15px 0px;
    margin: auto;
  }

  .work_tabs a {
    color: black;
    font-size: 10px;
  }

  .top60 {
    margin-top: 60px;
  }

  .content_baseBox {
    padding: 20px 15px;
  }

  .ui_box h1 {
    font-size: 30px;
  }

  .ui_box p {
    font-size: 14px;
  }

  .p-20 {
    padding-right: 5px;
  }

  .service {
    max-width: 96vw;
    padding: 50px 20px;
  }

  .service_item {
    min-width: 280px;
    height: 370px;
    margin-right: 30px;
  }

  .about {
    display: block;
  }

  .contact {
    width: 96vw;
  }

  .contact img {
    max-width: 200px;
    height: auto;
  }

  #contact_form {
    width: 90%;
    left: 6%;
    top: 10%;
    padding: 5%;
  }

  .form_item {
    display: block;
    padding-top: 0px;
  }

  .form_item label {
    padding-top: 15px;
  }

  .footer {
    height: auto;
    display: grid;
    padding-left: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
    margin-bottom: 60px;
  }

  .footer a {
    font-size: 12px;
  }
}
