@font-face {
  font-family: "PlusJakartaSansBold";
  src: url("../font/PlusJakartaSans-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "PlusJakartaSansSemiBold";
  src: url("../font/PlusJakartaSans-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "SpartanExtraBold";
  src: url("../font/Spartan-ExtraBold.ttf");
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.375s ease;
  color: var(--color-blue-dark);
  font-family: var(--font-normal);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

h3 {
  font-weight: 400;
}

button,
select {
  cursor: pointer;
}

:root {
  --color-white: #fefefe;
  --color-black: #222;
  --color-blue-dark: #1b2b4c;
  --color-gray: #797979;
  --color-blue: #1f6fb1;
  --color-blue-trans: #1f6fb187;
  --color-blue-light: #e2f2ff;
  --color-blue-light2: #e7f2fa;
  --color-blue-button: #326ebd;
  --color-shadow: 0 0 6px rgba(11, 88, 159, 0.3);
  --color-shadow-light: 0 0 6px rgba(11, 88, 159, 0.1);
  --color-shadow-dark: 0 3px 10px rgba(11, 88, 159, 0.67);
  --color-shadow-black: 4px 4px 10px rgba(0, 0, 0, 0.25);
  --color-shadow-black2: 0px 4px 10px rgba(0, 0, 0, 0.25);
  --size-max-width: 1120px;
  --size-navbar-mobile-height: 60px;
  --size-arcwork-logo: 120px;
  --size-arcwork-logo-after: 80px;
  --size-title: 2.3rem;
  --size-title2: 3.5rem;
  --size-subtitle: 1.44rem;
  --size-subtitle2: 1.17rem;
  --size-subtitle3: 1rem;
  --size-normal: 0.9rem;
  --size-normal2: 1.15rem;
  --size-normal3: 1.135rem;
  --size-normal4: 0.8rem;
  --size-popup: 1.5rem;
  --font-title: "PlusJakartaSansBold";
  --font-subtitle: "PlusJakartaSansSemiBold";
  --font-normal: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  margin-left: -12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #1f6fb187;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1f6fb1;
}

.cor-overlay {
  z-index: 3;
  height: 100vh;
  width: 100vw;
  background-color: #00000090;
  position: fixed;
  display: flex;
  align-items: center;
}

.cor-overlay.close {
  display: none;
}

.cor-popup-container {
  background-color: var(--color-white);
  width: calc(100vw - 10%);
  max-width: 600px;
  display: grid;
  margin: auto;
  align-items: center;
  justify-items: center;
  border-radius: 20px;
  padding: 70px 50px;
  gap: 35px;
}

.cor-popup-logo {
  width: 80%;
  max-width: 250px;
}

.cor-message-success {
  font-family: var(--font-normal);
  font-size: var(--size-popup);
  text-align: center;
}

.cor-close-button {
  border-radius: 10px;
  background-color: var(--color-blue-button);
  color: var(--color-white);
  font-size: var(--size-subtitle);
  font-family: var(--font-subtitle);
  border: none;
  padding: 10px 40px;
  box-shadow: 0 5px 10px rgba(4, 33, 60, 0.4);
}

.cor-close-button:hover {
  opacity: 0.8;
}

.cor-navbar-container {
  display: flex;
  justify-content: center;
  background-color: var(--color-white);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  z-index: 2;
  height: 80px;
}

.cor-navbar-container.top {
  background-color: transparent;
  box-shadow: none;
}

.cor-navbar {
  padding: 9px 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
}

.cor-navbar-menu-button {
  display: none;
}

.cor-navbar-smalllogo {
  width: 60px;
  height: 60px;
}

.cor-navbar-smalllogo.hid {
  display: none;
}

.cor-navbar-text {
  width: 125px;
  text-align: center;
}

.cor-navbar-text a {
  font-size: 1rem;
  text-decoration: none;
  font-family: var(--font-title);
  color: var(--color-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cor-navbar-text a:hover {
  color: var(--color-blue-trans);
}

.cor-page-wrapper {
  max-width: var(--size-max-width);
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

section {
  padding: 60px 0;
}

#home {
  position: relative;
}

#home::before,
#home::after {
  content: "";
  background-repeat: no-repeat;
  background-size: 30%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("../image/patternbg1.webp");
  background-position: left center;
}

#home::after {
  background-image: url("../image/patternbg2.webp");
  background-position: right center;
}

.cor-page-wrapper.home,
.cor-page-wrapper.service {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cor-home-logo {
  margin-top: 100px;
  max-width: min(400px, 50%);
  align-self: center;
  place-self: center;
  justify-self: center;
}

.cor-home-desc {
  padding: 45px 0;
  font-size: var(--size-subtitle2);
  color: var(--color-blue-dark);
  text-align: center;
  max-width: 70%;
}

.cor-home-button {
  width: 300px;
  height: 55px;
  font-size: 1.13rem;
  font-family: var(--font-subtitle);
  background-color: var(--color-white);
  color: var(--color-blue-dark);
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(11, 88, 159, 0.45);
}

.cor-home-button:hover {
  background-color: var(--color-blue);
  box-shadow: 0 0 10px rgba(11, 88, 159, 0.67);
  color: var(--color-blue-light);
}

#service {
  position: relative;
  background-color: var(--color-blue-light);
}

.cor-service-bg {
  position: absolute;
  background-size: 25%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
}

.cor-service-bg.tl {
  background-image: url("../image/hex1.webp");
  background-position: top left;
}

.cor-service-bg.tr {
  background-image: url("../image/hex2.webp");
  background-position: top right;
}

.cor-service-bg.bl {
  background-image: url("../image/hex3.webp");
  background-position: bottom left;
}

.cor-service-bg.br {
  background-image: url("../image/hex4.webp");
  background-position: bottom right;
}

.cor-serv-title {
  font-size: var(--size-title);
  font-family: var(--font-title);
}

.cor-serv-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.cor-serv-text {
  font-size: 1.04rem;
  padding: 10px 0 50px;
  text-align: center;
}

.cor-serv-items {
  display: grid;
  grid-template-rows: 70px 60px;
  align-items: center;
  text-align: center;
  justify-items: center;
  border-radius: 10px;
  background-color: var(--color-blue-light2);
  box-shadow: var(--color-shadow);
  width: 100%;
  padding: 20px 21px;
}

.cor-serv-items:hover {
  background-color: var(--color-white);
  box-shadow: var(--color-shadow-dark);
}

.cor-service-icon {
  height: 52px;
  width: 52px;
}

.cor-serv-subtitle {
  font-size: var(--size-subtitle2);
  font-family: var(--font-subtitle);
  padding: 20px 5px 0;
  align-self: center;
}

.cor-serv-desc {
  font-size: var(--size-normal);
  padding: 20px 10px;
  align-self: flex-start;
}

#why {
  background-color: var(--color-white);
  background-image: url("../image/squarepattern.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  background-position: center center;
}

.cor-page-wrapper.why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.cor-why-non {
  display: flex;
  flex-direction: column;
}

.cor-why-items {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: 50px 1fr;
  border-radius: 10px;
  box-shadow: var(--color-shadow);
  padding: 30px;
  gap: 10px 20px;
  width: 100%;
  background-color: var(--color-white);
  min-height: 200px;
}

.cor-why-items:hover {
  box-shadow: var(--color-shadow-dark);
}

.cor-why-icon {
  width: 40px;
  height: 40px;
  justify-self: center;
  align-self: center;
}

.cor-why-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
}

.cor-why-text {
  font-size: 1.18rem;
  padding: 10px 110px 0 0;
}

.cor-why-subtitle {
  font-family: var(--font-subtitle);
  font-size: var(--size-subtitle);
  align-self: center;
}

.cor-why-desc {
  font-size: var(--size-normal);
  align-self: flex-start;
  grid-column-start: span 2;
  text-align: justify;
}

#tech {
  background-color: var(--color-blue-light);
  padding-top: 50px;
}

.cor-tech-title {
  font-size: var(--size-title);
  font-family: var(--font-title);
  text-align: center;
}

.cor-tech-desc {
  font-size: var(--size-subtitle2);
  padding: 20px 0 45px;
  text-align: center;
}

.cor-tech-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  gap: 20px;
}

