:root{

  --mainColor: #126B46;
  --lightGreen: #b8cec3;

}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

.skip {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  top: auto;
}

.skip:focus {
  color: #000;
  display: inline-block;
  height: auto;
  width: auto;
  position: static;
  margin: auto;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.green__color {
  color: var(--mainColor);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1420px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1580px;
  }
}

h1,h2,h3,h4,h5{
  margin: 0 0 24px;
  font-weight: 700;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 16px 24px;
  background: var(--mainColor);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all .2s ease-in-out;
}
.btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #116e48;
  transition: all .2s ease-in-out;
}
.btn:hover:after {
  width: 100%;
}
.btn span {
  position: relative;
  z-index: 1;
  transition: all .2s ease-in-out .1s;
}
.btn:hover span {
  color: #fff;
}

[tooltip-top]:before {
  opacity: 0;
  visibility: hidden;
  content: attr(tooltip-top);
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  background: var(--mainColor);
  color: #fff;
  white-space: nowrap;
  line-height: 1.5;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
  transform: translateX(-50%);
}
[tooltip-top]:after {
  opacity: 0;
  visibility: hidden;
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--mainColor);
  pointer-events: none;
  z-index: 1;
  transform: translateX(-50%) rotate(45deg);
}
[tooltip-top]:hover:after,
[tooltip-top]:hover:before {
  opacity: 1;
  visibility: visible;
}

.hamburger__menu{
  display: none;
}
.subscribe__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}
.subscribe__btns a {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid var(--mainColor);
  border-radius: 100%;
  min-height: auto;
}

.subscribe__btns a img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
}

/*FORM*/
/* The container */
.checkbox {
  display: block;
  position: relative;
  padding-left: 41px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--mainColor);
}
.checkbox:hover input ~ .checkmark {
  background-color: var(--mainColor);
}
.checkbox input:checked ~ .checkmark {
  background-color: var(--mainColor);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*HEADER*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: end;
  z-index: 99;
}
.logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0,0,0,0.10);
}
.logo img {
  width: auto;
  height: 100%;
}
.nav__search {
  display: flex;
  align-items: center;
  padding: 0 32px;
  position: relative;
  height: 80px;
}
.main__nav {
  display: flex;
  align-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main__nav li {
  position: relative;
  margin-left: 32px;
}
.main__nav li a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}
.search {
  margin-left: 40px;
}
.search__icon {
  cursor: pointer;
}
.search__close {
  display: none;
  position: absolute;
  top: 50%;
  right: 32px;
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
.search.active .search__close {
  display: block;
}
.search form {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .2s ease-in-out;
}
.search.active form {
  opacity: 1;
  visibility: visible;
}
.search input[type="text"] {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--mainColor);
  padding: 16px 32px;
  outline: none;
}


.practice__page.split__box,
.single__practice.split__box,
.team__page.split__box,
.single__team.split__box,
.publication__page.split__box,
.events__page.split__box,
.single__event.split__box,
.affiliation__page.split__box,
.contact__page.split__box {
    padding-top: 160px;
}

/*SEARCH PAGE*/
.search__page {
  padding: 140px 0 80px;
}
.search__page-info {
  margin-bottom: 80px;
}
.search__page-info form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
.search__page-input input {
  height: 35px;
  margin-bottom: 0;
  border: 1px solid var(--mainColor);
  padding: 8px;
  font-size: 14px;
  border-radius: 0;
}
.search__page-select select {
  height: 35px;
  margin-bottom: 0;
  border: 1px solid var(--mainColor);
  padding: 0 8px;
  font-size: 14px;
}
.search__page-info .btn {
  position: relative;
  border: none;
  color: #fff;
  padding: 8px 32px;
  border-radius: 30px;
  overflow: hidden;
  font-size: 14px;
}

.search__page-result {
  margin-bottom: 80px;
}
.search__page-result a {
  display: block;
  color: #000;
  margin-bottom: 16px;
}

/*PAGE IMAGE*/
.page__image {
  width: 100%;
  height: 25vh;
  position: relative;
}
.page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*HOMEPAGE*/
.home__slider {
  position: relative;
  width: 100%;
  height: 75vh;
  background: url('../img/wpg/Ritz-Carlton.jpeg') no-repeat center 0;
  background-size: cover;
  margin-bottom: 48px;
}
.home__slider:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.home__slider h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  color: #fff;
  font-weight: 400;
  font-size: 56px;
  text-align: center;
  margin: 0;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home__slider-name {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}
.home__slider-name i {
  font-size: 150%;
  font-style: normal;
}

