@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
html {
  font-size: 100%;
  overflow-x: hidden;
}
html.noscroll {
  overflow: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  font-size: 1.1rem;
  overflow-x: hidden;
  font-weight: 400;
}

a {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  color: #000;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  color: #000;
}

h1, .h1 {
  font-size: calc(2rem + 1vw);
  font-weight: 300;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 2.2rem;
  font-weight: 300;
  text-transform: uppercase;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: initial;
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

ol {
  padding-left: 1.5rem;
}
ol li {
  padding-bottom: 0.75rem;
}

strong, b {
  font-weight: 900;
}

button {
  outline: none !important;
}

.container {
  width: 1300px;
  max-width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home .container {
  width: 1600px;
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 90%;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 1rem;
  }
  .container {
    max-width: 95%;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.15rem;
  }
}
#page {
  margin-top: 15rem;
}

header#masthead {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #fff;
  width: 100%;
  border-bottom: solid 1px #ccc;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
header#masthead .container {
  position: relative;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
header#masthead .container .logo {
  min-width: 130px;
  width: 130px;
  height: 200px;
  padding: 1rem 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  overflow: hidden;
}
header#masthead .container .logo a {
  display: block;
}
header#masthead .container .logo a img {
  width: 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
header#masthead .container .wpml-ls {
  position: absolute;
  right: 30px;
  top: 0;
  padding: 0;
  border-left: solid 1px;
  font-size: 1rem;
}
header#masthead .container .wpml-ls ul {
  display: flex;
  justify-content: flex-end;
}
header#masthead .container .wpml-ls ul li a {
  padding: 1.5rem 0.5rem 0;
  position: relative;
  transition: all 1s;
}
header#masthead .container .wpml-ls ul li a:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 15px;
  background: #000;
  position: absolute;
  right: 0;
  bottom: 1px;
}
header#masthead .container .wpml-ls ul li:last-of-type a:after {
  content: none;
}
header#masthead .container .wpml-ls ul li.wpml-ls-current-language a {
  font-weight: 900;
}
header#masthead #header-menu .nav-main ul#primary-menu {
  display: flex;
  margin: 0;
}
header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item a {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #000 !important;
}
header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item.menu-item-has-children i {
  display: none;
}
header#masthead.fixed .container .logo {
  min-width: 100px;
  width: 100px;
  height: 90px;
}
header#masthead.fixed .wpml-ls ul li a {
  padding-top: 0.5rem;
}

/*-------- Burger menu -------- */
#nav-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  margin-left: auto;
  margin-right: -1.5rem;
  z-index: 1000;
  padding: 1.5rem;
}
#nav-icon > div {
  display: inline-block;
}
#nav-icon div:first-of-type {
  width: 35px;
  height: 17px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon div:first-of-type span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  left: 0;
  top: 0;
  border-radius: 0.3125rem;
  overflow: hidden;
  transition: top ease 0.25s 0.25s, transform ease 0.25s, width ease 0.25s, left ease 0.25s;
}
#nav-icon div:first-of-type span:nth-child(1) {
  top: 0;
}
#nav-icon div:first-of-type span:nth-child(2) {
  top: 7px;
}
#nav-icon div:first-of-type span:nth-child(3) {
  top: 14px;
}
#nav-icon:hover div span:nth-child(1), #nav-icon:hover div span:nth-child(3) {
  width: 60%;
  left: 20%;
  transition: all ease 0.25s;
}
#nav-icon.open div span {
  transition: left ease 0.25s, top ease 0.25s, width ease 0.25s, transform ease 0.25s 0.25s !important;
}
#nav-icon.open div span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
  width: 100%;
  left: 0;
}
#nav-icon.open div span:nth-child(2) {
  width: 0;
  left: 50%;
}
#nav-icon.open div span:nth-child(3) {
  transform: rotate(-45deg);
  top: 7px;
  width: 100%;
  left: 0;
}

