* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0d0d0d;
}

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-thumb {
  background: #D86798;
  border-radius: 1rem;
  border: 4px solid #0d0d0d;
}
::-webkit-scrollbar-thumb:hover {
  background: radial-gradient(65.67% 65.67% at 41.2% 34.33%, #d86798 0, #d171ce 100%);
}

::-webkit-scrollbar-track {
  margin-block: 0.3em;
  padding: 1rem;
}

header {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: end;
  position: fixed;
  z-index: 101;
  transition: 0.3s ease-in-out;
}
header .hamburger {
  display: none;
  padding: 1rem;
  margin-right: 0.5rem;
}
header nav ul {
  display: flex;
  list-style-type: none;
}
header nav ul li a {
  display: block;
  color: #b7ab98;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 1rem;
  transition: 0.3s ease-in-out;
  margin: 0 0.5rem;
}
header nav ul li a:hover {
  color: #0d0d0d;
  background: #D86798;
}
header nav ul li a.active {
  color: #0d0d0d;
  background-color: #D86798;
}

.header_nav {
  max-width: 75rem;
  margin: auto;
}

main {
  overflow: hidden;
  position: relative;
}
main::before {
  background: rgb(209,113,206);
  background: -moz-radial-gradient(circle, rgba(209,113,206,1) 0%, rgba(216,103,152,0.7987570028011204) 100%);
  background: -webkit-radial-gradient(circle, rgba(209,113,206,1) 0%, rgba(216,103,152,0.7987570028011204) 100%);
  background: radial-gradient(circle, rgba(209,113,206,1) 0%, rgba(216,103,152,0.7987570028011204) 100%);
  border-radius: 100rem;
  content: "";
  filter: blur(12rem);
  height: 50rem;
  right: 0;
  top: -5rem;
  opacity: 0.3;
  position: absolute;
  width: 50rem;
  z-index: -1;
}
main::after {
  background: radial-gradient(65.67% 65.67% at 41.2% 34.33%, #d86798 0, #d171ce 100%);
  border-radius: 100rem;
  content: "";
  filter: blur(12rem);
  height: 50rem;
  left: -20rem;
  top: 140rem;
  opacity: 0.3;
  position: absolute;
  transform: matrix(-0.64, -0.77, 0.63, -0.78, 0, 0);
  width: 50rem;
  z-index: -1;
}

.container {
  max-width: 75rem;
  margin: auto;
  padding: 2.5rem;
  box-sizing: border-box;
}

.hero {
  padding-top: 5rem;
}

.heroContent {
  height: 40rem;
  gap: 3rem;
  display: flex;
}
.heroContent h3 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #b7ab98;
}
.heroContent h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #D86798;
}
.heroContent p {
  color: #b7ab98;
  font-weight: 500;
}
.heroContent .heroText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  gap: 1rem;
}
.heroContent .heroImg {
  display: flex;
  align-items: center;
  width: 50%;
}
.heroContent img {
  border-radius: 50%;
  border: 0.1rem solid #D86798;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.heroContent .heroButtons {
  padding: 1rem 0 0 0;
  display: flex;
  gap: 1rem;
}
.heroContent .heroButtons .btn {
  position: relative;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #b7ab98;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 1rem;
}
.heroContent .heroButtons .btn:after {
  content: " ";
  width: 0;
  height: 100%;
  background: #D86798;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  top: 0;
}
.heroContent .heroButtons .btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.heroContent .heroButtons .btn span {
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #0d0d0d;
  font-size: 1rem;
  font-weight: 500;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.heroContent .heroButtons .btn span a {
  text-decoration: none;
  color: #0d0d0d;
}
.heroContent .heroButtons .btn:hover span {
  color: #0d0d0d;
  animation: scaleUp 0.3s ease-in-out;
}
.heroContent .heroButtons .btn2 {
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #0d0d0d;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  border: 1px solid #b7ab98;
  cursor: pointer;
  padding: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.heroContent .heroButtons .btn2:hover {
  border: 1px solid #D86798;
}
.heroContent .heroButtons .btn2 span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #b7ab98;
  font-size: 1rem;
  font-weight: 500;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.heroContent .heroButtons .btn2 span:hover {
  color: #D86798;
}

.about {
  padding: 5rem 0;
}
.about .aboutTitle {
  text-align: center;
  padding-bottom: 3rem;
}
.about .aboutTitle h2 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
  color: #b7ab98;
  letter-spacing: 1rem;
}
.about .aboutTable {
  display: flex;
  gap: 3rem;
}
.about .aboutTable .skillFields {
  flex: 1;
  background: #1a1a1a;
  border-radius: 1rem;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
}
.about .aboutTable .skillFields p {
  padding: 1rem 1rem 1.5rem 1rem;
  color: #b7ab98;
  font-weight: 500;
}
.about .aboutTable .skillFields p span {
  color: #D86798;
}
.about .aboutTable .skillFields .skills {
  display: flex;
  flex-direction: column;
}
.about .aboutTable .skillFields .skills ul {
  list-style-type: none;
}
.about .aboutTable .skillFields .skills ul li {
  padding: 1rem;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  color: #b7ab98;
  border-top: 1px solid #0d0d0d;
  position: relative;
  transition: 0.3s;
}
.about .aboutTable .skillFields .skills ul li span {
  position: relative;
  z-index: 20;
  transition: 0.3s;
  display: inline-block;
}
.about .aboutTable .skillFields .skills ul li:after {
  content: " ";
  width: 0;
  height: 100%;
  background: #D86798;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  top: 0;
}
.about .aboutTable .skillFields .skills ul li:hover span {
  color: #0d0d0d;
  animation: scaleUp 0.3s ease-in-out;
}
.about .aboutTable .skillFields .skills ul li:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.about .aboutTable .extrasField {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about .aboutTable .extrasField p {
  color: #b7ab98;
  padding: 1rem 0;
  font-weight: 500;
}
.about .aboutTable .extrasField p span {
  color: #D86798;
}
.about .aboutTable .extrasField .awardsIcons {
  display: flex;
  gap: 3rem;
}
.about .aboutTable .extrasField .awardsIcons img {
  width: 80%;
  filter: grayscale(50%) drop-shadow(0 0 0.1rem #1a1a1a);
}
.about .aboutTable .extrasField .awardsIcons .icons {
  display: flex;
  justify-content: center;
}
.about .aboutTable .extrasField .languages {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.about .aboutTable .extrasField .languages .languagesBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .aboutTable .extrasField .languages .languagesBlock p {
  padding-bottom: 0;
}
.about .aboutTable .extrasField .languages .languagesIcons {
  color: #D86798;
}
.about .aboutTable .extrasField .languages .languagesIcons i {
  filter: drop-shadow(0 0 0.1rem #1a1a1a);
}
.about .aboutTable .extrasField .industries {
  background: #b7ab98;
  border-radius: 1rem;
  padding: 1rem;
  color: #1a1a1a;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
}
.about .aboutTable .extrasField .industries h4 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  padding-bottom: 1rem;
}
.about .aboutTable .extrasField .industries .industriesBlock {
  display: flex;
  gap: 3rem;
}
.about .aboutTable .extrasField .industries .industriesBlock .industriesBlockLeft {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .aboutTable .extrasField .industries .industriesBlock .industriesBlockRight {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .aboutTable .extrasField .industries .industriesBlock .industriesLine {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}
.about .aboutTable .extrasField .industries .industriesBlock .industriesLine .industriesText {
  flex: 5;
}
.about .aboutTable .extrasField .industries .industriesBlock .industriesLine .industriesIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.workExperience {
  padding: 5rem 0;
}
.workExperience .workExperienceTitle {
  text-align: center;
  padding-bottom: 3rem;
}
.workExperience .workExperienceTitle h2 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
  color: #b7ab98;
  letter-spacing: 1rem;
}
.workExperience .accordion {
  max-width: 75rem;
  border-radius: 1rem;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  background: #1a1a1a;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
}
.workExperience .accordion .accordion__label,
.workExperience .accordion .accordion__content {
  padding: 1rem;
}
.workExperience .accordion .accordion__label {
  display: block;
  color: #b7ab98;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: background 0.1s;
  border-bottom: 1px solid #0d0d0d;
}
.workExperience .accordion .accordion__label span {
  font-size: 1rem;
  font-weight: 500;
}
.workExperience .accordion .accordion__label h5 {
  font-size: 2rem;
  font-weight: 500;
}
.workExperience .accordion .accordion__label h6 {
  font-size: 1rem;
  font-weight: 400;
}
.workExperience .accordion .accordion__label:hover {
  background: #0a0a0a;
}
.workExperience .accordion .accordion__label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 5rem;
  height: 2.5rem;
  background-size: contain;
  transition: transform 0.4s;
  background-image: url("/images/down.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.workExperience .accordion .accordion__content {
  background-color: #b7ab98;
  display: none;
}
.workExperience .accordion .accordion__content p {
  padding-bottom: 1rem;
}
.workExperience .accordion .accordion__input {
  display: none;
}
.workExperience .accordion .accordion__input:checked ~ .accordion__content {
  display: block;
}
.workExperience .accordion .accordion__input:checked ~ .accordion__label::after {
  transform: translateY(-50%) rotate(0.5turn);
}

.cases {
  padding: 5rem 0;
}
.cases .casesTitle {
  text-align: center;
  padding-bottom: 3rem;
}
.cases .casesTitle h2 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
  color: #b7ab98;
  letter-spacing: 1rem;
}
.cases .casesContainer {
  display: flex;
  gap: 5rem;
  padding-bottom: 3rem;
}
.cases .casesContainer:nth-child(3), .cases .casesContainer:nth-child(4), .cases .casesContainer:nth-child(5), .cases .casesContainer:nth-child(6) {
  display: none;
}
.cases .case {
  flex: 1;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  background: #b7ab98;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.cases .case:hover {
  transform: translateY(-1rem);
}
.cases .case:hover .caseImg {
  transform: scale(1.05);
  opacity: 1;
}
.cases .case:hover .caseContent h4 {
  background: #D86798;
  color: #0d0d0d;
}
.cases .case .caseImg {
  height: 40%;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.cases .case .ultraGear {
  background-image: url("/images/case_ultragear.JPG");
  background-size: cover;
  background-position: 80% 20%;
}
.cases .case .toyota {
  background-image: url("/images/case_toyota.JPG");
  background-size: cover;
  background-position: 60% 40%;
}
.cases .case .boom {
  background-image: url("/images/case_cooking.jpg");
  background-size: cover;
  background-position: 70% 30%;
}
.cases .case .blast {
  background-image: url("/images/case_blast.JPG");
  background-size: cover;
  background-position: 45% 55%;
}
.cases .case .premier {
  background-image: url("/images/blast_premier.jpeg");
  background-size: cover;
  background-position: 70% 30%;
}
.cases .case .winTeam {
  background-image: url("/images/case_team.JPG");
  background-size: cover;
  background-position: 90% 10%;
}
.cases .case .winRetail {
  background-image: url("/images/case_retail.jpg");
  background-size: cover;
  background-position: 90% 10%;
}
.cases .case .lcl {
  background-image: url("/images/case_lcl.PNG");
  background-size: cover;
  background-position: 10% 90%;
}
.cases .case .val {
  background-image: url("/images/case_valorant.PNG");
  background-size: cover;
  background-position: 70% 30%;
}
.cases .case .winBox {
  background-image: url("/images/case_box.JPG");
  background-size: cover;
  background-position: 65% 35%;
}

.cases .case .caseContent {
  height: 60%;
  box-sizing: border-box;
  padding: 1rem;
  color: #0d0d0d;
  position: relative;
}
.cases .case .caseContent h4 {
  position: absolute;
  top: -3rem;
  right: 0;
  background: #1a1a1a;
  color: #b7ab98;
  padding: 1rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.cases .case .caseContent h3 {
  font-size: 2rem;
  padding-bottom: 1rem;
}
.cases .case .caseContent p {
  font-size: 1rem;
}

.buttonContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.buttonContainer button {
  position: relative;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #b7ab98;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 1rem;
}
.buttonContainer button:after {
  content: " ";
  width: 0;
  height: 100%;
  background: #D86798;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  top: 0;
}
.buttonContainer button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.buttonContainer button span {
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #0d0d0d;
  font-size: 1rem;
  font-weight: 600;
  z-index: 20;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.buttonContainer button:hover span {
  color: #0d0d0d;
  animation: scaleUp 0.3s ease-in-out;
}

.testimonials {
  padding: 5rem 0;
  position: relative;
}
.testimonials::before {
  background: radial-gradient(65.67% 65.67% at 41.2% 34.33%, #d86798 0, #d171ce 100%);
  border-radius: 100rem;
  content: "";
  filter: blur(12rem);
  height: 20rem;
  right: 35rem;
  top: 10rem;
  opacity: 0.3;
  position: absolute;
  transform: matrix(-0.64, -0.77, 0.63, -0.78, 0, 0);
  width: 50rem;
  z-index: -1;
}
.testimonials .testimonialsTitle {
  text-align: center;
  padding-bottom: 3rem;
}
.testimonials .testimonialsTitle h2 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
  color: #b7ab98;
  letter-spacing: 1rem;
}
.testimonials .swiper {
  width: 100%;
  padding: 0 0 5rem 0;
}
.testimonials .swiper .swiper-button-next,
.testimonials .swiper .swiper-button-prev {
  color: #D86798;
}
.testimonials .swiper span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #D86798;
  opacity: 1;
}
.testimonials .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .swiper .swiper-slide .testimonialsImg {
  padding: 1rem;
}
.testimonials .swiper .swiper-slide .testimonialsImg img {
  height: 7rem;
  width: 7rem;
  border-radius: 100%;
  border: 1px solid #D86798;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}
.testimonials .swiper .swiper-slide .testimonialsText {
  padding: 1rem 5rem;
  text-align: center;
  color: #b7ab98;
  line-height: 1.6rem;
  position: relative;
}
.testimonials .swiper .swiper-slide .testimonialsText i {
  position: absolute;
  font-size: 7rem;
  top: -3rem;
  left: 5rem;
  opacity: 0.05;
  z-index: -1;
}
.testimonials .swiper .swiper-slide .testimonialsFooter {
  text-align: center;
}
.testimonials .swiper .swiper-slide .testimonialsFooter a {
  text-decoration: none;
  color: #D86798;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}

footer {
  padding: 1rem 0;
  position: relative;
}
footer nav {
  display: flex;
  width: 100%;
}
footer nav .footerNavLeft {
  width: 50%;
}
footer nav .footerNavRight {
  width: 50%;
}
footer nav ul {
  display: flex;
  list-style-type: none;
  justify-content: space-around;
}
footer nav ul li {
  text-decoration: none;
}
footer nav ul li a {
  text-decoration: none;
  color: #b7ab98;
  font-weight: 500;
  letter-spacing: 0.05rem;
  transition: 0.3s ease-in-out;
}
footer nav ul li a:hover {
  color: #D86798;
}
footer .container {
  border-top: 1px solid #b7ab98;
}
footer .footerContainer {
  margin-top: 2rem;
}

.contactsTitle {
  text-align: center;
  padding-bottom: 3rem;
}
.contactsTitle h2 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
  color: #b7ab98;
  letter-spacing: 1rem;
}

.contacts h3 {
  color: #b7ab98;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}

.contactsBox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 30%;
  margin: auto;
}
.contactsBox h4 {
  padding-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 1rem;
}
.contactsBox .contactMail {
  border-radius: 1rem;
  color: #D86798;
  letter-spacing: 0.1rem;
}
.contactsBox .contactLinkedin {
  background-color: #1a1a1a;
  border-radius: 1rem;
  color: #b7ab98;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.contactsBox .contactLinkedin:hover {
  background-color: #151515;
}
.contactsBox .contactCV {
  background-color: #D86798;
  color: #0d0d0d;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.contactsBox .contactCV:hover {
  background-color: #d74684;
}

.casePage {
  min-height: 100vh;
}

.singleCase {
  margin-top: 5rem;
}
.singleCase h2 {
  font-size: 3rem;
  color: #D86798;
  font-weight: 500;
}
.singleCase h3 {
  padding: 1rem 1rem 0.5rem 1rem;
  color: #D86798;
  font-weight: 500;
}
.singleCase .contributionsHeading {
  color: #1a1a1a;
}
.singleCase p {
  padding-top: 1rem;
  color: #b7ab98;
}
.singleCase .showCaseContainer {
  display: flex;
  margin-top: 1rem;
  gap: 2rem;
}
.singleCase .caseInfo {
  display: flex;
  gap: 3rem;
  width: 100%;
}
.singleCase .caseMainTiktoks {
  display: flex;
  padding-top: 3rem;
  justify-content: space-around;
  flex-wrap: wrap;
}
.singleCase .caseMainImages {
  display: flex;
  padding-top: 3rem;
}
.singleCase .caseMainImages img {
  width: 100%;
}
.singleCase .caseMain {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}
.singleCase .caseMain iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  height: 100%;
}
.singleCase .caseContributions {
  background-color: #b7ab98;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
  width: 50%;
}
.singleCase .caseContributions p {
  color: #1a1a1a;
  padding: 0.5rem;
  font-weight: 500;
}
.singleCase .caseContributions p i {
  color: #0d0d0d;
}
.singleCase .caseResults {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
  width: 50%;
}
.singleCase .caseResults p {
  color: #b7ab98;
  padding: 0.5rem;
  font-weight: 500;
}
.singleCase .caseResults p i {
  color: #D86798;
}

.backButton {
  padding: 1.5rem 0;
  background-color: #0d0d0d;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
}
.backButton a {
  text-decoration: 0;
  color: #0d0d0d;
  background-color: #D86798;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  display: block;
  font-weight: 500;
}

@media only screen and (max-width: 1400px) {
  .heroText h1 {
    font-size: 2.5rem;
  }
  .heroText h3 {
    font-size: 1.75rem;
  }
  .about .aboutTitle h2 {
    font-size: 2.5rem;
  }
  .about .aboutTable .skillFields .skills ul li {
    letter-spacing: 0.2rem;
    font-size: 1.1rem;
  }
  .about .aboutTable .extrasField .awardsIcons img {
    width: 90%;
  }
  .workExperience .workExperienceTitle h2 {
    font-size: 2.5rem;
  }
  .cases .casesTitle h2 {
    font-size: 2.5rem;
  }
  .cases .case .caseContent h3 {
    font-size: 1.5rem;
  }
  .cases .case .caseContent h4 {
    font-size: 1rem;
  }
  .testimonials .testimonialsTitle h2 {
    font-size: 2.5rem;
  }
  .contactsTitle h2 {
    font-size: 2.5rem;
  }
  .testimonials::before {
    right: 10rem;
  }
}
@media only screen and (max-width: 910px) {
  .container {
    max-width: 100%;
    margin: 0;
  }
  .heroContent {
    flex-direction: column;
    align-items: center;
  }
  .heroContent .heroText {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .heroContent .heroButtons {
    flex-direction: column;
    align-items: center;
  }
  .heroContent .heroImg {
    order: 1;
    width: 15rem;
  }
  .aboutTable {
    flex-direction: column;
  }
  .aboutTable .skillFields {
    width: 60%;
    margin: auto;
  }
  .aboutTable .extrasField {
    gap: 5rem;
  }
  .aboutTable .extrasField p {
    text-align: center;
    margin-bottom: 1rem;
  }
  .aboutTable .extrasField .awardsIcons {
    justify-content: center;
  }
  .cases .casesContainer {
    flex-direction: column;
  }
  .cases .case .caseImg {
    flex: 1;
  }
  header nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: #0d0d0d;
    transition: 0.3s ease-in-out;
    height: 0;
    z-index: 100;
    overflow: hidden;
  }
  header nav.active {
    height: 28rem;
  }
  header nav ul {
    display: block;
    width: fit-content;
    margin: 5rem auto 0 auto;
    text-align: center;
    transition: 0.3s ease-in-out;
    opacity: 1;
  }
  header nav ul li a {
    margin-bottom: 1rem;
  }
  header .hamburger {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 999;
  }
  header .hamburger .line {
    background: radial-gradient(65.67% 65.67% at 41.2% 34.33%, #d86798 0, #d171ce 100%);
    height: 0.2rem;
    width: 2rem;
    margin: 0.5rem 0;
  }
  .contactsBox {
    width: 50%;
  }
  .testimonials::before {
    right: 0;
  }
}
@media only screen and (max-width: 670px) {
  .heroText h1 {
    font-size: 1.9rem;
  }
  .heroText h3 {
    font-size: 1.5rem;
  }
  .about .aboutTitle h2 {
    font-size: 1.9rem;
  }
  .about .skillFields {
    width: 100%;
  }
  .about .aboutTable .extrasField .awardsIcons {
    flex-wrap: wrap;
  }
  .about .aboutTable .extrasField .languages {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about .aboutTable .extrasField .industries .industriesBlock {
    flex-wrap: wrap;
    gap: 0;
  }
  .workExperience .workExperienceTitle h2 {
    font-size: 1.9rem;
  }
  .workExperience .accordion .accordion__label h5 {
    font-size: 1.3rem;
    width: 80%;
  }
  .cases .casesTitle h2 {
    font-size: 1.9rem;
  }
  .testimonials .testimonialsTitle h2 {
    font-size: 1.9rem;
  }
  .testimonials .swiper .swiper-slide .testimonialsText {
    padding: 1rem 2.5rem;
  }
  .container {
    padding: 1rem;
  }
  .contactsBox {
    width: 80%;
  }
  .contactsTitle h2 {
    font-size: 1.9rem;
  }
  .footerNavLeft ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footerNavRight ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .caseInfo {
    flex-direction: column;
  }
  .caseInfo .caseContributions {
    width: 90%;
    margin: auto;
  }
  .caseInfo .caseResults {
    width: 90%;
    margin: auto;
  }
  .testimonials::before {
    right: -10rem;
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

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