/* typo */
/* Links */
/* Titles */
* {
  outline: none;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}

@font-face {
  font-family: recoleta;
  src: url("../fonts/recoleta_bold-webfont.woff2") format("woff2"), url("../fonts/recoleta_bold-webfont.woff") format("woff");
}
@font-face {
  font-family: montserrat-bold;
  src: url("../fonts/montserrat-bold.woff") format("woff");
}
button,
input,
optgroup,
select,
textarea {
  line-height: 1.5;
  font-family: "Roboto Condensed", sans-serif;
}

input[type=text],
input[type=search],
input[type=password],
input[type=email],
input[type=number],
textarea {
  height: 40px;
  line-height: 40px;
  border: 1px solid #ddd;
  padding: 0 10px;
  color: #222;
  transition: border 0.3s ease, background 0.3s ease;
  vertical-align: middle;
  border-radius: 3px;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
  border: 1px solid #adadad;
}
input[type=text].underline,
input[type=search].underline,
input[type=password].underline,
input[type=email].underline,
input[type=number].underline,
textarea.underline {
  border-left: none;
  border-top: none;
  border-right: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
input[type=text].grey,
input[type=search].grey,
input[type=password].grey,
input[type=email].grey,
input[type=number].grey,
textarea.grey {
  background: #f8f8f8;
  border: 1px solid #f8f8f8;
}
input[type=text].grey:focus,
input[type=search].grey:focus,
input[type=password].grey:focus,
input[type=email].grey:focus,
input[type=number].grey:focus,
textarea.grey:focus {
  border: 1px solid #ececee;
  background-color: transparent;
}
input[type=text].large,
input[type=search].large,
input[type=password].large,
input[type=email].large,
input[type=number].large,
textarea.large {
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
}

input[type=number] {
  padding-right: 0;
}

textarea {
  height: 100px;
  line-height: 1.5;
  padding: 10px;
}

select {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: 300;
}

::placeholder {
  color: #999;
  opacity: 1; /* Firefox */
  font-weight: 300;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;
  font-weight: 300;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #999;
  font-weight: 300;
}

.btn,
.button {
  display: inline-block;
  height: 40px;
  line-height: 36px;
  padding: 0 15px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.3s ease, color 0.3s ease;
  border: 2px solid #cca876;
}
.btn:hover,
.button:hover {
  background: #cca876;
  color: #fff;
}
.btn.small,
.button.small {
  height: 30px;
  line-height: 26px;
  padding: 0 15px;
}
.btn.large,
.button.large {
  height: 50px;
  line-height: 46px;
  padding: 0 20px;
}
.btn.filled,
.button.filled {
  background: #cca876;
}

a {
  text-decoration: none;
  color: #cca876;
  transition: color 0.3s ease;
}
a:hover {
  color: #65523a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

h1,
.h1 {
  font-size: 32px;
}

h2,
.h2 {
  font-size: 28px;
}

h3,
h4,
h5,
h6,
.h3,
.h4,
.h5,
.h6 {
  font-size: 22px;
}

p {
  font-size: 18px;
}

img {
  vertical-align: middle;
}

.bold {
  font-weight: 600;
}

.align-center {
  text-align: center;
}

.max-width-960 {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

@media (max-width: 767px) {
  .visible-non-xs {
    display: none;
  }
}
@media (min-width: 768px) {
  .visible-xs {
    display: none;
  }
}
#full-page {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  position: relative;
}

#header {
  height: 60px;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  position: absolute;
}
#header .container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
#header .logo {
  display: inline-block;
  height: 39px;
  display: flex;
  align-items: flex-end;
}
#header .logo span {
  color: #fff;
  max-width: 20px;
  display: inline-block;
  margin-left: 10px;
  line-height: 1.1em;
  margin-bottom: -2px;
  font-family: "montserrat-bold", sans-serif;
  font-size: 16px;
}
#header nav {
  margin: 0;
  transition: transform 0.3s ease;
}
#header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header nav ul li a {
  transition: color 0.3s ease;
}
#header nav ul li a:hover {
  color: #cca876;
}
#header .nav-toggle i {
  transition: background 0.3s ease;
}
#header .nav-toggle i:before, #header .nav-toggle i:after {
  transition: background 0.3s ease;
}
#header .langs {
  margin-left: 15px;
  color: #999;
  font-size: 14px;
}
#header .langs ul li {
  margin: 0 0 0 10px;
}
#header.sticky {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
}
#header.sticky .logo span {
  color: #222;
}
#header.sticky .nav-toggle i {
  background: #222;
}
#header.sticky .nav-toggle i:before, #header.sticky .nav-toggle i:after {
  background: #222;
}

