/*
Color codes: 
    DarkGreen - 386641
    Green - 6A994E
    LightGreen - A7C957
    White - F2E8CF
    Red - BC4749
    Black - 0B0A07
*/

/* Font family */
/* -- Normal */
@font-face {
    font-family: CopperHewitt;
    font-style: normal;
    font-weight: 400;
    src: url(../assets/fonts/CooperHewitt-Book.otf);
}

@font-face {
    font-family: CopperHewitt;
    font-style: italic;
    font-weight: 400;
    src: url(../assets/fonts/CooperHewitt-BookItalic.otf);
}

/* -- Bold */
@font-face {
    font-family: CopperHewitt;
    font-style: normal;
    font-weight: bold;
    src: url(../assets/fonts/CooperHewitt-Bold.otf);
}

@font-face {
    font-family: CopperHewitt;
    font-style: italic;
    font-weight: bold;
    src: url(../assets/fonts/CooperHewitt-BoldItalic.otf);
}

/* -- SemiBold */
@font-face {
    font-family: CopperHewitt;
    font-style: normal;
    font-weight: 500;
    src: url(../assets/fonts/CooperHewitt-Semibold.otf);
}

@font-face {
    font-family: CopperHewitt;
    font-style: italic;
    font-weight: 500;
    src: url(../assets/fonts/CooperHewitt-SemiboldItalic.otf);
}

/* -- Light */
@font-face {
    font-family: CopperHewitt;
    font-style: normal;
    font-weight: 100;
    src: url(../assets/fonts/CooperHewitt-Light.otf);
}

@font-face {
    font-family: CopperHewitt;
    font-style: italic;
    font-weight: 100;
    src: url(../assets/fonts/CooperHewitt-LightItalic.otf);
}

/* -- Medium */
@font-face {
    font-family: CopperHewitt;
    font-style: normal;
    font-weight: 300;
    src: url(../assets/fonts/CooperHewitt-Medium.otf);
}

@font-face {
    font-family: CopperHewitt;
    font-style: italic;
    font-weight: 300;
    src: url(../assets/fonts/CooperHewitt-MediumItalic.otf);
}

/* -- Thin */
@font-face {
    font-family: CopperHewitt;
    font-style: normal;
    font-weight: 200;
    src: url(../assets/fonts/CooperHewitt-Thin.otf);
}

@font-face {
    font-family: CopperHewitt;
    font-style: italic;
    font-weight: 200;
    src: url(../assets/fonts/CooperHewitt-ThinItalic.otf);
}

/* -- Heavy */
@font-face {
    font-family: CopperHewitt;
    font-style: normal;
    font-weight: bolder;
    src: url(../assets/fonts/CooperHewitt-Heavy.otf);
}

@font-face {
    font-family: CopperHewitt;
    font-style: italic;
    font-weight: bolder;
    src: url(../assets/fonts/CooperHewitt-HeavyItalic.otf);
}

/* ---------------------------------------------------------------------- */

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: 400;
    src: url(../assets/fonts/GraphikRegular.otf);
}