@media all and (min-width: 1270px) {
  header#masthead #nav-icon {
    display: none;
  }
  header#masthead #header-menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header#masthead #header-menu .nav-main {
    padding: 0;
  }
  header#masthead #header-menu .nav-main ul#primary-menu {
    position: relative;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item {
    position: relative;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item > a {
    padding: 0.5rem 0.75rem 1.5rem;
    display: inline-block;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item:nth-last-child(2) a {
    color: #fff !important;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item:nth-last-child(2) a:before {
    content: "";
    background: #000;
    width: 1000%;
    height: 2rem;
    position: absolute;
    left: -1px;
    top: 4px;
    z-index: -1;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item:after {
    content: "";
    display: inline-block;
    width: 1px;
    background: #000;
    height: 10px;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item .sub-menu {
    position: absolute;
    background: #fff;
    top: 120%;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    width: 600px;
    opacity: 0;
    padding: 20px;
    -webkit-transform: translateX(-36%);
    -moz-transform: translateX(-36%);
    -ms-transform: translateX(-36%);
    -o-transform: translateX(-36%);
    transform: translateX(-36%);
    visibility: hidden;
    text-align: center;
    border: solid 1px #e4e4e4;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 250px;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item .sub-menu li.menu-item {
    width: 50%;
    padding-bottom: 10px;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item .sub-menu li.menu-item a:hover {
    color: #333 !important;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  header#masthead #header-menu .nav-main ul#primary-menu #magicline {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 5px;
    background: #000;
  }
}
@media all and (max-width: 1269px) {
  #page {
    margin-top: 12rem;
  }
  header#masthead {
    height: 165px;
  }
  header#masthead .container {
    align-items: flex-start;
  }
  header#masthead .container .logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    min-width: 100px;
    height: 165px;
  }
  header#masthead .container .wpml-ls {
    left: 30px;
    right: initial;
  }
  header#masthead .container .wpml-ls ul li a {
    padding-top: 1.5rem !important;
  }
  header#masthead #header-menu {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #fff;
    opacity: 0;
    transition: opacity 0.3s 0s, transform 0s 0.3s;
    transform: translateY(-100%);
    padding-top: 200px;
  }
  header#masthead #header-menu .nav-main ul#primary-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item {
    padding: 1rem;
    border-bottom: solid 1px #ececec;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item a {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item a:hover {
    color: #333 !important;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item .sub-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 165px;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item .sub-menu li.menu-item {
    width: 50%;
  }
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item .sub-menu li.menu-item a {
    font-size: 1rem;
    padding-bottom: 0.2rem;
    font-weight: 100;
  }
  header#masthead.open {
    width: 100%;
  }
  header#masthead.open .container .logo {
    width: 100px !important;
    min-width: 100px !important;
    height: 165px !important;
  }
  header#masthead.open #header-menu {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.5s 0s, transform 0s 0s;
  }
  header#masthead.fixed {
    height: 70px;
  }
  header#masthead.fixed .container .logo {
    min-width: 80px;
    width: 80px;
    height: 67px;
    padding: 0.5rem 0;
  }
}
@media all and (max-width: 767px) {
  #page {
    margin-top: 9.5rem;
  }
  header#masthead {
    height: 135px;
  }
  header#masthead .container {
    padding: 0 15px;
  }
  header#masthead .container .wpml-ls {
    left: 15px;
  }
  header#masthead .container .logo {
    min-width: 80px;
    width: 80px;
    height: 135px;
  }
}
@media all and (max-width: 575px) {
  #page {
    margin-top: 8rem;
  }
  header#masthead {
    height: 110px;
  }
  header#masthead .container .logo {
    min-width: 60px;
    width: 60px;
    height: 110px;
  }
  header#masthead .container .wpml-ls ul li a {
    padding-top: 1rem !important;
  }
  header#masthead.fixed {
    height: 55px;
  }
  header#masthead.fixed .container .logo {
    min-width: 50px;
    width: 50px;
    height: 45px;
  }
  #nav-icon {
    padding: 1rem;
    margin-right: -1rem;
  }
}
@media all and (max-width: 992px) and (max-height: 600px) {
  header#masthead #header-menu .nav-main ul#primary-menu > li.menu-item {
    line-height: 1;
  }
}
@media all and (max-width: 992px) and (max-height: 450px) {
  header#masthead #header-menu .nav-main ul#primary-menu {
    margin-top: 0;
  }
}
#firstimg {
  min-height: 400px;
  display: flex;
  margin: 0 auto 2rem;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: calc(2rem + 2vw);
  font-weight: 100;
  line-height: 1.2;
  padding: 4rem !important;
  width: 1600px;
}
#firstimg > div {
  display: inline-block;
  width: auto;
}
#firstimg .wpb_text_column {
  margin: 0;
}
#firstimg p:before {
  content: "";
  display: block;
  background: url("../img/icon-quote.png") center no-repeat;
  background-size: contain;
  width: 100px;
  height: 108px;
}
#firstimg.bottom {
  align-items: flex-end;
}
#firstimg.right {
  justify-content: flex-end;
}
#firstimg.center {
  align-items: center;
  justify-content: center;
}