.split__box {
  padding: 40px 0;
}
.split__box .container {
  display: flex;
  flex-wrap: wrap;
}
.split__box-left {
  width: 50%;
  padding: 0 10px;
}
.split__box-title {
  font-size: 40px;
  text-align: center;
  color: var(--mainColor);
  margin: 0 0 24px;
  position: relative;
}
.split__box-img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.split__box-right {
  width: 50%;
  padding: 0 40px;
}
.split__box-desc {
  margin: 0 auto;
  text-align: center;
  padding: 24px;
  background: var(--lightGreen);
}
.about__page .split__box-desc {
  text-align: left;
  background: none;
  padding: 0;
}
.about__page .split__box-desc img {
  float: right;
  width: 35%;
  margin: 0 0 40px 40px;
}
.split__box-desc p,
.split__box-desc h3 {
  font-size: 22px;
  margin: 0;
}
.split__box-desc .btn {
  margin: 24px 0 0;
}
.home__events .btn {
  margin: 0 0 24px;
}
/*Logo Layout Short*/
.logo__layout {
  display: flex;
  flex-wrap: wrap;
}
.logo__layout-item {
  width: 33.333%;
  padding: 8px;
  margin-bottom: 32px;
  display: flex;
  justify-content: end;
}
.logo__layout-item:nth-child(1) {
  width: 100%;
}
.logo__layout-item:nth-child(2) {
  width: 66.666%;
}
.logo__layout-link {
  display: block;
  width: 100%;
  color: #000;
  text-decoration: none;
  width: 100%;
}
.logo__layout-item:nth-child(1) .logo__layout-link {
  width: calc(33.333% - 10px);
}
.logo__layout-item:nth-child(2) .logo__layout-link {
  width: calc(50% - 8px);
}
.logo__layout-img {
  position: relative;
  width: 100%;
  background: var(--mainColor);
}
.logo__layout-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}
.logo__layout-title {
  margin: 8px 0 0;
  text-align: center;
  font-size: 18px;
}

/*Logo Layout Big*/
.logo__laybig {
  display: flex;
  flex-wrap: wrap;
}
.logo__laybig-item {
  width: 50%;
  padding: 0 16px;
  display: flex;
  justify-content: end;
}
.logo__laybig-item:nth-child(1) {
  width: 100%;
  margin-bottom: 32px;
}
.logo__laybig-link {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  background: var(--mainColor);
}
.logo__laybig-item:nth-child(1) .logo__laybig-link {
  width: calc(50% - 16px);
}
.logo__laybig-title {
  height: 50%;
  padding: 16px;
  text-align: center;
  margin: 0;
  font-size: 18px;
}
.logo__laybig-title span {
  display: block;
  font-size: 14px;
  margin-top: 16px;
}
.logo__laybig-item img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.home__practice-item {
  margin-bottom: 130px;
}
.home__practice-item .split__box-desc{
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
}
.home__practice-item .split__box-desc p {
  text-align: justify;
}
.home__practice-item p {
  font-size: 18px;
}
.home__practice-item ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home__practice-item img {
  width: 100%;
  margin-bottom: 16px;
}

