@keyframes bananime {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translate(-50%);
  }
  50% {
    opacity: 0.9;
  }
  to {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}
.bannerAnimation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  display: none;
}

.bannerItem {
  display: block;
  width: 300px;
}

.bannerAnime {
  animation: bananime 4s infinite;
}

.banner {
  position: relative;
  min-height: calc(100vh - 80px);
  padding-top: 3rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.banner .contentWrapper {
  position: relative;
}
.banner .banner-swiper {
  width: 100%;
}
.banner .swiper-slide {
  display: flex;
  justify-content: space-between;
  height: auto;
  padding-top: 2.5rem;
}
@media (max-width: 1000px) {
  .banner .swiper-slide {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
}
.banner .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}
.banner .vector {
  max-width: 470px;
}
.banner .vector img {
  width: 470px;
}
@media (max-width: 470px) {
  .banner .vector img {
    width: 100%;
  }
}
.banner #swiper-slide-2 .button {
  background-color: #E21818;
}
.banner #swiper-slide-2 .title, .banner #swiper-slide-2 .text {
  color: #272727;
}
.banner #swiper-slide-2 .heroty-gradient {
  background: linear-gradient(277.78deg, #2e0404 0.22%, #ed1818 45.07%, #2e0404 82.54%, #2e0404 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.banner #swiper-slide-2 .content {
  max-width: 580px;
}
.banner #swiper-slide-2 .vector {
  display: flex;
  justify-content: center;
  max-width: 600px;
}
.banner #swiper-slide-2 .vector img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.banner #swiper-slide-3 .button {
  background-color: #6b5acc;
}
.banner .swiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  height: fit-content;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.banner .swiper-pagination-bullet {
  position: relative;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  opacity: 1;
  background: rgba(37, 37, 37, 0.15);
  cursor: pointer;
  overflow: hidden;
}
.banner .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #67cfb4;
  transform-origin: left;
  animation: bulletFill 2.5s linear forwards;
}
@keyframes bulletFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.banner .title {
  position: relative;
  font-weight: 700;
  font-size: clamp(24px, 8vw, 48px);
  margin-bottom: 30px;
  z-index: 1;
}
.banner .subTitle {
  position: relative;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 30px;
  z-index: 1;
}
.banner .text {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
  z-index: 1;
}
.banner .scrollIndicatorWrapper {
  position: relative;
  display: block;
  margin: 0 auto 2rem;
}
@media (max-width: 1200px) {
  .banner .scrollIndicatorWrapper {
    margin: 0 5rem 2rem auto;
  }
}
@media (max-width: 1000px) {
  .banner .scrollIndicatorWrapper {
    display: none;
  }
}
.banner .scrollIndicator {
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 1.5rem;
  width: 23px;
  height: 40px;
  border: 1px solid #67cfb4;
  border-radius: 30px;
}
.banner .scrollIndicator:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #67cfb4;
  top: 5px;
  left: 50%;
  transform: translate(-50%);
  border-radius: 50%;
  animation: scroll 1.3s infinite;
}
.banner .scrollIndicator:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 6px;
  display: block;
  border-right: 2px solid #67cfb4;
  border-bottom: 2px solid #67cfb4;
  width: 10px;
  height: 10px;
  transform: translate(-50%) rotate(45deg);
}
.banner .scrollIndicatorText {
  text-align: center;
  font-size: 12px;
}
.banner .skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}
@media (max-width: 1000px) {
  .banner .skills {
    margin-top: 15px;
  }
}
.banner .skill {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 1rem;
  background-color: #f2f2f2;
  height: 125px;
}
.banner .skill div {
  font-size: 13px;
  font-weight: 500;
  width: 80%;
  text-align: center;
}
.banner .skill img {
  max-height: 50px;
}

.mainTop {
  margin-top: 1rem;
}

