body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #3b68db;
}

#sideMenu {
  margin: 1em;
  margin-right: 0.25em;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 36px;
}

.myColumns {
  margin-top: 0;
  margin-bottom: 0 !important;
}

.push {
  position: fixed;
  margin-left: 0 !important;
  display: block !important;
  width: max-content !important;
  z-index: 1;
  background-color: #fafafa;
  transition: 0.5s;
  border-radius: 1em;
}

.mobileHeader {
  text-align: center;
  margin-left: -0.75em;
}

.myBtn {
  background-color: #fafafa;
  position: fixed;
}

.sticky {
  position: sticky;
  top: 1.75rem;
}

.hero.is-fullheight .hero-body,
.hero.is-fullheight-with-navbar .hero-body,
.hero.is-halfheight .hero-body {
  align-items: center;
  display: flex;
}

.button.is-focused:not(:active),
.button:focus:not(:active) {
  box-shadow: none;
}

.descPad {
  margin-left: 3em;
  max-width: 50%;
}

.contactLink {
  margin-top: 1rem;
}

.contactLink a {
  width: auto;
  display: block;
  padding-block: 0.25em;
}

.contactLink a:hover {
  background-color: #f5f5f5;
  color: #485fc7;
}

img {
  border-radius: 1em;
}

.image {
  z-index: -1;
}

.header,
p {
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0px 80px;
  border-bottom: 1px solid #b8c2e5;
}

.header .text {
  font-family: Inter;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: #4a598f;
}

.header .contact {
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #2a3686;
}

/* Banner */
.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 280px;
  background: linear-gradient(32.74deg, #ffffff 47.76%, #8fbaea 123.36%);
  gap: 20px;
  border-bottom: 1px solid #b8c2e5;
}

.banner h1 {
  font-family: Inter;
  font-size: 64px;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: 0.02em;
  color: #2a3686;
}

.banner h3 {
  font-family: Inter;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #4a598f;
}

.main-content {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid #b8c2e5;
}

/* Insurance list section */
.insurance-list {
  display: flex;
  flex-direction: column;
  padding: 72px 72px 80px 72px;
  gap: 20px;
}

.insurance-list .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px 18px 16px;
  height: 70px;
  background: #f0f4f9;
  border: 1px solid #f0f4f9;
  border-radius: 12px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.insurance-list .item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.insurance-list .item .content2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  height: 60px;
}

.insurance-list .item .content2 .text {
  padding-right: 12px;
}

.insurance-list .item .arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  padding-right: 40px;
}

.insurance-list .item .arrow img {
  width: auto;
  height: 30px;
}

.insurance-list .item .content2 .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  background: #2b3abf;
  border-radius: 7px;
}

.insurance-list .item .content2 .icon img {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 0px;
}

.insurance-list .item .content2 .text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;

  color: #2a3686;
}

/* Aside menu */
.side-menu {
  display: flex;
  padding: 72px 64px 0px 80px;
  color: #2a3686;
  background: #e5edf6;
  gap: 40px;
}

aside {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
}

aside h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  padding-bottom: 10px;
  margin: 0px;
}

aside h4 {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #9ea3c6ea;
  border-top: 2px solid #b8c2e5;
  margin: 0px;
  padding-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

aside li {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  border-radius: 7px;
  padding: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}

aside li:hover {
  background-color: #f5f5f5;
}

/* Contact */
section.contact {
  margin: 160px 80px;
  padding: 0;
  font-family: Inter;
  text-align: left;
}

section.contact .content2 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

section.contact .content2 h1 {
  color: #2a3686;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 64px;
}

section.contact .content2 h2 {
  color: #4c5053;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 40px;
}

section.contact .content2 p {
  color: #4c5053;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 24px;
}

section.contact .content2 .map {
  width: 60%;
}

section.contact .content2 iframe {
  border: 0;
  margin: 0;
  padding: 0;
  height: 400px;
  width: 100%;
  border-radius: 8px;
}

/* Footer */

.main-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 80px;
  margin: 0;
  background: #e5edf6;
  font-family: "Inter";
}

.main-footer p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #4c5053;
}

.main-footer a {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #3b68db;
}

@media screen and (max-width: 1240px) {
  .main-content {
    display: flex;
    flex-direction: column;
  }

  .side-menu {
    display: flex;
    /* padding: 40px 16px 32px 16px; */
    color: #4c5053;
    background: #ffffff;
    gap: 40px;
  }

  aside h1 {
    font-size: 34px;
    /* font-weight: 400; */
    padding-bottom: 24px;
  }

  aside h4 {
    display: none;
  }

  aside ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  aside li {
    margin: 0px;
    border: 1px solid #dae3ed;
    border-radius: 8px;

    font-size: 24px;
    font-weight: 400;
    padding: 16px 32px;
    line-height: 30px;
    cursor: pointer;
  }
}