.text-black {
  color: #000;
}
.text-black p:before {
  filter: invert(1);
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  text-transform: lowercase;
  font-size: 1rem;
  border: 0 !important;
}
.theme-btn:after {
  content: "";
  display: block;
  background: url("../img/icon-arrow.png") center no-repeat;
  background-size: contain;
  width: 50px;
  height: 30px;
  margin-left: 0.5rem;
  transition: all 1s;
}
.theme-btn:hover:after {
  margin-left: 1.25rem;
}
.theme-btn.t2 {
  color: #fff;
  background: #000;
  padding: 0.5rem 3rem;
  text-transform: uppercase;
  font-weight: 100;
}
.theme-btn.t2:after {
  content: none;
}

.subline {
  font-weight: 900;
  margin-bottom: 1.5rem !important;
}
.subline:after {
  content: "";
  display: block;
  height: 6px;
  width: 150px;
  background: #000;
  margin-top: 2rem;
}

.breadcrumb {
  font-size: 0.9rem;
  background: none;
  padding: 0;
  margin-bottom: 2rem;
  color: #959595;
}
.breadcrumb a {
  color: #959595;
  border: 0 !important;
}
.breadcrumb a:hover {
  color: #000;
}
.breadcrumb .sep {
  margin: 0 0.3rem;
}

.inner-0 .vc_column-inner {
  padding: 0 !important;
}

.vc_section {
  margin: 5rem 0;
}

.vc_parallax {
  min-height: 500px;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  color: #fff;
}

.border-top, .border-bottom {
  border-color: #ccc !important;
}

.filiales .owl-item > div {
  background: #000;
  text-align: center;
  padding: 2rem;
  color: #fff;
}
.filiales .owl-item > div img {
  max-width: 200px;
}
.filiales .owl-nav {
  color: #fff;
}

.team-row {
  width: 1800px;
  font-size: 1rem;
}
.team-row .img-column {
  z-index: 100;
}
.team-row .img-column * {
  height: 100% !important;
}
.team-row .img-column img {
  object-fit: cover;
}
.team-row .text-column {
  padding-top: 1.5rem;
}
.team-row .text-column > .vc_column-inner {
  height: 100%;
}
.team-row .text-column > .vc_column-inner > .wpb_wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-row .text-column > .vc_column-inner > .wpb_wrapper > div:first-of-type {
  margin-top: auto;
}
.team-row .text-column > .vc_column-inner > .wpb_wrapper .cstm_line {
  margin-top: auto;
  margin-bottom: 3rem;
}

.fullheight-img {
  z-index: 100;
}
.fullheight-img * {
  height: 100% !important;
}
.fullheight-img img {
  object-fit: cover;
}