/*History*/
.single__page--history {
  padding: 80px 0;
}
.single__page--history .page__head-info {
  margin: 40px 0;
  text-align: center;
}
.single__page--history .page__head-title {
  font-size: 40px;
  color: var(--mainColor);
}
.page__head-title .page__head-img {
  width: 50%;
}
.single__page--history ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 40px auto;
  width: 50%;
}
.single__page--history ul:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--mainColor);
  transform: translateX(-50%);
}
.single__page--history ul li {
  margin: 0 0 24px;
  position: relative;
  width: 75%;
  left: -35%;
  
}
.timeline__info {
  width: 100%;
  height: 100%;
  padding: 24px;
  background: var(--lightGreen);
  z-index: 1;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
}
.single__page--history ul li:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -13%;
  width: 13%;
  height: 1px;
  background: var(--mainColor);
  transform: translateY(-50%);
}
.single__page--history ul li:before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-13% - 10px);
  width: 16px;
  height: 16px;
  background: var(--mainColor);
  transform: translateY(-50%);
}
.single__page--history ul li:nth-child(even):after {
  right: auto;
  left: -13%;
  width: 13%;
}
.single__page--history ul li:nth-child(even):before {
  right: auto;
  left: calc(-13% - 10px);
}
.single__page--history ul li:nth-child(even) {
  left: auto;
  right: -60%;
}
.single__page--history ul li img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
  margin-top: 16px;
}
.timeline__year {
  display: inline-block;
  padding: 16px 48px;
  background: var(--mainColor);
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
/*.timeline__year {
  position: absolute;
  top: 50%;
  left: -50%;
  padding: 16px 24px;
  background: var(--mainColor);
  color: #fff;
  transform: translate(50%, -50%);
}*/
/*.timeline__year:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 70px;
  height: 1px;
  background: var(--mainColor);
  transform: translate(0, -50%);
}*/

/*NEWSLETTER*/
.newsletter__section {
  padding: 80px 0;
}
.newsletter {
  padding: 40px;
  background: var(--lightGreen);
}
.newsletter h2 {
  position: relative;
  font-size: 40px;
  text-align: center;
  color: #000;
  margin: 0 0 40px;
  text-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}
.newsletter__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.newsletter__desc {
  width: 40%;
  padding-right: 24px;
  font-size: 24px;
  text-align: center;
}
.newsletter__form {
  width: 60%;
  margin: 0 auto;
}
.newsletter__form iframe {
  width: 100%;
  height: 800px;
}
.form__item {
  margin-bottom: 16px;
}
.form__item label {
  display: block;
}
.form__item input[type="email"],
.form__item input[type="text"],
.form__item input[type="tel"],
.form__item input[type="number"],
.form__item textarea {
  width: 100%;
  height: 32px;
  padding: 16px;
  background: var(--mainColor);
  border: none;
  outline: none;
  color: #fff;
}
.form__item textarea {
  resize: vertical;
  height: 80px;
}
.form__item select {
  width: 100%;
  height: 32px;
  padding: 0 16px;
  background: var(--mainColor);
  border: none;
  outline: none;
  color: #fff;
}
.form__item select option {
  color: #fff;
}
.form__item--checkbox {
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.form__item input[type="checkbox"] {

}
.form__item--checkbox label {
  text-align: justify;
}
.newsletter__form button {
  margin: 0 auto;
  display: block;
  border: none;
  outline: none;
  width: 180px;
}

/*HOME LOCATIONS*/
.home__locations  {
  position: relative;
}
.home__locations .container {
  align-items: flex-start;
}
.home__locations .split__box-left {
  width: 100%;
  margin-bottom: 40px;
}
.home__locations .split__box-right {
  position: relative;
  width: 100%;
}
.home__locations .conact__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  min-width: 300px;
  max-width: 100%;
  margin: 0;
}
.home__locations .split__box-desc p,
.home__locations .split__box-desc h3 {
  margin-bottom: 16px;
  font-weight: 400;
}
.home__locations .split__box-desc h3 a {
  color: #000;
}
.home__locations-layout .logo__layout-link {
  width: 100%;
  height: 250px;
}
.home__locations-layout .logo__layout-item:nth-child(1) .logo__layout-link {
  width: calc(33.333% - 11px);
}
.home__locations-layout .logo__layout-item:nth-child(2) .logo__layout-link {
  width: calc(50% - 8px);
}
.logo__layout-loc {
  position: relative;
  background: var(--lightGreen);
  padding: 16px;
  width: 100%;
  height: 100%;
}
.logo__layout-loc h3,
.logo__layout-loc p {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
}
.logo__layout-loc span:first-child {
  margin: 0 0 16px;
}
.logo__layout-loc span {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
}
.logo__layout-loc img {
  position: absolute;
  top: auto;
  right: 8px;
  bottom: 8px;
  left: auto;
  width: 24px;
  height: 24px;
  transform: translate(0,0);
}

/*ABOUT PAGE*/
/*.about__page .split__box-title {
  
}*/
.about__title {
  text-align: left;
}
.about__title:after {
  left: 0;
  transform: translateX(0);
}
.split__box-list {
  margin: 40px auto;
  width: 80%;
  padding: 0 16px;
}

/*PRACTICE AREAS*/
.practice__page > .container {
  position: relative;
  align-items: flex-end;
  justify-content: end;
}
.practice__page-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 16px;
}
.practice__page .split__box-title {
  text-align: left;
}
.practice__page .split__box-left {
  position: absolute;
  width: 40%;
  top: 0px;
  left: 0;
}
.practice__page .split__box-desc {
  text-align: left;
}
.practice__page .split__box-desc p {
}
.practice__page .split__box-right {
  width: 50%;
}
.practice__page .logo__layout-item {
  margin-bottom: 0;
}
.practice__page .logo__layout-item p,
.practice__page .logo__layout-item h2 {
  font-size: 18px;
  margin: 8px 0 0;
  text-align: center;
}

/*PRACTICE AREAS SINGLE*/
.single__practice .container {
  align-items: flex-start;
}
.practice__nav {
  background: var(--lightGreen);
  padding: 24px;
}
.practice__nav ul {
  margin: 0;
  padding: 0 0 0 24px;
  list-style: square;
}
.practice__nav li {
  margin: 0 0 8px;
}
.practice__nav li:last-child {
  margin: 0;
}
.practice__nav-item {
  position: relative;
  cursor: pointer;
}
.practice__nav-item.active:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 24px;
  height: 1px;
  background: var(--mainColor);
}
.practice__nav-item.active,
.practice__nav-item:hover {
  color: var(--mainColor);
  font-weight: 700;
}

