* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  text-decoration: none;
  list-style: none;
  color: black;
}

:root {
  --color-Ellipse-1: #c8aad3;
  --color-Ellipse-2: #799dcb;
  --color-Ellipse-3: #7c38bd;
  --color-Ellipse-4: #bd6df2;
  --color-Ellipse-5: #a696c7;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  src: url("../../fonts/Quicksand-VariableFont_wght.ttf");
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand";
}

/* Header */

.header {
  width: 100%;
  height: 101px;
  background-color: #2a1a7b;

  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}

.header-container-mobile {
  display: none;
}

.header-container {
  width: 1440px;
  height: 101px;

  display: flex;
  justify-content: space-around;
  align-items: center;
}

.menu {
  width: 60%;
}

.menu-ul {
  display: flex;
  gap: 50px;
}

.menu-ul > li,
.menu-ul > li > a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;

  /*  */
  height: 101px;
  transition: 0.2s;
}

.menu-ul > li > a:hover {
  color: #d3afee;
  text-decoration: underline;
}

.chevron-down-1,
.chevron-down-2 {
  color: white;
  font-size: 12px;
  padding-top: 5px;
  transition: 0.5s;
  transform: rotate(0);
}

.container-Btns-header {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  gap: 20px;
}

.Contact-Us {
  border: var(--color-Ellipse-4) 3px solid;
  padding: 10px 25px;
  color: var(--color-Ellipse-4);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 1;
  transition: 0.5s;
}

.Contact-Us:hover {
  opacity: 0.7;
}

/* Serv Sec */
.serv-sec:hover .chevron-down-1 {
  transform: rotate(180deg);
  padding-bottom: 10px;
}

.serv-sec:hover .container-sub-serv-sec {
  display: flex;
}

.container-sub-serv-sec {
  position: absolute;
  top: 101px;
  left: 0;
  width: 100%;
  height: 427px;

  background-image: url("../../images/Header-Footer/Frame\ 25.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  cursor: default;

  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sub-serv-sec {
  max-width: 1440px;
  width: 100%;
  height: 100%;
  display: flex;

  justify-content: flex-end;
  gap: 102px;
  padding-right: 193px;
  padding-top: 60px;
}

.sub-serv-sec > ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sub-serv-sec > ul > a {
  font-size: 20px;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}

.sub-serv-sec > ul > li {
  font-size: 16px;
  color: white;
  font-weight: 400;
}

.sub-serv-sec > a {
  font-size: 20px;
  color: white;
  font-weight: 500;
  height: fit-content;
}

.sub-serv-sec > ul > a:hover,
.sub-serv-sec > a:hover {
  text-decoration: underline;
}

#Our-Brochure-btn-2 {
  position: absolute;
  bottom: 20px;
  font-size: 20px;
  color: var(--color-Ellipse-4);
  text-decoration: underline;
}

#Our-Brochure-btn-2:hover {
  color: #c48ff3;
}

/* Case-Sec */
.case-sec:hover .chevron-down-2 {
  transform: rotate(180deg);
  padding-bottom: 10px;
}

.case-sec:hover .container-sub-case-sec {
  display: flex;
}

