*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 100%;
  background-color: #0b0b0c;
  color: #fff;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: normal;
  font-weight: 700;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 0.83em;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a, a::before, a::after {
  text-decoration: none;
}

.flex {
  display: flex;
}
.flex-ai-c {
  align-items: center;
}
.flex-jc-c {
  justify-content: center;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-fd-c {
  flex-direction: column;
}

@media (max-width: 575.98px) {
  .hide-for-mobile-df {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hide-for-tablets-df {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .hide-for-laptops-df {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .hide-for-desktop-df {
    display: none;
  }
}

@media (min-width: 576px) {
  .hide-for-mobile-mf {
    display: none;
  }
}

@media (min-width: 992px) {
  .hide-for-laptops-mf {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hide-for-desktop-mf {
    display: none;
  }
}

.header {
  width: 100%;
  display: grid;
  background-image: url("../assets/img/hero.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.header__container {
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
  margin: 0 auto;
  z-index: 999;
}
.header__container.scroll {
  background-color: #0b0b0c;
  border-bottom: none;
}
@media (max-width: 991.98px) {
  .header__container {
    border: none;
  }
}
.header__nav {
  width: 90%;
  margin: 0 auto;
}
.header__logo > img#header-img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575.98px) {
  .header__logo > img#header-img {
    -o-object-fit: unset;
       object-fit: unset;
  }
}
@media (max-width: 400px) {
  .header__logo > img#header-img {
    height: 50px;
  }
}
.header__logo > a > .header-logo-text {
  margin-left: 1rem;
}
@media (max-width: 576px) {
  .header__logo > a > .header-logo-text {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .header__logo > a > .header-logo-text {
    margin-left: 0.5rem;
  }
}
@media (max-width: 991.98px) {
  .header__navlink {
    flex-direction: column;
    position: fixed;
    transition: left 400ms ease;
    top: 0;
    left: -100%;
    bottom: 0;
    height: 100vh;
    width: 100%;
    background-color: #000000;
    justify-content: space-between;
    opacity: 1;
  }
  .header__navlink.show {
    left: 0;
  }
}
@media (max-width: 991.98px) {
  .header__navlink > .socials {
    width: 100%;
    padding: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .header__navlink > .socials > img {
    flex: 1;
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
}
@media (max-width: 400px) {
  .header__navlink > .socials > img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 991.98px) {
  .header__navlink > .links {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .header__navlink > .links > li {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.header__navlink > .links > li > a.nav-link {
  padding: 0 1rem;
}
@media (max-width: 991.98px) {
  .header__navlink > .links > li > a.nav-link {
    display: block;
    text-align: center;
    padding: 1.25rem 0;
  }
}
@media (min-width: 992px) {
  .header__navlink > .links > li > a.nav-link::after {
    content: "";
    height: 2px;
    width: 100%;
    margin: 0 auto;
    display: block;
    background-color: #f17c0e;
    transition: transform 300ms ease;
    transform: scale(0, 1);
    transform-origin: center;
  }
  .header__navlink > .links > li > a.nav-link:hover::after {
    transform: scale(1, 1);
  }
  .header__navlink > .links > li > a.nav-link:hover {
    color: #f17c0e;
  }
}
.header__navlink > .links > li > a.nav-link.active {
  color: #f17c0e;
}
.header__hamburger {
  position: absolute;
  right: 1.5rem;
  cursor: pointer;
}
.header__hamburger > .hamburger-span {
  position: relative;
  width: 33px;
  height: 3px;
  margin-bottom: 6px;
  background-color: #ffffff;
  display: block;
  transition: all 300ms ease;
}
.header__hamburger > .hamburger-span:nth-child(2) {
  width: 23px;
}
.header__hamburger > .hamburger-span:nth-child(3) {
  width: 13px;
}
.header__hamburger > .hamburger-span.active {
  width: 33px;
}
.header__hamburger.active span:nth-child(1) {
  -webkit-animation: ease 0.7s top forwards;
          animation: ease 0.7s top forwards;
}
.header__hamburger.not-active span:nth-child(1) {
  -webkit-animation: ease 0.7s top-2 forwards;
          animation: ease 0.7s top-2 forwards;
}
.header__hamburger.active span:nth-child(2) {
  -webkit-animation: ease 0.7s scaled forwards;
          animation: ease 0.7s scaled forwards;
}
.header__hamburger.not-active span:nth-child(2) {
  -webkit-animation: ease 0.7s scaled-2 forwards;
          animation: ease 0.7s scaled-2 forwards;
}
.header__hamburger.active span:nth-child(3) {
  -webkit-animation: ease 0.7s bottom forwards;
          animation: ease 0.7s bottom forwards;
}
.header__hamburger.not-active span:nth-child(3) {
  -webkit-animation: ease 0.7s bottom-2 forwards;
          animation: ease 0.7s bottom-2 forwards;
}
@-webkit-keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 8.5px;
    transform: rotate(0);
  }
  100% {
    top: 8.5px;
    transform: rotate(45deg);
  }
}
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 8.5px;
    transform: rotate(0);
  }
  100% {
    top: 8.5px;
    transform: rotate(45deg);
  }
}
@-webkit-keyframes top-2 {
  0% {
    top: 8.5px;
    transform: rotate(45deg);
  }
  50% {
    top: 8.5px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes top-2 {
  0% {
    top: 8.5px;
    transform: rotate(45deg);
  }
  50% {
    top: 8.5px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 8.5px;
    transform: rotate(0);
  }
  100% {
    bottom: 8.5px;
    transform: rotate(135deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 8.5px;
    transform: rotate(0);
  }
  100% {
    bottom: 8.5px;
    transform: rotate(135deg);
  }
}
@-webkit-keyframes bottom-2 {
  0% {
    bottom: 8.5px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 8.5px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 8.5px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 8.5px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@-webkit-keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.footer {
  padding: 2rem;
  padding-bottom: 0;
  margin-top: 2rem;
  width: 100%;
  background: #0b0b0c;
}
.footer__container {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer__container {
    width: 95%;
    margin: 0 auto;
    position: relative;
  }
}
.footer__flex {
  height: 100%;
}
@media (min-width: 992px) {
  .footer__flex {
    display: flex;
    justify-content: space-between;
  }
}
.footer__flex h2 {
  color: #ffffff;
  font-size: 2.43rem;
}
@media (min-width: 992px) {
  .footer__flex > .more-topics,
.footer__flex > .shopping,
.footer__flex > .all-about-cars,
.footer__flex > .discover-more {
    flex-basis: 25%;
  }
}
.footer__flex ul li {
  padding: 0.4rem 0;
}
@media (min-width: 992px) {
  .footer__flex ul li {
    padding: 0;
  }
}
.footer__flex ul li a {
  color: #999;
  font-size: 0.875rem;
  transition: all 300ms ease;
  cursor: pointer;
}
.footer__flex ul li a:hover {
  color: #f17c0e;
}
.footer__info h2 {
  color: #ffffff;
  font-size: 2.43rem;
}
.footer__info > .text-contents p {
  color: #999;
  font-size: 0.875rem;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 992px) {
  .footer__info > .text-contents p {
    width: 42%;
  }
}
.footer__info > .text-contents > .social-icons {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.footer__info > .text-contents > .social-icons a {
  margin-right: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .footer__info > .text-contents > .social-icons a {
    margin-right: 3rem;
    cursor: pointer;
  }
}
.footer__info > .text-contents > .social-icons i {
  color: #999;
  font-size: 2rem;
  transition: all 300ms ease;
}
.footer__info > .text-contents > .social-icons i:hover {
  color: #f17c0e;
}
.footer__bottom {
  padding-bottom: 1rem;
}
.footer__bottom > .footer-btm-text {
  color: #FFFFFF;
  text-align: center;
}
.footer__line {
  height: 1px;
  background: #444;
  width: 100%;
  margin: 1.5rem 0;
  position: relative;
}

[data-slide=left],
[data-slide=right] {
  transition: transform 1.5s ease, opacity 3s;
  opacity: 0;
}

[data-slide=left] {
  transform: translateX(-100%);
}

[data-slide=right] {
  transform: translateX(100%);
}

.show-aos {
  transform: translateX(0);
  opacity: 1;
}

[data-fade=down] {
  transition: transform 2s ease, opacity 2s;
  transform: translateY(-100px);
  opacity: 0;
}
@media (max-width: 575.98px) {
  [data-fade=down] {
    transform: translateY(-50px);
  }
}

.show-fade {
  opacity: 1;
  transform: translateY(0);
}

[data-fade=in] {
  transition: opacity 2s ease;
  transition-delay: 1s;
  opacity: 0;
}

.show-fade-in {
  opacity: 1;
}

[data-fade=hero] {
  transition: opacity 1.5s ease;
  transition-delay: 200ms;
  opacity: 0;
}

.show-fade-in {
  opacity: 1;
}

.hero {
  min-height: 830px;
  text-align: center;
}
.hero__container {
  width: 70%;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 991.98px) {
  .hero__container {
    width: 80%;
  }
}
.hero__contents {
  margin-top: 12rem;
}
.hero__contents > h1.hero-title {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .hero__contents > h1.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .hero__contents > h1.hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .hero__contents > h1.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 400px) {
  .hero__contents > h1.hero-title {
    font-size: 1.5rem;
  }
}
.hero__contents > p.hero-text {
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .hero__contents > p.hero-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 400px) {
  .hero__contents > p.hero-text {
    font-size: 0.65rem;
  }
}

.insurance-investing {
  text-align: center;
}
.insurance-investing__container {
  padding: 5rem 0;
}
@media (max-width: 991.98px) {
  .insurance-investing__container {
    width: 90%;
    margin: 0 auto;
  }
}
.insurance-investing__title > h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 991.98px) {
  .insurance-investing__title > h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 991.98px) {
  .insurance-investing__contents {
    flex-direction: column;
  }
}
.insurance-investing__contents > .content {
  flex-basis: 31%;
  padding: 1rem 0;
}
.insurance-investing__contents > .content > img {
  width: 70px;
  height: 50px;
  margin-bottom: 1rem;
}
.insurance-investing__contents > .content > h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.insurance-investing__contents > .content > p {
  color: #999999;
}
.insurance-investing__contents > .content > a {
  width: 100%;
}
.insurance-investing__contents > .content > a button {
  background-color: transparent;
  color: #f17c0e;
  outline: none;
  border-color: #f17c0e;
  border-radius: 30px;
  padding: 0.625rem 1.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color color 300ms ease;
}
.insurance-investing__contents > .content > a button:hover {
  background-color: #f17c0e;
  color: #ffffff;
}

.showcase {
  padding: 1rem 0;
}
@media (max-width: 991.98px) {
  .showcase__container .article {
    flex-direction: column;
  }
}
.showcase__container .article__content {
  flex: 1;
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.showcase__container .article__content:nth-child(2) {
  padding-top: 8rem;
  background-color: #f17c0e;
}
.showcase__container .article__content:nth-child(2) > h3 {
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}
.showcase__container .article__content > h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}
.showcase__container .article__content > p {
  font-size: 1.125rem;
}
.showcase__container .article__content > ul > li {
  margin-bottom: 1.125rem;
  font-size: 1.125rem;
}
.showcase__image {
  flex: 1;
}
@media (max-width: 991.98px) {
  .showcase__image {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.showcase__image > .showcase-img {
  width: 100%;
  height: 223px;
  margin: 0 0.5rem;
  transition: transform 300ms ease;
  cursor: pointer;
}
@media (min-width: 992px) {
  .showcase__image > .showcase-img:hover {
    transform: translateY(20px);
  }
}
@media (max-width: 991.98px) {
  .showcase__image > .showcase-img {
    margin: 0;
    margin-bottom: 1rem;
  }
}
.showcase__image > .showcase-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.promotion {
  margin-top: 7rem;
  padding: 3rem 0;
}
.promotion__container {
  width: 80%;
  margin: 0 auto;
}
.promotion__container > h1 {
  font-size: 3.75rem;
  width: 50%;
  margin-bottom: 5rem;
}
@media (max-width: 991.98px) {
  .promotion__container > h1 {
    font-size: 2.75rem;
    margin-bottom: 0;
  }
}
.promotion__container > .text {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}
.promotion__container > .text > p {
  font-size: 2.25rem;
  font-weight: bold;
}
.promotion__container > .text > p > span {
  color: #f17c0e;
}

.company {
  margin: 2rem 0;
  padding: 2rem 0;
}
.company__container {
  gap: 5rem;
}
@media (max-width: 991.98px) {
  .company__container {
    flex-direction: column;
  }
}
.company__article {
  flex-basis: 44%;
  margin-left: 2rem;
  padding: 1rem;
}
.company__article > h2 {
  font-size: 2.25rem;
  margin-bottom: 1.125rem;
}
.company__article > p.underline {
  font-size: 1.4rem;
  text-decoration: underline;
}
.company__article > p.text-highlight {
  background-color: #f17c0e;
  padding: 1rem;
}
.company__image {
  flex: 1;
}
.company__image > img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 470px;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767.98px) {
  .company__image > img {
    width: 100%;
    height: 100%;
  }
}

.faq {
  margin: 2rem 0;
  padding: 2rem 0;
}
@media (max-width: 991.98px) {
  .faq {
    margin-top: 5rem;
  }
}
.faq__container {
  width: 65%;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .faq__container {
    width: 90%;
  }
}
.faq__title > h2 {
  font-size: 3.75rem;
}
@media (max-width: 767.98px) {
  .faq__title > h2 {
    font-size: 3rem;
  }
}
.faq__title > p {
  font-size: 1.125rem;
}
@media (max-width: 767.98px) {
  .faq__title > p {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .faq__title > p {
    font-size: 0.875rem;
  }
}
.faq .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.faq .accordion-button {
  background-color: #0b0b0c;
  font-size: 1.125rem;
}
@media (max-width: 767.98px) {
  .faq .accordion-button {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .faq .accordion-button {
    font-size: 0.75rem;
  }
}
.faq .accordion-button.click {
  background-color: #f17c0e;
}
.faq .accordion-button::after {
  background-image: url("../assets/img/down-arrow.svg");
}
.faq .accordion-body {
  background-color: #0b0b0c;
  padding: 3rem;
}

.closing {
  margin: 2rem 0;
  padding: 2rem 0;
}
.closing__container {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .closing__container {
    flex-direction: column;
  }
}
.closing__image {
  flex: 1.7;
}
@media (max-width: 991.98px) {
  .closing__image {
    flex: unset;
  }
}
.closing__image > img {
  width: 100%;
  min-height: 403px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199.98px) {
  .closing__image > img {
    min-height: 100%;
  }
}
.closing__contents {
  flex: 1;
  align-items: flex-end;
}
@media (max-width: 991.98px) {
  .closing__contents {
    flex: unset;
  }
}
@media (max-width: 991.98px) {
  .closing__contents {
    margin-top: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .closing__contents {
    width: 100%;
  }
}
.closing__contents > h3 {
  font-weight: 700;
  font-size: 2.25rem;
  padding: 0;
}

.contact-form {
  margin: 2rem 0;
  padding: 2rem 0;
}
.contact-form__container {
  width: 75%;
  margin: 0 auto;
  gap: 5rem;
  padding: 2rem;
}
@media (max-width: 991.98px) {
  .contact-form__container {
    flex-direction: column;
    width: 95%;
  }
}
.contact-form__content {
  flex: 1;
}
@media (max-width: 991.98px) {
  .contact-form__content {
    flex: unset;
  }
}
.contact-form__content > h3 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
}
.contact-form__content > h2 {
  font-weight: 700;
  font-size: 2.25rem;
}
.contact-form__content > p {
  font-size: 1.125rem;
}
.contact-form__form {
  flex: 1;
}
@media (max-width: 991.98px) {
  .contact-form__form {
    flex: unset;
    width: 100%;
  }
}
.contact-form__form > input.form-btn {
  background-color: transparent;
  color: #f17c0e;
  padding: 0.5rem 1.75rem;
  border-radius: 30px;
  border: 1px #f17c0e solid;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.contact-form__form > input.form-btn:hover {
  background-color: #f17c0e;
  color: white;
}
.contact-form__form > .inputs > label {
  width: 100%;
}
.contact-form__form > .inputs > label > input {
  width: 100%;
  background-color: #0b0b0c;
  color: white;
  border: none;
  border-bottom: 1px white solid;
}
.contact-form__form > .inputs > label > input::-moz-placeholder {
  color: #999999;
}
.contact-form__form > .inputs > label > input:-ms-input-placeholder {
  color: #999999;
}
.contact-form__form > .inputs > label > input::placeholder {
  color: #999999;
}
.contact-form__form > .inputs > label > textarea {
  width: 100%;
  background-color: #0b0b0c;
  color: white;
  border: none;
  border-bottom: 1px white solid;
}/*# sourceMappingURL=styles.css.map */