.owl-carousel {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  font-size: 5rem;
  line-height: 0;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.owl-carousel .owl-nav .owl-next {
  float: right;
  right: 0;
}
.owl-carousel .owl-nav .disabled {
  opacity: 0.2;
  pointer-events: none;
}

.cstm_line {
  width: 100%;
  height: 1px;
  background: #c8c8c8;
  position: relative;
  z-index: -1;
}
.cstm_line:after {
  content: "";
  width: 3000%;
  display: block;
  background: #c8c8c8;
  height: 1px;
  position: absolute;
  left: -500%;
}

.m-less-top {
  margin-top: -3rem;
}

.m-less-bottom {
  margin-bottom: -3rem;
}

.fs-1 {
  font-size: 1rem;
}

ul.rs {
  display: flex;
}
ul.rs li {
  margin-right: 0.5rem;
  position: relative;
}
ul.rs li:last-of-type {
  margin-right: 0 !important;
}
ul.rs li a {
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.rs li a:before {
  content: "";
  position: absolute;
  border-radius: 100%;
  display: block;
  width: 33px;
  height: 33px;
  background: #999;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
ul.rs li a img {
  z-index: 10;
  width: 18px;
}
ul.rs li a:hover:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.stats-block .stats-desc {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.stats-block .stats-number {
  font-size: 8rem !important;
  color: #808080;
  font-weight: 100 !important;
  line-height: 1 !important;
}
.stats-block .stats-text {
  font-size: 1rem !important;
  font-weight: 900;
  text-align: right !important;
  width: 100%;
  line-height: 1.1;
}
.stats-block .counter_prefix, .stats-block .counter_suffix {
  font-size: 2.5rem !important;
  font-weight: 100;
  color: #808080;
  line-height: 1 !important;
}
.stats-block.top-suffix .stats-desc {
  align-items: flex-start;
}
.stats-block.top-suffix .counter_suffix {
  position: relative;
  top: 1.5rem;
}
.stats-block.big-suffix .counter_suffix {
  font-size: 8rem !important;
}

.citation {
  font-size: calc(1rem + 1vw);
  font-weight: 200;
  font-style: italic;
  line-height: 1.3;
}

.text-center h1:after, .text-center h2:after {
  margin-left: auto;
  margin-right: auto;
}

.bg_ag {
  background: url("../img/bg-ag.gif") no-repeat center;
  background-size: contain;
}

.zindex100 {
  position: relative;
  z-index: 100;
}

.zindex-n1 {
  z-index: -1;
  position: relative;
}

#mention {
  font-size: 1rem;
  max-width: 1000px;
}
#mention h2, #mention .h2 {
  font-size: 1.2rem;
  margin: 3rem 0 1rem;
  font-weight: 900;
}
#mention h4 {
  margin-top: 2rem;
  font-size: 1.2rem;
}
#mention h5 {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.vc_col-has-fill > .vc_column-inner, .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner, .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner, .vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0 !important;
}