.cor-tech-icon {
  width: 150px;
  height: 150px;
}

#archelon {
  background-color: var(--color-white);
}

.cor-page-wrapper.archelon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.cor-archelon-logo {
  width: 250px;
  height: 82;
  order: 1;
}

.cor-archelon-device {
  width: 100%;
  order: 2;
  grid-row-start: span 3;
}

.cor-archelon-text {
  font-size: var(--size-normal2);
  text-align: justify;
  padding: 20px 0;
  order: 3;
}

.cor-archelon-link {
  order: 4;
}

.cor-archelon-button {
  border-radius: 10px;
  border: none;
  width: 250px;
  height: 50px;
  background-color: var(--color-white);
  color: var(--color-blue-dark);
  box-shadow: 0 0 6px rgba(11, 88, 159, 0.45);
  font-size: var(--size-normal2);
}

.cor-archelon-button:hover {
  background-color: var(--color-blue-button);
  box-shadow: 0 3px 8px rgba(0, 13, 25, 0.37);
  color: var(--color-blue-light);
}

#proceed {
  background-color: var(--color-white);
  padding-top: 0px;
}

.cor-proceed-title {
  font-size: var(--size-title);
  font-family: var(--font-title);
  padding-bottom: 30px;
}

.cor-proceed-wrapper {
  display: grid;
  grid-template-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 20px;
}

.cor-proceed-items {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto 1fr;
  border-radius: 10px;
  box-shadow: var(--color-shadow);
  padding: 20px 25px;
  row-gap: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cor-proceed-items:before {
  content: "";
  background-color: var(--color-blue-button);
  border-radius: 50%;
  position: absolute;
  width: 80px;
  height: 0;
  padding-bottom: 80px;
  top: -15px;
  left: -15px;
}

.cor-proceed-items:hover {
  box-shadow: var(--color-shadow-dark);
}

.cor-proceed-number {
  font-family: var(--font-title);
  font-size: var(--size-subtitle);
  z-index: 1;
  color: var(--color-white);
}

.cor-proceed-subtitle {
  font-family: var(--font-subtitle);
  font-size: var(--size-normal2);
}

.cor-proceed-desc {
  font-size: var(--size-normal);
  grid-column-start: 2;
  align-self: flex-start;
}

.cor-proceed-icon {
  width: 20px;
}

#form {
  background-color: var(--color-blue-light);
  background-image: url("../image/squarepattern2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
}

.cor-loader-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: grid;
  align-items: center;
}