.single__practice h1 {
  text-align: left;
  font-size: 64px;
}
.single__practice h1:after {
  width: 60%;
  left: 0;
  transform: translateX(0%);
}
.single__practice .split__box-left {
  width: 320px;
}
.single__practice .split__box-right {
  width: calc(100% - 320px);
}
.single__practice .split__box-desc {
  margin-bottom: 40px;
  text-align: left;
}
.practice__item {
  margin-bottom: 40px;
}
.practice__item h3 {
  font-size: 24px;
  text-align: left;
  margin: 0 0 24px;
  padding: 0 0 16px;
}
.practice__item h3:after {
  width: 160px;
  left: 0;
  top: 16px;
  transform: translateX(0%);
}
.practice__item .split__box-title {
  text-align: left;
}
.practice__item ul {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-wrap: wrap;
}
.practice__item ul li {
  width: 50%;
  padding: 0 48px 0 0px;
  margin-bottom: 16px;
}
.single__practice .team__item-info p {
  margin: 0;
}
.practice__item--sercices ul {
  display: block;
}
.practice__item--sercices ul li {
  width: 100%;
}

.practice__item-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.practice__item-flex img {
  width: 50%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}




/*TEAM*/
.team__page {
  min-height: 100vh;
}
.team__page > .container {
  position: relative;
  align-items: flex-end;
  justify-content: end;
}
.team__page .split__box-left {

}
.team__page .split__box-title {
  text-align: left;
}
.team__info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}
.team__page .split__box-desc {
  text-align: left;
  width: 100%;
  margin: 0;
}

.team__filter {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lightGreen);
  padding: 24px;
  text-align: center;
  width: 200px;
}
.team__filter-item,
#team__item--all {
  position: relative;
  cursor: pointer;
  margin: 0 0 20px;
}
.team__filter-item.active:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  width: 8px;
  height: 1px;
  background: var(--mainColor);
}
.team__filter-item.active:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 1px;
  background: var(--mainColor);
}
.team__filter-item:last-child {
  margin: 0;
}
.team__filter-item.active,
.team__filter-item:hover,
#team__item--all:hover {
  color: var(--mainColor);
  font-weight: 700;
}
.team__page .split__box-right {
  width: 100%;
}
.team__page .logo__layout {
  width: 100%;
  margin-top: 40px;
  justify-content: end;
}
.logo__layout {
  display: flex;
  flex-wrap: wrap;
}
.team__item {
  width: 25%;
  padding: 8px;
  display: flex;
  justify-content: end;
}
.team__item:nth-child(1) {
  width: 100%;
}
.team__item:nth-child(2) {
  width: 75%;
}
.team__item:nth-child(4) {
  width: 50%;
}

.team__link {
  display: block;
  width: 100%;
  color: #000;
  text-decoration: none;
  width: 100%;
  transition: all .2s ease-in-out;
}
.team__item:nth-child(1) .team__link {
  width: calc(25% - 10px);
}
.team__item:nth-child(2) .team__link {
  width: calc(33.333% - 10px)
}
.team__item:nth-child(4) .team__link {
  width: calc(50% - 10px)
}
.box__item-img {
  position: relative;
}
.box__item-img:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100%;
}
.box__item-img img {
  position: absolute;
}
.team__img {
  position: relative;
  width: 100%;
  background: url(../img/wpg/teambg.png) no-repeat center center;
  background-size: cover;
}
.team__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__item-info {
  text-align: center;
  background: var(--mainColor);
  padding: 8px;
  color: #fff;
}
.team__item-info h2 {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}
.team__item-info span {
  display: block;
  font-size: 14px;
}

.team__item.team__item--10.active:nth-child(4) {
  width: 100%;
}
.team__item.team__item--10.active:nth-child(4) .team__link {
  width: calc(25% - 12px);
}
.team__item.team__item--10.active:nth-child(5) {
  width: 75%;
}
.team__item.team__item--10.active:nth-child(5) .team__link {
  width: calc(33.333% - 12px);
}
.team__item.team__item--10.active:nth-child(6) {
  width: 25%;
}

.team__item.team__item--2.active:nth-child(12) {
  width: 100%;
}
.team__item.team__item--2.active:nth-child(12) .team__link {
  width: calc(25% - 12px);
}
.team__item.team__item--2.active:nth-child(13) {
  width: 75%;
}
.team__item.team__item--2.active:nth-child(13) .team__link {
  width: calc(33.333% - 12px);
}
.team__item.team__item--2.active:nth-child(14) {
  width: 25%;
}
.team__item.team__item--2.active:nth-child(15){
  width: 50%;
}
.team__item.team__item--2.active:nth-child(15) .team__link {
  width: calc(50% - 8px);
}