@font-face {
    font-family: Graphik;
    font-style: italic;
    font-weight: 400;
    src: url(../assets/fonts/GraphikRegularItalic.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: bold;
    src: url(../assets/fonts/GraphikBold.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: bolder;
    src: url(../assets/fonts/GraphikSuper.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: 100;
    src: url(../assets/fonts/GraphikExtralight.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: 200;
    src: url(../assets/fonts/GraphikLight.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: 300;
    src: url(../assets/fonts/GraphikThin.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: 500;
    src: url(../assets/fonts/GraphikMedium.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: 600;
    src: url(../assets/fonts/GraphikSemibold.otf);
}

@font-face {
    font-family: Graphik;
    font-style: normal;
    font-weight: 800;
    src: url(../assets/fonts/GraphikBlack.otf);
}
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
body {
    font-family: CopperHewitt, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F2E8CF;
    height: 100%;
    width: 100%;
}
header {
    background-color: white;
    color: #0B0A07;
}
nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
nav a {
    display: flex;
    color: inherit;
    text-decoration: none;
    padding: 14px 20px;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    color: #25352c;
    font-weight: 300;
}
nav li {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    margin-right: 10px;
}

nav li:last-child {
  margin-right: 0;
}

nav li:after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

nav li:hover:after, nav li:active:after, nav li:focus:after {
    width: 80%;
    background: #A7C957;
}

nav a:hover, nav a:active, nav a:focus {
    color: #6A994E;
}

nav .menu {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}
nav .menu ul {
    padding-right: 130px;
    padding-left: 0;
    margin-bottom: 0;
}
nav .menu a {
    margin: 0;
    font-size: 18px;
}
nav .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
nav .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #386641;
    margin: 5px 0;
}
nav .logo img {
    width: 90px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
@media (max-width: 768px) {
    nav .menu {
        display: flex;
        visibility: hidden;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        flex-basis: 100%;
        transition: max-height 0.15s ease-out;
    }
    nav .menu ul {
        display: none;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        padding-right: 0px;
    }
    nav .menu a {
        text-align: center;
        padding: 10px;
        border-top: 1px solid #dbdbdb;
        display: block;
    }
    nav .menu li:after {
        display: none;
    }
    nav .hamburger {
        display: flex;
        flex: 1;
        align-items: flex-end;
    }
    nav .menu.active {
        visibility: visible;
        width: 100%;
        /* flex-grow: 1;
        height: auto;
        flex-basis: 100%; */
        max-height: 500px;
        transition: max-height 0.25s ease-in;
    }
    
    nav .menu.active ul {
        display: flex;
    }
}

.landing {
    position: relative;
    min-height: calc(100% - 112px);
    width: 100%;
    background-image: url("../assets/bg.jpg");
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    flex-direction: row;
}

.landing .content {
    -moz-column-gap: 0;
    column-gap: 0;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.column-1 {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    width: 100%;
    --column-width: 330px;
    --column-flex: 330;
}

.column-2 {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    width: 100%;
    --column-width: 650px;
    --column-flex: 650;
    display: flex;
    justify-content: flex-start;
}

.column-2-content {
    background-color: white;
    bottom: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    width: 80%;
    position: static;
    display: grid;
    height: auto;
    min-height: auto;
    grid-template-rows: min-content 1fr;
    grid-template-columns: 100%;
}

.column-2-content .banner {
    position: relative;
    margin: 50px 50px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    max-width: 100%;
    color: #25352c;
}

.column-2-content .banner h1 {
    font-weight: bolder;
    font-size: 65px;
    margin-bottom: 0px;
}

.column-2-content .banner h3 {
    font-weight: 300;
    margin-bottom: 0px;
    font-size: 30px;
}

.column-2-content .banner h6 {
    font-weight: 100;
    margin-top: 0px;
    font-size: 30px;
    margin-bottom: 0.8em;
    color: #0B0A07;
}

.column-2-content .banner-button {
    --shc-mutated-brightness: 19, 27, 22;
    --margin-start: 0px;
    --margin-end: 0px;
    --label-align: center;
    --label-text-align: center;
    display: flex;
    justify-content: flex-end;
}

.column-2-content .banner-button a {
    background-color: #25352c;
    cursor: pointer !important;
    position: relative;
    margin: 0px 0px 0px 0;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: center;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    padding: 0px 40px;
    font-weight: 300;
    font-size: 22px;
    transition: all 0.10s ease-in;
    text-decoration: none;
}

.column-2-content .banner-button a:hover {
    background-color: #6d8f2a;
   
}

.column-2-content .banner-button a.banner-button-icon {
    background-color: #6d8f2a;
    cursor: pointer !important;
    width: 60px;
    height: 60px;
    align-content: center;
    justify-content: center;
    padding: 10px;
}

.column-2-content .banner-button a.banner-button-icon img {
    filter: invert(99%) sepia(0%) saturate(7497%) hue-rotate(196deg) brightness(101%) contrast(101%);
}

/* Yaku */
.banner-name {
	font-weight: 400;
	text-transform: uppercase;
	overflow: hidden;
	padding: 0 0 10px;
    display: flex;
    letter-spacing: 5px;
}

.banner-name span {
	display: inline-block;
	position: relative;
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,0deg);
	transform: perspective(1000px) rotate3d(0,1,0,0deg);
	-webkit-transition: -webkit-transform 0.5s, color 0.5s;
	transition: transform 0.5s, color 0.5s;
}

.banner-name:hover span {
	color: #1e1a1b;
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,360deg);
	transform: perspective(1000px) rotate3d(0,1,0,360deg);
}

/*10*/
.banner-name span:nth-child(10),
.banner-name:hover span:first-child {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.banner-name span:nth-child(9),
.banner-name:hover span:nth-child(2) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.banner-name span:nth-child(8),
.banner-name:hover span:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.banner-name span:nth-child(7),
.banner-name:hover span:nth-child(4) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.banner-name span:nth-child(6),
.banner-name:hover span:nth-child(5) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.banner-name span:nth-child(5),
.banner-name:hover span:nth-child(6) {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.banner-name span:nth-child(4),
.banner-name:hover span:nth-child(7) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.banner-name span:nth-child(3),
.banner-name:hover span:nth-child(8) {
	-webkit-transition-delay: 0.35s;
	transition-delay: 0.35s;
}

.banner-name span:nth-child(2),
.banner-name:hover span:nth-child(9) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}


.banner-name span:first-child,
.banner-name:hover span:nth-child(10) {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}

@media (max-width: 1443px) {
    .column-1 {
        width: 60%;
    }
}
@media (max-width: 1124px) {
    .column-1 {
        width: 20%;
    }
}
@media (max-width: 794px) {
    .column-1 {
        width: 0;
    }
    .column-2-content .banner h1 {
        font-size: 40px;
    }
    .column-2-content .banner h3, .column-2-content .banner h6 {
        font-size: 20px;
    }
    .column-2-content .banner-button a {
        font-size: 16px;
    }
}
@media (max-width: 474px) {
    .column-2-content {
        width: 100%;
    }
    .column-2-content .banner {
        margin: 25px 25px;
        max-width: 100%;
        letter-spacing: 0.2px;
    }
    .column-2-content .banner-button a {
        padding: 0px 25px;
    }

    .banner-name{
        letter-spacing: 0.2px;
    }
}

.outer-container{
    padding: 3rem 0;
}

.about  .container > div, .certification .container > div, .services .container > div, .partnership .container > div, .contact .container > div, .terms  .container > div {
    margin: 6rem 0;
}

.about .container .introduction {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}

.about .container .introduction-container {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .container h2, .contact .container h2, .certification .container h2, .services .container h2, .partnership h2, .terms h2 {
    font-family: CopperHewitt;
    font-size: 38px;
    font-weight: 500;
    text-transform: uppercase;
    color: #25352c;
    letter-spacing: 1px;
}

.services .container h2 {
    color: white;
}

.about .container p,  .certification .container p, .services .container p, .partnership .container p, .terms .container p, .terms .container li {
    font-size: 18px;
    font-weight: 300;
    color: #515050;
    letter-spacing: 0.2px;
    line-height: 1.7rem;
    font-weight: 500;
    font-family: 'Graphik';
}
.about .container .about-culture {
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about .about-carousel {
    align-self: center;
}

.divisory {
    width: 120px;
    height: 10px;
    position: relative;
    justify-self: start;
    border-top: 6px solid #6d8f2a;
    margin-bottom: 4rem;
}

.budget, .services {
    background-color: #2a4d30;
    color: white;
}

.budget .budget-contact {
    display: flex;
    text-align: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
    align-items: center;

}

.budget .budget-contact h2 {
    margin-bottom: 1.5rem;
    font-size: 38px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
}

.budget .budget-contact .divisory {
    border-top: 6px solid #92ba43;
}

.budget .budget-contact img {
    filter: invert(99%) sepia(0%) saturate(7497%) hue-rotate(196deg) brightness(101%) contrast(101%);
    padding-right: 15px;
}

.budget .budget-contact p { 
    color: white;
    padding: 0px 40px;
    font-weight: 500;
    font-size: 26px;
    display: flex;
    font-family: Graphik;
    flex-direction: row;
    letter-spacing: .2px;
    line-height: 2.5rem;
    align-items: center;
    justify-content: center;
}

.budget .budget-contact a {
    color: white;
    text-decoration: none;
}

.budget .container > div {
    margin: 6rem 0;
}

.contact {
    background-color: #10141114;
}

.contact  .container h2 {
    color: #212e27;
}

.contact iframe {
    width: 100%;
    touch-action: pan-x pan-y;
}

.contact > .item-1, .contact .contact-info .item-1 {
    justify-content: center;
}

.contact > .item-2 {
    justify-content: center;
}

.contact h4, .terms h4 {
    font-size: 28px;
    font-weight: 300;
    color: #9b2e30;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.contact p, .contact a {
    font-family: 'Graphik';
    font-size: 18px;
    font-weight: 500;
    line-height: 2.2rem;
    letter-spacing: 0.2px;
    margin: 5px 0;
    text-decoration: none;
}

.contact p, .contact a::before {
    color: #3d3d3d;
}

.contact a {
    color: #3d3d3d;
}

.contact p.info-extra-margin, .terms p, .terms li {
    margin-top: 15px;
}

.contact .contact-map {
    height: 450px;
    width: 100%;
    display: flex;
}
.contact .contact-map img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.contact .contact-icon {
    padding-right: 15px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(0%) saturate(1456%) hue-rotate(139deg) brightness(105%) contrast(87%);
}

.contact .item-2 {
    padding-left: 15px;
}

.contact .item-2 p {
    line-height: 1.7rem;
} 

.about .carousel-inner img, .services .carousel-inner img {
    width: 100%;
}

.carousel-control-next, .carousel-control-prev {
    background: none;
    text-shadow: none;
    opacity: 1;
}
.carousel-control-next span, .carousel-control-prev span {
    right: initial;
    left: initial;
    font-size: 18px;
}

#servicesCarousel .carousel-control-prev {
    left: -5px;
}
#servicesCarousel .carousel-control-next {
    right: -20px;
}

.custom-shape-divider-top {
    position: relative;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 20px;
}

.custom-shape-divider-top .shape-fill {
    fill: #F2E8CF;
}

.custom-shape-divider-bottom {
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 20px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #F2E8CF;
}

.certification .row, .partnership .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification  .grasp-logo img, .partnership img {
    max-width: min(200px, 100%);
}

.certification .grasp-text {
    padding-left: 5rem;
}

.partnership .partnership-logo {
    padding-left: 3rem;
}
.services .container p {
    color: #efefef;
}
.services img {
    max-width: 100%;
}

#servicesCarousel-mobile {
    display: none;
}

@media (max-width: 767px)
{
    #servicesCarousel {
        display: none;
    }
    
    #servicesCarousel-mobile {
        display: block;
    }
    
    .partnership .partnership-logo {
        padding-left: 0;
    }
    .certification  .grasp-logo img, .partnership .partnership-logo img {
        max-width: 150px;
    }
    .certification .row, .partnership .row {
        display: block;
    }
    .certification  .grasp-logo, .partnership .partnership-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .certification .grasp-text {
        padding-left: 15px;
        margin-top: 6rem;
    }

    .partnership .partnership-text {
        padding-left: 15px;
        margin-bottom: 6rem;
    }
}

@media (max-width: 1200px) {
    .about .container h2, 
    .budget .budget-contact h2,
    .certification .container h2,
    .contact .container h2,
    .services .container h2,
    .partnership .container h2,
    .terms .container h2 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 2.5rem;
    }
    .contact .container h4, .terms .container h4  {
        font-size: 22px;
    }
    .budget .divisory {
        margin-bottom: 4rem;
    }
    .about .container p,
    .certification .container p,
    .contact .container p,
    .services .container p,
    .partnership .container p,
    .terms .container p,
    .terms .container li {
        font-size: 16px;
    }

    .contact .container a  {
        font-size: 15px;
    }

    .budget .budget-contact p {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .about .container .about-culture {
        padding-left: 15px;
        margin-top: 5rem;
    }

    .about  .container > div,
    .certification .container > div,
    .services .container > div,
    .partnership .container > div  {
        margin: 3rem 0;
    }
}

@media (max-width:400px) {
    .budget .budget-contact p {
        font-size: 18px;
    }
}

#servicesCarousel.carousel {
    padding: 0;
    margin-left: -15px;
}

@media (max-width: 767px) {
    #servicesCarousel .carousel-inner .carousel-item > div {
        display: none;
    }
    #servicesCarousel .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
    .contact .item-2 {
        padding-left: 15px;
        margin-top: 3rem;
    }
}

#servicesCarousel .carousel-inner .carousel-item.active,
#servicesCarousel .carousel-inner .carousel-item-next,
#servicesCarousel .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    #servicesCarousel .carousel-inner .carousel-item-end.active,
    #servicesCarousel .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    #servicesCarousel .carousel-inner .carousel-item-start.active, 
    #servicesCarousel .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

#servicesCarousel .carousel-inner .carousel-item-end,
#servicesCarousel .carousel-inner .carousel-item-start { 
    transform: translateX(0);
}
#servicesCarousel img{
    margin-left: 15px;
}