.cor-loader-overlay h3 {
  font-size: 3rem;
  text-align: center;
  font-family: var(--font-title);
  color: var(--color-white);
}

.cor-form-title {
  font-size: var(--size-title);
  font-family: var(--font-title);
  text-align: center;
  padding-bottom: 40px;
}

.cor-form-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cor-form-col {
  display: grid;
  grid-template-rows: 20px 1fr;
  position: relative;
}

.cor-form-col.emails,
.cor-form-col.details {
  grid-column: span 2;
}

label {
  font-size: var(--size-normal2);
  font-family: var(--font-subtitle);
}

input,
select,
textarea,
.cor-form-button {
  font-size: var(--size-normal2);
  border-radius: 10px;
  border: none;
  height: 50px;
  background-color: var(--color-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color-blue-dark);
  padding: 13px 20px;
  margin-top: 15px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.cor-form-desc {
  font-size: var(--size-normal);
  color: var(--color-gray);
  padding-top: 10px;
}

#detail {
  height: 180px;
  width: 100%;
  resize: none;
}

#budget {
  appearance: none;
}

.cor-form-icon {
  position: absolute;
  right: 20px;
  top: 50px;
  width: 25px;
  height: 25px;
  pointer-events: none;
}

.rotate {
  transform: rotate(180deg);
}

option {
  color: var(--color-gray);
}

.custom-select option:hover {
  color: var(--color-blue-dark);
  background-color: #b4d9f5;
}

.cor-form-row {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.cor-form-button {
  background-color: var(--color-blue-button);
  color: var(--color-white);
  font-family: var(--font-subtitle);
}

.grecaptcha-badge {
  z-index: 999;
}

#client {
  background-color: var(--color-white);
}

.cor-page-wrapper.client {
  display: grid;
  grid-template-columns: 25% 5px 67% 5px;
  gap: 35px;
}

.cor-client-container {
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 50px;
  scrollbar-color: transparent transparent;
}

.cor-client-items {
  display: grid;
  grid-template-rows: 110px 1fr;
  gap: 20px;
}

.cor-client-items:hover .cor-client-name {
  color: var(--color-blue-button);
}

.cor-client-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
  padding-bottom: 20px;
}

.cor-client-text {
  font-size: var(--size-normal2);
}

.cor-client-icon {
  align-self: center;
  cursor: pointer;
  justify-self: center;
  width: 20px;
  height: 20px;
}

.cor-client-icon.l {
  transform: rotate(180deg);
}

.cor-client-brand {
  width: 150px;
  height: 150px;
  justify-self: center;
  align-self: center;
}

.cor-client-name {
  font-family: var(--font-title);
  font-size: var(--size-normal2);
  text-align: center;
  align-self: flex-start;
}

#industry {
  background-color: var(--color-blue-light);
  position: relative;
  padding-bottom: 50px;
}

#industry::before,
#industry::after {
  content: "";
  background-repeat: no-repeat;
  background-size: 55%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("../image/patternbg3.webp");
  background-position: top left;
}

#industry::after {
  background-image: url("../image/patternbg4.webp");
  background-position: bottom right;
}

.cor-industry-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
  text-align: center;
}

.cor-industry-desc {
  font-size: var(--size-subtitle2);
  padding: 20px 0 45px;
  text-align: center;
}

.cor-industry-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 40px;
}

.cor-industry-col {
  display: grid;
  grid-template-rows: 1fr 70px;
  justify-items: center;
  gap: 10px;
}

.cor-industry-circle {
  border-radius: 50%;
  background-color: var(--color-white);
  width: 95px;
  height: 95px;
  box-shadow: var(--color-shadow-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cor-industry-icon {
  width: 80%;
  height: 80%;
}

.cor-industry-name {
  font-family: var(--font-subtitle);
  font-size: var(--size-normal3);
  text-align: center;
}

#faq {
  background-color: var(--color-white);
}

.cor-faq-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
  text-align: center;
}

.cor-faq-wrapper {
  display: grid;
  gap: 30px;
  margin: 50px 0;
}

.cor-faq-items {
  display: grid;
  box-shadow: var(--color-shadow);
  border-radius: 10px;
  gap: 20px;
  padding: 30px 40px;
  position: relative;
  cursor: pointer;
}

.cor-faq-items .cor-faq-answer,
.cor-faq-items .cor-faq-line {
  display: none;
}

.cor-faq-items.active .cor-faq-answer,
.cor-faq-items.active .cor-faq-line {
  display: block;
}

.cor-faq-items::before {
  content: "";
  background: url("../image/arrow-thin.png") no-repeat;
  background-size: 30px auto;
  position: absolute;
  align-self: center;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  transition: all 0.375s ease;
}

.cor-faq-items.active::before {
  transform: rotate(180deg);
}

.cor-faq-items:hover {
  box-shadow: var(--color-shadow-dark);
}

.cor-faq-question {
  font-family: var(--font-title);
  font-size: var(--size-subtitle2);
  display: grid;
  grid-template-columns: 90% 10%;
}

.cor-faq-line {
  width: 100%;
  border-top: 1.5px solid #ccc;
}

.cor-faq-answer {
  font-size: var(--size-normal);
  text-align: justify;
  line-height: 1.5;
}

#contact,
#arcContact {
  position: relative;
  background-color: var(--color-blue);
  padding: 0;
  display: grid;
  justify-items: center;
}

