/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #fbb00f;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 40px 0;
}
section.contact {
  padding:0 0 80px 0;
}
.section-bg {
  background-color: #eee;
}

.card-title {
  text-align: center;
  color: #002060;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
  border-radius: 0.375rem;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 0.375rem;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #002060;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}
.contact .info-item p a {
  color: #111;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner {
  width: 100%;
  position: relative;
  text-align: center;
  background-size: cover;
  text-align: center;
  padding: 60px 0 20px 0;
}
.banner img {
  max-width: 100%;
  border-radius: 0.375rem;
}

@media (max-width: 640px) {
  .container {
      max-width: 100% !important;
  }
  .banner {
    padding: 30px 0 0 0;
  }
}