.team__item.team__item--1.active:nth-child(7){
  width: 50%;
}
.team__item.team__item--1.active:nth-child(7) .team__link {
  width: calc(50% - 8px);
}

.team__item--noimage {
  display: none;
}
.team__item--noimage .team__link {
  background: var(--mainColor);
  width: 100%;
  height: 100%;
}
.team__item--1.active.team__item--noimage,
.team__item--2.active.team__item--noimage {
  display: block;
}

/*SINGLE TEAM*/
.single__team .container {
  align-items: flex-start;
}
.single__team .split__box-left {
  width: 33.333%;
}
.single__team .split__box-right {
  width: 66.666%;
}
.single__team-title {
  font-size: 64px;
  text-align: left;
  color: var(--mainColor);
  margin: 0 0 24px;
  position: relative;
  
}
.single__team-content {
  background: #d9d9d9;
  padding: 24px;
  margin-bottom: 40px;
}
.single__team-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--mainColor) !important;
}
.single__team-info:last-child {
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0 !important;
}
.single__team-info-title {
  width: 30%;
  text-transform: uppercase;
  font-weight: 700;

}
.single__team-info:last-child .single__team-info-title {
  margin: 0;
  border: none;
}
.single__team-info-desc {
  width: 70%;
  padding: 0 0 0 160px;
}
.single__team-info-desc p {
  margin: 0 0 8px;
}
.single__team-info:last-child .single__team-info-desc p {
  margin: 0;
}
.single__team-info-desc a {
  color: #000;
  text-decoration: none;
}

.single__team-item {
  margin-top: 120px;
  margin-bottom: 40px;
}
.single__team-item > h3 {
  font-size: 18px;
  text-align: left;
  color: var(--mainColor);
  margin: 0 0 24px;
  position: relative;
}

/*AFFILIATIONS*/
.affiliation__page .container {
  position: relative;
  align-items: flex-start;
}
.affiliation__page .split__box-left {
  width: 45%;
  position: absolute;
}
.affiliation__page .split__box-title {
  text-align: left;
}
.affiliation__page .split__box-desc {
  text-align: left;
}
.affiliation__page .split__box-right {
  width: 100%;
  padding: 0;
}
.logo__layout--affiliation {

}
.affiliation__item {
  padding: 24px;
  color: #444;
  min-height: 220px;
  border: 1px solid var(--mainColor);
  transition: all .2s ease-in-out;
}
.affiliation__item a {
  color: var(--mainColor);
  margin-bottom: 4px;
  transition: all .2s ease-in-out;
}
.affiliation__img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}
.affiliation__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.affiliation__info {

}
.affiliation__title {
  font-size: 18px;
  margin-bottom: 16px;
}
.affiliation__link {
  font-size: 14px;
  display: block;
  text-decoration: none;
}
.logo__layout--affiliation .logo__layout-item {
  width: 25%;
  margin: 0;
}
.logo__layout--affiliation .logo__layout-item:nth-child(1) {
  width: 100%;
}
.logo__layout--affiliation .logo__layout-item:nth-child(1) .logo__layout-link {
  width: calc(25% - 10px);
}
.logo__layout--affiliation .logo__layout-item:nth-child(2) {
  width:75%;
}
.logo__layout--affiliation .logo__layout-item:nth-child(2) .logo__layout-link {
  width: calc(33.333% - 10px);
}
/*CALENDAR*/
.calendar-item{
  margin-bottom: 50px;
}
.fc-toolbar-chunk h2{
  color: #116e48 !important;
}
.fc-toolbar-chunk button{
  background: #116e48 !important;
}
.fc-theme-standard td, .fc-theme-standard th{
  border-color: #116e48 !important;
}
.fc-scrollgrid-sync-inner a {
  color: #116e48 !important;
}
/*CONTACT PAGE*/
.contact__left {
  width: 40%;
}
.contact__left .split__box-title {
  text-align: left;
}
.contact__left .split__box-desc {
  text-align: left;
}
.contact__img {
  width: 100%;
  display: block;
  margin: 40px 0 0;
}
.contact__right {
  width: 60%;
}
.contact__form {
  padding: 24px;
  background: var(--lightGreen);
}
.contact__form .btn {
  display: block;
  margin: 0 auto;
  border: none;
  padding: 16px 40px;
}
.conact__map {
  margin: 40px 0 0;
}
.locations__title {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}

/*PUBLICATIONS*/
.publication__page .split__box-title {
  text-align: left;
}
.publication__page .split__box-desc {
  text-align: left;
}
.filters {
  margin: 80px 0 0;
}

