body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}
a {
  color: #fff;
  text-decoration: none;
  line-height: 2;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.7, 0.7);
  }
  to {
    opacity: 1;
  }
}
.fade-in-element {
  animation: fade-in 1.4s;
}
.hidden {
  opacity: 0;
}
h2 {
  width: 380px;
  line-height: 1.3;
}
h3 {
  font-family: "Playfair Display", serif;
}
h1 {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
}
h1,
h2,
h3 {
  font-weight: normal;
  color: #130f41;
}
.sectionHeadline {
  font-size: 3rem;
}
.left button {
  margin: 3rem 0;
  background: #182a51;
  padding: 1rem 1.75rem;
  border-radius: 15px;
  color: #eee8e5;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "Lato";
  -webkit-box-shadow: -9px 10px 42px -4px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: -9px 10px 42px -4px rgba(0, 0, 0, 0.44);
  box-shadow: -9px 10px 42px -4px rgba(0, 0, 0, 0.44);
  transition: all 0.3s;
}
.left button:hover {
  -webkit-box-shadow: -9px 10px 75px -4px rgba(84, 84, 84, 1);
  -moz-box-shadow: -9px 10px 75px -4px rgba(84, 84, 84, 1);
  box-shadow: -9px 10px 75px -4px rgba(84, 84, 84, 1);
}
header {
  background: #fff;
  color: #0c2461;
  padding: 15px 0;
  text-align: center;
}
header img {
  width: 100px;
}

#services ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

#services ul li h3 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

#services ul li {
  border: 1px solid #bb7741;
  padding: 1rem;
  border-radius: 8px;
  max-width: 350px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.header-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1200px;
  margin: auto;
}

#about {
  display: flex;
  gap: 0.25rem;
}

#about .right {
  position: relative;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* #about .right img {
  position: relative;
  bottom: -48px;
  left: -81px;
} */

.about-section {
  display: flex;
  gap: 5%;
}

.about-section image-section {
  width: 50%;
}

.about-section image-section img {
  width: 100%;
}

.about-section .text-section {
  font-size: 1.3rem;
  line-height: 1.5;
}

.about-section .text-section h3 {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
}
nav ul li:hover {
  background: #182a51;
  color: #fff !important;
}
nav ul li:hover a {
  color: #fff !important;
}
nav ul li {
  padding: 0.35rem 0.75rem;
  border-radius: 5px;
  width: 100px;
  display: inline;
  margin: 0 15px;
  transition: all 0.3s;
}
nav ul li a {
  color: #0c2461;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.15rem;
  font-weight: 600;
}
nav ul li a:hover {
  color: #fff;
}
section {
  background: white;
  width: 100%;
  border-radius: 5px;
}
.persona {
  background: #182a51;
  border-radius: 15px;
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
  color: #fff;
}

.persona .left {
  display: flex;
  flex-direction: column;
}
.persona .left p {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.persona .right h2 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0;
}
.persona h3 {
  color: #fff !important;
}
.persona .right p {
  line-height: 2;
  text-align: justify;
}

.persona .right .paragraph img {
  width: 145px;
}
div {
  margin-bottom: 20px;
}
#contact {
  width: 100%;
  background: url("./map.png") no-repeat center;
  background-size: cover;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: end;
}
#contact .details {
  width: 320px;
  padding: 1rem;
  background: #130f40;
  display: block;
  color: #fff;
  border-radius: 15px;
  height: 260px;
}
#contact .details h3 {
  color: #fff;
  margin: 0;
}
#contact a {
  color: #fff;
  text-decoration: none;
  line-height: 1.7;
}
#contact .details .body {
  display: flex;
  gap: 1rem;
}
#contact .details .body .item p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
@media screen and (max-width: 1116px) {
  h2,
  h3 {
    text-align: center;
  }
  .left h2 {
    text-align: left;
  }
  #about .right {
    background: transparent;
  }
  #about .right img {
    width: 100%;
  }
  .about-section {
    display: flex;
    margin: auto;
    gap: 5%;
    flex-direction: column;
    align-items: center;
    width: 80%;
  }
}
@media screen and (max-width: 980px) {
  .about-section img {
    max-width: 95%;
  }
  #about {
    margin: auto;
    width: 80%;
    text-align: center;
  }
  .left h2 {
    text-align: center;
    margin: auto;
  }
  #about .right {
    display: none;
  }
  .persona {
    flex-direction: column;
  }

  .persona h2,
  h3 {
    text-align: left;
  }

  .persona img {
    max-width: 300px;
    width: 70%;
  }
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease-in-out;
}

.social-links a img:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 600px) {
  #about {
    width: 90%;
  }
  header img {
    width: 70px;
  }
  nav ul li {
    padding: 0.25rem 0.45rem;
    margin: 0 5px;
  }
  nav ul li a {
    font-size: 0.9rem;
  }
}
