@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700|Playfair+Display:400,700");
:root {
  --xl: 4rem;
  --l: 2.5rem;
  --m: 2rem;
  --s: 1rem;
  --xs: 0.5rem;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-display: swap;
  font-family: "Playfair Display", serif;
  margin: 0;
}
p {
  margin: 0;
}
p,
span,
li,
label,
input,
textarea,
a {
  font-display: swap;
  font-family: "Lato", sans-serif;
}
::selection {
  background: #ff0400;
  color: #fff;
}
.slide-in {
  opacity: 0;
  transition: all 0.5s;
}
.align-left.slide-in {
  transform: translateX(-5%) scale(0.95);
}
.align-right.slide-in {
  transform: translateX(5%) scale(0.95);
}
.slide-in.active-animation {
  opacity: 1;
  transform: translateX(0%) scale(1);
}
header {
  display: flex;
  align-items: center;
  padding: var(--m) var(--xl);
}
header .logo {
  flex: 1;
}
header .logo a img {
  transition: all 0.3s;
  width: 320px;
}
header .logo a img:hover {
  opacity: 0.6;
}
header nav {
  display: flex;
  flex: 3;
  justify-content: center;
}
header nav ul {
  display: flex;
  padding: 0 var(--m);
}
header nav ul li {
  font-size: var(--s);
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  margin: 0 var(--xs);
}
header nav ul li .submenu {
  display: none;
  padding: var(--m) 0;
  position: absolute;
}
header nav ul li .submenu dl {
  background: #fff;
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
  border-radius: 0.25rem;
  padding: var(--xs) var(--m);
  margin: 0;
}
header nav ul li .submenu dl:before {
  top: 0.5rem;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(33, 33, 33, 0);
  border-bottom-color: #f2f2f2;
  border-width: 12px;
}
header nav ul li .submenu dl dt {
  margin: var(--s) 0;
}
header nav ul li .submenu dl dt a {
  font-weight: 400;
  color: #000;
  line-height: 160%;
  text-transform: none;
  font-size: var(--s);
  font-weight: 700;
}
header nav ul li:hover .submenu {
  display: block;
  z-index: 2000;
}
header nav ul li:hover a {
  transition: all 0.3s;
}
header nav ul li:hover a:hover {
  color: #ff0400;
}
header nav ul .active {
  font-weight: 700;
  color: #ff0400;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid #ff0400;
}
header .active {
  display: block;
}
header ol {
  display: flex;
  align-items: center;
}
header ol li {
  padding: 0 var(--xs);
  line-height: 0.8;
  display: inherit;
}
header ol li .hamburger {
  display: none;
  border: none;
  background-color: transparent;
  padding: 0;
  margin-left: var(--xs);
}
header ol li a {
  transition: all 0.3s;
}
header ol li a:hover {
  opacity: 0.6;
}
.fixed-nav header {
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
}
main.home {
  background: #fff;
  background: -moz-linear-gradient(
    left,
    #fff 0%,
    #fff 65%,
    #f8fafb 65.1%,
    #f8fafb 100%
  );
  background: -webkit-linear-gradient(
    left,
    #fff 0%,
    #fff 65%,
    #f8fafb 65.1%,
    #f8fafb 100%
  );
  background: linear-gradient(
    to right,
    #fff 0%,
    #fff 65%,
    #f8fafb 65.1%,
    #f8fafb 100%
  );
  padding-bottom: 0.1rem;
}
.hero {
  height: 60vh;
  background-size: cover;
  padding: var(--xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .title {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}
.hero .title hr {
  width: 80px;
  height: 4px;
  border: none;
  border-bottom: 4px solid #000;
  align-self: center;
  margin-right: var(--s);
}
.hero .title h1 {
  flex: 1;
  font-weight: 700;
  color: #000;
  font-size: var(--l);
}
.hero .title h1 span {
  font-display: swap;
  font-family: inherit;
  color: #ff0400;
}
.hero p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: 1.25rem;
  padding: var(--s) calc(80px + 1rem);
  max-width: 620px;
}
.small {
  height: 30vh;
}
.homepage {
  background-image: url("../img/homepage/homepage-image.jpg");
}
.patents {
  background-image: url("../img/services/patents/patents-image.jpg");
}
.trademarks {
  background-image: url("../img/services/trademarks/trademark-image.jpg");
}
.legal-advice {
  background-image: url("../img/services/legal-advice/legal-advice-image.jpg");
}
.about {
  background-image: url("../img/about/about-image.jpg");
}
.team {
  background-image: url("../img/team/team-image.jpg");
}
.join-us {
  background-image: url("../img/team/join-us-image.jpg");
}
.services ul li {
  display: flex;
  align-items: center;
  padding: var(--xl);
}
.services ul li .image {
  padding: 0 var(--s);
  text-align: center;
  flex: 1;
}
.services ul li .image img {
  max-width: 100%;
}
.services ul li .animation {
  background-color: #fff;
  border-left: 4px solid #ff0400;
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
  padding: var(--s);
  border-radius: 0.25rem;
  flex: initial;
}
.services ul li .animation-text {
  flex: 1;
}
.services ul li .text {
  padding: 0 var(--s);
}
.services ul li .text .title {
  display: flex;
}
.services ul li .text .title:before {
  content: "—";
  font-weight: 700;
  color: #000;
  font-size: var(--xl);
  margin-right: var(--s);
  line-height: 3rem;
}
.services ul li .text .title h2 {
  font-weight: 700;
  color: #000;
  font-size: var(--l);
}
.services ul li .text p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  margin: var(--s) var(--xl);
  max-width: 360px;
  position: relative;
  left: 6px;
}
.services ul li .text p a:not(.link) {
  display: block;
  margin-top: var(--m);
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  max-width: 280px;
  text-align: center;
}
.services ul li .text p a:not(.link):hover {
  opacity: 0.6;
}
.services ul li .text p a:not(.link) i {
  margin-left: var(--xs);
}
.services ul li .text p a[class="link"] {
  color: #ff0400;
  display: block;
  margin-top: var(--s);
  font-weight: 700;
  transition: all 0.3s;
}
.services ul li .text p a[class="link"]:hover {
  opacity: 0.6;
}
.services ul .last {
  padding: var(--m) var(--xl) var(--m) var(--m);
}
.slider {
  padding: var(--xl);
}
.slider .main-carousel .carousel-cell {
  width: 100%;
}
.slider .main-carousel .carousel-cell .slide {
  display: flex;
  align-items: center;
}
.slider .main-carousel .carousel-cell .slide > * {
  flex: 1;
}
.slider .main-carousel .carousel-cell .slide .image {
  text-align: center;
}
.slider .main-carousel .carousel-cell .slide .image img {
  max-width: 100%;
}
.slider .main-carousel .carousel-cell .slide .text .title {
  display: flex;
}
.slider .main-carousel .carousel-cell .slide .text .title:before {
  content: "—";
  font-weight: 700;
  color: #000;
  font-size: var(--l);
  margin-right: var(--xs);
  line-height: var(--l);
}
.slider .main-carousel .carousel-cell .slide .text .title h4 {
  font-weight: 700;
  color: #000;
  font-size: var(--m);
  margin-bottom: var(--s);
}
.slider .main-carousel .carousel-cell .slide .text p,
.slider .main-carousel .carousel-cell .slide .text h6 {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  margin: 0 var(--l);
  max-width: 380px;
  position: relative;
  left: 6px;
}
.slider .main-carousel .carousel-cell .slide .text p a,
.slider .main-carousel .carousel-cell .slide .text h6 a {
  font-weight: 700;
  text-decoration: underline;
}
.slider .main-carousel .carousel-cell .slide .text p a:hover,
.slider .main-carousel .carousel-cell .slide .text h6 a:hover {
  text-decoration: none;
}
.slider .main-carousel .carousel-cell .slide .text h6 {
  font-weight: 700;
  color: #ff0400;
  font-size: 1.25rem;
  max-width: inherit;
}
.flickity-page-dots .dot {
  background: #a2a2a2;
}
.flickity-page-dots .dot.is-selected {
  background: #ff0400;
}
.separator {
  margin: var(--xl);
  display: flex;
  border: 1px solid #d8d8d8;
  border-radius: 0.25rem;
  padding: 0 var(--m);
  align-items: center;
}
.separator h3 {
  font-weight: 700;
  color: #ff0400;
  font-size: var(--m);
  flex: 2;
}
.separator h3 a {
  font-display: swap;
  font-family: inherit;
}
.separator .image {
  flex: 1;
  text-align: right;
}
.separator .image img {
  position: relative;
  top: -1px;
}
.separator .image a {
  display: inline-block;
  margin: var(--m) 0;
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  max-width: 280px;
  width: 100%;
  text-align: center;
}
.separator .image a:hover {
  opacity: 0.6;
}
.separator .image a i {
  margin-left: var(--xs);
}
footer {
  border-top: 0.25rem solid #ff0400;
  padding: var(--m) var(--xl);
  background-color: #fff;
}
footer ul {
  display: flex;
}
footer ul li {
  flex: 2;
}
footer ul li h6 {
  font-weight: 700;
  color: #000;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
footer ul li p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  margin: 0.1rem 0;
}
footer ul li a {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  display: block;
  margin: 0.1rem 0;
}
footer ul li .highlighted {
  color: #ff0400;
  font-weight: 700;
}
footer ul li.contact-info {
  display: grid;
  justify-content: flex-end;
}
footer ul li.social {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
footer ul li.social a {
  background-color: #ff0400;
  border-radius: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.3s;
}
footer ul li.social a i {
  color: #fff;
}
footer ul li.social a:hover {
  opacity: 0.6;
}
.service-patents ul li .excerpt,
.service-trademarks ul li .excerpt {
  padding: 0;
}
.service-patents ul li .excerpt p,
.service-trademarks ul li .excerpt p {
  margin: var(--s) 0;
  max-width: 580px;
  left: 0;
}
.service-patents ul li .excerpt h4,
.service-trademarks ul li .excerpt h4 {
  font-weight: 700;
  color: #ff0400;
}
.service-trademarks {
  background-color: #f8fafb;
}
.service-trademarks ul li .excerpt {
  padding-left: var(--xl);
}
.tm-registration,
.documents,
.tm-procedure {
  background-color: #f8fafb;
  padding: var(--xl);
}
.tm-registration h2,
.documents h2,
.tm-procedure h2 {
  text-align: center;
  font-weight: 700;
  color: #000;
  font-size: var(--l);
}
.tm-registration .content,
.documents .content,
.tm-procedure .content {
  padding-top: var(--m);
  display: flex;
  align-items: center;
}
.tm-registration .content .text p,
.documents .content .text p,
.tm-procedure .content .text p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  padding-right: var(--m);
  max-width: 620px;
}
.tm-registration .content .text p a,
.documents .content .text p a,
.tm-procedure .content .text p a {
  font-weight: 700;
  color: #ff0400;
  transition: all 0.3s;
  display: block;
  margin-top: var(--s);
}
.tm-registration .content .text p a:hover,
.documents .content .text p a:hover,
.tm-procedure .content .text p a:hover {
  opacity: 0.6;
}
.tm-registration .content .steps-container,
.documents .content .steps-container,
.tm-procedure .content .steps-container {
  flex: 2;
  width: 100%;
}
.tm-registration .content .steps-container .steps,
.documents .content .steps-container .steps,
.tm-procedure .content .steps-container .steps {
  padding-right: var(--m);
}
.tm-registration .content .steps-container .steps li,
.documents .content .steps-container .steps li,
.tm-procedure .content .steps-container .steps li {
  margin-bottom: 1rem;
  padding: var(--s);
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
  height: 74px;
  transition: all 0.3s;
  cursor: pointer;
}
.tm-registration .content .steps-container .steps li .dot,
.documents .content .steps-container .steps li .dot,
.tm-procedure .content .steps-container .steps li .dot {
  background-color: #a2a2a2;
  font-weight: 700;
  color: #fff;
  font-size: s;
  font-weight: 700;
  text-align: center;
  max-width: 28px;
  width: 100%;
  height: 28px;
  padding: 0.25rem;
  border-radius: 50%;
  margin-right: var(--s);
}
.tm-registration .content .steps-container .steps li h6,
.documents .content .steps-container .steps li h6,
.tm-procedure .content .steps-container .steps li h6 {
  font-weight: 700;
  color: #000;
  font-size: var(--s);
}
.tm-registration .content .steps-container .steps li a,
.documents .content .steps-container .steps li a,
.tm-procedure .content .steps-container .steps li a {
  display: inherit;
  width: 100%;
  align-items: center;
}
.tm-registration .content .steps-container .steps .contact-info,
.documents .content .steps-container .steps .contact-info,
.tm-procedure .content .steps-container .steps .contact-info {
  background-color: #f8fafb;
}
.tm-registration .content .steps-container .steps .text,
.documents .content .steps-container .steps .text,
.tm-procedure .content .steps-container .steps .text {
  height: auto;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
.tm-registration .content .steps-container .steps .text p,
.documents .content .steps-container .steps .text p,
.tm-procedure .content .steps-container .steps .text p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  margin: 0;
  left: 0;
}
.tm-registration .content .steps-container .steps li:nth-child(3),
.documents .content .steps-container .steps li:nth-child(3),
.tm-procedure .content .steps-container .steps li:nth-child(3) {
  opacity: 0.4;
}
.tm-registration .content .steps-container .steps li:nth-child(4),
.documents .content .steps-container .steps li:nth-child(4),
.tm-procedure .content .steps-container .steps li:nth-child(4) {
  opacity: 0.2;
}
.tm-registration .content .steps-container .steps .active,
.documents .content .steps-container .steps .active,
.tm-procedure .content .steps-container .steps .active,
.tm-registration .content .steps-container .steps li:hover,
.documents .content .steps-container .steps li:hover,
.tm-procedure .content .steps-container .steps li:hover {
  opacity: 1;
}
.tm-registration .content .steps-container .steps .active .dot,
.documents .content .steps-container .steps .active .dot,
.tm-procedure .content .steps-container .steps .active .dot,
.tm-registration .content .steps-container .steps li:hover .dot,
.documents .content .steps-container .steps li:hover .dot,
.tm-procedure .content .steps-container .steps li:hover .dot {
  background-color: #ff0400;
}
.tm-registration .content .steps-container .steps .active h6,
.documents .content .steps-container .steps .active h6,
.tm-procedure .content .steps-container .steps .active h6,
.tm-registration .content .steps-container .steps li:hover h6,
.documents .content .steps-container .steps li:hover h6,
.tm-procedure .content .steps-container .steps li:hover h6 {
  color: #ff0400;
}
.tm-registration .content .documents-list,
.documents .content .documents-list,
.tm-procedure .content .documents-list {
  width: 100%;
}
.tm-registration .content .documents-list h4,
.documents .content .documents-list h4,
.tm-procedure .content .documents-list h4 {
  font-weight: 700;
  color: #ff0400;
  font-size: var(--s);
  margin-bottom: var(--s);
}
.tm-registration .content .documents-list ul li,
.documents .content .documents-list ul li,
.tm-procedure .content .documents-list ul li {
  margin-bottom: var(--s);
  background-color: #fff;
  border-left: 4px solid #ff0400;
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
  padding: var(--s);
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
}
.tm-registration .content .documents-list ul li img,
.documents .content .documents-list ul li img,
.tm-procedure .content .documents-list ul li img {
  margin-right: var(--s);
}
.tm-registration .content .documents-list ul li p,
.documents .content .documents-list ul li p,
.tm-procedure .content .documents-list ul li p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: 0.8rem;
}
.tm-registration .content > *,
.documents .content > *,
.tm-procedure .content > * {
  flex: 1;
}
.documents {
  position: relative;
  padding: var(--xl);
}
.documents .content .image h5 {
  font-weight: 700;
  color: #ff0400;
  font-size: var(--m);
  padding-bottom: var(--xs);
  text-align: left;
}
.documents .content .image p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  max-width: 380px;
  text-align: left;
}
.documents .content .image img {
  max-width: 100%;
  margin-top: var(--m);
}
.documents .content .example {
  background-color: #fff;
  border-left: 4px solid #ff0400;
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
  padding: var(--s);
  border-radius: 0.25rem;
  text-align: center;
  margin-left: var(--m);
}
.documents .content .example h5,
.documents .content .example p {
  text-align: center;
  max-width: 100%;
}
.documents .content .text .title {
  display: flex;
}
.documents .content .text .title:before {
  content: "—";
  font-weight: 700;
  color: #000;
  font-size: var(--l);
  margin-right: var(--s);
  line-height: var(--l);
}
.documents .content .text .title h3 {
  font-weight: 700;
  color: #000;
  font-size: var(--m);
  margin-bottom: var(--s);
}
.documents .content .text p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  margin: 0 var(--l);
  max-width: 380px;
  position: relative;
  left: 1rem;
}
.documents .dot-1 {
  position: absolute;
  top: var(--m);
  left: var(--m);
  z-index: -1;
}
.documents .dot-2 {
  position: absolute;
  bottom: var(--m);
  right: var(--m);
  z-index: -1;
}
.tm-procedure .content .timeline ol {
  position: relative;
  margin-right: var(--m);
}
.tm-procedure .content .timeline ol:before {
  content: " ";
  border-left: 4px solid #d8d8d8;
  position: absolute;
  top: var(--xs);
  left: var(--xs);
  height: calc(100% - 1rem);
}
.tm-procedure .content .timeline ol li {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: var(--m);
}
.tm-procedure .content .timeline ol li .icon {
  margin-right: var(--s);
}
.tm-procedure .content .timeline ol li .icon i {
  color: #ff0400;
}
.tm-procedure .content .timeline ol li .icon .fa-check-circle:before {
  background-color: #fff;
  border-radius: 50%;
}
.tm-procedure .content .timeline ol li .text {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
}
.tm-procedure .content .timeline ol li .text span {
  display: block;
  font-size: 0.8rem;
}
.tm-procedure .content .image {
  margin-right: var(--m);
}
.tm-procedure .content .image h2 {
  text-align: left;
  font-size: var(--m);
  margin-bottom: var(--s);
}
.tm-procedure .content .image p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  margin-bottom: var(--s);
}
.tm-procedure .content .image img {
  width: 100%;
}
.white {
  background-color: transparent;
}
.litigation-services {
  padding: var(--xl);
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: var(--s);
}
.litigation-services ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--s);
}
.litigation-services ul .text {
  grid-column: span 2;
  margin: 0;
  padding: 0;
  border-left: none;
  background: transparent;
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  box-shadow: none;
  max-width: 660px;
}
.litigation-services ul .text a {
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  display: block;
  margin: var(--s) 0 var(--m) 0;
  max-width: 280px;
  width: 100%;
  text-align: center;
}
.litigation-services ul .text a:hover {
  opacity: 0.6;
}
.litigation-services ul .text a i {
  margin-left: var(--xs);
}
.litigation-services ul li {
  margin-bottom: var(--s);
  background-color: #fff;
  border-left: 4px solid #ff0400;
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
  padding: var(--m);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  border-radius: 0.25rem;
  align-content: flex-start;
}
.litigation-services ul li .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--s);
  height: 72px;
}
.litigation-services ul li .title img {
  margin-right: var(--s);
}
.litigation-services ul li .title h5 {
  font-weight: 700;
  color: #ff0400;
  font-size: var(--s);
  flex: 1;
}
.litigation-services ul li .text p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
}
.litigation-services ol {
  position: relative;
}
.litigation-services ol li:first-child {
  position: absolute;
  top: 0;
  left: var(--m);
}
.litigation-services ol li:last-child {
  position: absolute;
  bottom: 0;
  right: var(--m);
}
.map .hero {
  height: auto;
  align-items: center;
  padding: var(--s);
}
.map-container {
  position: relative;
}
.contact {
  margin: var(--xl);
  padding: var(--xl);
  position: relative;
}
.contact .dots-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.contact .dots-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.contact .contact-information {
  margin: 0 var(--xl);
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
  background-color: #fff;
  display: flex;
}
.contact .contact-information > * {
  flex: 1;
}
.contact .contact-information .form-container {
  padding: var(--s) var(--m);
}
.contact .contact-information .form-container h3 {
  font-weight: 700;
  color: #000;
  font-size: var(--m);
  margin-bottom: var(--m);
}
.contact .contact-information .form-container form {
  width: 100%;
}
.contact .contact-information .form-container form .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--s);
}
.contact .contact-information .form-container form .input-container label {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
}
.contact
  .contact-information
  .form-container
  form
  .input-container
  input:not([type="submit"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  background-color: #fff;
  color: #000;
  padding: 0.75rem var(--s);
  font-size: var(--s);
  border: 1px solid #ccc;
  width: 100%;
}
.contact
  .contact-information
  .form-container
  form
  .input-container
  input:not([type="submit"])::-webkit-input-placeholder {
  color: #a2a2a2;
}
.contact .contact-information .form-container form .input-container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  background-color: #fff;
  color: #000;
  padding: 0.75rem var(--s);
  font-size: var(--s);
  border: 1px solid #ccc;
  width: 100%;
  height: 160px;
  resize: none;
}
.contact
  .contact-information
  .form-container
  form
  .input-container
  textarea::-webkit-input-placeholder {
  color: #a2a2a2;
}
.contact .contact-information .form-container form .cta-container {
  margin-top: var(--m);
}
.contact
  .contact-information
  .form-container
  form
  .cta-container
  input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.contact
  .contact-information
  .form-container
  form
  .cta-container
  input[type="submit"]:hover {
  opacity: 0.6;
}
.contact
  .contact-information
  .form-container
  form
  .cta-container
  input[type="submit"]
  i {
  margin-left: var(--xs);
}
.contact .contact-information .info-container {
  background-color: #f8fafb;
}
.contact .contact-information .info-container .map-container iframe {
  width: 100%;
  height: 420px;
}
.contact .contact-information .info-container ul {
  margin: var(--s) 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 60%;
  padding-left: 0;
  
}
.contact .contact-information .info-container ul li {
  border-left: 4px solid #ff0400;
  padding: var(--s);
  margin-bottom: var(--s);
  cursor: pointer;
  list-style: none;
  display: inline-block;
  width: calc(100% / 2);
  height: 200px;
}
.contact .contact-information .info-container ul li h4 {
  font-weight: 700;
  color: #000;
  font-size: var(--s);
  margin-bottom: var(--xs);
  transition: all 0.3s;
}
.contact .contact-information .info-container ul li p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  transition: all 0.3s;
}
.contact .contact-information .info-container ul li:last-child {
  margin-bottom: 0;
}
.contact .contact-information .info-container ul li.active h4,
.contact .contact-information .info-container ul li:hover h4 {
  color: #ff0400;
}
.contact .contact-information .info-container ul li.active p,
.contact .contact-information .info-container ul li:hover p {
  color: #000;
}
.about-us,
.our-team {
  padding: var(--xl);
  display: flex;
}
.about-us h2,
.our-team h2 {
  font-weight: 700;
  color: #000;
  font-size: var(--m);
  margin-bottom: var(--s);
}
.about-us p,
.our-team p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  margin-bottom: var(--xs);
  max-width: 570px;
  position: relative;
  left: -5px;
}
.about-us a,
.our-team a {
  display: block;
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  max-width: 280px;
  width: 100%;
  text-align: center;
  margin-top: var(--s);
}
.about-us a:hover,
.our-team a:hover {
  opacity: 0.6;
}
.about-us a i,
.our-team a i {
  margin-left: var(--xs);
}
.about-us article,
.our-team article {
  flex: 2;
}
.about-us article .title,
.our-team article .title {
  display: flex;
}
.about-us article .title:before,
.our-team article .title:before {
  content: "—";
  font-weight: 700;
  color: #000;
  font-size: var(--l);
  margin-right: var(--s);
  line-height: var(--l);
}
.about-us article .text,
.our-team article .text {
  padding: 0 var(--xl);
}
.about-us aside,
.our-team aside {
  flex: 1;
  margin-left: var(--xl);
}
.about-us aside .card,
.our-team aside .card {
  background-color: #fff;
  padding: var(--m);
  box-shadow: 0 0 0.5rem 0 rgba(63, 83, 110, 0.3);
}
.about-us aside .card p,
.our-team aside .card p {
  left: 0;
}
.about-us aside .card a,
.our-team aside .card a {
  display: block;
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  margin-top: var(--m);
  text-align: center;
}
.about-us aside .card a:hover,
.our-team aside .card a:hover {
  opacity: 0.6;
}
.about-us aside .card a i,
.our-team aside .card a i {
  margin-left: var(--xs);
}
.our-team .text p {
  left: 0;
}
.our-team .text h4 {
  font-weight: 700;
  color: #000;
  margin: var(--l) 0 var(--xs) 0;
}
.our-team .text h4 span {
  font-display: swap;
  font-family: "Playfair Display", serif;
  color: #ff0400;
}
.our-team aside .image-1 {
  margin-bottom: var(--xl);
}
.facts {
  padding: var(--xl);
}
.facts h3 {
  font-weight: 700;
  color: #000;
  font-size: var(--l);
  text-align: center;
}
.facts ul {
  display: grid;
  grid-template-columns: repeat(4, 240px);
  grid-template-rows: repeat(3, 240px);
  margin-top: var(--l);
  justify-content: center;
}
.facts ul li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.facts ul .text {
  padding: var(--s);
}
.facts ul .text h4 {
  font-size: var(--l);
}
.facts ul .bg-red {
  background-color: #ff0400;
}
.facts ul .bg-red h4 {
  font-weight: 700;
  color: #fff;
}
.facts ul .bg-red p {
  font-weight: 400;
  color: #fff;
  line-height: 160%;
}
.facts ul .bg-gray {
  background-color: #f8fafb;
}
.facts ul .bg-gray h4 {
  font-weight: 700;
  color: #ff0400;
}
.facts ul .bg-gray p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
}
.facts ul .bg-map {
  background-image: url("../img/facts/fact-image-6.jpg");
}
.facts ul .bg-map h4 {
  font-weight: 700;
  color: #000;
}
.facts ul .bg-map p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
}
.join form {
  width: 100%;
}
.join form .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--s);
}
.join form .input-container label {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
}
.join form .input-container input:not([type="submit"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  background-color: #fff;
  color: #000;
  padding: 0.75rem var(--s);
  font-size: var(--s);
  border: 1px solid #ccc;
  width: 100%;
}
.join
  form
  .input-container
  input:not([type="submit"])::-webkit-input-placeholder {
  color: #a2a2a2;
}
.join form .input-container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  background-color: #fff;
  color: #000;
  padding: 0.75rem var(--s);
  font-size: var(--s);
  border: 1px solid #ccc;
  width: 100%;
  height: 160px;
  resize: none;
}
.join form .input-container textarea::-webkit-input-placeholder {
  color: #a2a2a2;
}
.join form .cta-container {
  margin-top: var(--m);
}
.join form .cta-container input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.join form .cta-container input[type="submit"]:hover {
  opacity: 0.6;
}
.join form .cta-container input[type="submit"] i {
  margin-left: var(--xs);
}
.not-found {
  padding: var(--xl);
  display: flex;
  align-items: center;
  position: relative;
}
.not-found .dot {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.not-found > * {
  flex: 1;
}
.not-found .text {
  padding: 0 var(--s);
}
.not-found .text .title {
  display: flex;
}
.not-found .text .title:before {
  content: "—";
  font-weight: 700;
  color: #000;
  font-size: var(--xl);
  margin-right: var(--s);
  line-height: 3rem;
}
.not-found .text .title h1 {
  font-weight: 700;
  color: #000;
  font-size: var(--l);
}
.not-found .text p {
  font-weight: 400;
  color: #a2a2a2;
  line-height: 160%;
  font-size: var(--s);
  margin: var(--s) var(--xl);
  max-width: 360px;
  position: relative;
  left: 18px;
}
.not-found .text p a {
  display: block;
  margin-top: var(--m);
  background-color: #ff0400;
  color: #fff;
  padding: var(--s) 1.25rem;
  font-size: var(--s);
  font-weight: 700;
  transition: all 0.3s;
  max-width: 280px;
  text-align: center;
}
.not-found .text p a:hover {
  opacity: 0.6;
}
.not-found .text p a i {
  margin-left: var(--xs);
}
.not-found .image {
  text-align: center;
}
@media screen and (max-width: 1240px) {
  header nav {
    flex: 4;
  }
  header nav ul li {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --xl: 3rem;
    --l: 2rem;
    --m: 1.5rem;
  }
  header {
    padding: var(--m);
    flex-wrap: wrap;
    flex: 1;
  }
  header .logo a img {
    width: 280px;
  }
  header nav {
    display: none;
    flex: 100%;
    order: 1;
    margin-top: var(--m);
    justify-content: flex-start;
  }
  header nav ul {
    padding: 0;
  }
  header nav ul li .submenu dl:before {
    top: -0.15rem;
  }
  header ol li .hamburger {
    display: block;
  }
  .service-patents ul li .excerpt p {
    max-width: 420px;
  }
  .tm-procedure .content,
  .tm-registration .content {
    flex-direction: column;
    padding: 0;
    padding-top: var(--m);
  }
  .tm-procedure .content .steps-container,
  .tm-registration .content .steps-container {
    padding-right: 0;
  }
  .tm-procedure .content .steps-container .steps,
  .tm-registration .content .steps-container .steps {
    width: 100%;
    margin-bottom: var(--m);
    padding-right: 0;
  }
  .tm-procedure .content .steps-container .steps li,
  .tm-registration .content .steps-container .steps li {
    max-width: 100%;
  }
  .tm-procedure .content .timeline,
  .tm-registration .content .timeline {
    order: 1;
    padding-top: var(--m);
  }
  .our-team article .text {
    padding: 0;
  }
  .our-team aside {
    margin-left: var(--m);
  }
  .facts ul {
    grid-template-columns: repeat(3, 240px);
    grid-template-rows: repeat(3, 240px);
  }
}
@media screen and (max-width: 768px) {
  .services ul .last {
    padding: var(--xl);
    padding-bottom: 0;
  }
  .services ul li .text {
    flex: 1;
  }
  .services ul li .text .title:before {
    content: "";
    margin-right: 0;
  }
  .services ul li .text .title h2 {
    font-size: var(--m);
    margin-bottom: var(--xs);
  }
  .services ul li .text .title h2 br {
    display: none;
  }
  .services ul li .text p {
    max-width: none;
    margin: 0;
  }
  .slider .main-carousel .carousel-cell .slide .text p,
  .slider .main-carousel .carousel-cell .slide .text h6 {
    margin: 0;
    margin-right: var(--s);
    left: 0;
    font-size: var(--s);
  }
  .separator {
    margin-top: var(--m);
  }
  footer {
    padding: var(--m);
  }
  footer ul li h6 {
    font-size: var(--s);
  }
  footer ul li p {
    font-size: 0.75rem;
  }
  .tm-registration {
    padding: var(--s);
  }
  .tm-registration h2 {
    font-size: var(--m);
  }
  .tm-registration .content .steps {
    margin-top: var(--s);
  }
  .tm-registration .content .steps li {
    height: auto;
    opacity: 1 !important;
    transform: translateX(0%) scale(1);
  }
  .tm-registration .content .steps li .dot {
    background-color: #ff0400;
  }
  .tm-registration .content .steps li h6 {
    color: #ff0400;
  }
  .documents {
    padding: var(--s);
  }
  .documents .content {
    flex-direction: column;
    padding-top: 0;
  }
  .documents .content .text {
    width: 100%;
    padding-bottom: var(--s);
  }
  .documents .content .text p {
    max-width: 100%;
  }
  .documents .content .example {
    margin-left: 0;
  }
  .litigation-services {
    grid-template-columns: 1fr;
  }
  .litigation-services ol {
    display: none;
  }
  .contact {
    padding: 0;
    margin: 0;
  }
  .contact .contact-information {
    margin: var(--m);
  }
  .contact .contact-information .info-container .map-container iframe {
    height: 240px;
  }
  .about-us {
    flex-direction: column;
  }
  .about-us article .text {
    padding: 0;
  }
  .about-us aside {
    padding-top: var(--m);
    margin-left: 0;
  }
  .our-team aside {
    display: none;
  }
  .facts ul {
    grid-template-columns: repeat(2, 240px);
    grid-template-rows: repeat(2, 240px);
  }
  .not-found {
    padding: var(--m);
    flex-direction: column;
  }
  .not-found .text {
    order: 1;
  }
  .not-found .image {
    margin-bottom: var(--m);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .hero {
    height: 30vh;
  }
}
@media screen and (max-width: 568px) {
  :root {
    --xl: 2rem;
  }
  header {
    padding: var(--s);
  }
  header .logo a img {
    width: 150px;
  }
  header ol {
    flex: 1;
    justify-content: flex-end;
  }
  header nav {
    display: none;
    margin-top: 0;
  }
  header nav ul {
    flex: 1;
    flex-direction: column;
  }
  header nav ul li {
    margin: 0;
    flex: 1;
    padding: var(--s) 0;
    border-bottom: 1px solid #f8fafb;
  }
  header nav ul li .submenu {
    display: block;
    position: relative;
    padding: 0;
  }
  header nav ul li .submenu dl {
    box-shadow: none;
    padding: 0;
  }
  header nav ul li .submenu dl dt {
    margin: var(--s);
  }
  header nav ul li .submenu dl dt:last-child {
    margin-bottom: 0;
  }
  header nav ul li .submenu dl:before {
    content: none;
  }
  header nav ul .active {
    border-bottom: 1px solid #f8fafb;
    padding-bottom: 0;
    padding: var(--s) 0;
  }
  .hero {
    padding: var(--s);
    height: auto;
    min-height: 30vh;
  }
  .hero .title {
    padding: 0;
  }
  .hero .title hr {
    display: none;
  }
  .hero .title h1 {
    font-size: var(--m);
  }
  .hero p {
    max-width: 100%;
    padding: 0;
    font-size: var(--s);
  }
  .services ul li,
  .services ul .last {
    padding: var(--s);
    flex-direction: column;
  }
  .services ul li .image,
  .services ul .last .image {
    padding: 0;
    padding-bottom: var(--s);
  }
  .services ul li .text,
  .services ul .last .text {
    padding: 0;
    order: 1;
  }
  .services ul li .animation,
  .services ul .last .animation {
    margin-bottom: var(--s);
  }
  .slider {
    padding: var(--m);
  }
  .slider .main-carousel .carousel-cell .slide {
    flex-direction: column;
  }
  .slider .main-carousel .carousel-cell .slide .text {
    order: 1;
  }
  .slider .main-carousel .carousel-cell .slide .text .title h4 {
    margin-bottom: var(--xs);
  }
  .separator {
    flex-direction: column;
    align-items: center;
    margin: var(--s);
  }
  .separator h3 {
    text-align: center;
    margin-bottom: var(--xs);
    font-size: var(--s);
    margin-top: var(--s);
  }
  .separator .image img {
    width: 100%;
  }
  footer ul {
    flex-direction: column;
  }
  footer ul li {
    margin-bottom: var(--s);
  }
  footer ul li:last-child {
    margin-bottom: 0;
  }
  footer ul li.contact-info {
    justify-content: flex-start;
  }
  footer ul li.contact-info h6 {
    display: none;
  }
  .tm-registration .content {
    padding: 0;
    flex-direction: column;
  }
  .documents {
    padding: var(--s);
  }
  .documents .dot-1,
  .documents .dot-2 {
    display: none;
  }
  .documents .content {
    flex-direction: column;
    padding-top: 0;
  }
  .documents .content .image {
    margin-top: 0;
    text-align: center;
  }
  .documents .content .image h5 {
    margin-top: var(--s);
  }
  .documents .content .text .title h3 {
    margin-bottom: 0;
  }
  .documents .content .text .title:before {
    content: none;
  }
  .documents .content .text p {
    margin: 0;
    max-width: 100%;
    left: 0;
  }
  .documents .content .documents-list {
    margin-top: var(--s);
  }
  .documents .content .documents-list ul li {
    padding: var(--s);
    flex-direction: column;
    align-items: flex-start;
  }
  .documents .content .documents-list ul li img {
    margin-bottom: var(--xs);
  }
  .documents .content .documents-list h4 {
    margin-bottom: var(--xs);
  }
  .tm-procedure {
    padding: var(--s);
  }
  .tm-procedure h2 {
    font-size: var(--m);
  }
  .tm-procedure .content {
    padding-top: 0;
  }
  .tm-procedure .content .timeline {
    padding-top: var(--s);
  }
  .litigation-services {
    padding: var(--s);
  }
  .litigation-services ul {
    grid-template-columns: 1fr;
  }
  .litigation-services ul .text {
    grid-column: auto;
  }
  .litigation-services ul li {
    margin-bottom: 0;
    padding: var(--s);
  }
  .map {
    min-height: auto;
  }
  .contact .dots-1,
  .contact .dots-2 {
    display: none;
  }
  .contact .contact-information {
    margin: var(--s);
    flex-direction: column;
  }
  .contact .contact-information .form-container {
    padding: var(--s);
  }
  .our-team {
    padding: var(--m);
  }
  .facts {
    padding: var(--m);
  }
  .facts h3 {
    font-size: var(--m);
  }
  .facts ul {
    grid-template-columns: 240px;
    grid-template-rows: auto;
  }
  .not-found .image img {
    width: 60%;
  }
  .not-found .text {
    text-align: center;
  }
  .not-found .text .title:before {
    content: "";
  }
  .not-found .text p {
    margin-left: 0;
    margin-right: 0;
    left: 0;
    max-width: 100%;
  }
  .not-found .text p a {
    max-width: 100%;
  }
}
@media screen and (max-width: 667px) and (orientation: landscape) {
  .hero {
    height: auto;
  }
  header nav ul li {
    text-align: center;
  }
  header nav ul .active {
    border-bottom: none;
  }
  .tm-registration {
    padding: var(--s);
  }
  .tm-registration h2 {
    font-size: var(--m);
  }
  .tm-registration .content {
    padding: 0;
  }
  .tm-registration .content .steps {
    margin-top: var(--s);
  }
  .tm-registration .content .steps li {
    height: auto;
    opacity: 1 !important;
  }
  .tm-registration .content .steps li .dot {
    background-color: #ff0400;
  }
  .tm-registration .content .steps li h6 {
    color: #ff0400;
  }
}