.filters__form form {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--mainColor);
}
.filters__form-title {
  line-height: 35px;
  display: block;
  margin: 0 24px 0 0;
}
.filters__form label {
  display: block;
  margin: 0 24px 0 0;
}
.filters__form select {
  border: none;
  width: auto;
  min-width: 120px;
  outline: none;
}
.filters__form select option {

}
.filter__input-search{
  display: flex;
}
.select2-container {
  display: block;
  width: auto !important;
}
.select2-container--default .select2-selection--single {
  border: none;
  height: 35px;
  outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--mainColor);
  line-height: 35px;
  text-overflow: unset;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 8px;
  width: auto;
  height: auto;

  transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url(../img/wpg/arrow-down.svg) no-repeat;
  width: 10px;
  height: 10px;
  border: none !important;
}
.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #aaa;
}
.select2-dropdown {
  width: auto;
  min-width: 150px;
}
.filters__form input[type="text"] {
  height: 35px;
  margin-bottom: 0;
  border: 1px solid var(--mainColor);
  padding: 8px;
  font-size: 14px;
}
.filters__form button {
  position: relative;
  border: none;
  color: #fff;
  padding: 8px 32px;
  border-radius: 30px;
  overflow: hidden;
  font-size: 14px;
}
.filters__form button:after {
  border-radius: 30px;
}
.split__dropdown img{
  display: none;
}
.clear__filters {
  padding: 0 !important;
  background: none;
  font-size: 14px;
  margin-left: 24px;
  cursor: pointer;
}
.clear__filters:hover {
  color: var(--mainColor);
}
.loading__filters {
  margin-left: 8px;
}
.loading__filters svg  {
  vertical-align: middle;
}
/*end pub. filters*/

.archive {
  margin: 40px 0 80px;
}
.archive__title {
  text-align: center;
  color: var(--mainColor);
  padding: 0 0 16px;
  margin: 0 0 16px;
  position: relative;
  font-weight: 700;
}
.archive__title:after {
  content: '';
  position: relative;
  display: block;
  width: 160px;
  height: 1px;
  top: 12px;
  left: 50%;
  background: var(--mainColor);
  transform: translateX(-50%);
}
.archive ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.archive__attorney ul {
  padding: 8px;
  border: 4px solid var(--lightGreen);
}
.archive ul li {
  padding: 0 8px;
}
.archive ul li a {
  color: #000;
  text-decoration: none;
}

.publication__items {
  padding-top: 0;
}
.publication__items .container {
  align-items: flex-start;
}
.publication__items .split__box-left {
  width: 300px;
}
.publication__years {
  margin: 0;
  padding: 0;
  list-style: none;
}
.publication__years li {
  margin: 0 0 16px;
}
.publication__years li a {
  display: block;
  width: 160px;
  margin: auto;
  text-align: center;
  color: #fff;
}
.publication__items .split__box-right {
  width: calc(100% - 300px);
  padding: 0 15px;
}
.publication__item {

}
.publication__title {
  width: 100%;
  min-height: 180px;
  background: var(--mainColor);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px;
}
.publication__title p {
  width: 100%;
  margin: 0 0 8px;
}
.publication__title span {
  width: 100%;
  display: block;
  font-size: 14px;
  margin-top: 4px;
}
.publication__item img {
  width: 100%; 
  height: 50%;
}

