/* Primary Colors */
:root {
  --color-primary: rgb(77, 66, 96);
  --color-secondary: #a86f81;
  --gradient-primary: linear-gradient(
    90deg,
    rgba(77, 66, 96, 1) 0%,
    rgba(168, 111, 129, 1) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    rgba(77, 66, 96, 1) 0%,
    rgba(168, 111, 129, 1) 100%
  );
  --text-primary-white: #edecef;
  --text-primary-dark: #4d4260;
  --color-main-bg: #eae8ec;
  --color-elements-bg: #d6d4da;
  --color-stroke-dark: #afaab7;
}

/* Code Colors */
#keyword-color-1 {
  color: #f26d91;
}

#keyword-color-2 {
  color: #bf6bd4;
}

#keyword-color-3 {
  color: #0396a6;
}

#keyword-color-4 {
  color: #f2a922;
}

#keyword-color-5 {
  color: #3e73fe;
}

#keyword-color-6 {
  color: #ffb4a2;
}

#keyword-color-7 {
  color: #bb65fc;
}

#keyword-color-8 {
  color: #17bf93;
}

#keyword-color-9 {
  color: #ff5def;
}

#keyword-color-10 {
  color: #ffb672;
}

#keyword-color-11 {
  color: #088ffe;
}

#keyword-color-12 {
  color: #05f2db;
}

#keyword-color-13 {
  color: #9650d9;
}

#keyword-color-14 {
  color: #ffd55c;
}

#keyword-color-15 {
  color: #d92e4b;
}

#keyword-color-16 {
  color: #15a871;
}

#keyword-color-17 {
  color: #0074e8;
}

#keyword-color-18 {
  color: #f2c7bb;
}

#keyword-color-19 {
  color: #8a1b8c;
}

#keyword-color-20 {
  color: #32dab0;
}
/* /// Updated */

#keyword-color-21 {
  color: #e77c76;
}

#keyword-color-22 {
  color: #fc4349;
}

#keyword-color-23 {
  color: #34a0a4;
}

#keyword-color-24 {
  color: #f7859c;
}

#keyword-color-25 {
  color: #03a688;
}

#keyword-color-26 {
  color: #ea698b;
}

#keyword-color-27 {
  color: #32cd9e;
}

#keyword-color-28 {
  color: #0597f2;
}

#keyword-color-29 {
  color: #f2668b;
}

#keyword-color-30 {
  color: #49d59f;
}

#keyword-color-31 {
  color: #f2e3d5;
}

#keyword-color-32 {
  color: #f28157;
}

#keyword-color-33 {
  color: #cc0099;
}

#keyword-color-34 {
  color: #04bf9d;
}

#keyword-color-35 {
  color: #ff6633;
}

#keyword-color-36 {
  color: #0066ff;
}

#keyword-color-37 {
  color: #ff00cc;
}

#keyword-color-38 {
  color: #00ff99;
}

#keyword-color-39 {
  color: #d9a59a;
}

#keyword-color-40 {
  color: #418ef2;
}

#keyword-color-41 {
  color: #33cc66;
}

#keyword-color-42 {
  color: #ff6666;
}

#keyword-color-43 {
  color: #ff00ff;
}

#keyword-color-44 {
  color: #f2db66;
}

#keyword-color-45 {
  color: #07d9b2;
}

.business {
  background-color: #0074d9;
  color: var(--text-primary-white);
}

.development {
  background-color: #d96277;
  color: var(--text-primary-white);
}

.webdesign {
  background-color: #57989a;
  color: var(--text-primary-white);
}

.html5 {
  background-color: #e34c26;
  color: var(--text-primary-white);
}

.python {
  background-color: #2a7c5b;
  color: var(--text-primary-white);
}

.framework {
  background-color: #553b8c;
  color: var(--text-primary-white);
}

.nodejs {
  background-color: #8c564a;
  color: var(--text-primary-white);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  box-sizing: border-box;
  background-color: var(--color-main-bg);
  font-family: "Roboto", sans-serif;
}