.contactRow {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.contactRow p {
  font-size: 14px;
  color: #333;
}

.contactCol33 {
  width: 33.3%;
  padding: 0 15px;
}
@media (max-width: 1000px) {
  .contactCol33 {
    width: 100%;
  }
}

.contactCol50 {
  width: 50%;
  padding: 0 15px;
}
@media (max-width: 1000px) {
  .contactCol50 {
    width: 100%;
  }
}

.contactNav a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}
.contactNav a:hover {
  color: #0088cf;
}

.contactNavItem {
  display: flex;
  align-items: flex-start;
}

.contactImageBox,
.contactImageBox2 {
  display: block;
  width: 25px;
  margin-right: 5px;
}
.contactImageBox img,
.contactImageBox2 img {
  width: 25px;
}

.contactImageBox2 {
  width: 25px;
  padding: 0 2px;
}
.contactImageBox2 img {
  width: 21px;
}

.adresWidth {
  width: 333px;
}
@media (max-width: 1000px) {
  .adresWidth {
    width: 100%;
  }
}

.aboutTitle {
  text-align: left;
  margin-bottom: 2rem;
}
.aboutTitle h1 {
  margin-bottom: 0.5rem;
  font-size: 50px;
  font-weight: 700;
  color: #252525;
}
.aboutTitle p {
  font-size: 16px;
  font-weight: 400;
  color: #252525;
}

.heading-primary {
  margin: 0 0 10px;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 27px;
}

.w100 {
  width: 100%;
}

.ibmBanner .vector {
  width: 420px;
}
.ibmBanner .button {
  background-color: #7aa5fa;
}
.ibmBanner .skill {
  position: relative;
}

.skill b {
  position: relative;
  bottom: 1.5rem;
  padding: 0 0.25rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}
.skill span {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: #7aa5fa;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
}

.milenstone {
  margin-bottom: 4rem;
  padding: 25px 0;
  background-color: #f2f2f2;
}
.milenstone img {
  width: 100%;
}

.partnerships {
  text-align: center;
  margin-bottom: 7rem;
}
.partnerships .title {
  margin-bottom: 3px;
}
.partnerships .text {
  color: #8abcaf;
  font-size: 18px;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 24px;
}
.partnerships .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 32px;
}
.partnerships .items .item {
  position: relative;
  display: grid;
  place-items: center;
  background-color: #f2f2f2;
  border-radius: 1rem;
  height: 162px;
}
.partnerships .items .item .date {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #767676;
  line-height: 17px;
}
.partnerships .items .item .date span {
  display: block;
  font-size: 8px;
  font-weight: 500;
}

.ibmPartnerships .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ibmPartnerships .items .item {
  width: 275px;
}

.referenceTitle {
  color: #252525;
  font-size: clamp(24px, 7vw, 33px);
  font-weight: 700;
  text-align: center;
  display: block;
}