.page-headline {
  position: relative;
  margin: 0;
  width: 100%;
  height: 90px;
  background: #5e7376;
  background: linear-gradient(135deg, rgb(94, 115, 118) 0%, rgb(171, 142, 75) 100%);
  background-image: url("../img/welcome-bg-mobile-preload.jpg");
  background-position: center;
  background-size: cover;
}

.site-content {
  flex: 1;
}

.page-section {
  padding: 40px 0;
}
.page-section.max-pt-40 {
  padding-top: 40px;
}
.page-section.pt-0 {
  padding-top: 0;
}
.page-section.pb-0 {
  padding-bottom: 0;
}
.page-section.pt-40 {
  padding-top: 40px;
}
.page-section.pb-40 {
  padding-bottom: 40px;
}
.page-section .btn-container {
  margin: 30px auto 0;
}
.page-section h2 {
  margin-bottom: 20px;
}

.flm-0 > *:first-child {
  margin-top: 0;
}
.flm-0 > *:last-child {
  margin-bottom: 0;
}

.content-body > *:first-child {
  margin-top: 0;
}
.content-body > *:last-child {
  margin-bottom: 0;
}
.content-body img {
  max-width: 100%;
  height: auto;
}
.content-body h1 {
  margin: 30px 0 0;
}
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  margin: 20px 0 0;
}
.content-body p {
  margin: 20px 0;
}

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

#footer {
  background: #111;
  padding: 40px 0;
  color: #666;
}
#footer a {
  color: #666;
}

@media (max-width: 991px) {
  #header {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
  }
  #header .logo span {
    color: #222;
  }
  #header nav {
    margin-left: auto;
    display: flex;
    align-items: center;
  }
  #header nav .menu-items {
    display: none;
    width: 100%;
    left: 0;
    top: 60px;
    background: rgba(38, 49, 68, 0.95);
    position: absolute;
    padding: 10px 0;
  }
  #header nav .menu-items ul li a {
    display: inline-block;
    padding: 8px 15px;
    color: #fff;
  }
  #header .nav-toggle {
    position: relative;
    width: 35px;
    height: 27px;
    cursor: pointer;
    margin-right: -5px;
    box-sizing: content-box;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-left: 15px;
  }
  #header .nav-toggle i {
    display: inline-block;
    width: 25px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 5px;
    transition: transform 0.5s ease, top 0.5s ease, width 0.5s ease, left 0.5s ease, background 0.5s ease;
  }
  #header .nav-toggle i:before, #header .nav-toggle i:after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease, top 0.5s ease, width 0.5s ease, background 0.5s ease;
  }
  #header .nav-toggle i:before {
    top: 7px;
  }
  #header .nav-toggle i:after {
    top: 14px;
  }
}
@media (min-width: 768px) {
  .page-section {
    padding: 60px 0;
  }
  .page-section h2 {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  #header {
    top: 15px;
    left: 0;
    right: 0;
    width: 100%;
  }
  #header nav {
    margin-left: auto;
    margin-right: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  #header nav ul {
    display: flex;
    flex-wrap: nowrap;
  }
  #header nav ul li {
    margin: 0 12px;
  }
  #header nav ul li a {
    color: #fff;
  }
  #header nav ul li:last-child {
    margin-right: 0;
  }
  #header.sticky nav ul li a {
    color: #222;
  }
  #header.sticky nav ul li a:hover {
    color: #cca876;
  }
  #header:not(.sticky) .container {
    position: relative;
  }
  #header:not(.sticky) .container:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -26px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
  }
  #header:not(.sticky) nav {
    transform: translateY(14px);
  }
  #header .menu-items {
    display: flex !important;
  }
  .page-section {
    padding: 80px 0;
  }
  .page-section h2 {
    margin-bottom: 40px;
  }
}
#welcome {
  position: relative;
  margin: 0;
  width: 100%;
  background: #5e7376;
  background: linear-gradient(135deg, rgb(94, 115, 118) 0%, rgb(171, 142, 75) 100%);
  background-image: url("../img/welcome-bg-mobile-preload.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  /*.introduce {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    flex: 1;
    background: rgba(255,255,255,0.8);
    z-index: 2;
    box-shadow: 0 0 30px 5px rgba(0,0,0,0.5);

    .text {
      flex: 1;
      padding: 30px 20px;
      color: #4a554e;
      display: flex;
      align-items: center;

      .content {
        width: 100%;
      }
    }

    .pic {
      img {
        max-width: 100%;
      }
    }
  }*/
}
#welcome:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/welcome-bg-mobile.jpg");
  background-position: center;
  background-size: cover;
}
#welcome:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
#welcome .container {
  display: flex;
  flex: 1 0 auto;
}
#welcome .introduce {
  width: 100%;
  z-index: 3;
}
#welcome .introduce .text {
  color: #8f95a7;
  padding: 40px 0;
}
#welcome .introduce .text h1 {
  font-size: 32px;
  color: #cca876;
  font-family: "recoleta";
}
#welcome .introduce .text blockquote {
  margin: 0;
  padding: 0;
}
#welcome .introduce .text .btn {
  margin-top: 20px;
  font-size: 18px;
}
#welcome .introduce .pic {
  text-align: center;
  justify-content: center;
}
#welcome .introduce .pic img {
  max-width: 100%;
  height: auto;
}

