@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Vazirmatn:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

/* Webkit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: rgb(228, 184, 191);
  border-radius: 20px;
  -webkit-transition: background 0.7s;
  transition: background 0.7s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(206, 196, 239);
}

/* Firefox */
html {
  scrollbar-width: thin;
  /* Makes scrollbar thin (similar to 10px) */
  scrollbar-color: rgb(228, 184, 191) transparent;
}

/* Firefox hover effect (requires a workaround with JavaScript or additional CSS) */
html:hover {
  scrollbar-color: rgb(206, 196, 239) transparent;
}

body {
  font-family: "Syne", sans-serif;
  cursor: pointer;
  background-color: rgb(17, 17, 17);
}

/*

Make WebPage Scalable for small Phones .!
@media (max-width: 576px)

--------------------------------------------------------

Make WebPage Scalable for Phones .!
@media (min-width: 577px) and (max-width: 767px)

--------------------------------------------------------

Make WebPage Scalable for Tablets .!
@media (min-width: 768px) and (max-width: 991px)

--------------------------------------------------------

Make WebPage Scalable for Small Desktops .!
@media (min-width: 1000px) and (max-width: 1200px)

--------------------------------------------------------

Make WebPage Scalable for Desktops .!
@media (min-width : 1400px)

*/
.Header .Container {
  /* Center content and apply margin for screens smaller than 1600px */
  max-width: 1600px;
  max-height: 800px;
  margin: 0 auto;
  position: relative;
  height: 100vh;
}
.Header .Container .Background {
  background-image: url("../../images/Backgrounds/Main-Background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
.Header .Container .Background .Portfolio-Box {
  position: fixed;
  top: 6%;
  left: calc((100% - 1500px) / 2 + 50px);
  background-color: rgb(22, 22, 22);
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 50px 5px 50px;
  border: 2px solid rgb(48, 48, 51);
  border-radius: 2.2rem;
}
.Header .Container .Background .Portfolio-Box .Title {
  margin-bottom: 10px;
}
.Header .Container .Background .Portfolio-Box .Title .Title-Logo img {
  width: auto;
  height: 85px;
}
.Header .Container .Background .Portfolio-Box .Title .Text h1 {
  color: rgb(233, 233, 241);
  font-weight: 600;
  font-size: 35px;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Header .Container .Background .Portfolio-Box .Image {
  margin-bottom: 8px;
}
.Header .Container .Background .Portfolio-Box .Image img {
  width: auto;
  height: 280px;
  max-width: 100%;
}
.Header .Container .Background .Portfolio-Box .Content {
  margin-bottom: 5px;
}
.Header .Container .Background .Portfolio-Box .Content span {
  color: rgb(161, 161, 175);
}
.Header .Container .Background .Portfolio-Box .Content h5 {
  color: rgb(233, 233, 241);
}
.Header .Container .Background .Portfolio-Box .SocialMedia {
  margin-bottom: 10px;
  gap: 10px;
}
.Header .Container .Background .Portfolio-Box .SocialMedia i {
  border: 1px solid rgb(48, 48, 51);
  border-radius: 40%;
  padding: 15px;
  color: rgb(233, 233, 241);
  font-size: 18px;
}
.Header .Container .Background .Portfolio-Box .Button {
  background-color: rgb(206, 196, 239);
  padding: 15px;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
  transition: all 0.3s;
}
.Header .Container .Background .Portfolio-Box .Button a {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.Header .Container .Background .Portfolio-Box .Button:hover {
  transform: scale(1.03);
}
.Header .Container .Background .Header-Content {
  position: fixed;
  top: 7%;
  left: 35%;
  z-index: 3;
}
.Header .Container .Background .Header-Content .Content .Head .Menu li a {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.3);
  font-size: 17px;
  font-weight: 600;
  border: rgb(75, 75, 81);
  border-radius: 20px;
  padding: 10px 16px;
  transition: all 0.6s;
}
.Header .Container .Background .Header-Content .Content .Head .Menu li a:hover {
  color: rgb(233, 233, 241);
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu a i {
  transition: all 0.6s;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu ul {
  top: 70%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: rgb(75, 75, 81);
  border-radius: 20px;
  padding: 10px 16px;
  border: 2px solid rgb(48, 48, 51);
  opacity: 0;
  visibility: hidden;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu ul li a {
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  color: rgba(255, 255, 255, 0.3);
  font-size: 17px;
  font-weight: 600;
  transition: all 0.6s;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu ul li a:hover {
  color: rgb(233, 233, 241);
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu:hover > ul {
  visibility: visible;
  opacity: 1;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu:hover > ul > a > i {
  rotate: 180deg;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu:hover > a > i {
  rotate: 180deg;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu a i {
  transition: all 0.6s;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul {
  left: 0;
  top: 70%;
  width: 83%;
  height: 720%;
  top: 70%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: rgb(75, 75, 81);
  border-radius: 2.2rem;
  padding: 10px 20px;
  border: 2px solid rgb(48, 48, 51);
  opacity: 0;
  visibility: hidden;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li {
  color: rgba(255, 255, 255, 0.3);
  font-size: 17px;
  font-weight: 600;
  padding-right: 2rem;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li:first-child {
  padding-right: 0;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li .Title {
  font-weight: bold;
  color: rgba(255, 255, 255, 0.3);
  display: inline-block;
  border-left: 5px solid rgb(48, 48, 51);
  border-radius: 5px;
  padding-left: 0.5rem;
  margin-bottom: -24%;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li a {
  color: rgb(233, 233, 241);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul .L2 .Title {
  margin-bottom: -22%;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu img {
  border-radius: 2.2rem;
  position: absolute;
  top: 80%;
  left: 57%;
  width: 25%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu:hover > ul {
  opacity: 1;
  visibility: visible;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu:hover > img {
  opacity: 1;
  visibility: visible;
}
.Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu:hover > a > i {
  rotate: 180deg;
}
.Header .Container .Background .Header-Content .Content .NavBar {
  display: inline-block;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 15px 10px 0px 15px;
  border-radius: 2.2rem;
  position: fixed;
  top: 90%;
  right: 20%;
}
.Header .Container .Background .Header-Content .Content .NavBar .Menu li a i {
  padding-top: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  transition: all 0.6s;
}
.Header .Container .Background .Header-Content .Content .NavBar .Menu li a i:hover {
  color: rgb(233, 233, 241);
}
.Header .Container .Background .Header-Content .Content .NavBar .Menu li a #Message {
  background-color: rgb(225, 186, 197);
  color: #000000;
  padding: 13px;
  border-radius: 25px;
  transition: all 0.3s;
}
.Header .Container .Background .Header-Content .Content .NavBar .Menu li a #Message:hover {
  transform: scale(1.05);
}
.Header .Container .Background .Header-Content .Button {
  margin-bottom: 5px;
  margin-right: -5%;
}
.Header .Container .Background .Header-Content .Button a:first-child {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: rgb(75, 75, 81);
  padding: 10px 15px;
  margin-bottom: 7px;
  font-size: 20px;
  transition: all 0.6s;
}
.Header .Container .Background .Header-Content .Button a:first-child:hover {
  color: rgb(233, 233, 241);
}
.Header .Container .Background .Header-Content .Button a:last-child {
  background-color: rgb(206, 196, 239);
  color: rgb(17, 17, 17);
  padding: 15px 25px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
  transition: all 0.3s;
}
.Header .Container .Background .Header-Content .Button a:last-child:hover {
  transform: scale(1.03);
}
.Header .Container .Background .Content {
  max-width: 1400px;
  margin: 0 auto;
}
.Header .Container .Background .Content .Top-Button {
  position: absolute;
  top: 33%;
  left: 34%;
}
.Header .Container .Background .Content .Top-Button a {
  color: rgb(233, 233, 241);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgb(48, 48, 51);
  border-radius: 15px;
  padding: 10px 15px;
}
.Header .Container .Background .Content .Content {
  position: absolute;
  top: 40%;
  left: 34%;
}
.Header .Container .Background .Content .Content h1 {
  color: rgb(228, 184, 191);
  font-size: 65px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Header .Container .Background .Content .Button {
  position: absolute;
  top: 80%;
  left: 34%;
  display: flex;
  align-items: center;
}
.Header .Container .Background .Content .Button a:first-child {
  color: rgb(233, 233, 241);
  font-size: 18px;
  font-weight: 500;
  border: 1px solid rgb(48, 48, 51);
  border-radius: 20px;
  padding: 10px 20px;
  transition: all 0.3s;
}
.Header .Container .Background .Content .Button a:first-child:hover {
  transform: scale(1.03);
}
.Header .Container .Background .Content .Button a:last-child {
  font-size: 16px;
  font-weight: 700;
  color: rgb(75, 75, 81);
  transition: all 0.3s;
}
.Header .Container .Background .Content .Button a:last-child:hover {
  color: rgb(233, 233, 241);
}
.Header .Container .Background .Content .Logo {
  position: absolute;
  top: 72.5%;
  left: 85%;
}
.Header .Container .Background .Content .Logo img {
  filter: invert(100%) brightness(100%);
}
.Header .Container .Background .Content .Logo img {
  width: auto;
  height: 125px;
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.Header .Container .Background .Content .Logo i {
  position: relative;
  right: 50%;
  font-size: 24px;
  color: rgb(233, 233, 241);
}
@media (max-width: 576px) {
  .Header .Container .Background {
    background-image: none;
    height: auto;
  }
  .Header .Container .Background .Portfolio-Box {
    position: static;
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    top: 0;
    left: 0;
  }
  .Header .Container .Background .Portfolio-Box .Title .Title-Logo img {
    height: 70px;
  }
  .Header .Container .Background .Portfolio-Box .Title .Text h1 {
    font-size: 28px;
    line-height: 30px;
  }
  .Header .Container .Background .Portfolio-Box .Image img {
    height: auto;
    max-width: 100%;
  }
  .Header .Container .Background .Portfolio-Box .SocialMedia {
    justify-content: center;
    margin-top: 10px;
  }
  .Header .Container .Background .Portfolio-Box .Button {
    margin-bottom: 15px;
    text-align: center;
  }
  .Header .Container .Background .Header-Content .Header-Content .Head {
    display: none;
  }
  .Header .Container .Background .Content {
    position: static;
    padding: 15px;
  }
  .Header .Container .Background .Content .Top-Button,
  .Header .Container .Background .Content .Content,
  .Header .Container .Background .Content .Button {
    position: static;
    margin: 10px 0;
    text-align: center;
  }
  .Header .Container .Background .Content .Content h1 {
    font-size: 45px;
  }
  .Header .Container .Background .Content .Button {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .Header .Container .Background .Content .Button a {
    width: 100%;
  }
  .Header .Container .Background .Content .Logo {
    display: none;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Header .Container .Background {
    background-image: none;
    height: auto;
  }
  .Header .Container .Background .Portfolio-Box {
    position: static;
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    top: 0;
    left: 0;
  }
  .Header .Container .Background .Portfolio-Box .Title .Title-Logo img {
    height: 70px;
  }
  .Header .Container .Background .Portfolio-Box .Title .Text h1 {
    font-size: 28px;
    line-height: 30px;
  }
  .Header .Container .Background .Portfolio-Box .Image img {
    height: auto;
    max-width: 100%;
  }
  .Header .Container .Background .Portfolio-Box .SocialMedia {
    justify-content: center;
    margin-top: 10px;
  }
  .Header .Container .Background .Portfolio-Box .Button {
    margin-bottom: 15px;
    text-align: center;
  }
  .Header .Container .Background .Header-Content .Head {
    display: none;
  }
  .Header .Container .Background .Header-Content .NavBar {
    position: fixed;
    right: 60%;
  }
  .Header .Container .Background .Content {
    position: static;
    padding: 15px;
  }
  .Header .Container .Background .Content .Top-Button,
  .Header .Container .Background .Content .Content,
  .Header .Container .Background .Content .Button {
    position: static;
    margin: 10px 0;
    text-align: center;
  }
  .Header .Container .Background .Content .Content h1 {
    font-size: 45px;
  }
  .Header .Container .Background .Content .Button {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .Header .Container .Background .Content .Button a {
    width: 100%;
  }
  .Header .Container .Background .Content .Logo {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Header .Container .Background .Portfolio-Box {
    display: none;
  }
  .Header .Container .Background .Header-Content .NavBar {
    display: inline-block;
    position: fixed;
    top: 85%;
    right: 50%;
  }
  .Header .Container .Background .Content {
    position: static;
    padding: 15px;
  }
  .Header .Container .Background .Content .Top-Button,
  .Header .Container .Background .Content .Content,
  .Header .Container .Background .Content .Button {
    position: static;
    margin: 10px 0;
    text-align: center;
  }
  .Header .Container .Background .Content .Content h1 {
    font-size: 45px;
  }
  .Header .Container .Background .Content .Button {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .Header .Container .Background .Content .Button a {
    width: 100%;
  }
  .Header .Container .Background .Content .Logo {
    display: none;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .Header .Container .Background .Portfolio-Box {
    display: none;
  }
  .Header .Container .Background .Header-Content {
    position: fixed;
    top: 7%;
    left: 9%;
  }
  .Header .Container .Background .Header-Content .NavBar {
    display: none;
  }
  .Header .Container .Background .Content .Top-Button {
    position: absolute;
    left: 10%;
  }
  .Header .Container .Background .Content .Content {
    position: absolute;
    left: 10%;
  }
  .Header .Container .Background .Content .Button {
    position: absolute;
    left: 10%;
    align-items: center;
  }
  .Header .Container .Background .Content .Logo {
    display: none;
  }
}
@media (min-width: 1400px) {
  .Header .Container {
    max-width: 1600px;
    max-height: 800px;
    margin: 0 auto;
    position: relative;
    height: 100vh;
  }
  .Header .Container .Background {
    background-image: url("../../images/Backgrounds/Main-Background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
  .Header .Container .Background .Portfolio-Box {
    position: fixed;
    top: 6%;
    left: calc((100% - 1500px) / 2 + 50px);
    background-color: rgb(22, 22, 22);
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 50px 5px 50px;
    border: 2px solid rgb(48, 48, 51);
    border-radius: 2.2rem;
  }
  .Header .Container .Background .Portfolio-Box .Title {
    margin-bottom: 10px;
  }
  .Header .Container .Background .Portfolio-Box .Title .Title-Logo img {
    width: auto;
    height: 85px;
  }
  .Header .Container .Background .Portfolio-Box .Title .Text h1 {
    color: rgb(233, 233, 241);
    font-weight: 600;
    font-size: 35px;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Header .Container .Background .Portfolio-Box .Image {
    margin-bottom: 8px;
  }
  .Header .Container .Background .Portfolio-Box .Image img {
    width: auto;
    height: 280px;
    max-width: 100%;
  }
  .Header .Container .Background .Portfolio-Box .Content {
    margin-bottom: 5px;
  }
  .Header .Container .Background .Portfolio-Box .Content span {
    color: rgb(161, 161, 175);
  }
  .Header .Container .Background .Portfolio-Box .Content h5 {
    color: rgb(233, 233, 241);
  }
  .Header .Container .Background .Portfolio-Box .SocialMedia {
    margin-bottom: 10px;
    gap: 10px;
  }
  .Header .Container .Background .Portfolio-Box .SocialMedia i {
    border: 1px solid rgb(48, 48, 51);
    border-radius: 40%;
    padding: 15px;
    color: rgb(233, 233, 241);
    font-size: 18px;
  }
  .Header .Container .Background .Portfolio-Box .Button {
    background-color: rgb(206, 196, 239);
    padding: 15px;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
    transition: all 0.3s;
  }
  .Header .Container .Background .Portfolio-Box .Button a {
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
  }
  .Header .Container .Background .Portfolio-Box .Button:hover {
    transform: scale(1.03);
  }
  .Header .Container .Background .Header-Content {
    position: fixed;
    top: 7%;
    left: 35%;
    z-index: 3;
  }
}
@media (min-width: 1400px) and (min-width: 1400px) {
  .Header .Container .Background .Header-Content {
    left: calc((100% - 1430px) / 2 + 490px);
  }
}
@media (min-width: 1400px) {
  .Header .Container .Background .Header-Content .Content .Head .Menu li a {
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.3);
    font-size: 17px;
    font-weight: 600;
    border: rgb(75, 75, 81);
    border-radius: 20px;
    padding: 10px 16px;
    transition: all 0.6s;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu li a:hover {
    color: rgb(233, 233, 241);
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu a i {
    transition: all 0.6s;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu ul {
    top: 70%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: rgb(75, 75, 81);
    border-radius: 20px;
    padding: 10px 16px;
    border: 2px solid rgb(48, 48, 51);
    opacity: 0;
    visibility: hidden;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu ul li a {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    color: rgba(255, 255, 255, 0.3);
    font-size: 17px;
    font-weight: 600;
    transition: all 0.6s;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu ul li a:hover {
    color: rgb(233, 233, 241);
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu:hover > ul > a > i {
    rotate: 180deg;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Normal-Menu:hover > a > i {
    rotate: 180deg;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu a i {
    transition: all 0.6s;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul {
    left: 0;
    top: 70%;
    width: 83%;
    height: 720%;
    top: 70%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: rgb(75, 75, 81);
    border-radius: 2.2rem;
    padding: 10px 20px;
    border: 2px solid rgb(48, 48, 51);
    opacity: 0;
    visibility: hidden;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li {
    color: rgba(255, 255, 255, 0.3);
    font-size: 17px;
    font-weight: 600;
    padding-right: 2rem;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li:first-child {
    padding-right: 0;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li .Title {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    border-left: 5px solid rgb(48, 48, 51);
    border-radius: 5px;
    padding-left: 0.5rem;
    margin-bottom: -24%;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul li a {
    color: rgb(233, 233, 241);
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu ul .L2 .Title {
    margin-bottom: -22%;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu img {
    border-radius: 2.2rem;
    position: absolute;
    top: 80%;
    left: 57%;
    width: 25%;
    height: auto;
    opacity: 0;
    visibility: hidden;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu:hover > img {
    opacity: 1;
    visibility: visible;
  }
  .Header .Container .Background .Header-Content .Content .Head .Menu .Mega-Menu:hover > a > i {
    rotate: 180deg;
  }
  .Header .Container .Background .Header-Content .Content .NavBar {
    display: none;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 15px 10px 0px 15px;
    border-radius: 2.2rem;
  }
  .Header .Container .Background .Header-Content .Content .NavBar .Menu li a i {
    padding-top: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    transition: all 0.6s;
  }
  .Header .Container .Background .Header-Content .Content .NavBar .Menu li a i:hover {
    color: rgb(233, 233, 241);
  }
  .Header .Container .Background .Header-Content .Content .NavBar .Menu li a #Message {
    background-color: rgb(225, 186, 197);
    color: #000000;
    padding: 13px;
    border-radius: 25px;
    transition: all 0.3s;
  }
  .Header .Container .Background .Header-Content .Content .NavBar .Menu li a #Message:hover {
    transform: scale(1.05);
  }
  .Header .Container .Background .Header-Content .Button {
    margin-bottom: 5px;
    margin-right: -5%;
  }
  .Header .Container .Background .Header-Content .Button a:first-child {
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    color: rgb(75, 75, 81);
    padding: 10px 15px;
    margin-bottom: 7px;
    font-size: 20px;
    transition: all 0.6s;
  }
  .Header .Container .Background .Header-Content .Button a:first-child:hover {
    color: rgb(233, 233, 241);
  }
  .Header .Container .Background .Header-Content .Button a:last-child {
    background-color: rgb(206, 196, 239);
    color: rgb(17, 17, 17);
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
    transition: all 0.3s;
  }
  .Header .Container .Background .Header-Content .Button a:last-child:hover {
    transform: scale(1.03);
  }
  .Header .Container .Background .Content {
    max-width: 1400px;
    margin: 0 auto;
  }
  .Header .Container .Background .Content .Top-Button {
    position: absolute;
    top: 33%;
    left: 34%;
  }
  .Header .Container .Background .Content .Top-Button a {
    color: rgb(233, 233, 241);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 15px;
    padding: 10px 15px;
  }
  .Header .Container .Background .Content .Content {
    position: absolute;
    top: 40%;
    left: 34%;
  }
  .Header .Container .Background .Content .Content h1 {
    color: rgb(228, 184, 191);
    font-size: 65px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Header .Container .Background .Content .Button {
    position: absolute;
    top: 80%;
    left: 34%;
    display: flex;
    align-items: center;
  }
  .Header .Container .Background .Content .Button a:first-child {
    color: rgb(233, 233, 241);
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 20px;
    padding: 10px 20px;
    transition: all 0.3s;
  }
  .Header .Container .Background .Content .Button a:first-child:hover {
    transform: scale(1.03);
  }
  .Header .Container .Background .Content .Button a:last-child {
    font-size: 16px;
    font-weight: 700;
    color: rgb(75, 75, 81);
    transition: all 0.3s;
  }
  .Header .Container .Background .Content .Button a:last-child:hover {
    color: rgb(233, 233, 241);
  }
  .Header .Container .Background .Content .Logo {
    position: absolute;
    top: 72.5%;
    left: 85%;
  }
  .Header .Container .Background .Content .Logo img {
    filter: invert(100%) brightness(100%);
  }
  .Header .Container .Background .Content .Logo img {
    width: auto;
    height: 125px;
    animation: rotate 2s linear infinite;
  }
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .Header .Container .Background .Content .Logo i {
    position: relative;
    right: 50%;
    font-size: 24px;
    color: rgb(233, 233, 241);
  }
}

.Main-Container {
  /* Center content and apply margin for screens smaller than 1400px */
  max-width: 1400px;
  margin: 0 auto;
}
.Main-Container > * {
  margin-top: 5%;
  margin-left: 33%;
  margin-bottom: 10%;
}
.Main-Container > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .Main-Container > * {
    margin-top: 10%;
    margin-left: 0%;
    margin-bottom: 5%;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container > * {
    margin-top: 3%;
    margin-left: 0%;
    margin-bottom: 5%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container > * {
    margin-top: 3%;
    margin-left: 0%;
    margin-bottom: 5%;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .Main-Container > * {
    margin-top: 9%;
    margin-left: 10%;
    margin-bottom: 5%;
  }
}
.Main-Container .Container-One .Content .Top-Button a {
  color: rgb(233, 233, 241);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgb(48, 48, 51);
  border-radius: 15px;
  padding: 10px 15px;
}
.Main-Container .Container-One .Content .Text {
  margin-top: 3%;
  margin-bottom: 5%;
}
.Main-Container .Container-One .Content .Text h1 {
  color: rgb(228, 184, 191);
  font-size: 55px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Main-Container .Container-One .Cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.Main-Container .Container-One .Cards .Card {
  position: relative;
}
.Main-Container .Container-One .Cards .Card figure img {
  width: 97%;
  border-radius: 30px;
  transition: all 0.3s;
}
.Main-Container .Container-One .Cards .Card figure img:hover {
  transform: scale(1.03);
}
.Main-Container .Container-One .Cards .Card figure figcaption .White {
  z-index: 2;
  background-color: rgb(233, 233, 241);
  color: rgb(17, 17, 17);
  padding: 5px 10px;
  border-radius: 15px;
  margin-top: -20%;
}
.Main-Container .Container-One .Cards .Card figure figcaption .Black {
  z-index: 2;
  background-color: rgb(17, 17, 17);
  color: rgb(233, 233, 241);
  padding: 5px 10px;
  border-radius: 15px;
  margin-top: -20%;
}
.Main-Container .Container-One .Cards .Card figure figcaption span:first-child {
  margin-left: 5%;
}
.Main-Container .Container-One .Cards .Space figure {
  position: relative;
}
.Main-Container .Container-One .Cards .Space figure img {
  width: 97%;
}
@media (max-width: 576px) {
  .Main-Container .Container-One {
    margin-top: 100%;
  }
  .Main-Container .Container-One .Content .Text h1 {
    font-size: 38px;
  }
  .Main-Container .Container-One .Content .Button a {
    width: 100%;
  }
  .Main-Container .Container-One .Crads {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .Main-Container .Container-One .Crads .Card figure img {
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container .Container-One {
    margin-top: 100%;
  }
  .Main-Container .Container-One .Content .Text h1 {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container .Container-One {
    margin-top: 0%;
  }
  .Main-Container .Container-One .Crads .Card figure figcaption .White span,
  .Main-Container .Container-One .Crads .Card figure figcaption .Black span {
    font-size: 25px;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .Main-Container .Container-One .Cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .Main-Container .Container-One .Cards .Card figure img {
    width: 80%;
  }
}
@media (min-width: 1400px) {
  .Main-Container .Container-One .Content .Top-Button a {
    color: rgb(233, 233, 241);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 15px;
    padding: 10px 15px;
  }
  .Main-Container .Container-One .Content .Text {
    margin-top: 3%;
    margin-bottom: 5%;
  }
  .Main-Container .Container-One .Content .Text h1 {
    color: rgb(228, 184, 191);
    font-size: 55px;
    font-weight: 700;
    white-space: nowrap;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-One .Cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .Main-Container .Container-One .Cards .Card figure img {
    width: 97%;
    border-radius: 30px;
    transition: all 0.3s;
  }
  .Main-Container .Container-One .Cards .Card figure img:hover {
    transform: scale(1.03);
  }
  .Main-Container .Container-One .Cards .Card figure figcaption .White {
    z-index: 2;
    background-color: rgb(233, 233, 241);
    color: rgb(17, 17, 17);
    padding: 5px 10px;
    border-radius: 15px;
    margin-top: -20%;
  }
  .Main-Container .Container-One .Cards .Card figure figcaption .Black {
    z-index: 2;
    background-color: rgb(17, 17, 17);
    color: rgb(233, 233, 241);
    padding: 5px 10px;
    border-radius: 15px;
    margin-top: -20%;
  }
  .Main-Container .Container-One .Cards .Card figure figcaption span:first-child {
    margin-left: 5%;
  }
  .Main-Container .Container-One .Cards .Space figure {
    position: relative;
  }
  .Main-Container .Container-One .Cards .Space figure img {
    width: 97%;
  }
}
.Main-Container .Container-Two .Content {
  margin-bottom: 5%;
}
.Main-Container .Container-Two .Content .Top-Button a {
  color: rgb(233, 233, 241);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgb(48, 48, 51);
  border-radius: 15px;
  padding: 10px 15px;
}
.Main-Container .Container-Two .Content .Text {
  margin-top: 3%;
  margin-bottom: 5%;
}
.Main-Container .Container-Two .Content .Text h1 {
  color: rgb(228, 184, 191);
  font-size: 55px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Main-Container .Container-Two .Boxes {
  display: flex;
  gap: 40px;
}
.Main-Container .Container-Two .Boxes .Box {
  border: 1px solid rgb(48, 48, 51);
  border-radius: 2.2rem;
  padding: 25px 55px;
}
.Main-Container .Container-Two .Boxes .Box h2 {
  font-family: Poppins, sans-serif;
  text-align: center;
  font-size: 65px;
  font-weight: 600;
  color: rgb(206, 196, 239);
}
.Main-Container .Container-Two .Boxes .Box span {
  font-size: 20px;
  font-weight: 600;
  color: rgb(233, 233, 241);
}
.Main-Container .Container-Two .Text {
  gap: 50px;
}
.Main-Container .Container-Two .Text .Content-One {
  margin-top: 5%;
}
.Main-Container .Container-Two .Text .Content-One p {
  font-size: 21px;
  color: rgb(233, 233, 241);
}
.Main-Container .Container-Two .Text .Content-One span {
  position: relative;
  text-decoration: underline;
  text-decoration-color: rgb(75, 75, 81);
  text-decoration-thickness: 1px;
}
.Main-Container .Container-Two .Text .Content-One span::after {
  content: "";
  position: absolute;
  bottom: 1.5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgb(206, 196, 239);
  transition: width 0.4s ease-in-out;
}
.Main-Container .Container-Two .Text .Content-One span:hover::after {
  width: 100%;
}
.Main-Container .Container-Two .Text .Content-One .Button {
  margin-top: 5%;
}
.Main-Container .Container-Two .Text .Content-One .Button a {
  background-color: rgb(206, 196, 239);
  color: rgb(17, 17, 17);
  padding: 15px 25px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
  transition: all 0.3s;
}
.Main-Container .Container-Two .Text .Content-One .Button:hover {
  transform: scale(1.02);
}
.Main-Container .Container-Two .Text .Content-Two {
  margin-top: 5%;
  font-family: Poppins, sans-serif;
}
.Main-Container .Container-Two .Text .Content-Two span {
  color: rgb(75, 75, 81);
  font-size: 17px;
}
.Main-Container .Container-Two .Text .Content-Two h6 {
  color: rgb(233, 233, 241);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15%;
}
@media (max-width: 576px) {
  .Main-Container .Container-Two .Content .Text h1 {
    font-size: 34px;
  }
  .Main-Container .Container-Two .Boxes {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-right: 5%;
    gap: 20px;
  }
  .Main-Container .Container-Two .Boxes .Box {
    padding: 25px 25px;
  }
  .Main-Container .Container-Two .Boxes .Box span {
    display: block;
    font-size: 26px;
    text-align: center;
    white-space: nowrap;
  }
  .Main-Container .Container-Two .Text .Content-One p {
    font-size: 18px;
  }
  .Main-Container .Container-Two .Text .Content-One .Button a {
    width: 100%;
    padding-left: 38%;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container .Container-Two .Content .Text h1 {
    font-size: 36px;
  }
  .Main-Container .Container-Two .Text .Content-One p {
    font-size: 25px;
  }
  .Main-Container .Container-Two .Text .Content-One .Button a {
    width: 100%;
    padding-left: 42%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container .Container-Two .Content .Text h1 {
    font-size: 40px;
  }
  .Main-Container .Container-Two .Text .Content-One p {
    font-size: 20px;
  }
  .Main-Container .Container-Two .Text .Content-One .Button a {
    width: 100%;
    padding-left: 38%;
  }
}
@media (min-width: 1400px) {
  .Main-Container .Container-Two .Content {
    margin-bottom: 5%;
  }
  .Main-Container .Container-Two .Content .Top-Button a {
    color: rgb(233, 233, 241);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 15px;
    padding: 10px 15px;
  }
  .Main-Container .Container-Two .Content .Text {
    margin-top: 3%;
    margin-bottom: 5%;
  }
  .Main-Container .Container-Two .Content .Text h1 {
    color: rgb(228, 184, 191);
    font-size: 55px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Two .Boxes {
    display: flex;
    gap: 40px;
  }
  .Main-Container .Container-Two .Boxes .Box {
    border: 1px solid rgb(48, 48, 51);
    border-radius: 2.2rem;
    padding: 25px 55px;
  }
  .Main-Container .Container-Two .Boxes .Box h2 {
    font-family: Poppins, sans-serif;
    text-align: center;
    font-size: 65px;
    font-weight: 600;
    color: rgb(206, 196, 239);
  }
  .Main-Container .Container-Two .Boxes .Box span {
    font-size: 20px;
    font-weight: 600;
    color: rgb(233, 233, 241);
  }
  .Main-Container .Container-Two .Text {
    gap: 50px;
  }
  .Main-Container .Container-Two .Text .Content-One {
    margin-top: 5%;
  }
  .Main-Container .Container-Two .Text .Content-One p {
    font-size: 21px;
    color: rgb(233, 233, 241);
  }
  .Main-Container .Container-Two .Text .Content-One span {
    position: relative;
    text-decoration: underline;
    text-decoration-color: rgb(75, 75, 81);
    text-decoration-thickness: 1px;
  }
  .Main-Container .Container-Two .Text .Content-One span::after {
    content: "";
    position: absolute;
    bottom: 1.5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgb(206, 196, 239);
    transition: width 0.4s ease-in-out;
  }
  .Main-Container .Container-Two .Text .Content-One span:hover::after {
    width: 100%;
  }
  .Main-Container .Container-Two .Text .Content-One .Button {
    margin-top: 5%;
  }
  .Main-Container .Container-Two .Text .Content-One .Button a {
    background-color: rgb(206, 196, 239);
    color: rgb(17, 17, 17);
    padding: 15px 25px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
    transition: all 0.3s;
  }
  .Main-Container .Container-Two .Text .Content-One .Button:hover {
    transform: scale(1.02);
  }
  .Main-Container .Container-Two .Text .Content-Two {
    margin-top: 5%;
    font-family: Poppins, sans-serif;
  }
  .Main-Container .Container-Two .Text .Content-Two span {
    color: rgb(75, 75, 81);
    font-size: 17px;
  }
  .Main-Container .Container-Two .Text .Content-Two h6 {
    color: rgb(233, 233, 241);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15%;
  }
}
.Main-Container .Container-Three .Mega-Card {
  grid-template-columns: repeat(2, 1fr);
}
.Main-Container .Container-Three .Mega-Card .Cards {
  border: 1px solid rgb(48, 48, 51);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2.2rem;
  overflow: hidden;
}
.Main-Container .Container-Three .Mega-Card .Cards .Title {
  margin-left: 8%;
  margin-bottom: 2%;
  margin-top: 6%;
}
.Main-Container .Container-Three .Mega-Card .Cards .Title h3 {
  color: rgb(233, 233, 241);
  font-size: 35px;
  font-weight: 600;
}
.Main-Container .Container-Three .Mega-Card .Cards .Button {
  margin-left: 8%;
}
.Main-Container .Container-Three .Mega-Card .Cards .Button a {
  color: rgb(233, 233, 241);
  border: 1px solid rgb(48, 48, 51);
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
}
.Main-Container .Container-Three .Mega-Card .Cards .Description {
  margin-top: 4%;
  margin-bottom: 5%;
  margin-left: 8%;
}
.Main-Container .Container-Three .Mega-Card .Cards .Description p {
  color: rgb(233, 233, 241);
  font-size: 18px;
}
.Main-Container .Container-Three .Mega-Card .Cards .Image img {
  width: auto;
  height: 400px;
  padding-top: 70px;
}
.Main-Container .Container-Three .Mega-Card .Space {
  margin-left: -5%;
}
@media (max-width: 576px) {
  .Main-Container .Container-Three {
    margin-left: 12%;
  }
  .Main-Container .Container-Three .Mega-Card {
    grid-template-columns: repeat(1, 1fr);
  }
  .Main-Container .Container-Three .Mega-Card .Cards {
    width: 80%;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Image img {
    width: 100%;
    height: auto;
  }
  .Main-Container .Container-Three .Mega-Card .Space {
    margin-left: 0;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container .Container-Three {
    margin-left: 12%;
  }
  .Main-Container .Container-Three .Mega-Card {
    grid-template-columns: repeat(1, 1fr);
  }
  .Main-Container .Container-Three .Mega-Card .Cards {
    width: 80%;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Image img {
    width: 100%;
    height: auto;
  }
  .Main-Container .Container-Three .Mega-Card .Space {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container .Container-Three {
    margin-left: 12%;
  }
  .Main-Container .Container-Three .Mega-Card {
    grid-template-columns: repeat(1, 1fr);
  }
  .Main-Container .Container-Three .Mega-Card .Cards {
    width: 80%;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Image img {
    width: 100%;
    height: auto;
  }
  .Main-Container .Container-Three .Mega-Card .Space {
    margin-left: 0;
  }
}
@media (min-width: 1400px) {
  .Main-Container .Container-Three .Mega-Card {
    grid-template-columns: repeat(2, 1fr);
  }
  .Main-Container .Container-Three .Mega-Card .Cards {
    border: 1px solid rgb(48, 48, 51);
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 2.2rem;
    overflow: hidden;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Title {
    margin-left: 8%;
    margin-bottom: 2%;
    margin-top: 6%;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Title h3 {
    color: rgb(233, 233, 241);
    font-size: 35px;
    font-weight: 600;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Button {
    margin-left: 8%;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Button a {
    color: rgb(233, 233, 241);
    border: 1px solid rgb(48, 48, 51);
    padding: 10px 20px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Description {
    margin-top: 4%;
    margin-bottom: 5%;
    margin-left: 8%;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Description p {
    color: rgb(233, 233, 241);
    font-size: 18px;
  }
  .Main-Container .Container-Three .Mega-Card .Cards .Image img {
    width: auto;
    height: 400px;
    padding-top: 70px;
  }
  .Main-Container .Container-Three .Mega-Card .Space {
    margin-left: -5%;
  }
}
.Main-Container .Container-Four .Content {
  margin-bottom: 5%;
}
.Main-Container .Container-Four .Content .Top-Button a {
  color: rgb(233, 233, 241);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgb(48, 48, 51);
  border-radius: 15px;
  padding: 10px 15px;
}
.Main-Container .Container-Four .Content .Text {
  margin-top: 3%;
  margin-bottom: 5%;
}
.Main-Container .Container-Four .Content .Text h1 {
  color: rgb(228, 184, 191);
  font-size: 55px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Main-Container .Container-Four .Content .Text .Text {
  margin-top: 5%;
  margin-bottom: 10%;
}
.Main-Container .Container-Four .Content .Text .Text p {
  font-size: 21px;
  color: rgb(233, 233, 241);
}
.Main-Container .Container-Four .Content .Text .Text span {
  position: relative;
  text-decoration: underline;
  text-decoration-color: rgb(75, 75, 81);
  text-decoration-thickness: 1px;
}
.Main-Container .Container-Four .Content .Text .Text span::after {
  content: "";
  position: absolute;
  bottom: 1.5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgb(206, 196, 239);
  transition: width 0.4s ease-in-out;
}
.Main-Container .Container-Four .Content .Text .Text span:hover::after {
  width: 100%;
}
.Main-Container .Container-Four .Education h3 {
  font-size: 35px;
  font-weight: 700;
  color: rgb(233, 233, 241);
  margin-bottom: 5%;
}
.Main-Container .Container-Four .Education hr {
  width: 88%;
  height: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3%;
  margin-top: 3%;
}
.Main-Container .Container-Four .Education .Info {
  color: rgb(233, 233, 241);
  gap: 40px;
  font-family: Poppins, sans-serif;
}
.Main-Container .Container-Four .Education .Info span {
  font-size: 14px;
  color: rgb(199, 198, 211);
}
.Main-Container .Container-Four .Education .Info span:last-child {
  color: rgb(233, 233, 241);
  font-weight: 700;
}
.Main-Container .Container-Four .Education .Info h4 {
  font-family: "Syne", sans-serif;
  font-size: 30px;
  line-height: 30px;
}
.Main-Container .Container-Four .Education .Info p {
  margin-right: 130px;
  font-size: 16px;
}
.Main-Container .Container-Four .Education .Space h4 {
  margin-right: 38px;
}
@media (max-width: 576px) {
  .Main-Container .Container-Four .Content .Text h1 {
    font-size: 34px;
  }
  .Main-Container .Container-Four .Content .Text .Text p {
    font-size: 20px;
  }
  .Main-Container .Container-Four .Education h3 {
    text-align: center;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container .Container-Four .Content .Text h1 {
    font-size: 36px;
  }
  .Main-Container .Container-Four .Education h3 {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container .Container-Four .Content .Text h1 {
    font-size: 40px;
  }
  .Main-Container .Container-Four .Education h3 {
    text-align: center;
  }
}
@media (min-width: 1400px) {
  .Main-Container .Container-Four .Content {
    margin-bottom: 5%;
  }
  .Main-Container .Container-Four .Content .Top-Button a {
    color: rgb(233, 233, 241);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 15px;
    padding: 10px 15px;
  }
  .Main-Container .Container-Four .Content .Text {
    margin-top: 3%;
    margin-bottom: 5%;
  }
  .Main-Container .Container-Four .Content .Text h1 {
    color: rgb(228, 184, 191);
    font-size: 55px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Four .Content .Text .Text {
    margin-top: 5%;
    margin-bottom: 10%;
  }
  .Main-Container .Container-Four .Content .Text .Text p {
    font-size: 21px;
    color: rgb(233, 233, 241);
  }
  .Main-Container .Container-Four .Content .Text .Text span {
    position: relative;
    text-decoration: underline;
    text-decoration-color: rgb(75, 75, 81);
    text-decoration-thickness: 1px;
  }
  .Main-Container .Container-Four .Content .Text .Text span::after {
    content: "";
    position: absolute;
    bottom: 1.5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgb(206, 196, 239);
    transition: width 0.4s ease-in-out;
  }
  .Main-Container .Container-Four .Content .Text .Text span:hover::after {
    width: 100%;
  }
  .Main-Container .Container-Four .Education h3 {
    font-size: 35px;
    font-weight: 700;
    color: rgb(233, 233, 241);
    margin-bottom: 5%;
  }
  .Main-Container .Container-Four .Education hr {
    width: 88%;
    height: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 3%;
    margin-top: 3%;
  }
  .Main-Container .Container-Four .Education .Info {
    color: rgb(233, 233, 241);
    gap: 40px;
    font-family: Poppins, sans-serif;
  }
  .Main-Container .Container-Four .Education .Info span {
    font-size: 14px;
    color: rgb(199, 198, 211);
  }
  .Main-Container .Container-Four .Education .Info span:last-child {
    color: rgb(233, 233, 241);
    font-weight: 700;
  }
  .Main-Container .Container-Four .Education .Info h4 {
    font-family: "Syne", sans-serif;
    font-size: 30px;
    line-height: 30px;
  }
  .Main-Container .Container-Four .Education .Info p {
    margin-right: 130px;
    font-size: 16px;
  }
  .Main-Container .Container-Four .Education .Space h4 {
    margin-right: 38px;
  }
}
.Main-Container .Container-Five .Experience h3 {
  font-size: 35px;
  font-weight: 700;
  color: rgb(233, 233, 241);
  margin-bottom: 5%;
}
.Main-Container .Container-Five .Experience hr {
  width: 88%;
  height: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3%;
  margin-top: 3%;
}
.Main-Container .Container-Five .Experience .Info {
  color: rgb(233, 233, 241);
  font-family: Poppins, sans-serif;
}
.Main-Container .Container-Five .Experience .Info span {
  font-size: 13px;
  color: rgb(199, 198, 211);
  position: relative;
  text-decoration: underline;
  text-decoration: none;
  text-decoration-thickness: 1px;
}
.Main-Container .Container-Five .Experience .Info span:last-child {
  color: rgb(199, 198, 211);
  font-weight: 700;
}
.Main-Container .Container-Five .Experience .Info span span::after {
  content: "";
  position: absolute;
  bottom: 1.5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgb(206, 196, 239);
  transition: width 0.4s ease-in-out;
}
.Main-Container .Container-Five .Experience .Info span span:hover::after {
  width: 100%;
}
.Main-Container .Container-Five .Experience .Info h4 {
  font-family: "Syne", sans-serif;
  font-size: 30px;
  line-height: 30px;
}
.Main-Container .Container-Five .Experience .Info h4 .Text {
  color: rgb(233, 233, 241);
  font-size: 14px;
  font-weight: 700;
}
.Main-Container .Container-Five .Experience .Info p {
  margin-right: 130px;
  font-size: 16px;
}
.Main-Container .Container-Five .Experience .Space h4 {
  margin-right: 50px;
}
.Main-Container .Container-Five .Experience .Space p {
  margin-right: 175px;
}
.Main-Container .Container-Five .Experience .Paragraph h4 {
  margin-right: 30px;
}
@media (max-width: 576px) and (max-width: 767px) {
  .Main-Container .Container-Five .Experience h3 {
    text-align: center;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container .Container-Five .Experience h3 {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container .Container-Five .Experience h3 {
    text-align: center;
  }
}
@media (min-width: 1400px) {
  .Main-Container .Container-Five .Experience h3 {
    font-size: 35px;
    font-weight: 700;
    color: rgb(233, 233, 241);
    margin-bottom: 5%;
  }
  .Main-Container .Container-Five .Experience hr {
    width: 88%;
    height: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 3%;
    margin-top: 3%;
  }
  .Main-Container .Container-Five .Experience .Info {
    color: rgb(233, 233, 241);
    gap: 40px;
    font-family: Poppins, sans-serif;
  }
  .Main-Container .Container-Five .Experience .Info span {
    font-size: 14px;
    color: rgb(199, 198, 211);
  }
  .Main-Container .Container-Five .Experience .Info span:last-child {
    color: rgb(233, 233, 241);
    font-weight: 700;
  }
  .Main-Container .Container-Five .Experience .Info h4 {
    font-family: "Syne", sans-serif;
    font-size: 30px;
    line-height: 30px;
  }
  .Main-Container .Container-Five .Experience .Info p {
    margin-right: 130px;
    font-size: 16px;
  }
  .Main-Container .Container-Five .Experience .Space h4 {
    margin-right: 38px;
  }
}
.Main-Container .Container-Six h3 {
  color: rgb(233, 233, 241);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 4%;
}
.Main-Container .Container-Six img {
  width: auto;
  height: 70px;
  border-radius: 20px;
  margin-bottom: 15%;
}
.Main-Container .Container-Six h6 {
  color: rgb(233, 233, 241);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.Main-Container .Container-Six .Card {
  border: 1px solid rgb(48, 48, 51);
  border-radius: 2.2rem;
  padding: 25px 30px;
}
.Main-Container .Container-Six .HTML5,
.Main-Container .Container-Six .CSS3 {
  padding: 25px 32px;
}
.Main-Container .Container-Seven .Content {
  margin-bottom: 6%;
}
.Main-Container .Container-Seven .Content .Top-Button a {
  color: rgb(233, 233, 241);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgb(48, 48, 51);
  border-radius: 15px;
  padding: 10px 15px;
}
.Main-Container .Container-Seven .Content .Text {
  margin-top: 3%;
  margin-bottom: 5%;
}
.Main-Container .Container-Seven .Content .Text h1 {
  color: rgb(228, 184, 191);
  font-size: 55px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper {
  border: 1px solid rgb(48, 48, 51);
  border-radius: 2.2rem;
  width: 93%;
  margin-right: 80px;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper {
  padding: 50px 50px;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Image img {
  width: auto;
  height: 100px;
  border-radius: 2.2rem;
  margin-bottom: 20px;
  margin-right: 20px;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content h2 {
  color: rgb(233, 233, 241);
  font-size: 30px;
  font-weight: 700;
  line-height: 20px;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span {
  color: rgb(199, 198, 211);
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span:last-child {
  color: rgb(233, 233, 241);
  font-weight: 600;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content i {
  color: rgb(206, 196, 239);
  margin-top: 10px;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Command p {
  font-size: 22px;
  font-weight: 400;
  color: rgb(233, 233, 241);
  margin-bottom: 10px;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text {
  margin-top: 4%;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span {
  color: rgb(233, 233, 241);
  font-size: 18px;
  font-weight: 600;
}
.Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span i {
  font-size: 17px;
  margin-left: 5px;
}
.Main-Container .Container-Seven .Swiper-Slides .Button-Next,
.Main-Container .Container-Seven .Swiper-Slides .Button-Prev {
  color: rgb(233, 233, 241);
  border: 1px solid rgb(48, 48, 51);
  padding: 15px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2%;
}
@media (max-width: 576px) {
  .Main-Container .Container-Seven .Content .Text h1 {
    font-size: 38px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper {
    padding: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Image img {
    width: auto;
    height: 80px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content h2 {
    font-size: 20px;
    line-height: 10px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span {
    font-size: 15px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content i {
    font-size: 12px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Command p {
    font-size: 13px;
    margin-left: -8px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span {
    font-size: 12px;
    margin-left: -10px;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container .Container-Seven .Content .Text h1 {
    font-size: 40px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper {
    padding: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Image img {
    width: auto;
    height: 80px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content h2 {
    font-size: 20px;
    line-height: 10px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span {
    font-size: 15px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content i {
    font-size: 12px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Command p {
    font-size: 17px;
    margin-left: -8px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span {
    font-size: 12px;
    margin-left: -10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container .Container-Seven .Content {
    margin-bottom: 6%;
  }
  .Main-Container .Container-Seven .Content .Top-Button a {
    color: rgb(233, 233, 241);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 15px;
    padding: 10px 15px;
  }
  .Main-Container .Container-Seven .Content .Text {
    margin-top: 3%;
    margin-bottom: 5%;
  }
  .Main-Container .Container-Seven .Content .Text h1 {
    color: rgb(228, 184, 191);
    font-size: 55px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper {
    border: 1px solid rgb(48, 48, 51);
    border-radius: 2.2rem;
    width: 93%;
    margin-right: 80px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper {
    padding: 50px 50px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Image img {
    width: auto;
    height: 100px;
    border-radius: 2.2rem;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content h2 {
    color: rgb(233, 233, 241);
    font-size: 30px;
    font-weight: 700;
    line-height: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span {
    color: rgb(199, 198, 211);
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span:last-child {
    color: rgb(233, 233, 241);
    font-weight: 600;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content i {
    color: rgb(206, 196, 239);
    margin-top: 10px;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Command p {
    font-size: 22px;
    font-weight: 400;
    color: rgb(233, 233, 241);
    margin-bottom: 10px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text {
    margin-top: 4%;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span {
    color: rgb(233, 233, 241);
    font-size: 18px;
    font-weight: 600;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span i {
    font-size: 17px;
    margin-left: 5px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .Button-Next,
  .Main-Container .Container-Seven .Swiper-Slides .Button-Prev {
    color: aliceblue;
    border: 1px solid rgb(48, 48, 51);
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 2%;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .Main-Container .Container-Seven .Swiper-Slides .swiper {
    border: 1px solid rgb(48, 48, 51);
    border-radius: 2.2rem;
    width: 93%;
    margin-right: 80px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper {
    padding: 50px 50px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Image img {
    width: auto;
    height: 100px;
    border-radius: 2.2rem;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content h2 {
    color: rgb(233, 233, 241);
    font-size: 30px;
    font-weight: 700;
    line-height: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span {
    color: rgb(199, 198, 211);
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span:last-child {
    color: rgb(233, 233, 241);
    font-weight: 600;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content i {
    color: rgb(206, 196, 239);
    margin-top: 10px;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Command p {
    font-size: 22px;
    font-weight: 400;
    color: rgb(233, 233, 241);
    margin-bottom: 10px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text {
    margin-top: 4%;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span {
    color: rgb(233, 233, 241);
    font-size: 18px;
    font-weight: 600;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span i {
    font-size: 17px;
    margin-left: 5px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .Button-Next,
  .Main-Container .Container-Seven .Swiper-Slides .Button-Prev {
    color: aliceblue;
    border: 1px solid rgb(48, 48, 51);
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 2%;
  }
}
@media (min-width: 1400px) {
  .Main-Container .Container-Seven .Content {
    margin-bottom: 6%;
  }
  .Main-Container .Container-Seven .Content .Top-Button a {
    color: rgb(233, 233, 241);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 15px;
    padding: 10px 15px;
  }
  .Main-Container .Container-Seven .Content .Text {
    margin-top: 3%;
    margin-bottom: 5%;
  }
  .Main-Container .Container-Seven .Content .Text h1 {
    color: rgb(228, 184, 191);
    font-size: 55px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper {
    border: 1px solid rgb(48, 48, 51);
    border-radius: 2.2rem;
    width: 93%;
    margin-right: 80px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper {
    padding: 50px 50px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Image img {
    width: auto;
    height: 100px;
    border-radius: 2.2rem;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content h2 {
    color: rgb(233, 233, 241);
    font-size: 30px;
    font-weight: 700;
    line-height: 20px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span {
    color: rgb(199, 198, 211);
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content span:last-child {
    color: rgb(233, 233, 241);
    font-weight: 600;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Title .Content i {
    color: rgb(206, 196, 239);
    margin-top: 10px;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Command p {
    font-size: 22px;
    font-weight: 400;
    color: rgb(233, 233, 241);
    margin-bottom: 10px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text {
    margin-top: 4%;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span {
    color: rgb(233, 233, 241);
    font-size: 18px;
    font-weight: 600;
  }
  .Main-Container .Container-Seven .Swiper-Slides .swiper .swiper-wrapper .Text span i {
    font-size: 17px;
    margin-left: 5px;
  }
  .Main-Container .Container-Seven .Swiper-Slides .Button-Next,
  .Main-Container .Container-Seven .Swiper-Slides .Button-Prev {
    color: rgb(233, 233, 241);
    border: 1px solid rgb(48, 48, 51);
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 2%;
  }
}
.Main-Container .Container-Eight .Content {
  margin-bottom: 7%;
}
.Main-Container .Container-Eight .Content .Top-Button a {
  color: rgb(233, 233, 241);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgb(48, 48, 51);
  border-radius: 15px;
  padding: 10px 15px;
}
.Main-Container .Container-Eight .Content .Text {
  margin-top: 3%;
  margin-bottom: 5%;
}
.Main-Container .Container-Eight .Content .Text h1 {
  color: rgb(228, 184, 191);
  font-size: 55px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Main-Container .Container-Eight .Input-Container .Inputs {
  display: flex;
  gap: 150px;
}
.Main-Container .Container-Eight .Input-Container .Inputs .Input input {
  width: 130%;
  height: 100%;
  padding: 6px;
  border: none;
  background-color: rgb(17, 17, 17);
  color: rgb(199, 198, 211);
  font-weight: 500;
  font-size: 23px !important;
  border-bottom: 2px solid rgb(75, 75, 81);
  outline: none;
  resize: none;
  font-size: 16px;
  margin-top: 5%;
}
.Main-Container .Container-Eight .Input-Container .Inputs .Input input:focus {
  border-bottom: 2px solid rgb(225, 186, 197);
}
.Main-Container .Container-Eight .Input-Container .Inputs textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border: none;
  background-color: rgb(17, 17, 17);
  color: #ddd;
  font-size: 23px !important;
  font-weight: 500;
  border-bottom: 2px solid rgb(75, 75, 81);
  outline: none;
  resize: none;
  margin-top: 7%;
}
.Main-Container .Container-Eight .Input-Container .Inputs textarea:focus {
  width: 100%;
  border-bottom: 2px solid rgb(225, 186, 197);
}
.Main-Container .Container-Eight .Input-Container .row-2 input {
  margin-top: 10% !important;
  width: 100%;
  height: 100%;
  padding: 6px;
  border: none;
  background-color: rgb(17, 17, 17);
  color: rgb(199, 198, 211);
  font-weight: 500;
  font-size: 23px !important;
  border-bottom: 2px solid rgb(75, 75, 81);
  outline: none;
  outline: none;
  resize: none;
  font-size: 16px;
  margin-top: 5%;
}
.Main-Container .Container-Eight .Input-Container .Button {
  margin-top: 5%;
}
.Main-Container .Container-Eight .Input-Container .Button a {
  background-color: rgb(206, 196, 239);
  color: rgb(17, 17, 17);
  padding: 15px 25px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
}
@media (max-width: 576px) {
  .Main-Container .Container-Eight .Content .Text h1 {
    font-size: 38px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs {
    display: grid;
    gap: 20px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs .Input input {
    width: 90%;
    height: 100%;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs textarea {
    width: 95%;
    height: 100px;
    margin-top: 18%;
  }
  .Main-Container .Container-Eight .Input-Container .Button {
    margin-top: 10%;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Main-Container .Container-Eight .Content .Text h1 {
    font-size: 44px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs {
    display: grid;
    gap: 20px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs .Input input {
    width: 90%;
    height: 100%;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs textarea {
    width: 90%;
    height: 100px;
    margin-top: 15%;
  }
  .Main-Container .Container-Eight .Input-Container .Button {
    margin-top: 10%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Main-Container .Container-Eight .Content .Text h1 {
    font-size: 55px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs {
    display: block;
    gap: 20px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs .Input input {
    width: 90%;
    height: 100%;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs textarea {
    width: 95%;
    height: 100px;
    margin-top: 8%;
  }
  .Main-Container .Container-Eight .Input-Container .Button {
    margin-top: 10%;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .Main-Container .Container-Eight .Input-Container .Inputs {
    display: flex;
    gap: 150px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs .Input input {
    width: 130%;
    height: 100%;
    padding: 6px;
    border: none;
    background-color: rgb(17, 17, 17);
    color: rgb(199, 198, 211);
    font-weight: 500;
    font-size: 23px !important;
    border-bottom: 2px solid rgb(75, 75, 81);
    outline: none;
    resize: none;
    font-size: 16px;
    margin-top: 5%;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs .Input input:focus {
    border-bottom: 2px solid rgb(225, 186, 197);
  }
  .Main-Container .Container-Eight .Input-Container .Inputs textarea {
    width: 88%;
    height: 150px;
    padding: 10px;
    border: none;
    background-color: rgb(17, 17, 17);
    color: #ddd;
    font-size: 23px !important;
    font-weight: 500;
    border-bottom: 2px solid rgb(75, 75, 81);
    outline: none;
    resize: none;
    margin-top: 7%;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs textarea:focus {
    border-bottom: 2px solid rgb(225, 186, 197);
  }
  .Main-Container .Container-Eight .Input-Container .row-2 input {
    margin-top: 10% !important;
    width: 100%;
    height: 100%;
    padding: 6px;
    border: none;
    background-color: rgb(17, 17, 17);
    color: rgb(199, 198, 211);
    font-weight: 500;
    font-size: 23px !important;
    border-bottom: 2px solid rgb(75, 75, 81);
    outline: none;
    outline: none;
    resize: none;
    font-size: 16px;
    margin-top: 5%;
  }
  .Main-Container .Container-Eight .Input-Container .Button {
    margin-top: 5%;
  }
  .Main-Container .Container-Eight .Input-Container .Button a {
    background-color: rgb(206, 196, 239);
    color: rgb(17, 17, 17);
    padding: 15px 25px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
  }
}
@media (min-width: 1400px) {
  .Main-Container .Container-Eight .Content {
    margin-bottom: 7%;
  }
  .Main-Container .Container-Eight .Content .Top-Button a {
    color: rgb(233, 233, 241);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgb(48, 48, 51);
    border-radius: 15px;
    padding: 10px 15px;
  }
  .Main-Container .Container-Eight .Content .Text {
    margin-top: 3%;
    margin-bottom: 5%;
  }
  .Main-Container .Container-Eight .Content .Text h1 {
    color: rgb(228, 184, 191);
    font-size: 55px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs {
    display: flex;
    gap: 150px;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs .Input input {
    width: 130%;
    height: 100%;
    padding: 6px;
    border: none;
    background-color: rgb(17, 17, 17);
    color: rgb(199, 198, 211);
    font-weight: 500;
    font-size: 23px !important;
    border-bottom: 2px solid rgb(75, 75, 81);
    outline: none;
    resize: none;
    font-size: 16px;
    margin-top: 5%;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs .Input input:focus {
    border-bottom: 2px solid rgb(225, 186, 197);
  }
  .Main-Container .Container-Eight .Input-Container .Inputs textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: none;
    background-color: rgb(17, 17, 17);
    color: #ddd;
    font-size: 23px !important;
    font-weight: 500;
    border-bottom: 2px solid rgb(75, 75, 81);
    outline: none;
    resize: none;
    margin-top: 7%;
  }
  .Main-Container .Container-Eight .Input-Container .Inputs textarea:focus {
    width: 100%;
    border-bottom: 2px solid rgb(225, 186, 197);
  }
  .Main-Container .Container-Eight .Input-Container .row-2 input {
    margin-top: 10% !important;
    width: 100%;
    height: 100%;
    padding: 6px;
    border: none;
    background-color: rgb(17, 17, 17);
    color: rgb(199, 198, 211);
    font-weight: 500;
    font-size: 23px !important;
    border-bottom: 2px solid rgb(75, 75, 81);
    outline: none;
    outline: none;
    resize: none;
    font-size: 16px;
    margin-top: 5%;
  }
  .Main-Container .Container-Eight .Input-Container .Button {
    margin-top: 5%;
  }
  .Main-Container .Container-Eight .Input-Container .Button a {
    background-color: rgb(206, 196, 239);
    color: rgb(17, 17, 17);
    padding: 15px 25px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(206, 196, 239));
  }
}

.Footer {
  /* Center content and apply margin for screens smaller than 1500px */
  max-width: 1500px;
  margin: 0 auto;
}
.Footer .Main-Container {
  margin-left: 3%;
  margin-bottom: 10%;
}
.Footer .Main-Container .SocialMedia {
  margin-bottom: 10px;
}
.Footer .Main-Container .SocialMedia i {
  border: 1px solid rgb(48, 48, 51);
  border-radius: 2.2rem;
  padding: 40px 58px;
  color: rgb(75, 75, 81);
  font-size: 50px;
  transition: all 0.3s ease-in-out;
}
.Footer .Main-Container .SocialMedia i:hover {
  transform: scale(1.05);
  color: rgb(233, 233, 241);
}
.Footer .Main-Container .Content .Text {
  margin-top: 5%;
}
.Footer .Main-Container .Content .Text p {
  color: rgb(228, 184, 191);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 4%;
  background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.Footer .Main-Container .Content .Text hr {
  width: 100%;
  height: 3px;
  color: rgb(199, 198, 211);
  margin-bottom: 3%;
}
.Footer .Main-Container .Content .Info {
  display: flex;
  gap: 200px;
  font-family: "Poppins", sans-serif;
}
.Footer .Main-Container .Content .Info span {
  color: rgb(233, 233, 241);
  font-weight: 700;
}
.Footer .Main-Container .Content .Info h6 {
  font-weight: 400;
  color: rgb(161, 161, 175);
}
@media (max-width: 576px) {
  .Footer .Main-Container {
    margin-left: 0%;
  }
  .Footer .Main-Container .Container .SocialMedia i {
    display: none;
  }
  .Footer .Main-Container .Container .Content .Text p {
    font-size: 24px;
  }
  .Footer .Main-Container .Container .Content .Text hr {
    width: 93%;
  }
  .Footer .Main-Container .Container .Content .Info {
    margin-top: 10px;
    display: grid;
    gap: 10px;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .Footer .Main-Container {
    margin-left: 0%;
  }
  .Footer .Main-Container .Container .SocialMedia i {
    display: none;
  }
  .Footer .Main-Container .Container .Content .Text p {
    font-size: 28px;
  }
  .Footer .Main-Container .Container .Content .Text hr {
    width: 93%;
  }
  .Footer .Main-Container .Container .Content .Info {
    margin-top: 10px;
    display: grid;
    gap: 10px;
  }
  .Footer .Main-Container .Container .Content .Info span {
    font-size: 20px;
  }
  .Footer .Main-Container .Container .Content .Info h6 {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Footer .Main-Container {
    margin-left: 0%;
  }
  .Footer .Main-Container .Container .SocialMedia i {
    display: none;
  }
  .Footer .Main-Container .Container .Content .Text p {
    font-size: 35px;
  }
  .Footer .Main-Container .Container .Content .Text hr {
    width: 93%;
  }
  .Footer .Main-Container .Container .Content .Info {
    margin-top: 10px;
    display: grid;
    gap: 10px;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .Footer .Main-Container {
    margin-left: 0%;
  }
  .Footer .Main-Container .Container .SocialMedia i {
    display: block;
  }
  .Footer .Main-Container .Container .Content .Text p {
    font-size: 35px;
  }
  .Footer .Main-Container .Container .Content .Text hr {
    width: 93%;
  }
  .Footer .Main-Container .Container .Content .Info {
    margin-top: 10px;
    display: flex;
    gap: 250px;
  }
}
@media (min-width: 1400px) {
  .Footer .Main-Container {
    margin-left: 3%;
    margin-bottom: 10%;
  }
  .Footer .Main-Container .SocialMedia {
    margin-bottom: 10px;
  }
  .Footer .Main-Container .SocialMedia i {
    border: 1px solid rgb(48, 48, 51);
    border-radius: 2.2rem;
    padding: 40px 58px;
    color: rgb(75, 75, 81);
    font-size: 50px;
    transition: all 0.3s ease-in-out;
  }
  .Footer .Main-Container .SocialMedia i:hover {
    transform: scale(1.05);
    color: rgb(233, 233, 241);
  }
  .Footer .Main-Container .Content .Text {
    margin-top: 5%;
  }
  .Footer .Main-Container .Content .Text p {
    color: rgb(228, 184, 191);
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 4%;
    background: linear-gradient(to right, rgb(225, 186, 197), rgb(233, 233, 241), rgb(206, 196, 239));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .Footer .Main-Container .Content .Text hr {
    width: 100%;
    height: 3px;
    color: rgb(199, 198, 211);
    margin-bottom: 3%;
  }
  .Footer .Main-Container .Content .Info {
    display: flex;
    gap: 200px;
    font-family: "Poppins", sans-serif;
  }
  .Footer .Main-Container .Content .Info span {
    color: rgb(233, 233, 241);
    font-weight: 700;
  }
  .Footer .Main-Container .Content .Info h6 {
    font-weight: 400;
    color: rgb(161, 161, 175);
  }
}/*# sourceMappingURL=style.css.map */