/* Custom CSS reset */
/* Import Font */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");
/* Use a more-intuitive box-sizing model. */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin all elements */
* {
  margin: 0;
}

/* Prevent adjustments of font size after orientation changes in ios */
html {
  -webkit-text-size-adjust: 100%;
}

/* Allow percentage-base heights */
html,
body {
  height: 100%;
}

/* Typographic tweaks */
body {
  line-height: calc(1em + 0.5rem);
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  font-family: 'Quicksand', sans-serif;
}

/* Avoid text overflows */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Improve media default */
img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
}

/* A elements that don't have a class get default style */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Single taps are dispatched immediately on clickable elements */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* Remove built-in from typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Add the correct font weight in Chrome, Edge, and Safari */
strong {
  font-weight: bolder;
}

/* Correct the inability to style buttons in ios and Safari */
:where(button, [type='button' i], [type='reset' i], [type='submit' i]) {
  -webkit-appearance: button;
}

/* Correct small font size in all browsers */
small {
  font-size: 80%;
}

/* Table adjustments */
table {
  border-collapse: collapse;
  border-spacing: 0;
  caption-side: bottom;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

@media (prefers-reduce-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

/* Remove all animations, transitions and smooth scroll */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.header {
  width: 50%;
  height: 8vh;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .logo img {
  width: 50px;
  height: 50px;
}

.header .nav_bar {
  width: 460px;
  height: 8vh;
}

.header .nav_bar .nav_menu {
  height: 8vh;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .nav_bar .nav_menu .nav_items {
  font-size: 1.25rem;
  font-weight: 600;
}

.header .nav_bar .nav_menu .nav_items:hover {
  border-bottom: 2px solid #f4462f;
}

.header .nav_bar .nav_menu .nav_items a {
  text-decoration: none;
  color: #291f1e;
}

.header .nav_bar .nav_menu .nav_items .home, .header .nav_bar .nav_menu .nav_items .document, .header .nav_bar .nav_menu .nav_items .work, .header .nav_bar .nav_menu .nav_items .contact {
  border-bottom: 2px solid #f4462f;
}

.header .nav_bar .nav_menu .contact .box {
  color: #f6eef4;
  background-color: #f4462f;
  padding: 10px;
  border-radius: 10px;
}

.header .nav_bar .nav_menu .contact .box:hover {
  border-bottom: none;
  background-color: #291f1e;
  color: #f4462f;
}

.main_home {
  height: 86vh;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_home .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6267d0;
}

@-webkit-keyframes scrolls {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-450px * 6));
            transform: translateX(calc(-450px * 6));
  }
}

@keyframes scrolls {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-450px * 6));
            transform: translateX(calc(-450px * 6));
  }
}

.main_home .slider {
  background: white;
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 320px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 460px;
}

.main_home .slider::before, .main_home .slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 400px;
  z-index: 2;
}

.main_home .slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.main_home .slider::before {
  left: 0;
  top: 0;
}

.main_home .slider .slide-track {
  -webkit-animation: scrolls 10s linear infinite running;
          animation: scrolls 10s linear infinite running;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(450px * 6);
}

.main_home .slider .slide {
  height: 100px;
  width: 450px;
}

.main_home .slider .slide-2 {
  margin-left: 80px;
}

.main_home .slider .slide-4 {
  margin-right: 180px;
}

.main_home .slider .box {
  height: 320px;
  width: 450px;
}

footer {
  height: 6vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer p {
  color: #291f1e;
  font-size: 1rem;
  font-weight: 600;
}

footer p span {
  color: #6267d0;
}

.main_document {
  height: 120vh;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_document .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6267d0;
}

.main_document .text_1 {
  margin-top: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #291f1e;
}

.main_document .text_1 .purple {
  color: #6267d0;
}

.main_document .text_2 {
  margin-top: -40px;
  font-size: 1rem;
  font-weight: 600;
  color: #291f1e;
}

.main_document .text_2 .purple {
  color: #6267d0;
}

.main_document .Down_btn {
  margin-top: 30px;
  width: 130px;
  height: 50px;
  background-color: #f4462f;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #f6eef4;
  font-size: 1.25rem;
  font-weight: 600;
}

.main_work {
  height: 135vh;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_work .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6267d0;
}

.main_work .text_work_1 {
  margin-top: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #291f1e;
}

.main_work .text_work_1 .purple {
  color: #6267d0;
}

.main_work .text_log {
  margin-top: 50px;
  width: 795px;
  color: #f4462f;
  font-size: 1rem;
  font-weight: 600;
}

.main_work img {
  margin-top: 20px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-450px * 29));
            transform: translateX(calc(-450px * 29));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-450px * 29));
            transform: translateX(calc(-450px * 29));
  }
}

.main_work .slider {
  background: white;
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 350px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 920px;
}

.main_work .slider::before, .main_work .slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 400px;
  z-index: 2;
}

.main_work .slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.main_work .slider::before {
  left: 0;
  top: 0;
}

.main_work .slider .slide-track {
  -webkit-animation: scroll 60s linear infinite running;
          animation: scroll 60s linear infinite running;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(450px * 58);
}

.main_work .slider .slide {
  height: 350px;
  width: 450px;
}

.main_work .slider .box {
  height: 320px;
  width: 450px;
}
/*# sourceMappingURL=style.css.map */