article {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(12, auto);
  grid-column-gap: 0;
  grid-row-gap: 5rem;
  background-color: var(--color-main-bg);
}

/* ------ NAVBAR STYLE -------- */
.navbar-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  transition: flex 0.6s;
  background: var(--color-primary);
}

.section-navbar {
  width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.6s ease-in-out;
  border-bottom: 0.1rem solid var(--color-stroke-dark);
}

.left-btn-container {
  width: 200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#navbar-open {
  background: transparent;
  border: none;
  outline: none;
  margin-right: 1rem;
  cursor: pointer;
  display: none;
}

#navbar-open img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: cover;
}

#logo-link {
  font-size: 1.6rem;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-primary-white);
  text-decoration: none;
  padding: 0;
  transition: 0.6s;
}

#logo-link:hover {
  color: var(--color-secondary);
}

.navbar-list {
  width: 500px;
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.6s ease-in-out;
}

.navbar-link {
  text-decoration: none;
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  text-transform: capitalize;
  padding: 0.8rem 0.8rem;
  border-radius: 0.2rem;
  transition: 0.6s ease-in-out;
}

.navbar-link:hover,
.navbar-link.active {
  background: var(--color-secondary);
}

#navbar-btn {
  outline: none;
  border: none;
  border-radius: 0.2rem;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  background-color: hsl(341, 25%, 55%, 1);
  color: var(--text-primary-white);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  transition: 0.6s ease-in-out;
}

#navbar-btn:hover {
  background-color: hsl(341, 25%, 55%, 0.5);
}

.navbar-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  transform: translateX(-100%);
  transition: transform 0.6s ease-in-out;
  z-index: inherit;
  width: 185px;
  height: 100vh;
  background: var(--color-primary);
  border-radius: 0 0.5rem 0.5rem 0;
  left: 0;
  top: 0;
}

.navbar-mobile.visible {
  transform: translateX(0);
}

.mobile-btn-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#navbar-close {
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: transparent;
  border: none;
  outline: none;
}

#navbar-mobile-logo {
  width: 3rem;
  height: auto;
}

.navbar-mobile-list {
  width: 100%;
  height: auto;
  padding: 1rem;
}

.mobile-list-item {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.6rem;
  border-radius: 0.2rem;
}

.mobile-navbar-link {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0.6rem;
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.2rem;
  text-transform: capitalize;
  border-radius: 0.2rem;
  transition: 0.6s ease-in-out;
}

.mobile-navbar-link.active,
.mobile-navbar-link:hover {
  background-color: hsl(341, 25%, 55%, 1);
}

.mobile-navbar-link.active:hover {
  background-color: hsl(341, 25%, 55%, 0.5);
}

/* ------ END of NAVBAR STYLE -------- */

/* HEADER STYLE */

