@import "https://fonts.googleapis.com/css?family=Roboto:300,400,600,700|Merriweather:300,400,500,600,700&amp;display=swap";


html{
    scroll-behavior: smooth;
    
}
body {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #9d9ea5;
  line-height: 2em;
  
}

::selection {
  color: #ff04fc;
  background: #bebebe;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Merriweather, serif;
  font-weight: 600;
  color: #00113e;
}
p {
  font-size: 16px;
  color: #9d9ea5;
  
}
h1 {
  font-size: 6vh;
}
h2 {
  font-size: 4vh;
}
h3 {
  font-size: 3vh;
}
h4 {
  font-size: 2.5vh;
}
h5 {
  font-size: 2vh;
}
h6 {
  font-size: 15px;
  font-weight: 300;
}
.btn {
  font-family: montserrat, sans-serif;
  border: none;
  color: #fff !important;
  padding: 20px 45px;
  border-radius: 0;
}
.btn:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .btn {
    padding: 17px 40px;
  }
}
.btn .btn-area {
  display: block;
  overflow: hidden;
}
.btn .btn-area span {
  position: relative;
  display: inline-block;
  padding: 2px 0;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: left center;
}
.btn .btn-area span::after {
  content: attr(data-text);
  position: absolute;
  top: 150%;
  left: 0;
  transform: skewY(30deg);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn:hover .btn-area span {
  transform: translateY(-150%) skewY(7deg);
}
.btn:hover .btn-area span::after {
  transform: skewY(-7deg);
}
.btn:visited .btn-area span {
  transform: translateY(-150%) skewY(7deg);
}
.btn:visited .btn-area span::after {
  transform: skewY(-7deg);
}
.btn-sm {
  padding: 15px 40px !important;
}
.btn-sm-rounded {
  border-radius: 40px;
}
.btn-primary {
  background: #eaa4a4;
  color: #fff;
}
.btn-primary:hover {
  background: #e07b7b;
}
.btn-secondary {
  background: #add6d2;
  color: #fff;
}
.btn-secondary:hover {
  background: #8bc5bf;
}
body {
  background: #fff;
}
.section-title {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .section-title {
    text-align: center;
  }
}
.section-title h2 {
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 40px;
  }
}
.section-title p {
  font-size: 20px;
  font-weight: 300;
}
.form-control {
  background: 0 0;
  border-radius: 0;
  margin-bottom: 30px;
  padding: 0 0 10px;
  border-width: 0 0 1px;
  border-color: #eaa4a4;
  font-weight: 300;
  letter-spacing: 1px;
  -webkit-appearance: none;
  height: 42px;
}
.form-control:focus {
  box-shadow: none;
  background: 0 0;
  border-color: #9d9ea5;
}
select.form-control {
  height: 42px !important;
  position: relative;
}
.select-wrapper {
  position: relative;
}
.select-wrapper::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background: url(https://themes.gohugo.io/theme/roxo-hugo/images/angle-down-select.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 15px;
  top: 50%;
  transform: translateY(-80%);
}
textarea.form-control {
  height: auto;
}
.site-navigation {
  padding: 20px 0;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (max-width: 991px) {
  .site-navigation {
    background: #fff;
    margin: 10px;
    border-radius: 5px;
    top: 0;
    width: calc(100% - 20px);
    box-shadow: 0 0 12px rgba(0, 0, 0, 9%);
  }
}
@media (max-width: 575px) {
  .site-navigation {
    padding: 15px;
  }
}
.site-navigation .navbar-brand {
  padding: 0;
  margin: 0;
}
.site-navigation .navbar-brand img {
  /* max-width: 78px; */
}
@media (max-width: 991px) {
  .site-navigation .nav-item {
    text-align: center;
  }
}
.site-navigation .nav-item .nav-link {
  font-family: Merriweather, serif;
  color: #00113e;
  transition: all 0.3s ease;
  padding: 15px 18px;
  position: relative;
}
/* .site-navigation .nav-item:last-child {
  margin-left: 15px;
} */
.site-navigation .navbar-toggler {
  outline: 0;
  padding: 0;
}
.site-navigation .navbar-toggler .icon-bar {
  height: 2px;
  width: 25px;
  transition: all 0.2s;
  background: #a4d4ea;
  display: block;
}
.site-navigation .navbar-toggler .icon-bar:not(:last-child) {
  margin-bottom: 5px;
}
.site-navigation .navbar-toggler .icon-bar:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.site-navigation .navbar-toggler .icon-bar:nth-child(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.site-navigation .navbar-toggler .icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.site-navigation .navbar-toggler.collapsed .icon-bar:nth-child(1) {
  transform: rotate(0);
}
.site-navigation .navbar-toggler.collapsed .icon-bar:nth-child(2) {
  opacity: 1;
  filter: alpha(opacity=1);
}
.site-navigation .navbar-toggler.collapsed .icon-bar:nth-child(3) {
  transform: rotate(0);
}
.site-navigation.nav-bg {
  padding: 12px 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 9%);
}
@media (max-width: 575px) {
  .site-navigation.nav-bg {
    padding: 15px;
  }
}

a:hover {
  color: #ff04fc;
  text-decoration: none;
}


.site-hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .site-hero {
    height: auto;
    padding: 200px 0;
  }
}
@media (max-width: 575px) {
  .site-hero {
    padding: 150px 0;
  }
}
.site-hero-content h1 {
  margin-bottom: 75px;
}
@media (max-width: 1200px) {
  .site-hero-content h1 {
    font-size: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .site-hero-content h1 {
    font-size: 40px;
  }
}
.site-hero-content-buttons {
  margin: 0;
  padding: 0;
}
.site-hero-content-buttons li {
  display: inline-block;
}
@media (max-width: 575px) {
  .site-hero-content-buttons li {
    display: block;
  }
}
.site-hero-content-buttons li:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 575px) {
  .site-hero-content-buttons li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.site-hero-content-buttons li .btn {
  font-weight: 600;
}
@media (max-width: 575px) {
  .site-hero-content-buttons li .btn {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
.site-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
}
.site-counter {
  padding: 85px 0;
  color: #fff;
  background: #add6d2;
}
.site-counter .section-title {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .site-counter {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .site-counter-item {
    margin-bottom: 30px;
    text-align: center;
  }
}
.site-counter-item-title {
  font-size: 20px;
  font-weight: 300;
}
.site-counter-item-number {
  color: #fff;
  font-size: 60px;
  margin-bottom: 0;
  font-weight: 700;
}
.site-project,
.site-blog {
  padding: 120px 0;
  overflow: hidden;
}
.site-project-item,
.site-blog-post {
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease-in;
}
.site-project-item-thumb img,
.site-blog-post-thumb img {
  width: 100%;
}
.site-project-item-content,
.site-blog-post-content {
  position: absolute;
  background: #f7f9ff;
  width: 100%;
  padding: 45px 50px;
  bottom: 0;
  transition: all 0.3s cubic-bezier(0.36, 0.03, 0, 0.91);
}
@media (max-width: 767px) {
  .site-project-item-content,
  .site-blog-post-content {
    padding: 30px;
    padding-bottom: 75px;
  }
}
.site-project-item-content span,
.site-blog-post-content span {
  font-family: montserrat, sans-serif;
  color: #eaa4a4;
  display: block;
  margin-bottom: 10px;
}
.site-project-item-content h3,
.site-blog-post-content h3 {
  margin-bottom: 0;
  padding-bottom: 1em;
}
.site-project-item-content h3 a,
.site-blog-post-content h3 a {
  color: #00113e;
  transition: 0.3s ease;
}
.site-project-item-content h3 a:hover,
.site-blog-post-content h3 a:hover {
  text-decoration: none;
  color: #eaa4a4;
}
.site-project-item-content a.read-more,
.site-blog-post-content a.read-more {
  position: absolute;
  bottom: 40px;
  display: block;
  width: 100%;
  color: #9d9ea5;
  /* opacity: 1; */
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.36, 0.03, 0, 0.91);
}
@media (max-width: 767px) {
  .site-project-item-content a.read-more,
  .site-blog-post-content a.read-more {
    transform: translateY(0);
    opacity: 1;
  }
}
.site-project-item:hover,
.site-blog-post:hover {
  box-shadow: 0 30px 45px rgba(0, 0, 0, 1%), 0 30px 45px rgba(0, 0, 0, 2%),
    0 30px 45px rgba(0, 0, 0, 3%), 0 30px 45px rgba(0, 0, 0, 4%);
}
.site-project-item:hover .site-project-item-content,
.site-project-item:hover .site-blog-post-content,
.site-blog-post:hover .site-project-item-content,
.site-blog-post:hover .site-blog-post-content {
  padding-bottom: 75px;
}
.site-project-item:hover .site-project-item-content a,
.site-project-item:hover .site-blog-post-content a,
.site-blog-post:hover .site-project-item-content a,
.site-blog-post:hover .site-blog-post-content a {
  transform: translateY(0);
  opacity: 1;
}
.site-project-cta {
  margin-top: 30px;
  display: inline-block;
  position: relative;
  font-family: montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #eaa4a4;
}
.site-project-cta::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #eaa4a4;
  bottom: -2px;
  transition: transform 0.3s cubic-bezier(0.36, 0.03, 0, 0.91);
  transform-origin: right;
  transform: scaleX(0);
}
.site-project-cta:hover {
  color: #eaa4a4;
  text-decoration: none;
}
.site-project-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.site-project-header {
  padding: 170px 0 100px;
  background: #f7f9ff;
}
@media (max-width: 767px) {
  .site-project-header {
    padding: 120px 0 80px;
  }
}
.site-project-header-content h1 {
  font-size: 55px;
}
.site-project-header-content h1 span {
  color: #eaa4a4;
}
@media (max-width: 767px) {
  .site-project-header-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .site-project-header-content {
    text-align: center;
    margin-bottom: 30px;
  }
}
.site-project-header-action {
  display: block;
  text-align: center;
}
.site-project-header-action span {
  display: block;
  font-size: 30px;
  font-weight: 300;
  color: #00113e;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .site-project-header-action span {
    font-size: 25px;
  }
}
.site-project-header-action img {
  width: 66px;
}
@media (max-width: 767px) {
  .site-project-header-action img {
    width: 40px;
  }
}
.site-project-header-action:hover {
  text-decoration: none;
}
.site-project-pagination,
.site-blog-pagination {
  margin-top: 40px;
}
.site-project-pagination .pagination,
.site-blog-pagination .pagination {
  justify-content: center;
}
.site-project-pagination .pagination .page-item:not(:last-child),
.site-blog-pagination .pagination .page-item:not(:last-child) {
  margin-right: 10px;
}
.site-project-pagination .pagination .page-item .page-link,
.site-blog-pagination .pagination .page-item .page-link {
  font-size: 24px;
  border-radius: 0;
  border: none;
  padding: 12px 20px;
  color: #00113e;
  font-weight: 300;
  transition: all 0.3s ease;
}
.site-project-pagination .pagination .page-item.active .page-link,
.site-blog-pagination .pagination .page-item.active .page-link {
  background-color: #eaa4a4;
  color: #fff;
}
.site-project-pagination .pagination .page-item.disabled,
.site-blog-pagination .pagination .page-item.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.site-project-single-section {
  padding: 150px 0 100px;
}
@media (max-width: 767px) {
  .site-project-single-section {
    padding: 100px 0;
  }
}
.site-project-single h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 40px;
}
.site-project-single-image {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.site-project-single-image img {
  width: 48%;
}
.site-project-single-image img:nth-child(2n) {
  margin-left: auto;
}
@media (max-width: 767px) {
  .site-project-single-image img {
    width: 100%;
  }
}
.site-project-single-description {
  margin-bottom: 50px;
}
.site-project-single-description p {
  margin-bottom: 30px;
}
.site-project-single-action a {
  position: relative;
  font-size: 24px;
  font-weight: 300;
  color: #00113e;
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  .site-project-single-action a {
    transform: translateX(-10px);
  }
}
.site-project-single-action a .link-area {
  display: inline-block;
  overflow: hidden;
}
.site-project-single-action a .link-area span {
  position: relative;
  display: block;
  padding: 2px 0;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: left center;
}
.site-project-single-action a .link-area span::after {
  content: attr(data-text);
  position: absolute;
  top: 150%;
  left: 0;
  transform: skewY(30deg);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.site-project-single-action a:hover {
  text-decoration: none;
}
.site-project-single-action a:hover .link-area span {
  transform: translateY(-150%) skewY(7deg);
}
.site-project-single-action a:hover .link-area span::after {
  transform: skewY(-7deg);
}
.site-project-single-action img {
  filter: invert(1);
  transform: rotate(90deg);
  margin-left: 30px;
}
@media (max-width: 575px) {
  .site-blog {
    padding: 70px 0;
  }
}
.site-blog.details {
  padding: 150px 0 80px;
}
@media (max-width: 767px) {
  .site-blog.details {
    padding: 100px 0 60px;
  }
}
.site-blog-header {
  padding: 150px 0 0;
}
@media (max-width: 575px) {
  .site-blog-header {
    padding: 100px 0 0;
  }
}
.site-blog-header h1 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .site-blog-header h1 {
    font-size: 35px;
  }
}
.site-blog-header p {
  line-height: 28px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .site-blog-post-content {
    padding: 15px 25px 40px;
  }
}
.site-blog-post-content span {
  font-size: 14px;
}
.site-blog-post-content h3 {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .site-blog-post-content h3 {
    font-size: 20px;
  }
}
.site-blog-post-content a.read-more {
  color: #eaa4a4;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .site-blog-post-content a.read-more {
    transform: translateY(22px);
  }
}
.site-blog-details img {
  max-width: 100%;
  margin-bottom: 20px;
}
.site-blog-details .blog-title {
  font-size: 40px;
}
.site-blog-details .feature-image {
  margin: 20px 0 30px;
}
.site-blog-details h2,
.site-blog-details h3,
.site-blog-details h4,
.site-blog-details h5,
.site-blog-details h6 {
  margin-bottom: 15px;
}
.site-blog-details blockquote p {
  color: #00113e;
  font-size: 18px;
}
.site-blog-details cite {
  margin-top: 10px;
  display: block;
}
.site-testimonial {
  background: #f7f9ff;
  padding: 100px 0;
  overflow: hidden;
}
.site-testimonial-item {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in;
}
.site-testimonial-item.active {
  box-shadow: 0 30px 45px rgba(0, 0, 0, 5%);
}
.site-testimonial-item.inactive {
  opacity: 0.4;
}
.site-testimonial-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.site-testimonial-item-header .thumb {
  width: 80px;
  margin-right: 15px;
}
.site-testimonial-item-header .thumb img {
  width: 100%;
}
.site-testimonial-item-header .person h5 {
  margin-bottom: 5px;
}
.site-testimonial-item-header .person p {
  margin-bottom: 0;
  color: #646569;
}
.site-testimonial-item-body {
  margin-bottom: 0;
  font-weight: 300;
}
.site-cta {
  padding: 130px 0;
  background-size: cover;
  background-position: 50%;
}
@media (max-width: 991px) {
  .site-cta {
    padding: 100px 0;
  }
}
.site-cta-title {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 10px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .site-cta-title {
    letter-spacing: 5px;
  }
}
@media (max-width: 1200px) {
  .site-cta-title {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .site-cta-title {
    font-size: 40px;
    letter-spacing: 1;
  }
}
.site-cta-buttons {
  margin: 0;
  padding: 0;
}
.site-cta-buttons li {
  display: inline-block;
}
@media (max-width: 575px) {
  .site-cta-buttons li {
    display: block;
  }
}
.site-cta-buttons li:not(:last-child) {
  margin-right: 40px;
}
@media (max-width: 575px) {
  .site-cta-buttons li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .site-cta-buttons li .btn {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.site-about-header {
  padding-top: 80px;
  background-color: #f7f9ff;
}
@media (max-width: 575px) {
  .site-about-header {
    padding-top: 60px;
    text-align: center;
  }
}
.site-about-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-about-company {
  background: #eaa4a4;
  width: 40%;
  padding: 70px 38px;
}
@media (max-width: 991px) {
  .site-about-company {
    width: 100%;
    margin-bottom: 20px;
  }
}
.site-about-company h1 {
  color: #fff;
  font-weight: 400;
  font-size: 25px;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-about-description {
  width: 60%;
  padding-left: 50px;
}
@media (max-width: 991px) {
  .site-about-description {
    width: 100%;
    padding: 0 38px;
  }
}
.site-about-description p {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 0;
}
.site-expertise {
  padding: 100px 0;
  background: #f7f9ff;
}
.site-expertise-list {
  padding: 0;
  margin: 10px 0 0 20px;
}
@media (max-width: 575px) {
  .site-expertise-list {
    text-align: center;
    margin: 0;
  }
}
.site-expertise-list li {
  list-style: none;
  font-size: 25px;
  font-weight: 300;
  color: #00113e;
}
.site-expertise-list li:not(:last-child) {
  margin-bottom: 10px;
}
.site-client {
  padding: 100px 0 50px;
}
.site-client .section-title {
  margin-bottom: 100px;
}
.site-client-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .site-client-wrapper {
    justify-content: center;
  }
}
.site-client-item {
  text-align: center;
  width: 20%;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .site-client-item {
    width: 33.33%;
  }
}
@media (max-width: 575px) {
  .site-client-item {
    width: 50%;
  }
}
.site-team {
  padding: 100px 0;
}
.site-team-member {
  background: #f7f9ff;
  padding: 65px 30px 30px;
  margin: 50px 0 30px;
  position: relative;
}
@media (max-width: 767px) {
  .site-team-member {
    text-align: center;
  }
}
.site-team-member-image {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 11%;
  overflow: hidden;
  left: 30px;
  top: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .site-team-member-image {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.site-team-member-content h3 {
  font-size: 20px;
  color: #eaa4a4;
  margin-bottom: 10px;
  font-weight: 500; 
  padding-top: 2em;
}
.site-team-member-content p {
  font-size: 18px;
  color: #00113e;
  margin-bottom: 20px;
  font-weight: 300;
}
.site-team-member-social {
  margin: 0;
  padding: 0;
}
.site-team-member-social li {
  display: inline-block;
}
.site-team-member-social li a {
  color: #00113e;
}
.site-team-member-social li:not(:last-child) {
  margin-right: 10px;
}
.site-contact {
  padding: 150px 0 100px;
  background: #f7f9ff;
}
@media (max-width: 575px) {
  .site-contact {
    padding: 120px 0 100px;
  }
}
.site-contact-title {
  font-weight: 700;
}
@media (max-width: 767px) {
  .site-contact-title {
    font-size: 40px;
  }
}
.site-contact-title span {
  color: #eaa4a4;
}
.site-contact-form {
  margin-top: 20px;
}
.site-contact-form h4 {
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 3px;
}
@media (max-width: 767px) {
  .site-contact-form h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .site-contact-form h4 {
    margin-bottom: 70px;
  }
}
.site-footer {
  background: #f7f9ff;
  padding: 20px 0;
}
.site-footer-logo {
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .site-footer-logo {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .site-footer-widget {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .site-footer-widget {
    text-align: center;
  }
}
.site-footer-widget-title {
  /* color: #fff; */
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .site-footer-widget-title {
    margin-bottom: 20px;
  }
}
.site-footer-widget-description {
  /* color: #fff; */
  line-height: 30px;
}
.site-footer-widget-description a {
  /* color: #fff; */
}
.site-footer-widget-links {
  margin: 0;
  padding: 0;
}
.site-footer-widget-links li {
  list-style: none;
}
.site-footer-widget-links li a {
  /* color: #fff; */
  transition: all 0.3s cubic-bezier(0.36, 0.03, 0, 0.91);
  display: block;
}
.site-footer-widget-links li:not(:last-child) a {
  padding-bottom: 9px;
}
@media (max-width: 575px) {
  .site-footer-widget-top {
    text-align: center;
    display: block;
  }
}
.site-footer-widget-top img {
  margin-bottom: 20px;
}
.site-footer-widget-top p {
  /* color: #fff; */
}
.site-footer-widget-top:hover {
  text-decoration: none;
}





/* cards */



.blog-card {
  display: flex;
  flex-direction: column;
  height: 300px;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5%;
  background: #fff;
  line-height: 1.4;
  /* font-family: sans-serif; */
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}



/* .blog-card a {
  color: inherit;
} */
.blog-card a:hover {
  color: #ff04fc;
}
.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details, .blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  /* background: rgba(0, 0, 0, 0.6); */
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.blog-card .details a {
  text-decoration: dotted underline;
}
.blog-card .details ul li {
  display: inline-block;
}
/* .blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f007";
} */
/* .blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f133";
} */
/* .blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "\f02b";
  margin-right: 10px;
} */
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
/* .blog-card .description h1, .blog-card .description h2 {
  font-family: Poppins, sans-serif;
} */
.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}
.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: #ff04fc;
  display: inline-block;
  position: relative;
}
.blog-card .description .read-more a:after {
  content: "\f061";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: #ff04fc;
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
.blog-card:hover .details {
  left: 0%;
}



@media (min-width: 640px) {
  .blog-card {
    flex-direction: row;
    max-width: 700px;
    
  }
  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }
  .blog-card .description {
    flex-basis: 60%;
  }
  .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .blog-card.alt {
    flex-direction: row-reverse;
  }
  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }
  .blog-card.alt .details {
    padding-left: 25px;
  }
}

@media (max-width: 640px) {
  .blog-card {
    height: auto;
    
  }
}
/* team cards */

/* :root {
  --color: #3c3163;
  --transition-time: 0.5s;
} */


/* a {
  color: inherit;
} */

.cards-wrapper {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4rem;
  padding: 4rem;
  margin: 0 auto;
  width: 100%;
}

.card {

  --bg-filter-opacity: 0.3;
  background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img);
  height: 15em;
  width: 12em;
  font-size: 1.25em;
  color: white;
  border-radius: 1em;
  padding: 1em;
  margin: 2em;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 5em -1em rgb(124, 123, 123);
  /* transition: all, var(--transition-time);
  position: relative; */
  overflow: hidden;
  border: 7px solid #ccc;
  text-decoration: none;
}

/* .card:hover {
  transform: rotate(0);
} */

.card h1 {
  margin: 0;
  font-size: 1em;
  line-height: 1.2em;
}

.card p {
  font-size: 0.75em;
  font-family: 'Open Sans';
  margin-top: 0.5em;
  line-height: 2em;
  color: white;
}

/* .card .tags {
  display: flex;
} */

/* .card .tags .tag {
  font-size: 0.75em;
  background: rgba(255,255,255,0.5);
  border-radius: 0.3rem;
  padding: 0 0.5em;
  margin-right: 0.5em;
  line-height: 1.5em;
  transition: all, var(--transition-time);
} */

/* .card:hover .tags .tag {
  background: var(--color);
  color: white;
} */

/* .card .date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75em;
  padding: 1em;
  line-height: 1em;
  opacity: .8;
} */

/* .card:before, .card:after {
  content: '';
  transform: scale(0);
  transform-origin: top left;
  border-radius: 50%;
  position: absolute;
  left: -50%;
  top: -50%;
  z-index: -5;
  transition: all, var(--transition-time);
  transition-timing-function: ease-in-out;
}

.card:before {
  background: #ddd;
  width: 250%;
  height: 250%;
} */

/* .card:after {
  background: white;
  width: 200%;
  height: 200%;
}

.card:hover {
  color: var(--color);
}

.card:hover:before, .card:hover:after {
  transform: scale(1);
} */

/* .card-grid-space .num {
  font-size: 3em;
  margin-bottom: 1.2rem;
  margin-left: 1rem;
} */

.info {
  font-size: 1.2em;
  display: flex;
  padding: 1em 3em;
  height: 3em;
}

.info img {
  height: 3em;
  margin-right: 0.5em;
}

.info h1 {
  font-size: 1em;
  font-weight: normal;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 900px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }
  .info {
    justify-content: center;
  }
  /* .card-grid-space .num {
    /margin-left: 0;
    /text-align: center;
  } */
}

@media screen and (max-width: 500px) {
  .cards-wrapper {
    padding: 4rem 2rem;
  }
  .card {
    max-width: calc(100vw - 4rem);
  }
}

@media screen and (max-width: 450px) {
  .info {
    display: block;
    text-align: center;
  }
  .info h1 {
    margin: 0;
  }
}


/* team */
figure.snip0078 {
  color: #fff;
  position: relative;
  float: left;
  /* margin: 10px 1%; */
  min-width: 200px;
  max-width: 310px;
  max-height: 310px;
  width: 100%;
  text-align: center;
  margin: 1rem;
}
figure.snip0078 * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
}
figure.snip0078 img {
  opacity: 1;
  max-width: 100%;
  /* border: 10px solid #000000; */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
figcaption p {
  line-height: 1.7em;
}
figure.snip0078 figcaption {
  bottom: 0;
  width: 80%;
  height: 30%;
  right: 0;
  position: absolute;
  background: #000000;
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  box-shadow: 0 0px 10px -10px #000000;
}
figure.snip0078 figcaption h2,
figure.snip0078 figcaption p {
  margin: 0;
  color: #222222;
}
figure.snip0078 figcaption h2 {
  font-weight: 400;
  text-transform: uppercase;
}
figure.snip0078 figcaption h2 span {
  font-weight: 800;
}
figure.snip0078 figcaption p {
  font-size: 0.9em;
  font-weight: 500;
  opacity: 1;
}
figure.snip0078 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
figure.snip0078.blue figcaption {
  background: #fffefefd;
}
/* figure.snip0078.blue img {
  border: 1px solid #1b557a;
} */
figure.snip0078.red figcaption {
  background: #81261d;
}
figure.snip0078.red img {
  border: 10px solid #81261d;
}
figure.snip0078.yellow figcaption {
  background: #a85913;
}
figure.snip0078.yellow img {
  border: 10px solid #a85913;
}
figure.snip0078:hover figcaption,
figure.snip0078.hover figcaption {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: 0 15px 15px -15px #000000;
}
/* figure.snip0078:hover.blue img,
figure.snip0078.hover.blue img {
  border: 3px solid #2980b9;
} */
figure.snip0078:hover.red img,
figure.snip0078.hover.red img {
  border: 10px solid #c0392b;
}
figure.snip0078:hover.yellow img,
figure.snip0078.hover.yellow img {
  border: 10px solid #e67e22;
}




/* slider */

#slide {
  box-sizing: border-box;
  &::before, &::after {
    box-sizing: border-box;
  }
}

.container2 {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
}

#slide button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none; 
  background: transparent;
  padding: 20px 5px;
  color: #ff04fc;
  font-size: 2rem;
  }