#about-us {
  overflow: hidden;
}
#about-us .about-us h2 {
  color: #cca876;
  text-align: center;
}
#about-us .about-us .content .pic {
  position: relative;
}
#about-us .about-us .content .pic .pic-container {
  width: 100%;
  max-width: 400px;
  padding-bottom: 39px;
  position: relative;
}
#about-us .about-us .content .pic img {
  max-width: 100%;
  height: auto;
}
#about-us .about-us .content .pic .name-label {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -39px;
  transform: translateY(-50%);
  background: #263144;
  padding: 15px;
  color: #fff;
  text-align: left;
}
#about-us .about-us .content .pic .name-label .name {
  font-weight: 600;
  display: block;
  color: #cca876;
}
#about-us .about-us .content .pic .name-label .position {
  display: block;
  font-size: 14px;
}
#about-us .about-us .content .text .heading h3 {
  margin: 0;
}
#about-us .about-us .content .text .heading p {
  margin: 0;
  color: #999;
}

#fields-of-law {
  background-color: #4c5866;
  background-image: url("../img/fields-of-law-bg-mobile.jpg");
  overflow: hidden;
  background-size: 100%;
  background-repeat: no-repeat;
}
#fields-of-law h2 {
  color: #cca876;
  text-align: center;
}
#fields-of-law ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: table;
  max-width: 680px;
  width: 100%;
}
#fields-of-law ul li {
  width: 100%;
  margin-top: 10px;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}
#fields-of-law ul li:not(.active):hover {
  background: rgba(255, 255, 255, 0.5);
}
#fields-of-law ul li:first-child {
  margin-top: 0;
}
#fields-of-law ul li .content {
  color: #fff;
}
#fields-of-law ul li .content .title {
  position: relative;
  padding-right: 20px;
  padding: 10px 15px;
  cursor: pointer;
}
#fields-of-law ul li .content .title:after {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 17px;
  top: 15px;
  transition: transform 0.3s ease, top 0.3s ease;
}
#fields-of-law ul li .content .details {
  display: none;
  padding: 0 15px 10px;
}
#fields-of-law ul li .content .details * {
  font-size: 14px;
  color: #eee;
  font-weight: 400;
}
#fields-of-law ul li .content .details *:last-child {
  margin-bottom: 5px;
}
#fields-of-law ul li.active .title:after {
  transform: rotate(225deg);
  top: 21px;
}

#contact {
  overflow: hidden;
}
#contact .content > .map iframe {
  max-width: 100%;
}
#contact .content > .text h2 {
  color: #cca876;
  margin: 0;
}
#contact .content > .text address {
  font-style: normal;
  margin-bottom: 30px;
}
#contact .content > .text address p {
  margin: 0;
}
#contact .content .nevjegy {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 20px;
}
#contact .content .nevjegy .pic {
  margin-right: 15px;
}
#contact .content .nevjegy .pic img {
  width: 100px;
  border-radius: 50%;
}
#contact .content .nevjegy .text span {
  display: block;
}
#contact .content .nevjegy .text span.name {
  font-weight: 600;
}