#servicesCarousel .card {
    background-color: #2a4d30;
    border: none;
    border-radius: 0;
}

#servicesCarousel .carousel-item {
    transition: transform .4s ease-in-out;
}

@media (max-width: 1115px) {
    nav .menu a {
        font-size: 16px;
    }
    nav li {
        margin: 0;
    }
   
}

@media (max-width: 994px) {
    nav a {
        padding: 14px 10px;
    }
    nav .menu ul {
        padding-right: 100px;
    }
}

@media (max-width: 828px) {
    nav .menu ul {
        padding-right: 45px;
    }
}

@media (max-width: 767px) {
    nav .menu ul {
        padding-right: 0;
    }
}

.terms .term {
    margin-bottom: 4rem;
}

.terms .term:last-of-type {
    margin-bottom: 0;
}

#loading {
    width: 100%;
    height: 100vh;
    display:flex;
    flex-direction: column;
}

#loading p {
    margin-top: 15px;
    font-family: Graphik;
    font-size: 24px;
    font-weight: 200;
}

#loaded {
    width: 100%;
    height: 100%;
    display:block;
}

#loading.noShow, #loaded.noShow {
    display:none;
}

footer {
    background-color: #607f24;
    color: white;
}

footer ul {
    padding: 0;
}
footer li {
   list-style: none;
   margin-bottom: 5px;
}