@media all and (max-width: 1370px) {
  .stats-block .stats-number {
    font-size: 6rem !important;
  }
  .stats-block .counter_prefix, .stats-block .counter_suffix {
    font-size: 2rem !important;
  }
  .stats-block.big-suffix .counter_suffix {
    font-size: 6rem !important;
  }
}
@media all and (max-width: 1199px) {
  .vc_parallax {
    min-height: 400px;
  }
}
@media all and (max-width: 1100px) {
  .stats-block .stats-number {
    font-size: 5rem !important;
  }
  .stats-block.top-suffix .counter_suffix {
    top: 1.1rem;
  }
  .stats-block.big-suffix .counter_suffix {
    font-size: 5rem !important;
  }
}
@media all and (max-width: 991px) {
  #page {
    margin-top: 10rem;
  }
  #firstimg {
    min-height: 350px;
    max-width: 100%;
    margin: 0;
    font-size: calc(1.5rem + 2vw);
  }
  #firstimg p:before {
    width: 75px;
    height: 70px;
  }
  .owl-carousel .owl-nav .owl-prev {
    left: -1rem;
  }
  .owl-carousel .owl-nav .owl-next {
    right: -1rem;
  }
  .stats-block .stats-desc {
    justify-content: center;
  }
  .stats-block .stats-text {
    text-align: center !important;
  }
  .img-responsive * {
    width: 100%;
  }
  .img-responsive img {
    height: 250px !important;
    object-fit: cover;
  }
}
@media all and (max-width: 767px) {
  #page {
    margin-top: 8rem;
  }
  .stats-block .stats-number {
    font-size: 4rem !important;
  }
  .stats-block .counter_prefix, .stats-block .counter_suffix {
    font-size: 1.5rem !important;
  }
  .stats-block.top-suffix .counter_suffix {
    top: 1rem;
  }
  .stats-block.big-suffix .counter_suffix {
    font-size: 4rem !important;
  }
  .vc_parallax {
    min-height: 350px;
  }
}
@media all and (max-width: 575px) {
  #firstimg {
    padding: 2.5rem !important;
    min-height: initial;
  }
  #page {
    margin-top: 6.5rem;
  }
  .stats-block .stats-number {
    font-size: 3rem !important;
  }
  .stats-block .stats-text {
    font-size: 0.8rem !important;
  }
  .stats-block .counter_prefix, .stats-block .counter_suffix {
    font-size: 1.2rem !important;
  }
  .stats-block.top-suffix .counter_suffix {
    top: 0.8rem;
  }
  .stats-block.big-suffix .counter_suffix {
    font-size: 3rem !important;
  }
  .subline:after {
    height: 4px;
    width: 100px;
    margin-top: 1.2rem;
  }
}
.offers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.offers-list .offer-item {
  width: 32%;
  margin-bottom: 2rem !important;
  margin-left: 0.666666%;
  margin-right: 0.666666%;
  border: solid 2px;
  position: relative;
  overflow: hidden;
}
.offers-list .offer-item .front .bottom {
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: 100;
  padding: 1rem 1rem 1.5rem;
}
.offers-list .offer-item .front .bottom span {
  display: block;
}
.offers-list .offer-item .front .bottom span.title {
  font-size: 1.75rem;
}
.offers-list .offer-item .front .bottom span.for {
  font-size: 1rem;
}
.offers-list .offer-item .back {
  background: #F4F4F4;
  padding: 1rem;
  font-size: 0.95rem;
  position: absolute;
  top: 0;
  overflow: scroll;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.offers-list .offer-item:hover .back {
  opacity: 1;
  pointer-events: auto;
}

@media all and (max-width: 991px) {
  .offers-list .offer-item {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }
}
@media all and (max-width: 767px) {
  .offers-list .offer-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .offers-list .offer-item .front .bottom span.title {
    font-weight: 900;
    font-size: 1.2rem;
  }
}
.fadeIn, .fadeInLeft, .fadeInBottom, .fadeInRight, .fadeInTop {
  opacity: 0;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
.fadeIn.animit, .fadeInLeft.animit, .fadeInBottom.animit, .fadeInRight.animit, .fadeInTop.animit {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.fadeInTop {
  transform: translateY(-20%);
}

.fadeInBottom:before {
  content: "";
  height: 50px;
  display: block;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.fadeInBottom.animit:before {
  height: 0;
}

.fadeInLeft {
  transform: translateX(-10%);
}

.fadeInRight {
  transform: translateX(10%);
}

.delay1 {
  transition-delay: 0.5s;
}

.delay2 {
  transition-delay: 1s;
}

.delay3 {
  transition-delay: 1.5s;
}

.delay4 {
  transition-delay: 2s;
}

.delay5 {
  transition-delay: 2.5s;
}

.delay6 {
  transition-delay: 3s;
}

.archive #firstimg, .blog #firstimg {
  margin-bottom: 0;
  max-width: 100%;
  padding: 2rem 0 !important;
  min-height: auto;
}
.archive #primary a, .blog #primary a {
  border: 0;
}

.post-list {
  display: flex;
  flex-wrap: wrap;
  margin: 4rem -1.1666666%;
}

.firstpost {
  margin-bottom: 4rem;
}
.firstpost article {
  display: flex;
  align-items: center;
}
.firstpost article img {
  width: 50%;
  height: 500px;
  object-fit: cover;
}
.firstpost article .content {
  width: 50%;
  padding-left: 2rem;
  font-size: 1rem;
}
.firstpost article .content h2 {
  margin-bottom: 2rem;
}
.firstpost article .content h3 {
  font-size: 1.1rem;
}
.firstpost article .content .theme-btn {
  margin-top: 2rem;
}

.post-miniature {
  width: 31%;
  border: solid 1px #4c4c4c;
  margin: 0 1.166666% 2rem;
  padding: 1rem;
  font-size: 1rem;
}
.post-miniature .thumbnail {
  display: block;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.post-miniature .content h2 {
  margin: 0.75rem 0 0.2rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
}
.post-miniature .content h2 a {
  border: 0 !important;
}
.post-miniature .content .posted-on {
  color: #333;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: block;
}
.post-miniature .content .readmore {
  float: right;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.9rem;
}

.single.single-post h1 {
  margin-bottom: 0;
}
.single.single-post h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}
.single.single-post h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.single.single-post .excerpt {
  font-weight: 900;
  margin-bottom: 2rem;
}
.single .entry-meta {
  margin: 0 0 1.5rem 0;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.single .post-thumbnail {
  margin-bottom: 2rem;
}

#primary a {
  border-bottom: dotted 1px #000;
}

.pagination {
  width: 100%;
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
}
.pagination .page-numbers {
  width: 2rem;
  font-weight: 100;
  display: inline-block;
  text-align: center;
  position: relative;
}
.pagination .page-numbers:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #4c4c4c;
  position: absolute;
  pointer-events: none;
  font-weight: 100;
  right: -1px;
  top: 8px;
}
.pagination .page-numbers.current {
  border-width: 2px;
  font-weight: 600;
}
.pagination .page-numbers.next:after, .pagination .page-numbers.prev:after, .pagination .page-numbers:nth-last-child(2):after {
  content: none;
}
.pagination .page-numbers:nth-child(2):after {
  content: "";
}

.post-navigation {
  margin: 2rem 0;
}
.post-navigation h2 {
  display: none;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: center;
}
.post-navigation .nav-links a {
  border: none !important;
  display: block;
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 0 1rem;
}
.post-navigation .nav-links a:hover {
  color: #333;
}

@media all and (max-width: 1199px) {
  .post-list {
    margin-left: -1.5%;
    margin-right: -1.5%;
  }
  .post-miniature {
    width: 47%;
    margin-left: 1.5%;
    margin-right: 1.5%;
  }
}
@media all and (max-width: 991px) {
  .post-miniature .thumbnail {
    min-height: 300px;
  }
  .single.single-post {
    margin-top: 4rem;
  }
}
@media all and (max-width: 767px) {
  .post-miniature .thumbnail {
    min-height: 200px;
  }
  .single.single-post {
    margin-top: 3rem;
  }
}
@media all and (max-width: 575px) {
  .post-navigation .nav-links {
    flex-direction: column;
  }
  .post-navigation .nav-links > div {
    max-width: 100%;
  }
  .post-navigation .nav-links > div.nav-next {
    text-align: left;
    margin: 10px 0 0 0;
  }
  .post-list {
    margin-left: 0;
    margin-right: 0;
  }
  .post-miniature {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .firstpost article {
    display: block;
  }
  .firstpost article img {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
  }
  .firstpost article .content {
    width: 100%;
    padding-left: 0;
  }
  .firstpost article .content h2 {
    margin-bottom: 1rem;
  }
  .firstpost article .content .theme-btn {
    margin-top: 0.5rem;
  }
  .firstpost .m-less-top {
    display: none;
  }
}
.error404 #firstimg {
  min-height: auto;
  padding: 0 !important;
  width: 100%;
}

.form-elmt {
  position: relative;
  padding-bottom: 1rem;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.form-elmt label {
  position: absolute;
  top: 0;
  left: 3px;
  font-size: 0.8rem;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transform-origin: 0 100%;
  transform: translate(10px, 12px);
  text-transform: uppercase;
  font-weight: 900;
  cursor: text;
  color: #383838;
  z-index: 10;
}
.form-elmt input, .form-elmt textarea {
  background: #f4f4f4;
  padding: 0.5rem;
  border: 0;
  width: 100%;
  outline: 0;
  position: relative;
}
.form-elmt.selected {
  margin-top: 1.2rem;
}
.form-elmt.selected label {
  color: #333;
  font-weight: 900;
  -webkit-transform: translateY(-25px) scale(0.8);
  -moz-transform: translateY(-25px) scale(0.8);
  -ms-transform: translateY(-25px) scale(0.8);
  -o-transform: translateY(-25px) scale(0.8);
  transform: translateY(-25px) scale(0.8);
}
.form-elmt.selected input, .form-elmt.selected textarea {
  border-color: #333;
}

form.wpcf7-form .wpcf7-acceptance span.wpcf7-list-item {
  margin: 0;
  font-size: 0.8rem;
}
form.wpcf7-form .form-control {
  border-radius: 0;
  outline: none !important;
}
form.wpcf7-form .form-control.wpcf7-checkbox {
  border: 0;
  padding: 0;
  display: inline;
}
form.wpcf7-form .form-control.wpcf7-checkbox span.wpcf7-list-item {
  margin: 0;
}
form.wpcf7-form span.wpcf7-not-valid-tip {
  color: #da0000;
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: 2px;
}
form.wpcf7-form .wpcf7-response-output {
  margin: 2em 0 1em;
  padding: 0.75rem 1.25rem;
}
form.wpcf7-form button[type=submit] {
  width: 100%;
  background: #333;
  border: solid 2px #333;
  color: #fff;
  cursor: pointer;
  padding: 0.3rem 1rem;
  transition: all 0.5s;
  text-transform: uppercase;
}
form.wpcf7-form button[type=submit]:hover {
  background: #fff;
  color: #333;
}
form.wpcf7-form.sent .wpcf7-response-output {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
form.wpcf7-form.invalid .wpcf7-response-output {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
form.wpcf7-form .mention {
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: #333;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.5);
}

.search-form input {
  border-radius: 0;
}
.search-form button[type=submit] {
  background: #333;
  height: 38px;
  border: 0;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.search-form button[type=submit] i {
  color: #fff;
}

.search article {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px #dcd5e3;
}
.search article h2 {
  margin-bottom: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 1rem;
  color: #414141;
}

.grecaptcha-badge {
  -webkit-transform: translateX(110%);
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  -o-transform: translateX(110%);
  transform: translateX(110%);
}

@media all and (max-width: 991px) {
  form.wpcf7-form {
    margin: auto;
  }
  form.wpcf7-form button[type=submit] {
    margin-top: 1rem;
    margin-bottom: 0.5rem !important;
  }
}
#footer {
  margin-top: 4rem;
}
#footer .footer-top {
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  font-size: 1rem;
}
#footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem auto;
  position: relative;
}
#footer .logo {
  margin-right: 15%;
}
#footer .logo img {
  max-width: 100px;
}
#footer #footer-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 120px;
  margin-bottom: 0;
}
#footer #footer-menu > li {
  margin: 0 2rem 0.25rem 0;
}
#footer #footer-menu > li:last-of-type {
  position: absolute;
  right: 15px;
  bottom: 0;
  margin: 0;
}
#footer #footer-menu > li:last-of-type a {
  background: #000;
  display: block;
  color: #fff;
  padding: 0.5rem 3rem;
  text-transform: uppercase;
  font-weight: 100;
}
#footer .rs {
  margin-left: auto;
}
#footer .copyright {
  margin: 1rem 0 3rem;
  font-size: 0.8rem;
  display: flex;
}
#footer .copyright p {
  margin-bottom: 0;
}
#footer .notice #menu-mentions {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
#footer .notice #menu-mentions li:after {
  content: "|";
  margin: 0 5px;
}
#footer .notice #menu-mentions li:first-of-type:before {
  content: "|";
  margin: 0 5px;
}
#footer .credit .ubdc {
  position: relative;
  text-shadow: none;
}
#footer .credit .ubdc img {
  width: 15px !important;
  margin: 0 2px 2px 0;
}
#footer .credit .ubdc:hover {
  color: #c80118;
}