.cor-page-wrapper.contact {
  display: grid;
  grid-template-columns: 50% 50%;
  top: 0;
  width: 100%;
  max-width: none;
}

.cor-contact-wrapper,
.cor-arccontact-wrapper {
  display: grid;
  grid-template-columns: 30px 1fr;
  row-gap: 30px;
  padding: 60px 20px 60px 0;
  width: calc(var(--size-max-width) / 2);
  justify-self: flex-end;

  background-image: url("../image/mappattern.png");
  background-size: cover;
}

.cor-contact-title {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: var(--size-title);
  grid-column-start: span 2;
}

.cor-contact-icon {
  width: 25px;
  height: 25px;
  padding-top: 3px;
}

.cor-contact-col {
  display: grid;
  gap: 5px;
}

.cor-contact-desc {
  color: var(--color-white);
  font-size: var(--size-normal2);
  text-decoration: none;
}

#footer {
  background-color: var(--color-blue-dark);
  padding: 20px;
}

.cor-footer {
  text-align: center;
  color: var(--color-white);
  font-weight: 500;
}

/* Archelon Page */
#arcHome {
  padding: 190px 0 110px;
  background-color: var(--color-white);
  background-image: url(../image/wave.webp);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: bottom right;
}

.cor-page-wrapper.archome {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 100px;
}

.cor-archome-title {
  align-self: flex-end;
  font-size: 4rem;
  font-family: "SpartanExtraBold";
}

.cor-archome-desc {
  position: relative;
  text-align: justify;
  align-self: center;
  font-size: var(--size-normal2);
  margin-left: 15px;
}

.cor-archome-desc:before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  background-color: var(--color-blue);
  height: 100%;
  border-radius: 30px;
  left: -15px;
}

.cor-archome-circle {
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: var(--color-shadow-black);
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row-start: span 2;
}

.cor-archome-icon {
  width: 70%;
  height: 70%;
}

#arcWhy {
  background: url(../image/why_bg.webp) center / cover no-repeat;
  position: relative;
}

.cor-arcwhy-title {
  color: var(--color-white);
  font-size: var(--size-title2);
}

.cor-arcwhy-text {
  color: var(--color-white);
  position: relative;
  margin: 20px 0 90px 15px;
  font-size: var(--size-normal);
  max-width: 250px;
}

.cor-arcwhy-text:before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  background-color: var(--color-white);
  height: 100%;
  border-radius: 30px;
  left: -15px;
}

.cor-arcwhy-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.cor-arcwhy-item {
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--color-shadow-black2);
  border-radius: 10px;
  justify-items: center;
  position: relative;
  padding: 50px 10px 30px;
  gap: 10px;
}

.cor-arcwhy-item:hover {
  background-color: var(--color-white);
  box-shadow: 0 24px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px);
}

.cor-arcwhy-item:hover .cor-arcwhy-subtitle,
.cor-arcwhy-item:hover .cor-arcwhy-desc {
  color: var(--color-blue-dark);
}

.cor-arcwhy-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: var(--color-shadow-black2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
}

.cor-arcwhy-icon {
  color: var(--color-white);
  width: 70%;
  height: 70%;
}

.cor-arcwhy-subtitle {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-title);
  font-size: var(--size-normal);
}

.cor-arcwhy-desc {
  color: var(--color-white);
  text-align: center;
  font-size: var(--size-normal4);
  padding: 0 10px;
}

#arcTech {
  background-color: var(--color-white);
}

.cor-arcerp-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.cor-arcerp-title {
  font-size: var(--size-title);
  font-family: var(--font-title);
}

.cor-arcerp-desc {
  font-size: var(--size-normal2);
  text-align: justify;
}

#arcErp {
  padding: 60px 0 120px;
}

.cor-arcerp-container {
  display: grid;
  position: absolute;
  grid-template-areas: "a b c d e";
  justify-items: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  background-color: var(--color-white);
  width: 100%;
  transform: translateY(60px);
}

.cor-arcerp-brand.a {
  grid-area: a;
}

.cor-arcerp-brand.b {
  grid-area: b;
}

.cor-arcerp-brand.c {
  grid-area: c;
}

.cor-arcerp-brand.d {
  grid-area: d;
}

.cor-arcerp-brand.e {
  grid-area: e;
}

.cor-arcerp-brand {
  height: 120px;
  width: 120px;
}

#arcTech {
  background-color: var(--color-blue-light);
  padding: 120px 0 60px;
}

.cor-page-wrapper.arctech {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}

.cor-arctech-title {
  font-size: var(--size-title);
  font-family: var(--font-title);
}

.cor-arctech-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-row-start: 2;
  gap: 30px;
  justify-items: center;
}

.cor-arctech-icon {
  height: 100px;
  width: 100px;
}

.cor-arctech-deco {
  height: 450px;
  position: absolute;
  right: 0;
  top: -40px;
}

#arcWork {
  background-image: url(../image/work_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
}

.cor-arcwork-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
  text-align: center;
}

.cor-arcwork-desc {
  font-size: var(--size-subtitle2);
  font-weight: 400;
  text-align: center;
  padding: 10px 100px 50px;
  opacity: 0.8;
}

.cor-arcwork-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 0 60px;
}

.cor-arcwork-item {
  display: grid;
  background-color: var(--color-blue-dark);
  border-radius: 10px;
  padding: 30px;
  height: 350px;
  width: 250px;
  margin: 0 auto;
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
}