#slide button span {
  position: relative;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.previous:hover span {
  transform: translateX(-10px) scale(1.2);
}

.next:hover span {
  transform: translateX(10px) scale(1.2);
}

.slider-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.slider-nav li {
  display: flex;
  flex: 2;
  text-align: center;
  justify-content: space-around;
}

#slide img {
  max-width: 100%;
  display: none;
  box-shadow: 10px 30px 40px 0 rgba(41, 39, 40, 0.2);
  margin: auto;
}

#slide img.active {
  display: block;
  animation: fadeImg 0.8s;
}

.slider-nav .arrow {
  flex: 0 0 15%;
}

.slider-nav a {
  flex-basis: 100%;
  display: flex;
  align-items: center;
}

.slider-nav span {
  display: block;
  width: 100%;
}

@keyframes fadeImg {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* gallery */
div.photoset {
  padding: 2px;
  
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
}
div.photoset .photo {
  position: relative;
  flex-grow: 1;
  min-width: calc(100% / 3);
  background-size: cover;
  background-position: center;
  
}

div.photoset .photo2 {
  height: 20rem;
  position: relative;
  flex-grow: 1;
  min-width: calc(100% / 3);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 700px) {
  div.photoset .photo {
    min-width: calc(100% / 2);
 }

}
@media screen and (max-width: 460px) {
  div.photoset .photo {
    min-width: 100%;
 }
 div.photoset .photo2 {
  min-width: 100%;
}

}


/* video {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
  padding-bottom: 1rem;
  
 } */


/* @media screen and (max-width: 540px) {
  
 .video-small {
  position: relative;
	
	height: 0;
 }
} */

div.photoset .photo:after {
  padding-top: 83.33333%;
  display: block;
  content: "";
}
div.photoset .photo2:after {
  padding-top: 83.33333%;
  display: block;
  content: "";
}

div.photoset .photo:before {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  box-shadow: inset 0 0 0 2px #fff;
}

div.photoset .photo2:before {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  box-shadow: inset 0 0 0 2px #fff;
}
/* div.photoset .photo:nth-child(1) {
  width: 100%;
} */
div.photoset.square .photo:after {
  padding-top: 100%;
}
div.photoset.portrait .photo:after {
  padding-top: 120%;
}


/* wrapper */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  max-width: 100%;
  margin: auto;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* gdpr */

.gdpr-bar{
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #ff047dc7;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 5px;
  transition: .5s ease-in all;
  z-index: 99999;
}

.left{
  /* width: 84%; */
  padding-left: 20px;
}
.right{
  /* width: 14%; */
  text-align: center;
}
.accept-btn{
  background-color: #047FFF;
  border: none;
  color: rgb(255, 255, 255);
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5%;
}
.accept-btn:hover{
background-color: #95c8ff; 
color: rgb(0, 0, 0);
}


/* cloud */

ul.cloud {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 2.75rem;
  width: 100%;
  padding-top: 3rem;
  
}

ul.cloud a {

  --size: 4;
  --color: #a33;
  color: var(--color);
  font-size: calc(var(--size) * 0.25rem + 0.5rem);
  display: block;
  padding: 0.125rem 0.25rem;
  position: relative;
  text-decoration: none;
  cursor: default;
  /* opacity: calc((15 - (9 - var(--size))) / 15);  */

}

/* ul.cloud a[data-weight="1"] { --size: 1.7; }
ul.cloud a[data-weight="2"] { --size: 2; }
ul.cloud a[data-weight="3"] { --size: 3; } */
ul.cloud a[data-weight="4"] { --size: 4; }
/* ul.cloud a[data-weight="5"] { --size: 6; }
ul.cloud a[data-weight="6"] { --size: 8; }
ul.cloud a[data-weight="7"] { --size: 9; }
ul.cloud a[data-weight="8"] { --size: 10; }
ul.cloud a[data-weight="9"] { --size: 11; } */

ul[data-show-value] a::after {
  content: " (" attr(data-weight) ")";
  font-size: 1rem;
}

ul.cloud li:nth-child(2n+1) a { --color: #181; }
ul.cloud li:nth-child(3n+1) a { --color: #33a; }
ul.cloud li:nth-child(4n+1) a { --color: #c38; }

ul.cloud a:focus {
  outline: 1px dashed;
}

ul.cloud a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: var(--color);
  transform: translate(-50%, 0);
  opacity: 0.15;
  transition: width 0.25s;
}

ul.cloud a:focus::before,
ul.cloud a:hover::before {
  width: 100%;
}

@media (prefers-reduced-motion) {
  ul.cloud * {
    transition: none !important;
  }
}