header {
  grid-area: 1 / 1 / 3 / 6;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(/img/header-bg-xl.png), rgb(77, 66, 96);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-content-container {
  width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.header-text-container {
  position: relative;
  width: 650px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
  margin-bottom: 4rem;
}

h1 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.title-animation {
  animation-name: color-animation;
  animation-duration: 3s;
  animation-delay: 3s;
  animation-iteration-count: infinite;
}

.header-description {
  width: 450px;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

.header-cta-btn {
  outline: none;
  border: none;
  border-radius: 0.2rem;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  background-color: hsl(341, 25%, 55%, 1);
  color: var(--text-primary-white);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  transition: 0.6s ease-in-out;
}

.header-cta-btn:hover {
  background-color: hsl(341, 25%, 55%, 0.5);
}

.header-picture {
  width: 100%;
  height: auto;
  padding: 0 3rem;
}

.header-picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Moving Keywords --- */

.keywords-list {
  padding: 0 1.2rem;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--color-primary);
  list-style-type: none;
  overflow: hidden;
}

.keywords-list li {
  padding: 0.8rem 1.5rem;
  margin-right: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- End of Moving Keywords --- */

/* END of HEADER STYLE */

/* Keywords Section */

#keywords-section {
  grid-area: 3 / 1 / 4 / 6;
}

/* End Of Keywords Section */

/* Latest Projects Section */

#projects-section {
  grid-area: 4 / 1 / 6 / 6;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.section-container {
  width: 1200px;
  height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 4rem;
}

.projects-content-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projects-section-title {
  width: 650px;
  height: auto;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title-tag-span {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary-dark);
  padding-left: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.projects-section-title h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-dark);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.project-list {
  list-style-type: none;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 1rem 0 1rem 0;
}

.list-item {
  width: 800px;
  height: 400px;
  background: var(--color-primary);
  margin-right: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 1rem;
}

.card-img-container {
  width: 400px;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  width: 360px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 1rem 0 2rem;
}

.card-body h3 {
  color: var(--text-primary-white);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  text-transform: capitalize;
}

.card-body span {
  color: var(--color-secondary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.card-body p {
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  text-transform: normal;
  margin-bottom: 0.8rem;
}

.card-bady-list {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 0.8rem;
}

.card-bady-list li::before {
  content: "✓";
  color: #04bf9d;
  margin-right: 0.5rem;
}

.card-bady-list li {
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.card-bady-list li:last-child {
  margin-bottom: none;
}

.card-body button {
  outline: none;
  border: none;
  border-radius: 0.2rem;
  padding: 0.8rem 6rem;
  cursor: pointer;
  background-color: hsl(341, 25%, 55%, 1);
  color: var(--text-primary-white);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  transition: 0.6s ease-in-out;
}

.card-body button:hover {
  background-color: hsl(341, 25%, 55%, 0.5);
}

.projects-btn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: 6rem;
  height: auto;
  border-radius: 1rem;
}

.projects-prev-btn {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  padding: 0.4rem;
  border: 1px solid var(--text-primary-dark);
  background: transparent;
  font-size: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s ease-in-out;
}

.projects-prev-btn img,
.projects-next-btn img {
  width: 1.4rem;
  height: auto;
}

.projects-prev-btn:hover,
.projects-next-btn:hover {
  background: var(--color-secondary);
}

.projects-next-btn {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  padding: 0.4rem;
  border: 1px solid var(--text-primary-dark);
  background: transparent;
  font-size: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s ease-in-out;
}
/* End of Latest Projects Section */

/* Website Banner */
#website-banner-section {
  grid-area: 6 / 1 / 7 / 6;
  width: 100%;
  height: 640px;
  background: radial-gradient(
      circle,
      rgba(77, 66, 96, 0) 0%,
      rgba(77, 66, 96, 1) 100%
    ),
    url(/img/banner-web-xl.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-banner-container {
  width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-text-container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5rem 0 0 2rem;
}

.banner-text-container h4 {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary-white);
  padding-left: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.banner-text-container h2 {
  font-size: 3rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  padding-left: 2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--color-secondary);
}

.banner-text-container p {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  padding-left: 2.5rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.banner-cta-btn {
  width: 12rem;
  height: 3.5rem;
  outline: none;
  border: 0.2rem solid var(--color-secondary);
  cursor: pointer;
  background: var(--color-primary);
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  transition: 0.6s;
  margin-left: 2.5rem;
  margin-right: 5rem;
}

.banner-cta-btn:hover {
  background: var(--color-secondary);
  border: 0.2rem solid var(--text-primary-white);
  color: var(--color-elements-bg);
}

.banner-picture {
  width: 600px;
  height: auto;
}

.banner-picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* End of Website Banner */

/* About Us Section */

#about-section {
  grid-area: 7 / 1 / 8 / 6;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-about-container {
  width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-picture {
  width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
}

.about-text-container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5rem 0 0 2rem;
}

.about-text-container h4 {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary-dark);
  padding-left: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.about-text-container h2 {
  font-size: 3rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-dark);
  padding-left: 2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--color-secondary);
}

.about-text-container p {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: var(--text-primary-dark);
  padding-left: 2.5rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.about-btn-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 80%;
  height: auto;
}

.about-cta-btn {
  width: 12rem;
  height: 3.5rem;
  outline: none;
  border: 0.2rem solid var(--color-primary);
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  transition: 0.6s;
  margin-left: 2.5rem;
  margin-right: 5rem;
}

.about-cta-btn:hover {
  background: var(--color-primary);
  border: 0.2rem solid var(--color-secondary);
  color: var(--color-elements-bg);
}

.about-connect-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: auto;
}

.about-connect-list li {
  width: 2.5rem;
  height: auto;
}

.about-connect-list li a {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-connect-list li a img {
  width: 100%;
  height: auto;
}

/* End of About Us Section */

/* Services Section */

#services-section {
  grid-area: 8 / 1 / 9 / 6;
  width: 100%;
  height: 640px;
  background: radial-gradient(
      circle,
      rgba(77, 66, 96, 0) 0%,
      rgba(77, 66, 96, 1) 100%
    ),
    url(/img/banner-web-xl.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-services-container {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-text-container {
  width: 560px;
  height: auto;
}

.services-text-container h4 {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary-white);
  padding-left: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.services-text-container h2 {
  font-size: 3rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  padding-left: 2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--color-secondary);
}

.services-text-container p {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  padding-left: 2.5rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.services-cta-btn {
  width: 12rem;
  height: 3.5rem;
  outline: none;
  border: 0.2rem solid var(--color-secondary);
  cursor: pointer;
  background: var(--color-primary);
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  transition: 0.6s;
  margin-left: 2.5rem;
}

.services-cta-btn:hover {
  border: 0.2rem solid var(--color-stroke-dark);
  background: var(--color-secondary);
}

.services-list {
  width: 600px;
  height: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.services-list li {
  width: 260px;
  height: 150px;
  padding: 1rem 0.2rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--text-primary-white);
  border: 0.2rem solid var(--color-secondary);
  margin: 1rem;
  cursor: pointer;
  transition: 0.6s;
}

.services-list li:hover {
  background: var(--color-elements-bg);
}

.services-list li img {
  width: 2.5rem;
  height: auto;
  margin-bottom: 1rem;
}

.services-list li span {
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}

.services-list li p {
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  color: var(--text-primary-dark);
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
/* End of Services Section */

/* Quote Section */

#quote-banner-section {
  grid-area: 9 / 1 / 10 / 6;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-quote-container {
  width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-picture {
  width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
}

.quote-text-container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5rem 0 0 2rem;
}

.quote-text-container h4 {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary-dark);
  padding-left: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.quote-text-container h2 {
  font-size: 3rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-dark);
  padding-left: 2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--color-secondary);
}

.quote-text-container p {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: var(--text-primary-dark);
  padding-left: 2.5rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.quote-cta-btn {
  width: 12rem;
  height: 3.5rem;
  outline: none;
  border: 0.2rem solid var(--color-primary);
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  transition: 0.6s;
  margin-left: 2.5rem;
}

.quote-cta-btn:hover {
  background: var(--color-primary);
  border: 0.2rem solid var(--color-secondary);
  color: var(--color-elements-bg);
}

/* End of Quote Section */

/* ----- Articles Section ---- */

#articles-section {
  grid-area: 10 / 1 /11 / 6;
  width: 100%;
  height: 640px;
  background: radial-gradient(
      circle,
      rgba(77, 66, 96, 0) 0%,
      rgba(77, 66, 96, 1) 100%
    ),
    url(/img/banner-web-xl.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-articles-container {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.articles-text-container {
  width: 560px;
  height: auto;
}

.articles-text-container h4 {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary-white);
  padding-left: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.articles-text-container h2 {
  font-size: 3rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  padding-left: 2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--color-secondary);
}

.articles-text-container p {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: var(--text-primary-white);
  padding-left: 2.5rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.articles-more-btn {
  width: 12rem;
  height: 3.5rem;
  outline: none;
  border: 0.2rem solid var(--color-secondary);
  cursor: pointer;
  background: var(--color-primary);
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  transition: 0.6s;
  margin-left: 2.5rem;
}

.articles-more-btn:hover {
  border: 0.2rem solid var(--color-stroke-dark);
  background: var(--color-secondary);
}

.articles-list {
  width: 560px;
  height: auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.article-list-item {
  margin-bottom: 2rem;
}

.article-list-item:last-child {
  margin-bottom: 0;
}

.article-link {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: var(--text-primary-white);
  border: 0.2rem solid var(--color-secondary);
  border-radius: 0.5rem;
  transition: 0.6s;
}

.article-link:hover {
  background: var(--color-elements-bg);
}

.article-link:hover .article-img-container img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.article-img-container {
  width: 160px;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.article-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease-in-out;
}

.article-text-container {
  width: 400px;
  height: 140px;
  padding: 1rem;
}

.article-text-container h3 {
  font-size: 1rem;
  font-weight: 900;
  font-style: normal;
  line-height: 1.4;
  color: var(--text-primary-dark);
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-text-container p {
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: var(--text-primary-dark);
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-primary-dark);
  letter-spacing: 0.1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ----- End of Articles Section ---- */

/* ----- Contact Section ---- */

#contact-banner-section {
  grid-area: 11 / 1 /12 / 6;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-contact-container {
  width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-picture {
  width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
}

.contact-text-container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5rem 0 0 2rem;
}

.contact-text-container h4 {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary-dark);
  padding-left: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.contact-text-container h2 {
  font-size: 3rem;
  font-weight: bold;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--text-primary-dark);
  padding-left: 2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--color-secondary);
}

.contact-text-container p {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: var(--text-primary-dark);
  padding-left: 2.5rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.contact-cta-btn {
  width: 12rem;
  height: 3.5rem;
  outline: none;
  border: 0.2rem solid var(--color-primary);
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--text-primary-white);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  transition: 0.6s;
  margin-left: 2.5rem;
  margin-right: 5rem;
}

.contact-cta-btn:hover {
  background: var(--color-primary);
  border: 0.2rem solid var(--color-secondary);
  color: var(--color-elements-bg);
}

/* ----- End of Contact Section ---- */
footer {
  grid-area: 12 / 1 / 13 / 6;
  width: 100%;
  height: auto;
  background: var(--color-primary);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-footer {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: var(--text-primary-white);
}

.nav-footer li a {
  width: 100%;
  height: auto;
  padding: 0.8rem 2rem;
  text-decoration: none;
  color: var(--text-primary-white);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  border-radius: 1rem;
  transition: 0.6s;
}

.nav-footer li a:hover {
  color: var(--color-secondary);
}

/* ----- ANIMATIONS --- */
@keyframes color-animation {
  0% {
    color: #e77c76;
  }

  25% {
    color: #e77c76;
  }

  50% {
    color: #ffb672;
  }

  75% {
    color: #15a871;
  }

  100% {
    color: #0597f2;
  }
}

/* ----- END of ANIMATIONS --- */

/* ----- MEDIA SCREENS ---- */

@media (max-width: 480px) {
  header {
    background: rgb(77, 66, 96);
  }

  .header-content-container {
    width: 100%;
    height: auto;
  }

  .header-text-container {
    width: 100%;
    height: auto;
    display: flex;
    padding: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }

  .header-logo {
    width: 3rem;
  }

  h1 {
    width: 80%;
    height: auto;
    text-align: center;
    font-size: 2rem;
  }

  .header-cta-btn {
    width: 80%;
    margin-bottom: 1rem;
  }

  .header-description {
    width: 90%;
    height: auto;
    font-size: 0.7rem;
  }

  .header-picture {
    width: 90%;
    height: auto;
  }

  .header-picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 900px) {
  .navbar-list {
    display: none;
  }

  #navbar-open {
    display: initial;
  }
  .navbar-mobile {
    display: initial;
  }
}

@media (max-width: 1200px) {
  header,
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