.cor-arcwork-subtitle {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-subtitle);
  font-size: var(--size-normal2);
  position: relative;
  top: 20%;
}

.cor-arcwork-item:hover .cor-arcwork-subtitle {
  top: 0;
}

.cor-arcwork-logo {
  margin: 10px auto;
  display: block;
  align-self: flex-end;
  width: var(--size-arcwork-logo);
  height: var(--size-arcwork-logo);
  background-size: var(--size-arcwork-logo) auto;
}

.cor-arcwork-item:hover .cor-arcwork-logo {
  align-self: center;
  width: var(--size-arcwork-logo-after);
  height: var(--size-arcwork-logo-after);
  background-size: var(--size-arcwork-logo-after) auto;
}

/* Change logo pictures here */
.cor-arcwork-item.manufacture {
  background-image: url(../image/manufacture-bg.webp);
}

.cor-arcwork-logo.manufacture {
  background-image: url(../image/arc-manufacture.webp);
}

.cor-arcwork-item:hover .cor-arcwork-logo.manufacture {
  background-image: url(../image/manufacture-white.webp);
}

.cor-arcwork-item.distribution {
  background-image: url(../image/distribution-bg.webp);
}

.cor-arcwork-logo.distribution {
  background-image: url(../image/arc-distribution.webp);
}

.cor-arcwork-item:hover .cor-arcwork-logo.distribution {
  background-image: url(../image/distribution-white.webp);
}

.cor-arcwork-item.property {
  background-image: url(../image/property-bg.webp);
}

.cor-arcwork-logo.property {
  background-image: url(../image/arc-property.webp);
}

.cor-arcwork-item:hover .cor-arcwork-logo.property {
  background-image: url(../image/property-white.webp);
}

.cor-arcwork-item.warehouse {
  background-image: url(../image/warehouse-bg.webp);
}

.cor-arcwork-logo.warehouse {
  background-image: url(../image/arc-warehouse.webp);
}

.cor-arcwork-item:hover .cor-arcwork-logo.warehouse {
  background-image: url(../image/warehouse-white.webp);
}

.cor-arcwork-item.insurance {
  background-image: url(../image/insurance-bg.webp);
}

.cor-arcwork-logo.insurance {
  background-image: url(../image/arc-insurance.webp);
}

.cor-arcwork-item:hover .cor-arcwork-logo.insurance {
  background-image: url(../image/insurance-white.webp);
}

/* Change logo pictures until here */

.cor-arcwork-info li {
  display: none;
  color: var(--color-white);
  font-size: var(--size-normal);
  margin-left: 15px;
}

.cor-arcwork-item:hover .cor-arcwork-info li {
  display: list-item;
}

.cor-arcwork-arrow {
  background: url(../image/arcarrow.webp) no-repeat;
  background-size: 60px auto;
  width: 60px;
  height: 60px;

  position: absolute;
  cursor: pointer;
  bottom: 160px;
  /* (item height(350px) - arrow height(60px))/2 */
}

.cor-arcwork-arrow.r {
  right: 0;
  rotate: 180deg;
}

.cor-arcwork-arrow:hover {
  background: url(../image/arcarrow-active.webp) no-repeat;
  background-size: 60px auto;
}

#arcClient {
  background-color: var(--color-blue-light);
}

.cor-page-wrapper.arcclient {
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  row-gap: 20px;
}

.cor-arcclient-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
}

.cor-arcclient-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 30px;
}

.cor-arcclient-items {
  display: grid;
}

.cor-arcclient-brand {
  height: 110px;
  width: 110px;
  justify-self: center;
  align-self: center;
}

.cor-arcclient-arrow {
  background: url(../image/arcarrow.webp) no-repeat;
  background-size: 30px auto;
  width: 30px;
  height: 30px;

  position: absolute;
  cursor: pointer;
  bottom: 40px;
  /* (brand height(110px) - arrow height(30px))/2 */
}

.cor-arcclient-arrow.r {
  right: 0;
  rotate: 180deg;
}

.cor-arcclient-arrow:hover {
  background: url(../image/arcarrow-active.webp) no-repeat;
  background-size: 30px auto;
}

#arcProceed {
  background-image: url(../image/proceed_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
}

.cor-arcproceed-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
  padding-bottom: 60px;
}

.cor-arcproceed-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 60px;
}

.cor-arcproceed-items {
  position: relative;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--color-shadow-black2);
  padding: 25px;
}

.cor-arcproceed-items:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.cor-arcproceed-icon {
  width: 70px;
  height: 70px;
  position: absolute;
  top: -35px;
  left: -35px;
}

.cor-arcproceed-subtitle {
  font-family: var(--font-title);
  font-size: var(--size-normal);
  padding-bottom: 10px;
}

.cor-arcproceed-desc {
  font-size: var(--size-normal4);
}

#arcForm {
  background-color: var(--color-blue-light);
  background-image: url(../image/form_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
}

#arcContact {
  background-color: var(--color-white);
}

.cor-arccontact-text {
  grid-column-start: span 2;
  position: relative;
  font-size: var(--size-subtitle3);
  margin-left: 15px;
  max-width: 400px;
}

.cor-arccontact-text:before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--color-blue);
  height: 100%;
  border-radius: 30px;
  left: -15px;
}

.cor-arccontact-wrapper {
  background-image: none;
  gap: 20px 20px;
  padding-bottom: 100px;
}

