@font-face {
  font-family: "Merienda";
  src: url(../Fonts/Main/Merienda/Merienda-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Inter";
  src: url(../Fonts/Inter/Inter-VariableFont_slnt\,wght.ttf);
}
@font-face {
  font-family: "Jacques_Francois";
  src: url(../Fonts/Jacques_Francois/JacquesFrancois-Regular.ttf);
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 {
  margin: 0;
  font-size: 2.5em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.2em;
}

h4 {
  font-size: 1em;
}

p {
  font-size: 0.9em;
}
p[now-in-view] {
  -webkit-animation: bounceIn 1s ease-in-out;
          animation: bounceIn 1s ease-in-out;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

body::-webkit-scrollbar {
  width: 0.4em;
  opacity: 0;
}
body::-webkit-scrollbar, body::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

button {
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-dark-gray);
  color: var(--color-white);
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-light-muted-gray);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
button:hover {
  color: var(--color-deep-blue);
}
button:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
button:focus {
  outline: none;
}

/* Root Variables */
:root {
  /* Page Measurements */
  --page_width: 1px;
  --page_height: 1px;
  /* Page Constants */
  --body_padding: 10vw;
  --header_height: 70px;
}

:root {
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-muted-gray: #E8E8E8;
  --color-light-muted-gray: #D9D9D9;
  --color-medium-gray: #D4C6C6;
  --color-soft-rose: #D2ABAB;
  --color-light-blue-gray: #B4C2CD;
  --color-medium-blue-gray: #C0C0C0;
  --color-medium-blue-gray-rgb: 192, 192, 192;
  --color-dark-gray: #5A5A5D;
  --color-primary-blue: #3D54A0;
  --color-deep-blue: #1F3A93;
  --color-black: #000000;
}

body {
  min-height: 100vh;
  background-color: var(--color-light-gray);
}
body > header {
  font-family: "Jacques_Francois";
  padding: 0 var(--body_padding);
  position: fixed;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--header_height);
  z-index: 100;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
body > header > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
body > header > a > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
body > header > nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body > header > nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body > header > nav > ul:nth-of-type(1) > li > a {
  font-weight: 500;
  font-size: 0.9em;
  color: var(--color-light-gray);
}
body > header > nav > ul:nth-of-type(1) > li.active > a {
  color: var(--color-soft-rose);
  font-weight: 700;
}
body > header > nav > ul:nth-of-type(2) > li {
  margin: auto;
}
body > header > nav > ul:nth-of-type(2) > li > a > svg {
  fill: var(--main_black);
}
body > header > nav > button {
  font-family: "Jacques_Francois";
  font-size: 16px;
  padding: 1% 2%;
  border-radius: 15px;
}
body > div#popupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
body > div#popupOverlay > div {
  background-color: #f4f4f9;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}
body > div#popupOverlay > div > h2 {
  margin-bottom: 10px;
  color: #4c4f91;
}
body > div#popupOverlay > div > p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
body > div#popupOverlay > div > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
body > div#popupOverlay > div > form > label {
  text-align: left;
  font-size: 12px;
  color: #333;
}
body > div#popupOverlay > div > form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  width: 100%;
}
body > div#popupOverlay > div > form > div {
  position: relative;
}
body > div#popupOverlay > div > form > div > span {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
body > main {
  font-family: "Jacques_Francois";
  position: relative;
}
body > main > section {
  padding: 50px var(--body_padding);
  scroll-margin-top: calc(var(--header_height) - 5px);
}
body > main > section#Landing {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
}
body > main > section#Landing > article {
  padding: 0 var(--body_padding);
  padding-top: var(--header_height);
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body > main > section#Landing > article.active {
  opacity: 1;
}
body > main > section#Landing > article:nth-of-type(1) {
  background-image: url("../Img/Page_Backgrond/bg1-Landing-Consaship.png");
  background-color: rgba(0, 0, 0, 0.5);
}
body > main > section#Landing > article:nth-of-type(2) {
  background-image: url("../Img/Page_Backgrond/bg2-Landing-Consaship.png");
  background-color: rgba(0, 0, 0, 0.5);
}
body > main > section#Landing > article:nth-of-type(3) {
  background-image: url("../Img/Page_Backgrond/bg3-Landing-Consaship.png");
  background-color: rgba(0, 0, 0, 0.5);
}
body > main > section#Landing > article:nth-of-type(4) {
  background-image: url("../Img/Page_Backgrond/bg4-Landing-Consaship.png");
  background-color: rgba(0, 0, 0, 0.5);
}
body > main > section#Landing > article > svg {
  margin-left: -5px;
  margin-bottom: 10px;
}
body > main > section#Landing > article > svg > g > path {
  opacity: 0;
  -webkit-animation: letterFadeIn 2s ease forwards;
          animation: letterFadeIn 2s ease forwards;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(3), body > main > section#Landing > article > svg > g > path:nth-of-type(4), body > main > section#Landing > article > svg > g > path:nth-of-type(15) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(6), body > main > section#Landing > article > svg > g > path:nth-of-type(13), body > main > section#Landing > article > svg > g > path:nth-of-type(16) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(7) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(8), body > main > section#Landing > article > svg > g > path:nth-of-type(9), body > main > section#Landing > article > svg > g > path:nth-of-type(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(10) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
