:root {
  --primary: #019c8d;
  --secondary: #e5ebea;
  --accent: #ffe103;
  --bg-color: #fefefe;
  --txt-color: #2b2b2b;
}
* {
  color: var(--txt-color);
  font-family: "Noto Sans JP";
}
body {
  background-color: var(--bg-color);
}
.br-mb {
  display: none;
}
.br-pc {
  display: block;
}
/*=============================
animation
===============================*/
.animate-underline {
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  padding: 0 5px;
}
.link {
  opacity: 1;
  transition: opacity 0.5s;
}
.link:hover {
  opacity: 0.75;
}
.fade-in {
  opacity: 0;
  transition-duration: 350ms;
  transition-property: opacity, transform;
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
.fade-in-up {
  opacity: 0;
}
.fade-in-up.fadeup {
  animation: fadeup 1.3s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=============================
固定ボタン
===============================*/
.fixed-btn {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 9999;
  align-items: center;
}
.fixed-btn > .resv {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 72px;
  height: 266px;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  line-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.fixed-btn > .resv img {
  padding-top: 10px;
}
.txt {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.float-btn {
  position: relative;
}
.float-btn-bg-1 {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border: 2px solid #fff;
  top: -6px;
  left: -6px;
  position: relative;
  transition: all 0.5s;
  z-index: 3;
}
.float-btn:hover > .float-btn-bg-1 {
  top: 0px;
  left: 0px;
}
.float-btn-bg-2 {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #f18d00;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 43px;
  z-index: 2;
  transition: all 0.4s;
}
.float-btn-arrow {
  position: absolute;
  top: calc(50% - 13px);
  right: -88px;
  transform: translate(calc(-50% + 13px), 0);
  -webkit-transform: translate(calc(-50% + 13px), 0);
  -ms-transform: translate(calc(-50% + 13px), 0);
  z-index: 5;
  transition: all 0.5s;
}
.float-btn:hover > .float-btn-arrow {
  top: calc(50% - 7px);
  right: -100px;
  transform: translate(calc(-50% + 7px), 0);
  -webkit-transform: translate(calc(-50% + 7px), 0);
  -ms-transform: translate(calc(-50% + 7px), 0);
}
/*=============================
FV
===============================*/

.fv {
  width: 100%;
  height: 328px;
  min-height: 382px;
  object-fit: cover;
  position: relative;
}
.fv-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-txt {
  position: absolute;
  top: 50%;
  left: calc((100vw) - (100vw - 12.5%));
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

/*=============================
about
===============================*/

.about {
  width: 100%;
  height: 982px;
  padding-top: 50px;
  position: relative;
}
.about-deco {
  display: block;
  margin: 0 auto 25px;
}
.about-h1 {
  font-weight: bold;
  font-size: 56px;
  line-height: 76px;
  text-align: center;
}
.about-head {
  margin-bottom: 25px;
  position: relative;
}
.about-txt {
  margin-top: 43px;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 52px;
  text-align: center;
  color: #000;
  position: relative;
}
.about-txt > .underline {
  font-weight: bold;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 54px;
  text-align: center;
  margin-right: 10px;
  position: relative;
}
.about-txt > .underline::before {
  content: "";
  width: calc(100% + 10px);
  height: 10px;
  background-color: var(--accent);
  position: absolute;
  bottom: 5px;
  left: -10px;
  z-index: -1;
}
.about-txt > .underline > span {
  color: #019c8d;
}
.about-img {
  display: block;
  margin: 50px auto 0;
}

/*=============================
feature-top
===============================*/
.feature-top {
  width: 993px;
  margin: -50px auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.feature-top-card {
  width: 321px;
  height: 227px;
  background-image: url("../img/feature-card-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}
.feature-top-card-check {
  display: block;
  margin: 5px auto 12px;
  position: relative;
}
.feature-top-card-img {
  position: absolute;
  top: 65px;
  left: 40%;
}
.feature-doc-img {
  left: 42%;
}
.feature-top-card-txt {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #000;
  bottom: 27px;
}

/*=============================
feature
===============================*/
.feature {
  width: 100%;
  height: 2801px;
  background-color: var(--secondary);
  padding-top: 176px;
  position: relative;
  border-bottom: 3px dotted var(--accent);
}
.feature-head {
  width: 482px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  line-height: 62px;
  text-align: center;
  color: #000;
  position: relative;
  margin-bottom: 48px;
}
.feature-head::before {
  content: "";
  background-image: url("../img/feature-head-left-line.svg");
  width: 24px;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.feature-head::after {
  content: "";
  background-image: url("../img/feature-head-right-line.svg");
  width: 24px;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 10px;
}
.feature-head > .underline {
  position: relative;
  left: -3px;
}
.feature-head > .underline::before {
  content: "";
  width: 100%;
  height: 20px;
  background-color: var(--accent);
  position: absolute;
  bottom: 10px;
  left: 2px;
  z-index: 0;
}
.feature-head > .underline > span,
.feature-head > .underline > span > span {
  color: var(--primary);
  font-size: 45px;
  position: relative;
}
.feature-head > .underline > span {
  font-size: 65px;
}
.feature-cards {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.feature-card {
  width: 100%;
  background-color: var(--bg-color);
  border: 2px solid var(--txt-color);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 43px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 45px;
}
.feature-card-num {
  width: 41px;
  height: 41px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  line-height: 41px;
  text-align: center;
  color: #fff;
  background-color: var(--primary);
}
.feature-card-head {
  font-weight: bold;
  font-size: 30px;
  text-align: left;
  color: #000;
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
}
.feature-card-head .animate-underline {
  font-size: 40px;
}
.feature-card-txt {
  font-weight: bold;
  font-size: 19px;
  line-height: 35px;
  text-align: center;
  color: #000;
  margin: 28px 0 32px;
}
.feature-card-img {
  max-width: 753px;
  object-fit: contain;
}
.feature-card-img img {
  width: 100%;
}
.feature-card-2 .feature-card-img {
  margin-bottom: 25px;
}
.feature-card-bottom {
  display: flex;
  gap: 30px;
}
.feature-card-3,
.feature-card-4 {
  padding-bottom: 13px;
}
.feature-card-3 .feature-card-img,
.feature-card-4 .feature-card-img {
  max-width: 403px;
}
.feature-card-3 .feature-card-head,
.feature-card-4 .feature-card-head {
  margin-bottom: 25px;
}
.feature-btm-txt {
  margin-top: 25px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #000;
  line-height: 24px;
}
.feature-contact-btn {
  width: 331px;
  height: 68px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 24px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  margin: 30px auto 0;
}

.feature-contact-btn > .float-btn-bg-2 {
  background-color: var(--accent);
}
/*=============================
campain
===============================*/
.campain-sec {
  max-width: 1024px;
  margin: 65px auto 70px;
}
.campain-sec img {
  width: 100%;
}

/*=============================
cargo-handling
===============================*/
.cargo-handling {
  max-width: 1024px;
  margin: 65px auto 70px;
  position: relative;
}
.cargo-handling-cnt {
  padding: 88px 104px 75px;
  border-radius: 20px;
  border: 2px solid var(--txt-color);
  background-color: var(--secondary);
  position: relative;
}
.cargo-handling-head {
  max-width: 600px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  color: #000;
  position: relative;
}
.cargo-handling-head::before {
  content: url("../img/cargo-handling-head-left-line.svg");
  width: 64px;
  height: 68px;
  position: absolute;
  top: 24px;
  left: 0;
}
.cargo-handling-head::after {
  content: url("../img/cargo-handling-head-right-line.svg");
  width: 64px;
  height: 68px;
  position: absolute;
  top: 24px;
  right: 0;
}
.cargo-handling-head-txt-top {
  margin-top: 32px;
  font-weight: bold;
  font-size: 19px;
  line-height: 35px;
  text-align: center;
  color: #000;
  margin-bottom: 42px;
}
.cargo-handling-btm-cnt {
  border-radius: 20px;
  background-color: var(--bg-color);
  max-width: 816px;
  padding: 45px 60px;
}
.cargo-handling-btm-cnt-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 34px;
}
.cargo-handling-btm-cnt-head h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
  color: #000;
}
.cargo-handling-btn-cnt-txt {
  font-weight: bold;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  color: #000;
  margin-bottom: 38px;
}
.cargo-handling-btn-cnt-img {
  width: 100%;
}
/*=============================
model
===============================*/
.model {
  max-width: 1024px;
  margin: 65px auto 100px;
  position: relative;
}
.model h2 {
  max-width: 320px;
  font-weight: bold;
  font-size: 40px;
  line-height: 71px;
  text-align: center;
  color: #000;
  position: relative;
  margin: 0 auto 40px;
  z-index: 1;
}
.model h2:before {
  content: "";
  width: calc(100% + 30px);
  height: 18px;
  background-color: var(--accent);
  position: absolute;
  bottom: 10px;
  left: -15px;
  z-index: -1;
}
.model img {
  width: 100%;
}

/*=============================
merit
===============================*/
.merit {
  width: 100%;
  height: 648px;
  background-color: var(--secondary);
  padding-top: 80px;
  position: relative;
}
.merit-cnt {
  max-width: 1024px;
  position: relative;
  margin: 0 auto;
}
.merit-ttl {
  width: 398px;
  height: 90px;
  background-image: url("../img/merit-ttl-bg.svg");
  color: #fff;
  text-align: center;
  line-height: 70px;
  font-weight: bold;
  font-size: 25px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.merit ul {
  width: 100%;
  margin: -40px auto 0;
  background-color: var(--bg-color);
  border: 2px solid var(--txt-color);
  border-radius: 20px;
  padding: 76px;
  padding-left: 144px;
}
.merit ul > li {
  font-weight: bold;
  font-size: 25px;
  line-height: 60px;
  color: var(--txt-color);
  padding-left: 20px;
}
.merit ul > li::before {
  content: url("../img/merit-li-style.svg");
  padding-right: 15px;
}
.merit-cnt-btm-img {
  position: absolute;
  bottom: -20px;
  right: 0;
}

/*=============================
contact
===============================*/
.contact {
  width: 100%;
  height: 237px;
  background-color: var(--primary);
  padding: 41px 0 47px;
  position: relative;
}
.contact-txt {
  font-weight: bold;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.contact-sec-btn {
  width: 525px;
  height: 95px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
  margin: 35px auto 0;
}
.contact-sec-btn > .float-btn-bg-1 {
  background-color: var(--accent);
  color: var(--txt-color);
  top: 0;
  left: 0;
}
.contact-sec-btn .float-btn-arrow {
  right: -135px;
}
.contact-sec-btn.float-btn:hover > .float-btn-arrow {
  top: calc(50% - 13px);
  right: -135px;
  transform: translate(calc(-50% + 13px), 0);
  -webkit-transform: translate(calc(-50% + 13px), 0);
  -ms-transform: translate(calc(-50% + 13px), 0);
}
/*=============================
company
===============================*/
.company {
  position: relative;
}
.company-cnt {
  max-width: 1024px;
  margin: 75px auto 0;
  background-color: var(--bg-color);
  border: 2px solid var(--txt-color);
  border-radius: 20px;
  position: relative;
  padding-bottom: 64px;
}
.company-cnt h2 {
  width: 160px;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  color: #000;
  position: relative;
  margin: 0 auto;
  z-index: 2;
  padding-top: 47px;
}
.company h2::before {
  content: "";
  width: 100%;
  height: 18px;
  background-color: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.company-txt {
  padding-top: 36px;
  font-weight: bold;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: #000;
  padding-bottom: 32px;
}
.company-btn {
  width: 525px;
  height: 95px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}
.company-btn > .float-btn-bg-2 {
  background-color: var(--accent);
}
/*=============================
access
===============================*/
.access {
  max-width: 1024px;
  margin: 85px auto 0;
  padding-bottom: 85px;
}
.access-cnt {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.access-ttl {
  font-weight: bold;
  font-size: 46px;
  line-height: 80px;
  color: #000;
  margin-top: -20px;
  padding-left: 25px;
}
.access-ttl > .large {
  font-size: 50px;
  color: var(--primary);
}
.access-ttl > .jp {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #000;
  padding-left: 39px;
}
.access-info-textarea {
  font-weight: 500;
  font-size: 19px;
  text-align: left;
  color: #000;
  line-height: 34px;
  margin-top: 50px;
}
.access-info-textarea p {
  margin-bottom: 20px;
}

@media screen and (max-width: 756px) {
    .fv-txt {
        left: 30px !important;
        width: 80% !important;
		height: auto !important;
    }
}
@media screen and (max-width: 1024px) {
  .br-mb {
    display: block;
  }
  .br-mb.sp {
    display: none;
  }
  .br-pc {
    display: none;
  }
  .fv {
    height: 244px;
    min-height: 244px;
    overflow: hidden;
  }
  .fv-txt {
    left: 50px;
    height: 80%;
  }
  .about {
    height: auto;
    padding-top: 30px;
    padding-bottom: 165px;
  }
  .about-h1 {
    font-size: 42px;
  }
  .about-txt {
    font-size: 16px;
    line-height: 24px;
  }
  .about-txt > .underline {
    font-size: 20px;
    line-height: 30px;
    margin-right: 0;
  }
  .about-txt > .underline::before {
    content: "";
    width: calc(100% + 5px);
    height: 10px;
    background-color: var(--accent);
    position: absolute;
    bottom: 5px;
    left: -5px;
    z-index: -1;
  }
  .about-txt > .underline > span {
    color: #019c8d;
  }
  .about-img {
    display: block;
    margin: 34px auto 0;
  }
  .about-img {
    width: 100%;
  }
  .feature-top {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: -358px auto;
    padding-top: 225px;
  }
  .feature {
    padding-top: 460px;
    height: auto;
    padding-bottom: 40px;
  }
  .feature-cards {
    width: calc(100% - 38px);
    margin: 0 auto;
  }
  .feature-card {
    padding: 28px 26px;
  }
  .feature-card-bottom {
    flex-direction: column;
    gap: 0;
  }
  .campain-sec {
    width: calc(100% - 38px);
    margin: 35px auto;
  }
  .cargo-handling {
    width: calc(100% - 38px);
    margin: 35px auto;
  }
  .model {
    width: calc(100% - 38px);
    margin: 56px auto;
  }
  .merit {
    height: auto;
    padding-bottom: 55px;
  }
  .merit-cnt {
    width: calc(100% - 38px);
  }
  .merit ul {
    padding-left: 60px;
    padding-right: 42px;
  }
  .merit ul > li {
    padding: 0;
  }
  .merit-ttl {
    width: 240px;
    height: 59px;
    background-image: url("../img/merit-ttl-bg-mb.svg");
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 49px;
    font-weight: bold;
    font-size: 20px;
  }
  .merit-cnt-btm-img {
    bottom: -40px;
  }
  .access-cnt {
    width: calc(100% - 38px);
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
  }
  .access-info {
    width: 100%;
  }
  .access-gmap {
    width: 100%;
  }
  .access-gmap iframe {
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    .br-mb.sp {
      display: block;
    }
    .fixed-btn {
      width: 100%;
    }

    .fixed-btn > .campain {
      width: 100%;
      position: fixed;
      bottom: 0;
      right: 0;
      opacity: 0;
      transition: opacity 0.5s;
    }
    .fixed-btn > .campain.active {
      opacity: 1;
    }
    .fixed-btn > .campain img {
      width: 100%;
    }
    .fixed-btn > .resv {
      width: 35px;
      height: 170px;
      font-size: 12px;
      bottom: 90px;
      right: 10px;
      position: fixed;
    }
    .fixed-btn-resv-triangle {
      width: 10px;
      height: 20px;
      padding-top: 10px;
    }
    .about-h1 {
      font-size: 20px;
      line-height: 31px;
    }
    .about-txt {
      font-size: 15px;
    }
    .feature-top-card-txt {
      font-size: 15px;
    }
    .feature-head {
      width: 320px;
      font-size: 25px;
    }
    .feature-card-head .animate-underline {
      font-size: 29px;
    }
    .feature-card-img-1 {
      width: calc(100% + 52px);
    }
    .feature-card-3 .feature-card-img,
    .feature-card-4 .feature-card-img {
      width: 100%;
      max-width: 100%;
    }
    .feature-head > .underline > span {
      font-size: 45px;
    }
    .feature-head > .underline > span > span {
      font-size: 35px;
    }
    .feature-head > .underline::before {
      bottom: 0;
    }
    .feature-card-head {
      font-size: 22px;
    }
    .feature-card-txt,
    .feature-btm-txt {
      font-size: 15px;
      line-height: 26px;
    }
    .feature-contact-btn {
      width: 214px;
      height: 44px;
      font-size: 19px;
    }
    .float-btn-arrow {
      right: -61px;
    }
    .cargo-handling-cnt {
      padding: 51px 33px 33px;
    }
    .cargo-handling-head {
      width: 270px;
      font-size: 20px;
      line-height: 34px;
    }
    .cargo-handling-head::before {
      top: 24px;
      content: url("../img/cargo-handling-head-left-line-mb.svg");
      width: 18px;
      height: 36px;
    }
    .cargo-handling-head::after {
      top: 24px;
      content: url("../img/cargo-handling-head-right-line-mb.svg");
      width: 18px;
      height: 36px;
    }
    .cargo-handling-head-txt-top {
      font-weight: bold;
      font-size: 15px;
      line-height: 26px;
      text-align: center;
      color: #000;
    }
    .cargo-handling-head-txt-top {
      margin: 24px 0 30px;
    }
    .cargo-handling-btm-cnt-head {
      gap: 8px;
    }
    .cargo-handling-btm-cnt-head img:first-child {
      width: 26px;
      height: 26px;
    }
    .cargo-handling-btm-cnt-head h2 {
      font-size: 18px;
    }
    .cargo-handling-btm-cnt {
      padding: 20px;
    }
    .cargo-handling-btn-cnt-txt {
      font-size: 15px;
    }
    .model h2 {
      width: 170px;
      max-width: initial;
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 23px;
    }
    .model h2:before {
      height: 15px;
      bottom: 20px;
    }
    .merit ul {
      padding: 68px 25px 40px;
    }
    .merit ul > li {
      font-size: 15px;
      line-height: 26px;
      margin-bottom: 31px;
      display: flex;
    }
    .merit ul > li::before {
      padding-right: 10px;
      position: relative;
      top: 4px;
    }
    .merit-cnt-btm-img {
      width: 147px;
      height: 145px;
    }
    .contact {
      height: 194px;
      overflow: hidden;
    }
    .contact-txt {
      font-size: 22px;
    }
    .contact-sec-btn {
      width: 260px;
      height: 52px;
      font-size: 22px;
    }
    .contact-sec-btn .float-btn-arrow {
      right: -64px;
    }
    .company-cnt {
      width: calc(100% - 38px);
      margin: 25px auto 0;
      padding-bottom: 30px;
    }
    .company-cnt h2 {
      width: 100px;
      font-size: 20px;
    }
    .company h2::before {
      height: 15px;
      bottom: -7px;
    }
    .company-txt {
      font-size: 15px;
      line-height: 26px;
      text-align: center;
      color: #000;
      padding: 20px 0;
    }
    .company-btn {
      width: 214px;
      height: 44px;
      font-size: 12px;
    }
    .access-deco {
      width: 25px;
    }
    .access-deco img {
      width: 100%;
    }
    .access-ttl {
      font-size: 32px;
    }
    .access-ttl > .large {
      font-size: 32px;
    }
    .access-ttl > .jp {
      font-size: 10px;
    }
    .access-info-textarea {
      font-size: 15px;
      margin-top: 0;
      line-height: 24px;
    }
    .access-gmap {
      height: 490px;
      margin: 0 auto;
    }
    .cargo-handling-btm-cnt-head {
      gap: 0;
    }
    .cargo-handling-btm-cnt-head img {
      margin-right: 8px;
    }
  }
  @media screen and (max-width: 400px) {
    .feature-card-head {
      font-size: 20px;
    }
    .feature-card {
      padding: 15px 12px;
    }
    .feature-card-img-1 {
      width: calc(100% + 24px);
    }
    .feature-card-head .animate-underline {
      font-size: 24px;
    }
    .cargo-handling-btm-cnt-head h2 {
    }
    .cargo-handling-cnt {
      padding: 30px 10px 30px;
    }
  }
  @media screen and (max-width: 360px) {
    .cargo-handling-head {
      width: 240px;
      font-size: 18px;
      line-height: 34px;
    }
  }
  @media screen and (max-width: 345px) {
    .cargo-handling-btm-cnt-head h2 {
      font-size: 15px;
    }
  }
  @media screen and (max-width: 324px) {
    .feature-card-head {
      font-size: 18px;
    }
    .feature-card-head .animate-underline {
      font-size: 18px;
    }
  }
}