.cor-contact-desc.arc,
.cor-contact-title.arc {
  color: var(--color-blue-dark);
}

.cor-arccontact-info {
  font-size: var(--size-normal);
  font-family: var(--font-title);
}

.cor-contact-desc.arc {
  font-size: var(--size-normal4);
  color: var(--color-black);
}

.cor-contact-icon.arc {
  margin-left: 15px;
  padding-top: 0;
}

.cor-arccontact-madia-wrap {
  background-color: #1b6097;
  position: absolute;
  bottom: 30px;
  right: calc(50vw + (var(--size-max-width) / 2) - 195px);
  width: 100%;
  border-radius: 10px;
  padding: 15px 30px;
  display: grid;
}

.cor-arccontact-media-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-self: flex-end;
  width: 110px;
}

.cor-arccontact-media {
  width: 20px;
  height: 20px;
}

.cor-arccontact-media.fb {
  justify-self: center;
}

.cor-arccontact-media.li {
  justify-self: flex-end;
}

#arcFooter {
  background-color: #1c496d;
  background-image: url(../image/footer-bg.webp);
  background-repeat: no-repeat;
  background-size: 50%;
  position: relative;
  background-position: bottom right;
}

.cor-page-wrapper.arcfooter {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 20px 80px;
}

.cor-arcfooter-wrapper {
  display: grid;
  gap: 20px;
}

.cor-arcfooter-wrapper2 {
  display: grid;
  gap: 10px;
}

.cor-arcfooter-logo {
  width: 300px;
}

.cor-arcfooter-desc {
  color: var(--color-white);
  position: relative;
  margin-left: 15px;
  text-align: justify;
}

.cor-arcfooter-desc:before {
  content: "";
  position: absolute;
  background-color: var(--color-white);
  width: 3px;
  height: 100%;
  border-radius: 30px;
  left: -15px;
}

.cor-arccontact-media-container.arcfooter {
  justify-self: flex-start;
  margin-left: 15px;
}

.cor-footer.arcfooter {
  text-align: left;
  margin-left: 15px;
}

.cor-arcfooter-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  grid-row-start: span 2;
}

.cor-arcfooter-link {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.3rem;
}

/* MEDIUM DESKTOP */
@media screen and (max-width: 1366px) {
  .cor-industry-name {
    font-size: var(--size-normal);
  }
}

/* SMALL DESKTOP */
@media screen and (max-width: 1184px) {
  :root {
    --size-max-width: 800px;
  }

  .cor-navbar {
    gap: 10px;
  }

  .cor-home-desc {
    max-width: 80%;
  }

  .cor-serv-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .cor-why-text {
    font-size: 1.18rem;
    padding: 10px 0 0;
    text-align: justify;
  }

  .cor-page-wrapper.client {
    display: grid;
    grid-template-columns: 27% 5px 55% 5px;
    gap: 45px;
  }

  .cor-industry-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .cor-contact-desc {
    font-size: var(--size-normal3);
  }

  .cor-page-wrapper.archome {
    gap: 30px 50px;
  }

  .cor-arcwhy-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .cor-arctech-title {
    text-align: center;
  }

  .cor-arctech-deco {
    height: 260px;
    inset: auto 0 -132px auto;
  }

  .cor-page-wrapper.arctech {
    grid-template-columns: 1fr;
  }

  .cor-arctech-container {
    grid-template-columns: repeat(4, 1fr);
    grid-row-start: none;
  }

  .cor-arcwork-desc {
    padding: 10px 0px 50px;
  }

  .cor-page-wrapper.arcfooter {
    grid-template-columns: 1fr 3fr;
  }

  .cor-arcfooter-container {
    column-gap: 30px;
  }
}

/* TABLET prev:820*/
@media screen and (max-width: 855px) {
  :root {
    --size-max-width: 680px;
  }

  html {
    scroll-padding-top: var(--size-navbar-mobile-height);
  }

  .cor-navbar-container {
    height: var(--size-navbar-mobile-height);
    display: block;
    padding: 20px 30px;
  }

  .cor-navbar-container.top {
    background-color: var(--color-white);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  }

  .cor-navbar {
    position: fixed;
    background-color: var(--color-white);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    display: grid;
    top: var(--size-navbar-mobile-height);
    height: calc(100vh - var(--size-navbar-mobile-height));
    width: 200px;
    left: -100%;
    display: block;
    padding: 0 20px;
    transition: all 0.375s ease;
  }

  .cor-navbar.expanded {
    left: 0;
  }

  .cor-navbar-text {
    width: 100%;
    text-align: left;
    padding: 20px;
    border-bottom: solid 1.5px var(--color-blue-trans);
  }

  .cor-navbar-menu-button {
    display: block;
    height: 20px;
    width: 20px;
  }

  .cor-navbar-smalllogo.hid {
    display: flex;
    height: 40px;
    width: 40px;
  }

  .cor-navbar-smalllogo.hid2 {
    display: none;
  }

  .cor-navbar-menutype {
    display: flex;
    align-items: center;
    height: 20px;
    justify-content: space-between;
  }

  .cor-home-desc {
    max-width: 90%;
  }

  .cor-why-items {
    padding: 20px;
  }

  .cor-why-text {
    font-size: var(--size-normal3);
    padding: 10px 0 0;
  }

  .cor-proceed-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }

  .cor-proceed-icon {
    display: none;
  }

  .cor-tech-icon {
    width: 120px;
    height: 120px;
  }

  .cor-page-wrapper.archelon {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cor-archelon-container {
    order: 2;
    text-align: center;
  }

  .cor-archelon-device {
    align-self: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .cor-archelon-logo,
  .cor-archelon-button {
    margin: 0 auto;
  }

  .cor-archelon-text {
    text-align: center;
  }

  .cor-client-text {
    font-size: var(--size-normal3);
  }

  .cor-page-wrapper.client {
    grid-template-columns: 33% 5px 58% 5px;
    gap: 15px;
  }

  .cor-client-container {
    gap: 35px;
  }

  .cor-client-items {
    display: grid;
    grid-template-rows: 100px 1fr;
  }

  .cor-client-brand {
    width: 120px;
    height: 120px;
  }

  .cor-client-name {
    font-size: var(--size-normal3);
  }

  #arcHome {
    padding: 130px 0 80px;
  }

  .cor-page-wrapper.archome {
    grid-template-columns: 1fr 1fr;
  }

  .cor-archome-title {
    align-self: center;
    font-size: 3.5rem;
  }

  .cor-archome-circle {
    width: 200px;
    height: 200px;
    grid-row-start: auto;
  }

  .cor-archome-desc {
    grid-column-start: span 2;
    padding-right: 70px;
  }

  .cor-arcfooter-container {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 30px;
  }
}