/*ATTORNEY ARCHIVE*/
.attorney__card {
  margin: 0 0 56px;
}
.attorney__img {
  width: 100%;
  background: url(../img/wpg/teambg.png) no-repeat center center;
  background-size: cover;
}
.attorney__img img {
  width: 100%;
  height: auto;
  display: block;
}
.attorney__info {
  padding: 16px;
  background: var(--mainColor);
  color: #fff;
  text-align: center;
}
.attorney__name {
  margin: 0;
  font-size: 24px;
}
.attorney__type {
  position: relative;
  margin: 0 0 8px;
  padding: 0 0 8px;
}
.attorney__type:after {
  content: '';
  position: relative;
  display: block;
  width: 50%;
  height: 1px;
  top: 7px;
  left: 50%;
  background: #fff;
  transform: translateX(-50%);
}
.attorney__info a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.attorney__links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.attorney__links a {
  display: block;
  padding: 8px;
  margin-right: 16px;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: var(--mainColor);
  border-radius: 4px;
  overflow: hidden;
}
.attorney__links img {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.archive__items .split__box-left {
  width: 400px;
}
.archive__items .split__box-right {
  width: calc(100% - 400px);
}
.archive__header {
  margin-bottom: 80px;
}
.archive__header h1 {
  font-size: 40px;
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 24px;
}
.archive__header h1:after {
  content: '';
  position: relative;
  display: block;
  width: 160px;
  height: 1px;
  top: 23px;
  left: 0;
  background: var(--mainColor);
}
.archive__header span {
  font-size: 24px;
  font-weight: 700;
}

/*EVENTS SLIDESHOW*/
.events__slideshow {
  position: relative;
  padding: 40px 0 0;
}
.events__slideshow .container {
  position: relative;
}
.events__slider {
  position: relative;
  height: 500px;
  margin-bottom: 40px;
}
.events__slider .slick-slide {
  padding: 0 8px;
}
.slick-prev {
  position: absolute;
  top: 50%;
  left: -24px;
  font-size: 24px;
  color: var(--mainColor);
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: var(--lightGreen);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0,0,0,0.15);
  z-index: 1;
}
.slick-next {
  position: absolute;
  top: 50%;
  right: -24px;
  font-size: 24px;
  color: var(--mainColor);
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: var(--lightGreen);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0,0,0,0.15);
  z-index: 1;
}
.events__slider img {
  width: auto;
  height: 500px;
  object-fit: cover;
}
.events__slider-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  z-index: 1;
}
.events__slider-info:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0) 100%);
}
.events__slider-info p {
  position: relative;
  font-size: 24px;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
  z-index: 1;
}
.events__slider-info span {
  position: relative;
  z-index: 1;
  text-decoration: underline;
}
.owl-prev {
  position: absolute;
  top: 50%;
  left: -40px;
  font-size: 32px !important;
  transform: translateY(-50%);
}
.owl-next {
  position: absolute;
  top: 50%;
  right: -40px;
  font-size: 32px !important;
  transform: translateY(-50%);
}
.owl-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.owl-dot {
  width: 16px;
  height: 16px;
  background: #fff !important;
  border: 1px solid #ddd !important;
  margin: 0 4px;
}
.owl-dot.active {
  background: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

/*SINGLE-EVENTS*/
.single__event {
  min-height: 67vh;
}
.single-events ul{
  padding: 24px;
  background-color: #dfdfdf;
}
.single-events ul li{
  list-style: none;
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
  align-items: center;
}
.square{
  width: 8px;
  height: 8px;
  background-color: #000;
}
.single-events ul li a{
  color: #000;
  text-decoration: none;
}
.single__event img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
.single__event .single-events{
  position: relative;
  width: 25% !important;
}
.single-events__info {
  width: 100%;
  position: relative;
}
.single-events__title{
  margin-bottom: 40px;
}

.single-events__box{
  width: 100%;
  padding: 20px;
  border: 1px solid var(--mainColor);
  background-color: #dfdfdf;
}
.single-events__last-paragraph p:nth-child(2){
  margin: 0 !important;
  
}
.single-events__last-paragraph{
  margin-bottom: 30px !important  ;
}
.single-events__title h1 { 
  text-align: left;
  margin-bottom: 0px !important;
}
.split__box-desc-panelists p span{
  color: #126b46;
  font-weight: 500;
}
.single-events__box div:nth-child(1){
  margin-top: 15px;
}
.single-events__box-item{
  text-align: center;
  margin-bottom: 20px;
}
.single-events__box-button button{
  display: flex;
  margin: 0 auto;
  border: none;
  background: #126b46;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
}
.single-events button{
  background: #126b46;
  color: #fff;
  font-size: 16px;
  display: block;
  width: 100%;
  margin: 0 auto;
  border: none;
  padding: 16px;
  cursor: pointer;
}
.events-box__item{
  padding: 40px 0px;
  width: 100% !important;
}
.events-box__item h2{
  text-align: left !important;
  font-size: 32px;
  margin: 0 0 24px;
}
.events-box__item h2::after{
  left: 0 !important;
  transform: translateX(0%);
}
.split__box-desc-outline ol li{
  margin-bottom: 10px;
}
.split__box-desc-outline ul li{
  margin-bottom: 10px;
}
.split__box-desc-outline{
  padding: 0px;
  font-size: 24px;
  text-align: left;
}

.events-box__item .split__box-desc{
  background: none !important;
  text-align: left;
  font-size: 18px;
  padding: 0;
}
.events-box__item .split__box-desc p{
  font-size: 18px;
  line-height: 1.4 !important;
}
.events-box__item .split__box-desc p:nth-child(1){
  margin-bottom: 24px;
}
.events-box p{
  line-height: 1.4;
}
.events-box{
  font-size: 24px;
  width: 100% !important;
}
.single-events__box-item p:nth-child(1){
  margin-bottom: 5px;
}
.single-events__box-item p{
  font-weight: bold;
  margin: 0px;
}

.single__event .container{
  align-items: unset;
}
.single__event .container .split__box-right{
  width: 75% !important;
}
.single-events__logo {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: flex-end;
}
.single-events__logo img{
  width: 100%;
  height: 100%;
}

.event__register-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.event__register-popup:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.event__register-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}
.event__register-info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  max-width: 95%;
  max-height: 95%;
  overflow: auto;
  padding: 24px;
  background: var(--lightGreen);
  z-index: 1;
  transform: translate(-50%, -50%);
}