.references {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.references .reference {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24%;
  height: 120px;
  padding: 1rem;
  background-color: #f2f2f2;
}
@media (max-width: 1000px) {
  .references {
    gap: 0;
    justify-content: space-between;
  }
  .references .reference {
    width: 49%;
    margin-bottom: 15px;
  }
}
@media (max-width: 400px) {
  .references {
    gap: 0;
  }
  .references .reference {
    width: 100%;
  }
}

.hireModal {
  padding: 1.5rem 0 3rem;
}
@media (max-width: 1000px) {
  .hireModal {
    padding: 1rem;
  }
}
.hireModal .title {
  margin-bottom: 47px;
  text-align: center;
}
.hireModal .title div {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #8abcaf;
}
@media (max-width: 1000px) {
  .hireModal .title {
    margin-bottom: 1rem;
    text-align: left;
  }
}
.hireModal .flex {
  display: flex;
  gap: 13px;
  margin-bottom: 3rem;
}
@media (max-width: 1000px) {
  .hireModal .flex {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
}
.hireModal .vector {
  max-width: 480px;
}
.hireModal .vector img {
  width: 480px;
}
@media (max-width: 1000px) {
  .hireModal .vector img {
    width: 100%;
  }
}
.hireModal .form {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 672px;
  width: 100%;
  padding: 54px 32px 32px;
  background-color: #f2f2f2;
}
.hireModal .form img {
  display: none;
}
@media (max-width: 1000px) {
  .hireModal .form {
    max-width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
    max-width: 605px;
    flex-direction: column;
    background-color: #fff;
  }
}
.hireModal .form.loader {
  position: relative;
  justify-content: center;
  align-items: center;
}
.hireModal .form.loader * {
  visibility: hidden;
}
.hireModal .form.loader img {
  display: block;
  visibility: visible;
  position: absolute;
  width: 100px;
}
.hireModal .form > .item {
  position: relative;
  width: calc(50% - 11px);
  height: 40px;
  border-radius: 2rem;
}
@media (max-width: 1000px) {
  .hireModal .form > .item {
    width: 100%;
  }
}
.hireModal .form > .item input {
  width: 100%;
  padding-left: 3.5rem;
}
.hireModal .flag {
  display: grid;
  place-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  height: 100%;
  background-color: #dadada;
}
.hireModal input,
.hireModal select,
.hireModal textarea {
  width: calc(50% - 11px);
  height: 40px;
  background-color: #fff;
  border: 1px solid transparent;
  outline: none;
  border-radius: 2rem;
  padding-left: 24px;
  font-size: 12px;
}
.hireModal input::placeholder,
.hireModal select::placeholder,
.hireModal textarea::placeholder {
  font-size: 12px;
  color: #252525;
}
.hireModal input:focus,
.hireModal select:focus,
.hireModal textarea:focus {
  border: 1px solid #dfdfdf;
}
@media (max-width: 1000px) {
  .hireModal input,
  .hireModal select,
  .hireModal textarea {
    width: 100%;
    border: 1px solid #8abcaf;
  }
}
.hireModal textarea {
  padding-top: 10px;
  width: 100%;
  height: 154px;
  border-radius: 7px;
}
.hireModal button {
  width: 150px;
}
@media (max-width: 1000px) {
  .hireModal button {
    margin: 0;
  }
}
@media (max-width: 1000px) {
  .hireModal .item,
  .hireModal .item input,
  .hireModal input {
    width: 100% !important;
  }
}
.hireModal .selectedText {
  font-weight: 500;
  color: #252525;
}
.hireModal .selectedTechs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hireModal .selectedTechs div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 80px;
  padding: 0 12px;
  height: 33px;
  color: #fff;
  background-color: #b0d1c8;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.1019607843);
  cursor: pointer;
  transition: background-color 0.3s;
}
.hireModal .selectedTechs div:hover {
  background-color: #90beb2;
}
.hireModal .selectedTechs div span {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.hireModal .selectedTechs div span:before, .hireModal .selectedTechs div span:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.hireModal .selectedTechs div span:before {
  transform: rotate(45deg);
}
.hireModal .selectedTechs div span:after {
  transform: rotate(-45deg);
}
.hireModal .selectedTechs div span:hover:before, .hireModal .selectedTechs div span:hover:after {
  background-color: #e6e6e6;
}
.hireModal .techSelection .mainTitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #8ebeb1;
}
.hireModal .techSelection .techsWrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hireModal .techSelection .techClass {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #b5b5b5;
}
.hireModal .techSelection .techs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}
.hireModal .techSelection .techs > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 67px;
  height: 70px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  font-size: 10px;
  color: #797979;
  transition: background-color, border-color, 0.3s;
  cursor: pointer;
  text-align: center;
  line-height: 10px;
}
.hireModal .techSelection .techs > div .image {
  pointer-events: none;
  height: 50%;
}
.hireModal .techSelection .techs > div .image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.hireModal .techSelection .techs > div span {
  pointer-events: none;
}
.hireModal .techSelection .techs > div:hover, .hireModal .techSelection .techs > div.selected {
  background-color: rgba(142, 190, 177, 0.7019607843);
  border-color: transparent;
  color: #fff;
}

.container {
  margin: 25px 0;
}

.ourVM {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1000px) {
  .ourVM {
    flex-wrap: wrap;
  }
}