@media all and (max-width: 950px) {
  #footer .copyright {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  #footer .copyright .notice {
    width: 100%;
    order: 0;
    margin-bottom: 0.5rem;
  }
  #footer .copyright p, #footer .copyright .credit {
    order: 1;
  }
  #footer .copyright p:after {
    content: "|";
    margin: 0 5px;
  }
}
@media all and (max-width: 767px) {
  #footer .footer-top {
    font-size: 0.9rem;
  }
  #footer .logo {
    margin-right: 10%;
  }
  #footer .logo img {
    max-width: 70px;
  }
}
@media all and (max-width: 650px) {
  #footer .footer-top .container {
    width: 320px;
  }
  #footer .logo {
    margin: 0;
  }
  #footer .rs li {
    margin-right: 0.75rem;
  }
  #footer #footer-menu > li {
    display: none;
  }
  #footer #footer-menu > li:last-of-type {
    display: block;
  }
}
@media all and (max-width: 510px) {
  #footer .copyright {
    flex-direction: column;
  }
  #footer .copyright p {
    margin-bottom: 0.25rem;
  }
  #footer .copyright p:after {
    content: none;
  }
  #footer .copyright .notice #menu-mentions {
    flex-direction: column;
    align-items: center;
  }
  #footer .copyright .notice #menu-mentions li {
    margin-bottom: 0.5rem;
  }
  #footer .copyright .notice #menu-mentions li:after, #footer .copyright .notice #menu-mentions li:before {
    content: none !important;
  }
}
.mw-300 {
  max-width: 300px;
}