/* MOBILE PHONE */
@media screen and (max-width: 540px) {
  :root {
    --size-title: 2rem;
    --size-title2: 3rem;
    --size-normal2: 1rem;
    --size-popup: 1.4rem;
    --size-popup: 1rem;
    --size-max-width: 480px;
    --size-arcwork-logo-after: 60px;
  }

  .cor-popup-logo {
    width: 220px;
  }

  .cor-popup-container {
    padding: 50px 25px;
    gap: 25px;
  }

  .cor-close-button {
    font-size: var(--size-subtitle3);
  }

  .cor-home-logo {
    max-width: 70%;
  }

  .cor-home-desc {
    font-size: var(--size-normal3);
  }

  section {
    padding: 40px 0;
  }

  .cor-serv-wrapper,
  .cor-page-wrapper.why,
  .cor-proceed-wrapper {
    grid-template-columns: 1fr;
  }

  .cor-why-title {
    text-align: center;
  }

  .cor-why-text {
    font-size: var(--size-normal2);
    text-align: center;
  }

  .cor-tech-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .cor-tech-icon {
    width: 100px;
    height: 100px;
  }

  .cor-tech-desc,
  .cor-industry-desc {
    padding: 10px 0 20px;
    font-size: var(--size-normal2);
    padding-bottom: 30px;
  }

  .cor-industry-col {
    grid-template-rows: 1fr 30px;
  }

  .cor-archelon-wrapper {
    grid-template-columns: auto;
  }

  .cor-archelon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cor-form-wrapper {
    grid-template-columns: 1fr;
  }

  .cor-form-col.emails,
  .cor-form-col.details {
    grid-column: auto;
  }

  .cor-page-wrapper.client {
    grid-template-columns: 10% 80% 10%;
    justify-content: center;
  }

  .cor-client-col {
    grid-column-start: span 3;
    text-align: center;
  }

  .cor-client-text {
    padding-bottom: 20px;
  }

  .cor-industry-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .cor-proceed-wrapper {
    grid-template-rows: repeat(9, 1fr);
  }

  .cor-faq-items {
    padding: 20px;
  }

  .cor-faq-title::before {
    content: "FAQ";
    font-size: var(--size-title);
  }

  .cor-faq-title {
    font-size: 0;
  }

  .cor-faq-items::before {
    right: 20px;
    top: 20px;
  }

  .cor-faq-question {
    font-size: var(--size-normal);
    grid-template-columns: 80% 10%;
  }

  .cor-faq-answer {
    text-align: left;
  }

  #contact {
    background-color: var(--color-blue);
  }

  .cor-page-wrapper.contact {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .cor-contact-wrapper {
    row-gap: 20px;
    padding: 45px 0;
    width: var(--size-max-width);
    justify-self: center;
  }

  .cor-contact-icon {
    height: 20px;
    width: 20px;
  }

  .cor-contact-desc {
    font-size: 0.85rem;
  }

  .cor-arccontact-madia-wrap {
    bottom: calc(50% + 30px);
  }

  .cor-page-wrapper.archome {
    column-gap: 35px;
  }

  .cor-archome-title {
    font-size: 2.5rem;
  }

  .cor-archome-circle {
    width: 110px;
    height: 110px;
  }

  .cor-archome-desc {
    padding-right: 0;
  }

  .cor-arcwhy-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
  }

  .cor-arcerp-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cor-arcerp-title {
    padding-bottom: 20px;
  }

  .cor-arcerp-container {
    grid-template-areas:
      "a a b b c c"
      "d d d e e e";
    transform: translateY(30px);
  }

  .cor-arcerp-brand {
    height: 90px;
    width: 90px;
  }

  .cor-arctech-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .cor-arctech-deco {
    height: 220px;
    bottom: -90px;
  }

  .cor-arcwork-item {
    width: 220px;
  }

  .cor-arcwork-arrow {
    background-size: 50px auto;
    width: 50px;
    height: 50px;
    bottom: 150px;
  }

  .cor-arcwork-arrow:hover {
    background-size: 50px auto;
  }

  .cor-page-wrapper.arcclient {
    grid-template-columns: 100%;
  }

  .cor-arcclient-title {
    text-align: center;
  }

  .cor-arcproceed-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin-left: 30px;
  }

  .cor-arccontact-wrapper {
    justify-self: center;
    width: var(--size-max-width);
  }

  .cor-arccontact-wrapper {
    padding: 60px 0 100px;
  }

  .cor-contact-desc.arc {
    text-align: justify;
  }

  .cor-arccontact-text {
    max-width: none;
    text-align: justify;
  }

  #arcFooter {
    background-size: 100%;
  }

  .cor-page-wrapper.arcfooter {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cor-arcfooter-wrapper {
    justify-items: center;
    gap: 40px;
  }

  .cor-arccontact-media-container.arcfooter {
    justify-self: center;
  }

  .cor-arcfooter-container,
  .cor-footer.arcfooter {
    text-align: center;
  }

  .cor-arcfooter-link {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 500px) {
  :root {
    --size-max-width: 350px;
  }
}

@media screen and (max-width: 390px) {
  :root {
    --size-title: 2rem;
    --size-subtitle2: 1.12rem;
    --size-subtitle: 1.4rem;
    --size-subtitle3: 0.9rem;
    --size-normal2: 1.13rem;
    --size-normal3: 1.115rem;
    --size-max-width: 300px;
    --size-arcwork-logo: 90px;
  }

  .cor-popup-logo {
    width: 185px;
  }

  .cor-why-subtitle {
    font-size: var(--size-normal2);
  }

  .cor-tech-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .cor-tech-icon {
    width: 90px;
    height: 90px;
  }

  .cor-page-wrapper.client {
    grid-template-columns: 15% 120px 15%;
  }

  .cor-industry-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .cor-archelon-logo {
    width: 150px;
  }

  .cor-archelon-device {
    width: 220px;
  }

  .cor-archelon-button,
  .cor-home-button {
    width: 220px;
  }

  .cor-archelon-text {
    font-size: var(--size-normal);
  }

  .cor-page-wrapper.archome {
    column-gap: 15px;
  }

  .cor-archome-title {
    font-size: 2rem;
  }

  .cor-arcwhy-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }

  .cor-arctech-icon {
    height: 80px;
    width: 80px;
  }

  .cor-arctech-deco {
    height: 190px;
  }

  .cor-arcwork-arrow {
    background-size: 40px auto;
    width: 40px;
    height: 40px;
    bottom: 130px;
    /* (item height(300px) - arrow height(40px))/2 */
  }

  .cor-arcwork-arrow:hover {
    background-size: 40px auto;
  }

  .cor-arcwork-item {
    height: 300px;
    width: 200px;
    padding: 20px;
  }

  .cor-arcwork-container {
    margin: 0 50px;
  }

  .cor-arcclient-brand {
    height: 90px;
    width: 90px;
  }

  .cor-arcclient-arrow {
    bottom: 30px;
    /* (brand height(90px) - arrow height(30px))/2 */
  }

  .cor-arcfooter-logo {
    width: 250px;
  }
}