.boxes {
  position: relative;
  overflow: hidden;
  width: 49%;
  padding: 45px;
  min-height: 286px;
  border-radius: 15px;
  box-shadow: 0 0 28.848px rgba(194, 194, 194, 0.2705882353);
}
@media (max-width: 1000px) {
  .boxes {
    width: 100%;
  }
}
.boxes:first-child {
  background-color: #6aa999;
}
.boxes:first-child span {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}
.boxes:first-child p {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.boxes:last-child {
  background-color: #f2f2f2;
}
.boxes span {
  font-size: 40px;
  font-weight: 600;
  color: #252525;
}
.boxes p {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #252525;
}

.generalInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 65px 0;
}
@media (max-width: 1000px) {
  .generalInfo {
    display: block;
    margin: 65px 15px;
  }
}

.generalBoxes {
  width: 48%;
  padding: 25px;
  min-height: 650px;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1490196078) 0 8px 24px;
  border-top: 5px solid rgb(235, 235, 235);
}
@media (max-width: 1000px) {
  .generalBoxes {
    width: 100%;
    margin-bottom: 45px;
    min-height: auto;
  }
}
.generalBoxes span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: #fff;
  margin-bottom: 15px;
}
.generalBoxes span img {
  max-width: 100%;
}
.generalBoxes h2 {
  color: #78a799;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 15px;
}
.generalBoxes h2:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 70px;
  height: 3px;
  background-color: #454545;
}
.generalBoxes p {
  font-size: 14px;
  text-align: center;
  color: #252525;
}

.gallery {
  width: 100%;
  margin: 3rem 0;
}
.gallery .title {
  padding-bottom: 0.5rem;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #6aa999;
}

.imgboxWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2%;
}

.imgBoxes {
  width: 19%;
  transition: all 0.3s;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 28.848px rgba(194, 194, 194, 0.2705882353);
}
@media (max-width: 1000px) {
  .imgBoxes {
    width: 48%;
  }
}
@media (max-width: 530px) {
  .imgBoxes {
    width: 100%;
  }
}
.imgBoxes:hover {
  transform: scale(1.1);
}
.imgBoxes img {
  width: 100%;
}

.timeline {
  position: relative;
  font-family: Poppins, sans-serif;
  height: 55vh;
  overflow-y: auto;
  margin-bottom: 35px;
}
.timeline section {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 15px 0;
}
.timeline section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  height: 100%;
  width: 2px;
  background-color: #ccc;
}
.timeline::-webkit-scrollbar {
  width: 3px;
}
.timeline::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.timeline::-webkit-scrollbar-thumb {
  background: #888;
}
.timeline::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.timelineYear {
  top: 0;
  position: sticky;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  color: #78a799;
  font-size: 17px;
  height: 25px;
  display: block;
}
.timelineYear:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 57px;
  width: 8px;
  height: 8px;
  background-color: #78a799;
  border-radius: 100%;
}

.timelineText {
  display: block;
  color: #333;
  padding-right: 15px;
}
.timelineText div {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  letter-spacing: 0.1px;
  font-size: 15px;
  line-height: 27px;
}
.timelineText div:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -1px;
  width: 4px;
  height: 4px;
  background-color: #78a799;
  border-radius: 100%;
}

.yonetimAciklama {
  width: 100%;
  padding: 15px;
  background: #f3f3f3;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #252525;
}
.yonetimAciklama span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #252525;
}

.yonetimBaslik {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #252525;
  margin-bottom: 45px;
}

.yonetimKadromuz {
  display: flex;
  flex-wrap: wrap;
}

.yonetimKutu {
  position: relative;
  width: 24%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.2509803922);
  margin: 1rem 0.5%;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .yonetimKutu {
    width: 49%;
  }
}
@media (max-width: 540px) {
  .yonetimKutu {
    width: 100%;
  }
}
.yonetimKutu:hover .yonetimResim img {
  transform: scale(1.1);
}

