@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&display=swap");

button,
input {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

html {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #666666;
  box-sizing: border-box;
}

html * {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

/* Container */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #3957ff;
}

.btn-secondary {
  color: #ffffff;
  background-color: #112957;
}

/* form */
.form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.form-label {
  color: #000000;
  margin-bottom: 5px;
}

.form-input {
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #e2e2e2;
  outline: none !important;
}

.form-action {
  width: 100%;
  margin-top: 30px;
}

/* Sections */

.section {
  margin: 100px 0;
}

.section-header {
  margin-bottom: 20px;
}

.section-title {
  color: #000000;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.section-subtitle {
  margin-bottom: 5px;
  font-weight: normal;
}

/* Header */

.nav {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  height: 90px;
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}

.nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-brand {
  color: #112957;
  font-size: 24px;
  font-weight: bolder;
}

.nav-links {
  display: flex;
  flex-direction: row;
  list-style: none;
  flex: 1 0 0;
  padding-left: 0;
  margin: 0 20px;
  justify-content: flex-end;
}

.nav-link {
  margin: 0 5px;
}

.nav-link > a {
  display: inline-block;
  padding: 10px 20px;
  color: #000000;
}

.nav-link > a:hover {
  color: #3957ff;
}

/* Page */

.page {
  padding-top: 90px;
}

/* About */

.about {
  margin-top: 0;
}

.about-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.about-image,
.about-content {
  flex: 1 0 0;
}

.about-image {
  height: 550px;
  background-color: #e9f2f2;
  background-image: url("/src/images/about.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #3957ff;
  background-image: url("/src/images/about-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.about-content-wrapper {
  padding: 20px 40px;
}

.about-title {
  color: #ffffff;
}

.services-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.service-item {
  flex: 1 0 0;
  background-color: #ffffff;
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.service-item:not(:last-child) {
  margin-right: 20px;
}

.service-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  background-color: #3957ffc4;
}

.service-item-image > img {
  width: 150px;
}

.service-item-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  align-items: center;
  text-align: center;
}

.service-item-title {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-container {
  background-color: #3957ff;
  background-image: url("/src/images/about-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 90px 60px;
}

.contact-title {
  color: #ffffff;
}

.contact-form .form-label {
  color: #ffffff;
}