@media (min-width: 500px) {
  #fields-of-law {
    background-image: url("../img/fields-of-law-bg-tablet.jpg");
  }
}
@media (max-width: 767px) {
  #welcome {
    padding: 70px 0 0;
    /*.introduce {
      margin-left: auto;
      margin-right: auto;
    }*/
  }
  #welcome .container {
    flex-direction: column;
    justify-content: flex-end;
  }
  #welcome .introduce {
    margin: 0 auto;
  }
  #welcome .introduce .text {
    max-width: 400px;
  }
  #welcome .introduce .pic {
    width: 100%;
  }
  #about-us .about-us .content .pic {
    margin-bottom: 30px;
  }
  #about-us .about-us .content .pic .pic-container {
    margin: 0 auto;
  }
  #contact .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #contact .content > .map {
    width: 100%;
    order: 2;
    margin-top: 30px;
  }
  #contact .content > .text {
    order: 1;
    width: 100%;
  }
}
@media (min-width: 768px) {
  #welcome {
    width: 100%;
    background-image: url("../img/welcome-bg-preload.jpg");
    padding: 150px 0 0;
    /*.introduce {
      margin-left: 5%;
      margin-top: 5%;

      .text {
        padding: 30px;
      }
    }*/
  }
  #welcome:before {
    background-image: url("../img/welcome-bg.jpg");
    background-size: cover;
  }
  #welcome .introduce .text {
    flex: none;
    display: flex;
    align-items: center;
    max-width: 400px;
  }
  #welcome .introduce .pic {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 20px 20px 0;
  }
  #about-us .about-us .content {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 -20px;
  }
  #about-us .about-us .content .pic {
    flex: none;
    padding: 0 20px;
  }
  #about-us .about-us .content .text {
    flex: 1;
    padding: 0 20px;
  }
  #about-us .about-us.pic-right .content .pic {
    order: 2;
    text-align: right;
  }
  #about-us .about-us.pic-right .content .text {
    order: 1;
  }
  #contact .content {
    display: flex;
    flex-wrap: nowrap;
    margin: -20px;
  }
  #contact .content > .map {
    width: 50%;
    padding: 20px;
  }
  #contact .content > .text {
    width: 50%;
    padding: 20px;
  }
  #contact .content > .text h2 {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #welcome .introduce .text {
    max-width: 560px;
  }
}
@media (max-width: 991px) {
  #welcome .introduce .text {
    margin: 0 auto;
    display: table;
    text-align: center;
  }
  #welcome .introduce .text .content .btn {
    background: #cca876;
  }
}
@media (min-width: 992px) {
  #welcome {
    width: 100%;
    background-image: url("../img/welcome-bg-preload.jpg");
    padding: 150px 0 0;
    /*.introduce {
      margin-left: 5%;
      margin-top: 5%;

      .text {
        padding: 30px;
      }
    }*/
  }
  #welcome:before {
    background-image: url("../img/welcome-bg.jpg");
    background-size: cover;
  }
  #welcome .introduce {
    display: flex;
    flex-wrap: nowrap;
  }
  #welcome .introduce .text {
    padding: 60px 0 90px;
    align-items: center;
  }
  #welcome .introduce .pic {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 20px 20px 0;
  }
  #welcome .introduce .pic img {
    max-width: none;
  }
  #welcome .introduce .text {
    font-size: 22px;
  }
  #welcome .introduce .text .content blockquote {
    position: relative;
  }
  #welcome .introduce .text .content blockquote:before {
    left: 0;
    top: 0;
    border-top: 1px solid #cca875;
    border-left: 1px solid #cca875;
  }
  #welcome .introduce .text .content blockquote:after {
    right: 0;
    bottom: 0;
    border-right: 1px solid #cca875;
    border-bottom: 1px solid #cca875;
  }
  #about-us .about-us:not(.pic-right) .content .text {
    padding-left: 80px;
  }
  #about-us .about-us.pic-right .content .text {
    padding-right: 80px;
  }
  #fields-of-law {
    background-image: url("../img/fields-of-law-bg.jpg");
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  #welcome .introduce .pic img {
    margin-left: -100px;
  }
}
@media (min-width: 1300px) {
  #welcome {
    /*.introduce {
      margin-left: 0;
    }*/
  }
}
#cookiePolicy {
  padding: 20px 0;
  background: rgba(33, 45, 64, 0.95);
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.2);
  z-index: 999;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  flex: none;
  font-size: 14px;
  z-index: 1001;
}
#cookiePolicy a {
  cursor: pointer;
}

@media (max-width: 767px) {
  #cookiePolicy .btn {
    display: block;
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  #cookiePolicy {
    text-align: left;
  }
  #cookiePolicy .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  #cookiePolicy .btn {
    margin-left: 15px;
  }
}

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