/*SINGLE PUBLICATION*/
.single__pub-title {

}
.single__pub-title h1 {
  font-size: 40px;
  margin: 0 0 40px;
}
.single__pub-title .subscribe__btns {
  justify-content: left;
  margin: 0 0 24px;
}
.single__pub-title .subscribe__btns a {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  min-height: auto;
}
.subscribe__btns button {
  text-indent: -9999px !important;
  background: url(../img/wpg/black-notification.svg) no-repeat center center !important;
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  background-size: contain !important;
  margin: 6px 0 0 7px !important;
}
.home__events .subscribe__btns button,
.home__news .subscribe__btns button {
  width: 16px !important;
  height: 16px !important;
}
.single__pub-title .subscribe__btns a img {
  position: relative;
  width: 24px;
  height: 24px;
}
.single__author {
  padding: 0 0 24px;
  margin: 0 0 40px;
  border-bottom: 1px solid var(--mainColor);
  width: 300px;
}
.single__author p {
  margin: 0;
  font-size: 24px;
}
.single__pub-desc h2,
.single__pub-desc h3,
.single__pub-desc h4,
.single__pub-desc h5,
.single__pub-desc h6 {
  margin: 24px 0 16px;
}
.single__pub-desc p {
  margin: 0 0 16px;
}
.single__pub-desc a {
  color: var(--mainColor);
}

/*View Mode*/
.view__mode-btns {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
  margin: 0 0 24px;
}
.view__mode-btn {
  font-size: 14px;
  border: 1px solid var(--lightGreen);
  padding: 8px 16px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.view__mode-btn:hover,
.view__mode-btn.active {
  color: #fff;
  background: var(--mainColor);
}

.view__mode-list .publication__item {
  width: 100% !important;
  padding: 0;
  margin-bottom: 8px;
}
.view__mode-list .logo__layout-link {
  width: 100% !important;
  height: auto !important;
}
.view__mode-list .publication__title {
  min-height: auto;
  height: auto !important;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.view__mode-list .publication__title p {
  margin: 0 !important;
  order: 2;
  flex-grow: 1;
  width: calc(100% - 310px);
}
.view__mode-list .publication__title span {
  width: auto !important;
  margin: 0 !important;
}
.view__mode-list .publication__title span:nth-child(2) {
  min-width: 160px;
}
.view__mode-list .publication__title span:last-child {
  order: 3;
  min-width: 100px;
}

/*FOOTER*/
footer {
  width: 100%;
  padding: 32px;
  background: var(--mainColor);
  display: flex;
  justify-content: space-between;
}
.footer__right {

}
.footer__info {
  display: flex;
  flex-wrap: wrap;
}
.footer__logo {
  width: 180px;
  height: 140px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 2px 2px 8px rgb(0 0 0 / 30%);
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__links {
  padding-left: 24px;
}
.footer__nav {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
}
.footer__nav li {
  margin-right: 24px;
}
.footer__nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.footer__desc {

}
.footer__desc p {
  font-size: 18px;
  margin: 0;
  color: #fff;
}
.footer__desc h3 {
  font-weight: 700;
  color: #fff;
}
.footer__desc p:first-child span {
  color: var(--lightGreen);
}
.footer__copyright {
  display: flex;
  margin-top: 40px;
}
.footer__copytext {
  font-size: 14px;
}
.footer__copytext p {
  margin: 0;
  color: #fff;
}
.footer__copytext ul {
  margin: 8px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}
.footer__copytext ul li {
  margin-right: 24px;
}
.footer__copytext ul li a{
  color: #fff;
  text-decoration: none;
}
.footer__social {
  margin: 0 0 0 140px;
}
.footer__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.footer__social ul li {
  margin-right: 24px;
}
.footer__social ul li img {
  width: 40px;
  height: 40px;
}

.footer__right {

}
.footer__contact-title {
  display: block;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #000;
  text-decoration: none;
  padding: 24px;
  background: var(--lightGreen);
}
.footer__contact {
  color: #fff;
}
.footer__contact span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

/*404*/
.error__404 {
  width: 100%;
  height: calc(100vh - 338px);
  display: flex;
  align-items: center;
  justify-content: center; 
}
.error__info {
  text-align: center;
  color: var(--mainColor);
}
.error__info p {
  margin: 0 0 24px;
  font-size: 40px;
}
.error__info span {
  display: block;
  margin: 0 0 24px;
  font-size: 80px;
}
.error__info a {
  text-decoration: none;
  color: var(--mainColor);
}