.mw-400 {
  max-width: 400px;
}

.mw-500 {
  max-width: 500px;
}

.mw-600 {
  max-width: 600px;
}

.mw-700 {
  max-width: 700px;
}

.mw-800 {
  max-width: 800px;
}

.mw-900 {
  max-width: 900px;
}

.mw-1000 {
  max-width: 1000px;
}

.mw-1100 {
  max-width: 1100px;
}

@media all and (min-width: 1200px) {
  .mw-xl-300 {
    max-width: 300px;
  }
  .mw-xl-400 {
    max-width: 400px;
  }
  .mw-xl-500 {
    max-width: 500px;
  }
  .mw-xl-600 {
    max-width: 600px;
  }
  .mw-xl-700 {
    max-width: 700px;
  }
  .mw-xl-800 {
    max-width: 800px;
  }
  .mw-xl-900 {
    max-width: 900px;
  }
  .mw-xl-1100 {
    max-width: 1100px;
  }
}
@media all and (min-width: 992px) {
  .mw-lg-300 {
    max-width: 300px;
  }
  .mw-lg-400 {
    max-width: 400px;
  }
  .mw-lg-500 {
    max-width: 500px;
  }
  .mw-lg-600 {
    max-width: 600px;
  }
  .mw-lg-700 {
    max-width: 700px;
  }
  .mw-lg-800 {
    max-width: 800px;
  }
  .mw-lg-900 {
    max-width: 900px;
  }
  .mw-lg-1100 {
    max-width: 1100px;
  }
}
@media all and (min-width: 768px) {
  .mw-md-300 {
    max-width: 300px;
  }
  .mw-md-400 {
    max-width: 400px;
  }
  .mw-md-500 {
    max-width: 500px;
  }
  .mw-md-600 {
    max-width: 600px;
  }
  .mw-md-700 {
    max-width: 700px;
  }
  .mw-md-800 {
    max-width: 800px;
  }
  .mw-md-900 {
    max-width: 900px;
  }
  .mw-md-1100 {
    max-width: 1100px;
  }
}
@media all and (min-width: 576px) {
  .mw-sm-300 {
    max-width: 300px;
  }
  .mw-sm-400 {
    max-width: 400px;
  }
  .mw-sm-500 {
    max-width: 500px;
  }
  .mw-sm-600 {
    max-width: 600px;
  }
  .mw-sm-700 {
    max-width: 700px;
  }
  .mw-sm-800 {
    max-width: 800px;
  }
  .mw-sm-900 {
    max-width: 900px;
  }
  .mw-sm-1100 {
    max-width: 1100px;
  }
}
.otgs-development-site-front-end {
  display: none;
}

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