@import url("./font.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: 0.5s;
}

body {
  font-family: "poppins_regular", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

:root {
  --white: #ffffff;
  --light-brown: #378ce7;
  --brown: #2b74c2;
  --dark-brown: #081e35;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-brown);
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark-brown);
  border-radius: 0px;
}

/************* header **************/
/* ***************************** */

header {
  width: 100%;
  min-height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s;
  border-bottom: 1px solid rgba(55, 140, 231, 0.1);
}
header.fixedNavbar {
  min-height: 75px;
  background-color: #ffffff;
  box-shadow: 2px 0 25px 0 rgba(0, 0, 0, 0.1);
}
header .center_content {
  min-width: 1672px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}
header .center_content nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}
header .center_content nav ul li {
  transition: 0.7s;
}
header .center_content nav ul li a {
  text-decoration: none;
  color: var(--brown);
  font-size: 18px;
  font-family: "poppins_semiBold", sans-serif;
  font-weight: 700;
  transition: 0.3s;
}
header .center_content nav ul li a:hover {
  opacity: 0.7;
}

/* *********** HERO SECTION ************ */
/* *********************************** */

.heroSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.heroSection::before {
  content: url(../images/pattren.png);
  position: absolute;
  left: 0;
  bottom: -7px;
}
.heroSection .center_content {
  min-width: 1390px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 138px;
  margin: 180px 0 73px 0;
}
.heroSection .center_content .heroSection_leftSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.heroSection .center_content .heroSection_leftSide h1 {
  font-size: 40px;
  font-family: "poppins_bold", sans-serif;
  font-weight: 800;
  color: var(--light-brown);
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .verticalLine {
  width: 1px;
  height: 435px;
  border-right: 1px dashed var(--light-brown);
  position: relative;
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .verticalLine
  .top_dot,
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .verticalLine
  .bottom_dot {
  width: 5px;
  height: 5px;
  border-radius: 50px;
  position: absolute;
  background-color: var(--light-brown);
  top: -6px;
  left: -2.5px;
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .verticalLine
  .bottom_dot {
  bottom: -7px;
  right: -2.5px;
  top: unset;
  left: unset;
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .text
  p {
  font-size: 18px;
  line-height: 30px;
  color: var(--dark-brown);
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .text
  p:nth-child(1) {
  transition-delay: 100ms;
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .text
  p:nth-child(2) {
  transition-delay: 200ms;
}
.heroSection
  .center_content
  .heroSection_leftSide
  .heroSection_leftSide_content
  .text
  p:nth-child(3) {
  transition-delay: 300ms;
}
.heroSection .center_content .heroSection_rightSide {
  min-width: 546px;
  min-height: 700px;
  background-color: var(--white);
  box-shadow: 0 2px 50px 20px rgba(55, 140, 231, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 54px;

  transition: 0.7s;
}
.heroSection .center_content .heroSection_rightSide h1 {
  font-size: 29px;
  font-family: "poppins_bold", sans-serif;
  font-weight: 800;
  color: var(--light-brown);
}
.heroSection .center_content .heroSection_rightSide form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 31px;
}
.heroSection .center_content .heroSection_rightSide .field01,
.heroSection .center_content .heroSection_rightSide .field02,
.heroSection .center_content .heroSection_rightSide .field03,
.heroSection .center_content .heroSection_rightSide .field04,
.heroSection .center_content .heroSection_rightSide .field05 {
  width: 100%;
  min-height: 56px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
}
.heroSection .center_content .heroSection_rightSide .field05 {
  justify-content: flex-start;
}
.heroSection .center_content .heroSection_rightSide .field01 input,
.heroSection .center_content .heroSection_rightSide .field02 input,
.heroSection .center_content .heroSection_rightSide .field03 input,
.heroSection .center_content .heroSection_rightSide .field04 input,
.heroSection .center_content .heroSection_rightSide .field05 textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 16px 0 13px 0;
  border-bottom: 1px solid var(--light-brown);
  color: var(--brown);
  resize: none;
}
.heroSection .center_content .heroSection_rightSide .field05 textarea {
  max-height: 85px;
}
.heroSection .center_content .heroSection_rightSide .field01 span,
.heroSection .center_content .heroSection_rightSide .field02 span,
.heroSection .center_content .heroSection_rightSide .field03 span,
.heroSection .center_content .heroSection_rightSide .field04 span,
.heroSection .center_content .heroSection_rightSide .field05 span {
  position: absolute;
  left: 0;
  font-size: 18px;
  color: var(--dark-brown);
  line-height: 30px;
  font-family: "poppins_light", sans-serif;
  font-weight: 200;
  pointer-events: none;
  transition: 0.3s;
  padding: 16px 0 13px 0;
}
.heroSection .center_content .heroSection_rightSide .field05 span {
  padding: 0;
}
.heroSection .center_content .heroSection_rightSide .field01 input:focus ~ span,
.heroSection .center_content .heroSection_rightSide .field01 input:valid ~ span,
.heroSection .center_content .heroSection_rightSide .field02 input:focus ~ span,
.heroSection .center_content .heroSection_rightSide .field02 input:valid ~ span,
.heroSection .center_content .heroSection_rightSide .field03 input:focus ~ span,
.heroSection .center_content .heroSection_rightSide .field03 input:valid ~ span,
.heroSection .center_content .heroSection_rightSide .field04 input:focus ~ span,
.heroSection .center_content .heroSection_rightSide .field04 input:valid ~ span,
.heroSection
  .center_content
  .heroSection_rightSide
  .field05
  textarea:focus
  ~ span,
.heroSection
  .center_content
  .heroSection_rightSide
  .field05
  textarea:valid
  ~ span {
  transform: translateY(-15px);
  font-size: 14px;
}

.heroSection .center_content .heroSection_rightSide .field01 input:focus,
.heroSection .center_content .heroSection_rightSide .field01 input:valid,
.heroSection .center_content .heroSection_rightSide .field02 input:focus,
.heroSection .center_content .heroSection_rightSide .field02 input:valid,
.heroSection .center_content .heroSection_rightSide .field03 input:focus,
.heroSection .center_content .heroSection_rightSide .field03 input:valid,
.heroSection .center_content .heroSection_rightSide .field04 input:focus,
.heroSection .center_content .heroSection_rightSide .field04 input:valid,
.heroSection .center_content .heroSection_rightSide .field05 textarea:focus,
.heroSection .center_content .heroSection_rightSide .field05 textarea:valid {
  font-size: 18px;
}

.heroSection .center_content .heroSection_rightSide form button {
  width: 100%;
  min-height: 55px;
  outline: none;
  border: none;
  background-color: var(--light-brown);
  font-size: 18px;
  font-family: "poppins_light", sans-serif;
  font-weight: 200;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}
.heroSection .center_content .heroSection_rightSide form button:hover {
  opacity: 0.7;
}

/* ************* SECTION 01 ************ */
/* ************************************ */

.section01 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section01:before {
  content: url(../images/pattren_01.png);
  position: absolute;
  right: 0;
  bottom: -9px;
}
.section01 .center_content {
  min-width: 1680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 150px;
  margin: 178px 0 215px 0;
}
.section01 .center_content .section01_topPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section01 .center_content .section01_topPart h1 {
  font-size: 40px;
  color: var(--light-brown);
  font-family: "poppins_semiBold", sans-serif;
  font-weight: 700;
}
.section01 .center_content .section01_topPart .horizontalLine {
  width: 134px;
  height: 1px;
  background-color: var(--brown);
  margin-top: 8px;
  transition-delay: 100ms;
}
.section01 .center_content .section01_topPart p {
  font-size: 18px;
  color: #081e35;
  font-family: "poppins_light", sans-serif;
  font-weight: 200;
  padding-top: 19px;
  transition-delay: 200ms;
}
.section01 .center_content .section01_bottomPart {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
}
.section01 .center_content .section01_bottomPart .section01_bottomPart_card01 {
  min-width: 546px;
  min-height: 174px;
  background-color: var(--light-brown);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
}
.section01
  .center_content
  .section01_bottomPart
  .section01_bottomPart_card01:nth-child(1) {
  transition-delay: 100ms;
}
.section01
  .center_content
  .section01_bottomPart
  .section01_bottomPart_card01:nth-child(2) {
  transition-delay: 200ms;
}
.section01
  .center_content
  .section01_bottomPart
  .section01_bottomPart_card01:nth-child(3) {
  transition-delay: 300ms;
}
.section01
  .center_content
  .section01_bottomPart
  .section01_bottomPart_card01::before {
  content: "1";
  position: absolute;
  top: 0.8rem;
  right: 39px;
  font-size: 32px;
  font-family: "poppins_bold", sans-serif;
  font-weight: 800;
  color: var(--white);
}
.section01
  .center_content
  .section01_bottomPart
  .section01_bottomPart_card01:nth-child(2):before {
  content: "2";
}
.section01
  .center_content
  .section01_bottomPart
  .section01_bottomPart_card01:nth-child(3):before {
  content: "3";
}
.section01
  .center_content
  .section01_bottomPart
  .section01_bottomPart_card01
  h1 {
  font-size: 32px;
  color: var(--white);
  font-family: "poppins_bold", sans-serif;
  font-weight: 800;
}

.section01 .center_content .section02_leftSide .btn .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section01 .center_content .section02_leftSide .btn .circle .mainCircle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #2b74c2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section01 .center_content .section02_leftSide .btn .circle .centerPoint {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #2b74c2;
  position: absolute;
}

/* ********* SECTION 02 *********** */
/* ******************************* */

.section02 {
  width: 100%;
  background-color: transparent;
}
.section02 .center_content {
  width: 100%;
  /* max-width: 1800px; */
  align-items: center;
  gap: 800px;
}

.section02 .center_content .section02_leftSide .section02_leftSide_topPart h1 {
  font-size: 40px;
  color: var(--light-brown);
  font-family: "poppins_semiBold", sans-serif;
  font-weight: 700;
  transition-delay: 100ms;
}
.section02
  .center_content
  .section02_leftSide
  .section02_leftSide_topPart
  .horizontalLine {
  width: 134px;
  height: 1px;
  background-color: var(--light-brown);
  margin-top: 8px;
  transition-delay: 200ms;
}
.section02 .center_content .section02_leftSide .section02_leftSide_topPart p {
  font-size: 18px;
  color: #081e35;
  font-family: "poppins_light", sans-serif;
  font-weight: 200;
  margin-top: 600px;
  transition-delay: 300ms;
}
.section02 .center_content .section02_leftSide .Section02_middlePartText {
  font-size: 18px;
  color: var(--dark-brown);
  line-height: 28px;
  font-family: "poppins_regular", sans-serif;
  font-weight: 400;
  margin: 0px 0 0px 0;
  transition-delay: 400ms;
}
.section02 .center_content .section02_leftSide .btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
  color: #2b74c2;
  font-family: "poppins_semiBold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition-delay: 500ms;
}
.section02 .center_content .section02_leftSide .btn .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section02 .center_content .section02_leftSide .btn .circle .mainCircle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #2b74c2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section02 .center_content .section02_leftSide .btn .circle .centerPoint {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #2b74c2;
  position: absolute;
}
.section02
  .center_content
  .section02_leftSide
  .btn
  .circle
  .centerPoint::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #2b74c2;
  position: absolute;
  right: 1px;
  top: 2.3px;
}
.section02
  .center_content
  .section02_leftSide
  .btn:hover
  .circle
  .centerPoint::before {
  width: 0px;
  animation-name: lineWidth;
  animation-duration: 0.7s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes lineWidth {
  0% {
    width: 47px;
  }
  100% {
    width: 0px;
  }
}
.section02 .center_content .section02_leftSide .btn:hover .circle .mainCircle {
  border-style: dashed;
  transform: rotate(360deg);
  animation-name: rotateCircle;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section02 .center_content .section02_rightSide {
  max-width: 808px;
  overflow: hidden;
  display: flex;
}
.section02 .center_content .section02_rightSide img {
  width: 100%;
}

/* ********* FOOTER *********** */
/* *************************** */

footer {
  width: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .center_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .center_content .footer_topPart {
  min-width: 859px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 164px;
  padding: 129px 0 53px;
}
footer .center_content .footer_topPart .col01 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}
footer .center_content .footer_topPart .col01 .footer_topPart_col01_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
footer
  .center_content
  .footer_topPart
  .col01:nth-child(1)
  .footer_topPart_col01_heading {
  transition-delay: 100ms;
}
footer
  .center_content
  .footer_topPart
  .col01:nth-child(2)
  .footer_topPart_col01_heading {
  transition-delay: 200ms;
}
footer
  .center_content
  .footer_topPart
  .col01:nth-child(3)
  .footer_topPart_col01_heading {
  transition-delay: 300ms;
}
footer .center_content .footer_topPart .col01 .footer_topPart_col01_heading h1 {
  font-size: 18px;
  line-height: 28px;
  color: var(--light-brown);
  font-family: "poppins_bold", sans-serif;
  font-weight: 800;
}
footer .center_content .footer_topPart .col01 p,
footer .center_content .footer_topPart .col01 a {
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  color: var(--dark-brown);
  font-family: "poppins_regular", sans-serif;
  font-weight: 400;
  transition: 0.3s;
}
footer .center_content .footer_topPart .col01 p {
  transition-delay: 100ms;
}
footer .center_content .footer_topPart .col01:nth-child(2) a {
  transition-delay: 200ms;
}
footer .center_content .footer_topPart .col01:nth-child(3) a {
  transition-delay: 300ms;
}
footer .center_content .footer_topPart .col01 a:hover {
  opacity: 0.7;
}
footer .center_content .footer_bottomPart {
  border-top: 1px solid rgba(55, 140, 231, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .center_content .footer_bottomPart p {
  padding: 37px 0 36px;
  font-size: 18px;
  color: var(--light-brown);
  line-height: 28px;
  font-family: "poppins_regular", sans-serif;
  font-weight: 400;
}

/* mobile navbar */

.hamburger {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;

  display: none;
}
.hamburger svg {
  width: 20px;
  fill: var(--brown);
}

.mobileNavbar {
  width: 100%;
  height: 100vh;
  overflow: auto;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(50px);
  transition: 0.3s;
}
.mobileNavbar.mobileNavbarShow {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(0);
}
.mobileNavbar .logo {
  position: absolute;
  top: 13px;
  left: 19px;
}
.mobileNavbar ul {
  width: 90%;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.mobileNavbar ul li {
  width: 100%;
}
.mobileNavbar ul li a {
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #2b74c2;
  font-family: "poppins_semiBold", sans-serif;
  font-weight: 700;
  padding: 20px 0;
  border-bottom: 1px dashed var(--brown);
}
.mobileNavbar ul li:last-child a {
  border: none;
}
.closeNavbar {
  position: absolute;
  width: 35px;
  top: 1.4rem;
  right: 0.7rem;
  height: 35px;
  border: 1px solid #dff2ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.closeNavbar svg {
  width: 14px;
  fill: var(--brown);
}

.animateTextBottomToTop {
  transform: translateY(50px);
  opacity: 0;
  backdrop-filter: blur(50px);
}

/* ************** section03 ************** */
/* ************************************** */

.section03 {
  background-color: rgba(248, 251, 255, 1);
}
.section03::before {
  content: url("../images/pattren.png");
  left: 0;
}
.section03 .center_content {
  margin-bottom: 90px;
}
.section03 .section03_bottomPart {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 96px;
}
.section03 .section03_bottomPart ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
}
.section03 .section03_bottomPart ul li {
  list-style: none;
  position: relative;
}

.section03 .section03_bottomPart ul li::before {
  content: "";
  width: 7.2px;
  height: 7.2px;
  border: 4px solid #378ce7;
  border-radius: 50%;
  position: absolute;
  left: -29px;
  top: 6px;
}
.section03 .section03_bottomPart ul li span {
  font-size: 18px;
  line-height: 28px;
  color: #081e35;
}

.contentDiaply {
  opacity: 0;
  backdrop-filter: blur(50px);
}

/* ********** MEDIA QUERY *********** */
/* ******************************** */

@media screen and (min-width: 2732px) {
  .section02 .center_content {
    max-width: 1800px;
  }
}

@media screen and (max-width: 1700px) {
  header .center_content,
  .section01 .center_content,
  .heroSection .center_content {
    min-width: 90%;
    max-width: 90%;
  }
  .section02 .center_content {
    gap: 50px;
  }
}

@media screen and (max-width: 1570px) {
  .section02 .center_content {
    flex-direction: column;
    width: 100%;
    margin: 5rem 0 0;
  }
  /* .section02 .center_content .section02_leftSide {
    width: 50%;
  } */
  .section02 .center_content .section02_leftSide {
    width: 90%;
    max-width: 90%;
    min-width: 90%;
  }
  .section02 .center_content .section02_rightSide {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 1541px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .text
    p
    br {
    display: none;
  }
  .heroSection .center_content {
    gap: 50px;
  }
}

@media screen and (max-width: 1410px) {
  .section03 .section03_bottomPart {
    flex-direction: column;
    gap: 18px;
  }
}

@media screen and (max-width: 1400px) {
  .heroSection .center_content {
    flex-direction: column-reverse;
    gap: 100px;
  }
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 250px;
  }
}

@media screen and (max-width: 1265px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 300px;
  }
}

@media screen and (max-width: 925px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 350px;
  }
}

@media screen and (max-width: 870px) {
  .heroSection .center_content .heroSection_rightSide,
  .section01 .center_content .section01_bottomPart .section01_bottomPart_card01,
  .section02 .center_content .section02_rightSide,
  footer .center_content .footer_topPart {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  footer .center_content {
    width: 90%;
  }
  footer .center_content .footer_topPart {
    gap: 50px;
    flex-direction: column;
    padding: 65px 0 40px;
  }
  header .center_content nav ul {
    display: none;
  }
  header .center_content .logo img {
    width: 150px;
  }
  .heroSection .center_content .heroSection_rightSide {
    padding: 18px;
  }
  .heroSection .center_content {
    margin: 8rem 0 6rem;
  }
  .heroSection .center_content .heroSection_rightSide h1 {
    font-size: 20px;
  }
  .heroSection .center_content .heroSection_rightSide .field01 span,
  .heroSection .center_content .heroSection_rightSide .field02 span,
  .heroSection .center_content .heroSection_rightSide .field03 span,
  .heroSection .center_content .heroSection_rightSide .field04 span,
  .heroSection .center_content .heroSection_rightSide .field05 span {
    font-size: 14px;
  }
  .heroSection .center_content .heroSection_rightSide .field01 input:focus,
  .heroSection .center_content .heroSection_rightSide .field01 input:valid,
  .heroSection .center_content .heroSection_rightSide .field02 input:focus,
  .heroSection .center_content .heroSection_rightSide .field02 input:valid,
  .heroSection .center_content .heroSection_rightSide .field03 input:focus,
  .heroSection .center_content .heroSection_rightSide .field03 input:valid,
  .heroSection .center_content .heroSection_rightSide .field04 input:focus,
  .heroSection .center_content .heroSection_rightSide .field04 input:valid,
  .heroSection .center_content .heroSection_rightSide .field05 textarea:focus,
  .heroSection .center_content .heroSection_rightSide .field05 textarea:valid {
    font-size: 14px;
  }
  .heroSection
    .center_content
    .heroSection_rightSide
    .field01
    input:focus
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field01
    input:valid
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field02
    input:focus
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field02
    input:valid
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field03
    input:focus
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field03
    input:valid
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field04
    input:focus
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field04
    input:valid
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field05
    textarea:focus
    ~ span,
  .heroSection
    .center_content
    .heroSection_rightSide
    .field05
    textarea:valid
    ~ span {
    font-size: 12px;
  }
  .heroSection .center_content .heroSection_rightSide form button {
    font-size: 14px;
  }
  .heroSection .center_content .heroSection_leftSide h1 {
    font-size: 20px;
    margin-left: 1.4rem;
  }
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .text
    p {
    font-size: 14px;
    line-height: 26px;
  }
  .hamburger {
    display: flex;
  }
  .section01 .center_content .section01_topPart h1 {
    font-size: 20px;
  }
  .section01 .center_content .section01_topPart p {
    font-size: 14px;
    text-align: center;
  }
  .section01
    .center_content
    .section01_bottomPart
    .section01_bottomPart_card01 {
    min-height: 120px;
    justify-content: flex-start;
    padding-left: 2rem;
  }
  .section01
    .center_content
    .section01_bottomPart
    .section01_bottomPart_card01::before {
    font-size: 18px;
  }
  .section01
    .center_content
    .section01_bottomPart
    .section01_bottomPart_card01
    img {
    width: 70px;
  }
  .section01
    .center_content
    .section01_bottomPart
    .section01_bottomPart_card01
    h1 {
    font-size: 18px;
  }
  .section01
    .center_content
    .section01_bottomPart
    .section01_bottomPart_card01::before {
    top: 0.6rem;
    right: 20px;
  }
  .section01 .center_content {
    gap: 50px;
    margin: 6rem 0;
  }
  .section02
    .center_content
    .section02_leftSide
    .section02_leftSide_topPart
    h1 {
    font-size: 20px;
  }
  .section02
    .center_content
    .section02_leftSide
    .section02_leftSide_topPart
    .horizontalLine {
    width: 60px;
    margin-top: 4px;
  }
  .section02 .center_content .section02_leftSide .section02_leftSide_topPart p {
    font-size: 14px;
    margin-top: 10px;
  }
  .section02 .center_content .section02_leftSide .Section02_middlePartText {
    font-size: 14px;
    margin: 35px 0 40px 0;
  }
  .section02 .center_content .section02_leftSide .btn {
    font-size: 14px;
  }
  footer .center_content .footer_topPart .col01 p,
  footer .center_content .footer_topPart .col01 a,
  footer
    .center_content
    .footer_topPart
    .col01
    .footer_topPart_col01_heading
    h1 {
    font-size: 14px;
  }
  footer .center_content .footer_bottomPart p {
    font-size: 14px;
    padding: 25px 0 26px;
  }
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 300px;
  }
  .section02 .center_content .section02_leftSide .section02_leftSide_topPart {
    align-items: flex-start;
  }

  .noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .noSelect:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
  }
  :focus {
    outline: none !important;
  }
}

@media screen and (max-width: 730px) {
  .section03 .section03_bottomPart {
    width: 90%;
    padding-left: 10px;
  }
  .section03 .section03_bottomPart ul li span br {
    display: none;
  }
  .section03 .section03_bottomPart ul li span {
    font-size: 14px;
    line-height: 24px;
  }
  .section03 .section03_bottomPart ul li::before {
    width: 6px;
    height: 6.2px;
    left: -25px;
    top: 7px;
    border: 3px solid #378ce7;
  }
}

@media screen and (max-width: 706px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 380px;
  }
}

@media screen and (max-width: 430px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 535px;
  }
}

@media screen and (max-width: 390px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 640px;
  }
}

@media screen and (max-width: 360px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 690px;
  }
}

@media screen and (max-width: 280px) {
  .heroSection
    .center_content
    .heroSection_leftSide
    .heroSection_leftSide_content
    .verticalLine {
    height: 970px;
  }
}
