@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

.header {
  width: 100%;
  height: 100vh;
}

nav {
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6.25em;
  background: url(./Assets/navbar_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo_sec {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.logo_sec img {
  max-width: 50px;
  max-height: 75px;
}

.logo_sec h2 {
  font-weight: 600;
  letter-spacing: 0.7px;
  color: #fadbac;
}
.services_sec {
  min-width: 60%;
}
.services_sec ul {
  list-style: none;
  color: #fff;
  font-size: 1.125em;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content_sec {
  position: relative;
  width: 100%;
  background-image: url(./Assets/home_page_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closeness {
  margin-left: 6.25em;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.super_cntnt {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5em;
}
.super_cntnt h1 {
  font-size: 4em;
  font-weight: 500;
  color: #0a4458;
}

.super_cntnt p {
  font-weight: 500;
}
.super_cntnt img {
  width: 65%;
  margin: 1.5em;
}

.super_cntnt .buttons {
  display: flex;
  align-items: center;
  gap: 1em;
}

.super_cntnt .buttons a {
  text-decoration: none;
  color: #fadbac;
  background-color: #0a4458;
  padding: 15px 25px;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: 0px 3px 5px #02232eae;
  transition: ease-in-out;
  transition-duration: 0.3s;
}

.super_cntnt .buttons a:nth-child(even) {
  background-color: #faf1c6;
  color: #0a4458;
}

.super_cntnt .buttons a:hover {
  letter-spacing: 0.7px;
  background-color: #0a4458;
  color: #fadbac;
}
.super_img {
  padding-top: 3rem;
}

.super_img img {
  height: 110vh;
}

#olives {
  position: absolute;
  left: -2.5em;
  top: 0px;
  opacity: 30%;
  rotate: 310deg;
  width: 450px;
}

.cntct_btn {
  position: absolute;
  left: 0px;
  bottom: 5em;
}
.cntct_btn a {
  background-color: #e2a625;
  color: #0a4458;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px 45px;
  border-radius: 0 15px 15px 0;
  box-shadow: 1px 3px 5px #02232eae;
  transition: ease-in-out;
  transition-duration: 0.3s;
}

.cntct_btn a:hover {
  padding: 15px 50px;
}