.yonetimResim {
  width: 100%;
  overflow: hidden;
}
.yonetimResim img {
  width: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  z-index: 5;
}
header.scrolling {
  background-color: #fff;
}
header .logo {
  display: flex;
  align-items: flex-end;
  width: max-content;
  height: 100%;
  padding-bottom: 15px;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}
header .actions {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}
@media (max-width: 660px) {
  header .actions {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 11;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility, opacity, 0.3s;
  }
  header .actions.active {
    visibility: visible;
    opacity: 1;
  }
}
header .actions .action {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  color: #252525;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
header .actions .action:hover {
  color: #8abcaf;
}
header .menuButton {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
header .menuButton:before, header .menuButton:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #252525;
  transition: 0.2s;
}
header .menuButton:before {
  bottom: 8px;
}
header .menuButton:after {
  top: 8px;
}
@media (max-width: 990px) {
  header .menuButton {
    display: block;
  }
}
header .menuButton.active:before, header .menuButton.active:after {
  inset: 0;
}
header .menuButton.active:before {
  transform: rotate(45deg);
}
header .menuButton.active:after {
  transform: rotate(-45deg);
}
header .menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
header .menu nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1200px) {
  header .menu {
    gap: 10px;
  }
}
@media (max-width: 990px) {
  header .menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1rem 1rem 3rem;
    height: calc(100vh - 80px);
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: visibility, opacity, 0.3s;
    justify-content: center;
  }
  header .menu nav {
    flex-direction: column;
    justify-content: space-evenly;
  }
  header .menu.active {
    visibility: visible;
    opacity: 1;
  }
}
header .menu a {
  display: grid;
  place-items: center;
  color: #cd7b30;
  height: 40px;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}
header .menu a:hover {
  color: #a46226;
}
header .megaMenu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 405px;
  background-color: #fff;
  padding: 50px 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility, opacity, 0.3s;
}
@media (max-width: 1000px) {
  header .megaMenu {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 11;
    height: 100vh;
    padding: 50px 0 0;
  }
}
header .megaMenu .wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1000px) {
  header .megaMenu .wrapper {
    justify-content: center;
  }
}
header .megaMenu.active {
  visibility: visible;
  opacity: 1;
}
header .megaMenu .closeButton {
  position: absolute;
  right: 1rem;
  top: 0;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: #cd7b30;
  cursor: pointer;
}
header .megaMenu .closeButton:hover {
  background-color: #a46226;
}
header .megaMenu .closeButton:before, header .megaMenu .closeButton:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 15px;
  height: 2px;
  background-color: #fff;
}
header .megaMenu .closeButton:before {
  transform: rotate(45deg);
}
header .megaMenu .closeButton:after {
  transform: rotate(-45deg);
}
header .megaMenu .linksWrapper {
  display: flex;
  gap: 40px;
}
@media (max-width: 1000px) {
  header .megaMenu .linksWrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    height: 80vh;
    overflow: auto;
  }
}
header .megaMenu .linksWrapper .links {
  border-right: 1px solid #e6e6e6;
  padding-right: 37px;
}
@media (max-width: 1000px) {
  header .megaMenu .linksWrapper .links {
    border-right: 0px;
    padding-right: 0;
    width: 47%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  header .megaMenu .linksWrapper .links {
    width: 35%;
    text-align: center;
  }
}
header .megaMenu .linksWrapper .links b {
  display: block;
  color: #cd7b30;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 1000px) {
  header .megaMenu .linksWrapper .links b {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
header .megaMenu .linksWrapper .links b:after {
  content: "";
  display: block;
  position: relative;
  margin-top: 6px;
  width: 34px;
  height: 1px;
  background-color: #cd7b30;
}
header .megaMenu .linksWrapper .links a {
  display: block;
  font-size: 14px;
  color: #757575;
  transition: color 0.3s;
  margin-bottom: 10px;
}
header .megaMenu .linksWrapper .links a:hover {
  color: #cd7b30;
}

footer {
  text-align: center;
  padding: 23px 1rem;
  background-color: #252525;
  color: #fff;
}

/*# sourceMappingURL=main.css.map */
