/* */
/*Theme Name: Fonseca DDC */
/*Author: DDC */
/*Author URI:  */
html.actived {
  overflow: hidden;
  height: 100vh;
}

.select-fonseca {
  overflow: hidden;
  display: flex;
  flex-flow: column;
  background-image: url(img/select.jpg);
  background-size: cover;
  min-height: 100vh;
}
.select-fonseca .select {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}
.select-fonseca .select .selection {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-flow: column;
}
.select-fonseca .select img {
  max-width: 315px;
  max-height: 85px;
  display: block;
  margin-bottom: 30px;
}
.select-fonseca .select .lawyer a, .select-fonseca .select .accounting a {
  border-radius: 10px;
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
}
.select-fonseca .select .lawyer a:hover, .select-fonseca .select .accounting a:hover {
  text-decoration: none;
}
.select-fonseca .select .lawyer a {
  background: #fff;
  color: #5e5e5e;
  transition: 300ms all ease;
}
.select-fonseca .select .lawyer a:hover {
  background:  #5e5e5e;
  color: #fff;
  cursor: pointer;
}
.select-fonseca .select .accounting a {
  background: #fff;
  color: #5e5e5e;
  transition: 300ms all ease;
}
.select-fonseca .select .accounting a:hover {
  background:  #5e5e5e;
  color: #fff;
  cursor: pointer;
}
.select-fonseca .wrapper {
  flex-grow: 2;
}
.select-fonseca .corp {
  opacity: 0;
  animation: corp-select 300ms ease;
  animation-delay: 700ms;
  animation-fill-mode: forwards;
}

.menu {
  display: none;
}