@media screen and (max-width: 1000px) {
  .header .text {
    font-size: 18px;
  }

  .header a {
    font-size: 18px;
  }

  .side-menu {
    display: flex;
    color: #4c5053;
    background: #ffffff;
    gap: 40px;
  }

  aside ul {
    gap: 10px;
  }

  aside li {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    padding: 12px 24px;
    cursor: pointer;
  }

  aside h1 {
    font-size: 34px;
    font-weight: 400;
    padding-bottom: 24px;
  }

  .insurance-list .item .content2 .text {
    font-size: 18px;
  }

  .banner {
    height: 200px;
  }
  .banner h1 {
    font-size: 48px;
  }
  .banner h3 {
    font-size: 22px;
  }

  section.contact {
    margin: 80px 40px;
  }

  section.contact .content2 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  section.contact .content2 .map {
    width: 80%;
  }

  section.contact .content2 iframe {
    width: 100%;
    height: 350px;
  }
}

@media screen and (max-width: 600px) {
  .header {
    height: 60px;
    padding: 0px 20px;
    border-bottom: 1px solid #b8c2e5;
  }

  .header .text {
    font-size: 14px;
    width: 60%;
    line-height: 16px;
  }

  .header .contact {
    font-size: 14px;
  }

  .side-menu {
    display: flex;
    padding: 40px 16px 0px 16px;
    color: #4c5053;
    background: #ffffff;
    gap: 10px;
  }

  aside ul {
    gap: 10px;
  }

  aside li {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    padding: 6px 12px;
    cursor: pointer;
  }

  aside h1 {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .insurance-list {
    padding: 32px 16px 32px 16px;
    gap: 8px;
  }

  .insurance-list .item {
    height: 38px;
    padding: 12px 4px 12px 10px;
  }

  .insurance-list .item .content2 {
    gap: 10px;
    height: 38px;
    margin: 0px;
  }

  .insurance-list .item .content2 .text {
    padding-right: 6px;
    font-size: 14px;
    line-height: 17px;
  }

  .insurance-list .item .arrow {
    padding-right: 12px;
  }

  .insurance-list .item .arrow img {
    width: 14px;
    height: 14px;
  }

  .insurance-list .item .content2 .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-width: 38px;
    width: 38px;
    height: 38px;
  }

  .insurance-list .item .content2 .icon img {
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    padding: 0;
  }

  .banner {
    height: 150px;
  }

  .banner h1 {
    font-size: 28px;
    line-height: 32px;
  }
  .banner h3 {
    font-size: 14px;
    line-height: 17px;
  }

  section.contact {
    margin: 32px 16px 40px 16px;
  }

  section.contact .content2 {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  section.contact .content2 h1 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 32px;
    text-align: center;
  }

  section.contact .content2 h2 {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 20px;
  }

  section.contact .content2 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 14px;
  }

  section.contact .content2 .map {
    margin-top: 26px;
    width: 100%;
  }

  section.contact .content2 iframe {
    width: 100%;
    height: 350px;
  }

  .main-footer {
    flex-direction: column;
    align-items: center;
    padding: 24px 18px;
  }

  .main-footer p {
    order: 2;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4c5053;
    border-top: 1px solid #b8c2e5;
    padding: 10px 0 0 0;
  }

  .main-footer a {
    order: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #3b68db;
    margin-bottom: 24px;
  }
}

/* privacy */

.privacy {
  font-family: Inter;
  margin: 40px 10% 40px 160px;
}

.privacy .breadcrumbs {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #757a9d;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.privacy .breadcrumbs img {
  width: 18px;
  padding: 0 8px;
}

.privacy .breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.privacy .breadcrumbs a.active {
  color: #aaaecc;
  text-decoration: underline;
}

.privacy .content {
  width: 100%;
}

.privacy h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #2a3686;
  margin: 48px 0 64px 0;
}

.privacy h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #4c5053;
  margin-bottom: 16px;
}

.privacy p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: #4c5053;
  margin-bottom: 28px;
}

@media screen and (max-width: 1240px) {
  .privacy {
    font-family: Inter;
    margin: 40px 10% 40px 10%;
  }

  .privacy .content {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .privacy {
    font-family: Inter;
    margin: 14px 16px 14px 16px;
  }

  .privacy h1 {
    font-size: 28px;
    line-height: 32px;
    margin: 32px 0 26px 0;
  }

  .privacy h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
  }

  .privacy p {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 28px;
  }
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  width: 80%;
  width: 480px;
  min-height: 200px;
  box-sizing: border-box;
  padding: 30px 90px 30px 90px;
}

.modal-message {
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  color: #2a3686;
}

.modal-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 12px 32px;
  gap: 10px;
  width: 124px;
  height: 43px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #2a3686;
  background: #f0f4f9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  background: none;
  border: none;
}

.close-button img {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 480px) {
  .modal-content {
    width: 90%;
    padding: 70px 14px 30px 14px;
  }

  .modal-message {
    padding: 0px 8px;
    font-size: 18px;
    line-height: 22px;
  }

  .close-button img {
    width: 40px;
    height: 40px;
  }

  .modal-button {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
  }
}