.container-sub-case-sec {
  position: absolute;
  top: 101px;
  left: 0;
  width: 100%;
  height: 427px;

  background-image: url("../../images/Header-Footer/Frame\ 25.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  cursor: default;

  display: none;
  justify-content: center;
  align-items: center;
}

.sub-case-sec {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 192px;
  gap: 105px;
}

.sub-case-sec > a {
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.sub-case-sec > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub-case-sec > ul > a {
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.sub-case-sec > ul > a:hover,
.sub-case-sec > a:hover {
  text-decoration: underline;
}

@media (max-width: 1400px) {
  .container-Btns-header {
    gap: 1.43vw;
  }

  .Contact-Us {
    border: var(--color-Ellipse-4) 0.213vw solid;
    padding: 0.71vw 1.785vw;
    border-radius: 0.357vw;
    font-size: 1.285vw;
  }
}

@media (max-width: 1300px) {
  .menu-ul {
    gap: 3.84vw;
  }

  .menu-ul > li,
  .menu-ul > li > a {
    font-size: 1.38vw;
    gap: 0.38vw;
    height: 7.77vw;
  }

  .logo-img {
    width: 13.46vw;
  }

  /* serv */

  .container-sub-serv-sec {
    top: 7.76vw;
    height: 32.84vw;
  }

  .sub-serv-sec {
    gap: 7.84vw;
    padding-right: 14.84vw;
    padding-left: 10.5vw;
    padding-top: 4.61vw;
  }

  .sub-serv-sec > ul {
    gap: 1.15vw;
  }

  .sub-serv-sec > ul > li {
    font-size: 1.23vw;
  }

  .sub-serv-sec > ul > a,
  .sub-serv-sec > a {
    font-size: 1.53vw;
  }

  /* case */

  .container-sub-case-sec {
    top: 7.76vw;
    height: 32.84vw;
  }

  .sub-case-sec {
    gap: 8.07vw;
    padding-right: 14.76vw;
  }

  .sub-case-sec > ul {
    gap: 1.53vw;
  }

  .sub-case-sec > ul > a,
  .sub-case-sec > a {
    font-size: 1.53vw;
  }

  .sub-case-sec > ul > li img {
    width: 22.84vw;
  }

  /*  */

  #Our-Brochure-btn-2 {
    bottom: 1.53vw;
    font-size: 1.53vw;
  }
}

@media (max-width: 1040px) {
  .header {
    height: 9.5vw;
  }

  .header-container {
    height: 9.5vw;
  }

  .chevron-down-1,
  .chevron-down-2 {
    font-size: 1.2vw;
  }
}

@media (max-width: 701px) {
  #Our-Brochure-btn-2 {
    bottom: 0%;
  }
}

@media (max-width: 501px) {
  .header-container {
    display: none;
  }

  .header {
    height: fit-content;
    background-color: #2a1a7b;
  }

  .header-container-mobile {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .header-container-mobile-top {
    width: 100%;
    height: 53px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 1000;
  }

  .header-container-mobile-top > i {
    font-size: 30px;
    cursor: pointer;
  }

  .header-container-mobile-bottom {
    position: absolute;
    z-index: 900;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #2a1a7b;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 9.98vw;
    padding-top: 29.94vw;
    gap: 9.98vw;
    transition: 0.5s;
  }

  .header-container-mobile-bottom-ul {
    display: flex;
    flex-direction: column;
    gap: 9.98vw;
  }

  .header-container-mobile-bottom-ul > li,
  .header-container-mobile-bottom-ul > li > a {
    font-size: 4.79vw;
    font-weight: 500;
    color: white;
    cursor: default;
  }

  .chevron-down-mobile-1,
  .chevron-down-mobile-2 {
    font-size: 3.19vw;
    color: white;
    transition: 0.5s;
  }

  .serv-mobile,
  .serv-case {
    display: flex;
    flex-direction: column;
    gap: 3.19vw;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
  }

  .serv-mobile > li > a,
  .serv-case > li > a {
    font-size: 3.19vw;
    font-weight: 400;
    color: white;
    cursor: default;
  }

  .serv-mobile > li:nth-of-type(1),
  .serv-case > li:nth-of-type(1) {
    padding-top: 4.79vw;
  }

  /* .serv-mobile-btn:hover .serv-mobile {
        height: 37.92vw;
    } */

  .header-container-mobile-bottom .Contact-Us-mobile {
    color: var(--color-Ellipse-4);
    border: 0.6vw solid var(--color-Ellipse-4);
    font-size: 3.19vw;
    font-weight: 500;
    padding: 1.99vw 5.59vw;
    border-radius: 0.99vw;
  }

  #Our-Brochure-btn-3 {
    color: var(--color-Ellipse-4);
    text-decoration: underline;
    font-size: 4.4vw;
    font-weight: 500;
  }

  .Contact-Us {
    padding: 1.9vw 19.96vw;
    border-radius: 0.99vw;
    font-size: 3.59vw;
  }
}