/* HEADER */
header {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fff;
  position: relative;
  box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 2;
  align-items: center;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-top .logo img {
  max-width: 221px;
  height: auto;
}
header .social {
  display: none;
}
header .social a {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background: black;
  border-radius: 3px;
  margin-left: 5px;
  color: #fff;
}
header .social a:hover {
  text-decoration: none;
}
header .header-right {
  display: none;
}

/* END HEADER */
/* BANNER */
.banners-fullwidth {
  position: relative;
  box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.banners-fullwidth .owl-dots {
  position: absolute;
  right: 40px;
  bottom: 20px;
  display: none;
  flex-flow: column;
}
.banners-fullwidth .owl-dots button {
  border: 2px solid #fff;
  margin-top: 10px;
}
.banners-fullwidth .owl-dots button.active span {
  background: black;
}
.banners-fullwidth .owl-dots span {
  content: "";
  width: 15px;
  height: 15px;
  margin: 2px;
  display: block;
}
.banners-fullwidth .banner {
  min-height: 400px;
  height: 100%;
  position: relative;
  display: block;
  background-size: cover;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  /*OPTION BACKGROUND WHITE */
  /*END BACKGROUND WHITE */
}
.banners-fullwidth .banner .content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 90%;
}
.banners-fullwidth .banner .content h2, .banners-fullwidth .banner .content p {
  text-align: center;
}
.banners-fullwidth .banner .content p {
  font-size: 1.2rem;
}
.banners-fullwidth .banner .background-white {
  padding: 10px 10px;
  background: #fff;
}
.banners-fullwidth .banner img {
  height: auto;
}
.banners-fullwidth .banner h2 {
  font-size: 19px;
  text-transform: uppercase;
}
.banners-fullwidth .banner p {
  font-size: 13px;
}
.banners-fullwidth .banner a {
  display: block;
  padding: 15px 30px;
  background-color: black;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
}
.banners-fullwidth .banner a:hover {
  text-decoration: none;
}

/* END BANNER */
/* EXPERTISE */
.expertise h2 {
  padding-top: 30px;
  text-transform: uppercase;
}
.expertise .expertise-content {
  padding: 20px 0 40px;
}
.expertise .expertise-content .title {
  margin-top: 20px;
}
.expertise .expertise-content .title h2 {
  font-size: 20px;
  font-weight: 600;
  display: none;
  text-align: left;
  color: #000;
}
.expertise .expertise-content .title h2.actived {
  display: block;
}
.expertise .expertise-content .icons {
  display: flex;
  align-items: center;
}
.expertise .expertise-content .icons .icon {
  background: black;
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
  transition: 300ms ease all;
}
.expertise .expertise-content .icons .icon.actived {
  transform: scale(1.1);
}
.expertise .expertise-content .icons .icon.actived:hover {
  cursor: default;
}
.expertise .expertise-content .icons .icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.expertise .expertise-content .icons .icon img {
  max-width: 52px;
  height: auto;
}
.expertise .expertise-content .content {
  padding: 30px 0 0 0;
}
.expertise .expertise-content .content div[data-show] {
  display: none;
}
.expertise .expertise-content .content div[data-show].actived {
  display: block;
}

/* END EXPERTISE */
/* ABOUT US */
.about {
  padding-bottom: 60px;
}
.about h2 {
  text-transform: uppercase;
}
.about p {
  text-align: justify;
}

/* END ABOUT US */
/*Professional */
.selected-professional {
  padding-top: 20px;
  display: none;
}
.selected-professional img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.selected-professional .professional-text {
  margin-bottom: 30px;
}
.selected-professional .title {
  margin-bottom: 30px;
}
.selected-professional .title span {
  text-transform: uppercase;
}
.selected-professional .title h3 {
  margin-top: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.selected-professional.actived {
  display: flex;
  align-items: center;
  flex-flow: column;
}

.select-professionals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.select-professionals:after {
  height: 15px;
  content: "";
  width: 100%;
  display: block;
  grid-column-start: 1;
  grid-column-end: 3;
  background-image: url(img/select-line-horizontal.png);
  background-size: 100% 8px;
  background-repeat: no-repeat;
  background-position: center;
}
.select-professionals .professional {
  transition: 300ms all ease;
}
.select-professionals .professional .thumbnail-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.select-professionals .professional .thumbnail-wrapper img {
  width: auto;
  height: 100%;
}
.select-professionals .professional h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4px;
  margin-top: 10px;
  text-transform: uppercase;
}
.select-professionals .professional span {
  display: block;
  text-align: center;
}
.select-professionals .professional:hover {
  color: #fff;
  cursor: pointer;
}

/* ARTICLES * / */
.articles-block h2 {
  margin: 20px 0 30px;
  text-transform: uppercase;
  text-align: center;
}
.articles-block .container:after {
  height: 15px;
  content: "";
  width: 100%;
  display: block;
  background-image: url(img/select-line-horizontal.png);
  background-size: 100% 8px;
  background-repeat: no-repeat;
  background-position: center;
}
.articles-block .more-articles {
  display: block;
  text-align: center;
  width: fit-content;
  width: -moz-fit-content;
  margin: 0px auto 40px;
  color: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  transition: 300ms ease all;
}
.articles-block .more-articles:hover {
  text-decoration: none;
}
.articles-block .articles .article {
  margin-bottom: 20px;
}
.articles-block .articles .article:hover {
  text-decoration: none;
}
.articles-block .articles .article .thumbnail-wrapper {
  height: 250px;
  width: 250px;
  overflow: hidden;
  margin: 5px auto;
}
.articles-block .articles .article .thumbnail-wrapper img {
  height: 100%;
  width: auto;
}
.articles-block .articles .article h5 {
  text-align: center;
  text-transform: uppercase;
}
.articles-block .articles .article p {
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

/* VALUES */
.values-block .values:after {
  height: 15px;
  content: "";
  width: 100%;
  display: block;
  background-image: url(img/select-line-horizontal.png);
  background-size: 100% 8px;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 50px;
}
.values-block .values .value {
  padding-top: 20px;
}
.values-block .values .value img {
  margin: 0 auto;
  display: block;
}
.values-block .values .value h5 {
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
}
.values-block .values .value p {
  display: block;
  text-align: center;
}

/* CLIENTS */
.clients h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.clients .client img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.clients .container:after {
  height: 15px;
  content: "";
  width: 100%;
  display: block;
  background-image: url(img/select-line-horizontal.png);
  background-size: 100% 8px;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 50px;
}

/* CONTACT */
footer {
  padding-top: 20px;
}
footer h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
footer input[type="text"], footer input[type="email"], footer textarea {
  width: 100%;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  font-style: italic;
  padding: 12px;
}
footer button {
  padding: 15px 29px;
  background: #000;
  transition: 300ms ease all;
  color: #fff;
  border-radius: 5px;
  display: block;
  margin: 0px 0 20px auto;
}
footer .contact-group {
  margin-bottom: 40px;
}
footer .social {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .social a {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: black;
  border-radius: 3px;
  margin-left: 5px;
  color: #fff;
}
footer .social a i {
  font-size: 1.5rem;
}
footer .social a:hover {
  text-decoration: none;
}
footer .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin: 10px 0;
}
footer .contact-item.address {
  text-align: center;
  text-transform: uppercase;
}

/* END CONTACT */
.group-bottom {
  background-color: #e9e8e8;
}

/* CATEGORY */
.category h2 {
  margin-top: 40px;
  text-align: center;
  text-transform: uppercase;
}
.category p.no-article {
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.category .news-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.category .new {
  background: #ddd;
  margin-bottom: 20px;
  padding: 20px;
  text-align: center;
  color: #000;
}
.category .new span {
  padding: 10px 20px;
  background: #fff;
}
.category .new:hover {
  text-decoration: none;
}
.category .new .img-wrapper {
  width: 280px;
  height: 280px;
  overflow: hidden;
  margin: 0 auto 20px;
}
.category .new .img-wrapper img {
  height: 100%;
  width: auto;
}

/* SINGLE */
.single h1 {
  margin: 20px;
  text-align: center;
  text-decoration: uppercase;
}
.single img {
  max-width: 100%;
  max-height: 200px;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto 30px;
}
.single p {
  text-align: center;
}

/* Media Query */
header {
  position: relative;
}

.mobile-menu-block {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}
.mobile-menu-block.open {
  display: flex;
}
.mobile-menu-block.closer {
  animation: closer 560ms ease;
  animation-fill-mode: forwards;
}
.mobile-menu-block.closer ul {
  animation: closer-ul 300ms ease;
  animation-fill-mode: forwards;
}
.mobile-menu-block:before {
  content: "";
  height: 100vh;
  width: 100vw;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  animation: mobile-bg 560ms ease;
  animation-fill-mode: forwards;
}
.mobile-menu-block ul {
  padding: 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  animation: mobile-ul 560ms ease;
  animation-fill-mode: forwards;
  animation-delay: 560ms;
}
.mobile-menu-block ul li {
  display: block;
}
.mobile-menu-block ul li a {
  text-align: center;
  display: block;
  font-size: 2.1rem;
  color: #fff;
}
.mobile-menu-block button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
}
.mobile-menu-block button:focus {
  outline: none;
}

.mobile-menu button {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  align-items: center;
  height: 30px;
  width: 30px;
  background: none;
  border: none;
}
.mobile-menu button:focus {
  outline: none;
}
.mobile-menu button span {
  height: 2px;
  width: 30px;
  background: #000;
  display: block;
}

@media(max-width: 767px);
@media(min-width: 1024px) {
  .mobile-menu, .mobile-menu-block {
    display: none;
  }
}
@media(min-width: 768px) {
  /*SELECT PAGE */
  .select-fonseca .select {
    padding: 50px 0;
    height: -webkit-fill-available;
    max-height: 80vh;
    min-height: 80vh;
    grid-template-columns: 1fr 1fr;
    background-image: url(img/select-line.png);
    background-size: 6px 80%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    animation: select 900ms ease;
    animation-delay: 300ms;
    animation-fill-mode: forwards;
    display: grid;
    align-items: center;
    justify-content: center;
  }
  .select-fonseca .select .lawyer a, .select-fonseca .select .accounting a {
    font-size: 24px;
  }
  .select-fonseca .select .lawyer {
    animation: lawyer-animation 500ms ease-in-out;
    animation-delay: 300ms;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  .select-fonseca .select .accounting {
    animation: accounting-animation 500ms ease-in-out;
    animation-delay: 300ms;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  /*END SELECT PAGE */
  /* HEADER */
  header {
    padding: 15px 0;
  }
  header .container .header-top .logo img {
    max-width: 220px;
    height: auto;
  }
  header .container .header-right {
    margin-left: auto;
  }
  header .container .header-right ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  header .container .header-right .sp-block,
  header .container .header-right .social,
  header .container .header-right .phone {
    display: flex;
  }
  header .container .header-right .address {
    display: flex;
    justify-content: flex-end;
    color: #aaaaaa;
  }
  header .container .header-right .sp-block {
    justify-content: flex-end;
  }
  header .container .header-right .sp-block .phone li {
    margin-left: 10px;
  }
  header .container .header-right .sp-block .phone li i {
    color: #aaaaaa;
  }

  /* END HEADER */
  /* BANNER */
  .banners-fullwidth .owl-dots {
    display: flex;
  }
  .banners-fullwidth .banner {
    /* CONTENT POSITION */
    /* END CONTENT POSITION */
  }
  .banners-fullwidth .banner .content {
    height: 100%;
    max-width: 406px;
    position: absolute;
    top: 0;
  }
  .banners-fullwidth .banner .content h2 {
    font-size: 27px;
    text-transform: uppercase;
    text-align: left;
  }
  .banners-fullwidth .banner .content p {
    text-align: justify;
  }
  .banners-fullwidth .banner .background-white {
    padding: 10px 40px;
    background: #fff;
  }
  .banners-fullwidth .banner .content-center {
    left: 50%;
    transform: translateX(-50%);
  }
  .banners-fullwidth .banner .content-right {
    right: 10%;
  }
  .banners-fullwidth .banner .content-left {
    right: 10%;
  }

  /*PROFESSIOAL */
  .selected-professional {
    margin-bottom: 50px;
  }
  .selected-professional.actived {
    flex-flow: row;
  }
  .selected-professional img {
    max-width: 350px;
  }
  .selected-professional .professional-text {
    margin-left: 50px;
  }

  .category .news-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media(min-width:1024px) {
  /* HEADER */
  header .container .header-top .logo img {
    max-width: 250px;
  }
  header .header-right {
    display: block;
  }

  /* END HEADER */
  .banners-fullwidth .banner {
    height: 575px;
    max-height: 575px;
  }
  .banners-fullwidth .banner .content {
    position: absolute;
  }
  .banners-fullwidth .banner .content.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*BANNER */
  /*END BANNER */
  .navmenu {
    padding: 4px 0 0 0;
    margin-top: 3px;
  }

  .menu {
    display: flex;
    font-size: 17px;
    text-transform: uppercase;
  }
  .menu a {
    color: #22242d;
    border-right: 1px solid #22242d;
    padding-right: 20px;
  }
  .menu a:hover {
    text-decoration: none;
  }
  .menu li {
    margin-left: 20px;
  }
  .menu li:last-child a {
    border-right: none;
    padding-right: 0px;
  }

  /* PROFESSIONAL */
  .select-professionals {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .select-professionals:after {
    grid-column-end: 4;
  }

  /* EXPERTISE */
  .expertise {
    padding: 88px 0;
  }
  .expertise .header-expertise {
    display: flex;
    align-items: center;
  }
  .expertise .header-expertise .title {
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 30px;
  }
  .expertise .header-expertise .title h2 {
    padding: 0;
    margin: 0;
  }
  .expertise .header-expertise .icons .icon {
    height: 100px;
    width: 100px;
  }
  .expertise .header-expertise .icons .icon img {
    max-width: 72px;
    height: auto;
  }
  .expertise .content {
    margin-bottom: 40px;
  }

  /*ABOUT US */
  .about .about-content {
    background-size: 100% 100%;
    max-width: 50%;
    margin: 0 0 70px auto;
    padding: 60px;
  }
  .about .about-content h2 {
    margin-bottom: 30px;
  }

  /*PROFESSIONAL */
  .selected-professional {
    padding-top: 50px;
  }
  .selected-professional .professional-text p {
    line-height: 2.2rem;
  }

  /* ARTICLES */
  .articles-block {
    margin-top: 0px;
  }
  .articles-block h2 {
    text-align: left;
  }
  .articles-block .articles .article {
    display: block;
    margin: 10px auto;
    width: 400px;
  }
  .articles-block .articles .article p {
    text-align: justify;
    color: #000;
  }
  .articles-block .articles .article h5 {
    text-align: left;
    color: #000;
  }
  .articles-block .articles .article .thumbnail-wrapper {
    height: 400px;
    width: 400px;
  }

  /* VALUES */
  .values-block .values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
  .values-block .values:after {
    padding-top: 30px;
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .values-block .values .value h5 {
    margin-bottom: 30px;
  }

  /* FOOTER */
  footer .inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  footer .contact-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  footer .contact-items-line {
    margin-top: 20px;
    margin-left: auto;
    max-width: 550px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
  }
  footer .contact-items-line .top-line {
    display: flex;
  }
  footer .contact-item.address {
    flex-grow: 2;
  }
  footer .social, footer .contact-item, footer .top-line {
    width: fit-content;
    width: -moz-fit-content;
  }
  footer .contact-item {
    margin-top: 0;
    margin-bottom: 0;
    flex-flow: row;
    flex-wrap: nowrap;
  }
  footer .contact-item .item-c + .item-c {
    margin-left: 10px;
  }
  footer .social {
    margin-top: 0;
    margin-right: 20px;
  }
  footer .social a {
    width: 24px;
    height: 24px;
  }

  /* CATEGORY */
  .category .news-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media(min-width: 1300px) {
  .container {
    max-width: 1250px;
  }

  /* EXPERTISE */
  .expertise .expertise-content .content {
    max-width: 1000px;
  }

  /* PROFESSIONAL */
  .select-professionals {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .select-professionals:after {
    grid-column-end: 5;
  }

  /* EXPERTISE */
  /* ARTICLES */
  .articles-block .articles .article {
    width: 400px;
  }
  .articles-block .articles .article p {
    text-align: justify;
    color: #000;
    margin-bottom: 20px;
  }
  .articles-block .articles .article h5 {
    text-align: left;
    color: #000;
  }
  .articles-block .articles .article .thumbnail-wrapper {
    height: 400px;
    width: 400px;
  }

  /*PROFESSIONAL */
}
@media(min-width: 1500px) {
  .container {
    max-width: 1450px;
  }
}
/* ANIMATION / */
@keyframes select {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes corp-select {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes lawyer-animation {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes accounting-animation {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes mobile-bg {
  0% {
    transform: translateX(500px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes mobile-ul {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes closer {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes closer-ul {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*DDC* */
/* DDC */
.corp {
  background: #252525;
  margin-bottom: 0;
}
.corp .corp-items {
  display: grid;
  padding: 20px 0;
}
.corp .corp-items p {
  text-transform: uppercase;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  text-align: center;
  margin: 2px 0;
}
.corp .footer-logo {
  display: flex;
  align-items: center;
  margin: 0px auto 0 auto;
  width: 149px;
}
.corp .footer-logo span {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  margin-right: 15px;
}
.corp .footer-logo a {
  display: flex;
  align-items: center;
}
.corp .footer-logo a img {
  max-width: 75px;
  width: 100%;
}

.logo-bg {
  padding-top: 30px;
  position: relative;
  overflow: hidden;
  background-image: url(img/logo-bg.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}

.pag404 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.pag404 p {
  -webkit-transform: skew(-15deg);
  font-size: 50px;
  text-align: center;
}

@media (min-width: 768px) {
  .corp .corp-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .corp .footer-logo {
    margin: 0 0 0 auto;
  }
}
/* END DDC */


.whatsapp{
  z-index: 1;
position: fixed;
bottom: 20px;
left: 20px;  
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
width: 70px;
height: 70px;

}
.whatsapp:hover{
text-decoration: none;
}


.whatsapp i{
  font-size: 45px;
  color: #fff;

}