body > main > section#Landing > article > svg > g > path:nth-of-type(11), body > main > section#Landing > article > svg > g > path:nth-of-type(12) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
body > main > section#Landing > article > p {
  color: var(--color-light-gray);
  font-size: 1.2rem;
  margin-bottom: 10px;
  -webkit-animation: fade-in-bottom 1s linear 1.8s both;
          animation: fade-in-bottom 1s linear 1.8s both;
}
body > main > section#Landing > article > button {
  font-family: "Jacques_Francois";
  padding: 1% 2%;
  border-radius: 50px;
  z-index: 1;
  display: none;
}
body > main > section#Landing > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}
body > main > section#Landing > div > span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: var(--color-muted-gray);
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
body > main > section#Landing > div > span.active {
  background: var(--color-light-gray);
  width: 20px;
  border-radius: 20px;
}
body > main > section#Feature {
  background-color: var(--color-light-gray);
}
body > main > section#Feature > h2 {
  color: var(--color-deep-blue);
  text-align: center;
}
body > main > section#Feature > article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 80px;
}
body > main > section#Feature > article > div {
  margin-top: 50px;
  width: calc(50% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
body > main > section#Feature > article > div img {
  width: 50px;
  height: 50px;
}
body > main > section#Feature > article > div > div {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body > main > section#Feature > article > div > div > h3 {
  color: var(--color-black);
}
body > main > section#Feature > article > div > div > p {
  color: var(--color-dark-gray);
}
body > main > section#About {
  background-color: var(--color-muted-gray);
  display: grid;
  gap: 40px 30px;
}
body > main > section#About > h2 {
  color: var(--color-primary-blue);
}
body > main > section#About > h2 > span {
  color: var(--color-dark-gray);
  font-size: 0.6em;
}
body > main > section#About > p {
  color: var(--color-dark-gray);
}
body > main > section#About > p > span {
  font-weight: bold;
}
body > main > section#About > div {
  color: var(--color-dark-gray);
  font-size: 0.9em;
}
body > main > section#About > div > h4 {
  margin-top: 20px;
  color: var(--color-primary-blue);
}
body > main > section#About > div > h4 > span {
  color: var(--color-dark-gray);
}
body > main > section#Services {
  background-color: var(--color-light-blue-gray);
}
body > main > section#Services > h2 {
  color: var(--color-white);
}
body > main > section#Services > div {
  display: grid;
  gap: 20px;
}
body > main > section#Services > div > article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body > main > section#Services > div > article > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  background-color: var(--color-medium-gray);
  font-size: 1.2em;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-bottom: -20px;
  z-index: 1;
}
body > main > section#Services > div > article > div {
  text-align: center;
  background-color: var(--color-light-muted-gray);
  padding: 40px 20px;
  border-radius: 15px;
  height: calc(100% - 65px);
}
body > main > section#Services > div > article > div > p {
  color: var(--color-dark-gray);
  margin-top: 10px;
}
body > main > section#Email {
  background-color: var(--color-muted-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - var(--footer_height) - 60px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body > main > section#Email > div > h2 {
  color: var(--color-deep-blue);
  margin-bottom: 10px;
}
body > main > section#Email > div > p {
  color: var(--color-dark-gray);
}
body > main > section#Email > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  height: 100%;
}
body > main > section#Email > form > input {
  background-color: var(--color-light-gray);
  color: var(--color-dark-gray);
  padding: 15px;
  border-radius: 15px;
  border: none;
}
body > main > section#Email > form > input:focus {
  outline: none;
}
body > main > section#Email > form > input:nth-of-type(3) {
  width: 100%;
}
body > main > section#Email > form > textarea {
  background-color: var(--color-light-gray);
  color: var(--color-dark-gray);
  border-radius: 15px;
  border: none;
  padding: 15px;
  width: 100%;
  height: 100px;
  resize: unset;
}
body > main > section#Email > form > textarea:focus {
  outline: none;
}
body > main > section#Email > form > button {
  border-radius: 15px;
  padding: 10px 30px;
}
body > footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px var(--body_padding);
  gap: 20%;
  background-image: url("../Img/Page_Backgrond/bg-Footer-Consaship.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body > footer > section#Info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  color: var(--color-white);
}
body > footer > section#Contact_Us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
body > footer > section#Contact_Us > h2 {
  color: var(--color-white);
  margin-bottom: 10px;
}
body > footer > section#Contact_Us > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
body > footer > section#Contact_Us > div > span > svg {
  background-color: rgba(var(--color-medium-blue-gray-rgb), 0.46);
  padding: 10px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
}
body > footer > section#Contact_Us > div > span > svg > g > path {
  fill: var(--color-white);
}
body > footer > section#Contact_Us > div > p {
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body > footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
body > footer > div > a > img {
  width: 30px;
}