footer .row:first-child {
    padding-bottom: 3rem;
}

footer .row:last-child {
    padding-top: 2rem;
    border-top:#d6ffe966 1px solid;
    text-align: end;
}

footer h4 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.2px;
    padding-bottom: 15px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

footer a, footer p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.2px;
    padding-bottom: 15px;
    color: white;
    text-decoration: none;
    margin:0;
}

footer a {
    color: #212e27;
}

footer a > img {
    filter: invert(99%) sepia(0%) saturate(7497%) hue-rotate(196deg) brightness(101%) contrast(101%);
    height: 24px;
}

footer .footer-logo {
    max-width: min(180px, 100%);
}

@media (max-width: 576px) {
    footer .row .col-sm-4 {
        margin-bottom: 3rem;
    }

    footer h4 {
        font-size: 20px;
    }
    footer a, footer p {
        font-size: 14px;
    }
    footer a > img {
        height: 20px;
    }
}



/* ------------------------------------------------------------------ tests */

/* Effect 15: scale down, reveal */
.text-hover-effect a {
	text-shadow: none;
}


footer a::before {
    color: #fff;
}

.text-hover-effect a::before {
	content: attr(data-hover);
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.text-hover-effect a:hover::before,
.text-hover-effect a:focus::before {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
}

.icon-hover-effect img {
    -webkit-transition: -webkit-transform 0.3s, all 0.3s;
	-moz-transition: -moz-transform 0.3s, all 0.3s;
	transition: transform 0.3s, all 0.3s;
}

.icon-hover-effect img:hover, .icon-hover-effect img:focus {
    transform: scale(0.9);
    filter: brightness(0) saturate(100%) invert(12%) sepia(16%) saturate(832%) hue-rotate(95deg) brightness(93%) contrast(87%);
}