@media screen and (max-width: 280px) {
  :root {
    --size-max-width: 240px;
    --size-title2: 2rem;
    --size-title: 1.5rem;
    --size-arcwork-logo-after: 40px;
    --size-normal: 0.7rem;
    --size-normal2: 1rem;
  }

  .cor-industry-wrapper {
    gap: 25px;
  }

  .cor-industry-col {
    grid-template-rows: 1fr 45px;
  }

  input,
  select,
  textarea,
  .cor-form-button {
    font-size: 1rem;
    padding: 15px;
  }

  .cor-proceed-items {
    padding: 15px;
  }

  .cor-proceed-items:before {
    top: -20px;
    left: -25px;
  }

  #arcHome {
    padding: 100px 0 50px;
  }

  .cor-archome-title {
    font-size: 1.5rem;
  }

  .cor-archome-circle {
    width: 90px;
    height: 90px;
  }

  .cor-archome-desc {
    font-size: var(--size-subtitle3);
  }

  .cor-arcwhy-text {
    margin-bottom: 60px;
  }

  .cor-arcerp-brand,
  .cor-arctech-icon {
    height: 60px;
    width: 60px;
  }

  .cor-arcclient-brand {
    height: 70px;
    width: 70px;
  }

  .cor-arcclient-arrow {
    bottom: 20px;
    /* (brand height(70px) - arrow height(30px))/2 */
  }

  #arcTech {
    padding: 70px 0 50px;
  }

  .cor-arctech-container {
    gap: 20px;
  }

  .cor-arctech-deco {
    height: 150px;
  }

  .cor-arcwork-desc {
    font-size: var(--size-subtitle3);
  }

  .cor-arcwork-container {
    margin: 0 40px;
  }

  .cor-arcwork-arrow {
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    bottom: 115px;
    /* (item height(260px) - arrow height(30px))/2 */
  }

  .cor-arcwork-arrow:hover {
    background-size: 30px auto;
  }

  .cor-arcwork-item {
    height: 260px;
    width: 160px;
    padding: 20px;
  }

  .cor-arcfooter-logo {
    width: 190px;
  }

  .cor-arcfooter-desc {
    margin: 0 15px;
  }

  .cor-arcfooter-container {
    gap: 20px;
  }

  .cor-arcfooter-link {
    font-size: 0.9rem;
  }
}