*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
    /* scroll-behavior: smooth  !important; */
    background-color: white;
	
}

body {
	background-color: white;
	overflow-x: hidden;	
    scrollbar-width: 0px;
    --nav-height: 100px;
	
  padding-top: var(--nav-height);
}

.body::-webkit-scrollbar {
	display: none;
}

a{
	text-decoration: none;
	color: black;
  }

@font-face {
	font-family: Abadi-Extra Light;
	src: url(../FONT/AbadiMT-ExtraLight.ttf);
}


.fjalla-one-regular {
    font-family: "Fjalla One", sans-serif;
    font-style: normal;
  }

  h1 {
	margin: 0;
	font-size: 4em;
	color: black;
	font-family: fjalla One;
  }
 
  
  h2 {
	margin: 0;
	font-size: 4em;
	color: black;
	font-family: fjalla One;
  }

  p{
	font-size: 1.5rem;
	font-family: Abadi-Extra Light;
	font-weight: 200;
  }

.blocker{
	background-color: rgb(128, 128, 128); 
	color: rgb(255, 255, 255); 
	border: none; 
	padding: 5px 10px; 
	border-radius: 3px; 
	cursor: pointer; 
	transition: background-color 0.3s; 
	font-family: Fjalla One; 
	font-size: 14px;
  	text-decoration: underline;
}

#preloader{
	background: #000106 url(../GIF/preloader.gif) no-repeat center center;
	/* background-size: 50%; */
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
}
 

  

/* _____________________________________________________NAVBAR_____________________________________________ */
/* 
.topnav {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1;
    height: var(--nav-height);
    transition: transform 0.2s;
	filter: drop-shadow(5px 5px 5px);
	opacity: 1;
}

.topnav a {
    color: black;
    display: inline-block;
    text-align: center;
    margin-left: 10rem;
    text-decoration: none;
    font-family: Fjalla One;
    font-weight: 80;
    font-size: 22px;
    -webkit-transition: all 0.5s ease;
}

.topnav a:hover {
    color: black;
    font-family: Fjalla One;
    font-size: 24px;
	-webkit-transition: all 0.5s ease;
} */

/* .topnav hr{
	width: inherit;	
} */

.dino_logo{
	 position: relative;
	 left: -170px;
    background-color: white;
    align-items: center; 
    width: 170px;
    max-height: 160px;
    padding-top: 2rem;
    padding-bottom: 2rem;
	transition: transform 0.2s;
}

.nav--hidden {
  transform: translateY(calc(-1 * var(--nav-height)));
  box-shadow: none;
}


/* ____________________________________________MOBILE NAV__________________________ */


.container {
  padding: 0px 15px 0px 15px;
}
@media (min-width: 0) {
  .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}

a {
  text-decoration: none;
  color: black;
}
a:hover, a :focus {
  color: black;
}

.menu-left a {
	color: black;
    display: inline-block;
    text-align: center;
    margin-left: 10rem;
    text-decoration: none;
    font-family: Fjalla One;
    font-weight: 80;
    font-size: 22px;
  display: inline-block;
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 0px;
  transition: color .35s ease;
}
.menu-left a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: width 0s ease, background .35s ease;
}
.menu-left a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #000;
  transition: width .35s ease;
}
.menu-left a:hover:before {
  width: 100%;
  background: #000;
  transition: width .35s ease;
}
.menu-left a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: white;
  z-index: 3;
  will-change: transform;
  /* transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1); */
  transform: translateY(0);
  -webkit-transform: translateY(0);
  height: var(--nav-height);
  filter: drop-shadow(5px 5px 5px);
  transition: transform 0.2s;
  /* background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1;
    height: var(--nav-height);
    transition: transform 0.2s;
	filter: drop-shadow(5px 5px 5px);
	opacity: 1; */
}
header nav .logo {
  position: relative;
    background-color: white;
    align-items: center; 
    width: 170px;
    max-height: 160px;
    padding-top: 2rem;
    padding-bottom: 2rem;
	
	/* transition: transform 0.2s; */
}
header nav .logo:after {
  content: '';
  display: table;
  clear: both;
}
header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
header nav ul li {
  float: none;
  margin-left: 0;
}
@media (min-width: 768px) {
  header nav ul li {
    float: left;
    margin-left: 1rem;
  }
}
header nav ul li a {
  display: block;
}
@media (min-width: 576px) {
  header nav ul li a {
    display: block;
    padding: .425rem 0rem;
  }
}

@media (max-width: 768px) {
  ul {
    clear: both;
  }
  ul li {
    padding: .5em 0;
  }
}
.hide-nav {
  transform: translateY(-120% !important);
  -webkit-transform: translateY(-120%) !important;
}

ul.menu-left {
	color: white;
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}
@media (min-width: 768px) {
  ul.menu-left {
    display: block !important;
    float: right;
    max-height: none;
  }
}
ul.menu-left:before {
  content: '';
  display: table;
  clear: both;
}
ul.menu-left.collapse {
  max-height: 25em !important;
}

.nav-toggle {
  display: block;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height: 38px;
  width: 38px;
  cursor: pointer;
  padding: 8px 8px;
}
.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4.4px, -4.4px);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background-color: #000;
  transition: all .25s;
}

.signature {
  position: fixed;
  font-weight: 100;
  bottom: 10px;
  color: #000;
  left: 0;
  letter-spacing: 4px;
  font-size: 10px;
  width: 100vw;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

/* ______________________________________________HOME PAGE________________________________________ */

.home_carousel_cont{
    position: relative;
    height: 100vh;
    top: -200px;
	/* left: 1rem; */
}


.carousel_container{
    width: 100%;
    position: absolute;
    overflow: hidden;
	-webkit-mask: linear-gradient(
    transparent,
    white 0%,
    white 90%,
    transparent
  );
  mask: linear-gradient
  ( transparent, white 0%, white 80%, transparent);
}

.wrapper{
    width: 100%;
    display: flex;
}

.wrapper img{
    width: 100%;
    /* height: fit-content; */
    animation: slide 25s infinite;
}
@keyframes slide{
    0%{
        transform: translateX(0);
    }
    20%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(-100%);
    }
    45%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-200%);
    }
    70%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-300%);
    }
    95%{
        transform: translateX(-300%);
    }
	100%{
		transform: translateX(0);
	}
}

.home_proj_cont{
	/* background-image: ; */
    position: relative;
    /* top: 10rem; */
    height: 140vh;
    width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

/* .categoriesHead{
	position: relative;
	align-items: center;
	top: 30rem;
	
}

.categoriesHead h2{
	position: relative;
	text-align: center;
	font-weight: 200;
} */


@media (max-width:1800px) {

	
	
}

.sliderImages{
	display: flex;
	align-items: center;
	gap: 10px;
	
}

.sliderImages img{
	border-left: 2px solid;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.sliderIMG{
	height: 900px;
	border-radius: 5px;
	position: relative;
	-webkit-transition: all 0.5s ease;
}

.link{
	cursor: pointer;
}

.sliderImages .sliderIMG:first-child, .sliderImages .sliderIMG:last-child{
	width: 150px;
}

.sliderImages .sliderIMG:nth-child(2), .sliderImages .sliderIMG:nth-child(3), .sliderImages .sliderIMG:nth-child(4){
	width: 150px;
}

.sliderImages .sliderIMG:nth-child(5){
	width: 150px;
}

.sliderImages h1{
	font-family: fjalla One;
	font-size: 20px;
	text-align: left;
	text-transform: uppercase;
	/* color: white; */
	position: absolute;
	top: 50%;
	left: -10%;
	transform: rotate(270deg);
	-webkit-transition: all 0.5s ease;
	/* mix-blend-mode: difference; */
    filter: invert(1);
}

.sliderImages h1:hover{
	font-size: 25px;
}

.details{
	position: absolute;
	bottom: 43px;
	left: 43px;
}

.details h2{
	font-family: Abadi-Extra Light;
	opacity: 1;
	font-size: 30px;
	text-align: left;
	line-height: 44px;
	text-align: left;
	-webkit-transition: all 0.5s ease;
	text-transform: uppercase;
	display: none;
	/* mix-blend-mode: difference; */
	color: #fff;
}

.details p{
	font-family: Abadi-Extra Light;
	font-size: 20px;
	text-align: left;
	line-height: 33px;
	text-align: left;
	-webkit-transition: all 0.5s ease;
	text-transform: uppercase;
	display: none;
	color: #fff;
}

.details h2:hover{
	font-size: 35px;
}


.sliderIMG.active{
	width: 800px !important; 
	height: 900px !important; 
	filter: drop-shadow(5px 5px 5px);
}

.sliderIMG.active image{
	width: auto;
}

.sliderIMG.active h1{
	display: none;
}

.sliderIMG.active .details p, .sliderIMG.active .details h2{
	display: block;
}

.testimonials_cont{
	width: 100%;
    position: relative;
    height: 80vh;
	top: 20rem;
}

.clientHead{
	position: relative;
	align-items: center;
	top: -6rem;
	padding-bottom: 5rem;
}

.clientHead h1{
	position: relative;
	text-align: left;
	font-weight: 200;
	margin-left: 2rem;
}

.scroller{
	position: relative;
	background-color: white;
	/* max-width: 1700px;
	max-height: 400px; */
}

.clientList{
	padding-block: 1rem;
  	display: flex;
  	flex-wrap: wrap;
  	gap: 7rem;
}

.clientList img{
	/* max-width: 300px; */
	max-height: 200px;
	/* border-radius: 5px; */
	-webkit-transition: all 0.5s ease;
}

.clientList img:hover{
	/* max-height: 220px; */
	scale: 110%;
	-webkit-transition: all 0.5s ease;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 15%,
    white 85%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .clientList {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 30s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}


@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

:root {
  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-primary-100: hsl(205, 15%, 58%);
  --clr-primary-400: hsl(215, 25%, 27%);
  --clr-primary-800: hsl(217, 33%, 17%);
  --clr-primary-900: hsl(218, 33%, 9%);
}

/* _____________________________________________________________CONTACT__________________________ */


/* .parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 5px;
grid-row-gap: 5px;
} */

/* .div1 { grid-area: 1 / 1 / 2 / 2; } */
/* .div2 { grid-area: 1 / 2 / 2 / 3; } */
/* .div3 { grid-area: 2 / 1 / 3 / 3; } */

.contactInfo{
	height: 90vh;
	display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(auto-fill(2, 1fr));
grid-column-gap: 5px;
grid-row-gap: 5px;
}

.contactText{
	display: flex;
	flex-direction: row;
	padding-left: 7rem;
	grid-area: 1 / 1 / 2 / 2;
}

.contactTextMain{
	padding-top: 5rem;
	padding-left: 15rem;
	padding-right: 15%;
}

.contactTextMain p{
	font-size: 2rem;
	font-weight: 200;
}

.contactGrid{
	height: 10vh;
	padding-top: 5rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	grid-area: 2 / 1 / 3 / 3;
}

.contactCol{
	padding-left: 5rem;
	padding-right: 5rem;
	text-align: center;
}

.contactCol:nth-child(2){
	transition-delay: 200ms;
}

.contactCol:nth-child(3){
	transition-delay: 400ms;
}

.contactCol:nth-child(4){
	transition-delay: 600ms;
}

.contactCol img{
	max-width: 100%;
	vertical-align: middle;
	-webkit-transition: all 0.5s ease;
}

.contactCol img:hover{
	scale: 90%;
	vertical-align: middle;
	-webkit-transition: all 0.5s ease;
	filter: drop-shadow(0px 0px 5px #f81894);
}

.contactIMG {
	/* max-height: 20rem; */
	/* width: 95%; */
	padding-top: 5rem;
	grid-area: 1 / 2 / 2 / 3;
}

.contactIMG img{
	padding-left: 2rem;
	border-radius: 1rem;
	max-width: 50%;
	filter: drop-shadow(5px 5px 5px);
}

.contactIMG video{
	padding-left: 2rem;
	border-radius: 1rem;
	max-width: 90%;
	filter: drop-shadow(5px 5px 5px);
	
}

.contact{
	height: 70vh;
}

.contactCont{
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}



/* _____________________________________________________________EVENTS______________________________________ */


/* ____________________________________________________________PORTRAITS_________________________________ */

.parent_dump {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(auto-fill(11, 1fr));
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.parent_dump img{
	max-width: 100%;
}


.dump1 { grid-area: 1 / 1 / 2 / 2; }


.dumpText { grid-area: 1 / 2 / 2 / 3; }

.dumpText { 
	padding-left: 10%;
	padding-right: 15%;
	padding-top: 5%;	
	grid-area: 1 / 2 / 2 / 3;
}

.dumpText h2{
	font-weight: 200;
	font-size: 2rem;
}

.dumpText p{
	padding-top: 1rem;
	font-size: 2rem;
}


.dump1 { grid-area: 1 / 1 / 2 / 2; }
.dump2 { grid-area: 1 / 2 / 2 / 3; }
.dump3 { grid-area: 2 / 1 / 3 / 3; }
.dump4 { grid-area: 3 / 1 / 4 / 2; }
.dump5 { grid-area: 3 / 2 / 4 / 3; }
.dump6 { grid-area: 4 / 1 / 5 / 2; }
.dump7 { grid-area: 4 / 2 / 5 / 3; }
.dump8 { grid-area: 5 / 1 / 6 / 3; }
.dump9 { grid-area: 6 / 1 / 7 / 2; }
.dump10 { grid-area: 6 / 2 / 7 / 3; }
.dump11 { grid-area: 7 / 1 / 8 / 2; }
.dump12 { grid-area: 7 / 2 / 8 / 3; }
.dump13 { grid-area: 8 / 1 / 9 / 3; }
.dump14 { grid-area: 9 / 1 / 10 / 2; }
.dump15 { grid-area: 9 / 2 / 10 / 3; }
.dump16 { grid-area: 10 / 1 / 11 / 2; }
.dump17 { grid-area: 10 / 2 / 11 / 3; }
.dump18 { grid-area: 11 / 1 / 12 / 3; }


/* ___________________________________________________________PRODUCTS__________________________________________ */


/* ________________________________________________________________PROJECTS_________________________________________ */

.proj_cont{
	/* top: -10rem; */
    position: relative;
    height: 140vh;
    width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.projectHead{
	position: relative;
	align-items: center;
	top: 12rem;
	/* padding-bottom: 5rem; */
}

.projectHead h1{
	position: relative;
	text-align: left;
	font-weight: 200;
	margin-left: 2rem;
}


.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat (auto-fill, (6, 1fr));
grid-column-gap: 0px;
grid-row-gap: 0px;
}

/* .parent>div>div {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #00000070;
    font-size: 1.7rem;
	font-family: Abadi-Extra Light;
    color: white;
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .15rem 0.5rem;
    translate: 0 20px;
	display: none;
	-webkit-transition: all 0.5s ease;
}

.parent>div:hover div {
    translate: 0;
	display: block;
	-webkit-transition: all 0.5s ease;
} */  
 /* label_WIP */

.parent img{
	max-width: 100%;
}

.MainIMG { 
	
	grid-area: 1 / 1 / 2 / 2; }

.MainIMG img{
	max-width: 100%;
}
	
.Text { 
	padding-left: 10%;
	padding-right: 15%;
	padding-top: 5%;	
	grid-area: 1 / 2 / 2 / 3;
}

.Text h2{
	font-weight: 200;
	font-size: 2rem;
}

.Text p{
	padding-top: 1rem;
	font-size: 2rem;
}


.Img3 { 
	max-height: fit-content;
	grid-area: 2 / 1 / 3 / 3; }

.Img4 { grid-area: 3 / 1 / 4 / 2; }

.Img5 { grid-area: 3 / 2 / 4 / 3; }

.Img6 { grid-area: 4 / 1 / 5 / 2; }

.Img7 { grid-area: 4 / 2 / 5 / 3; }

.Img8 { grid-area: 5 / 1 / 6 / 3; }

.Img9 { grid-area: 6 / 1 / 7 / 2; }

.Img10 { grid-area: 6 / 2 / 7 / 3; }


/* ________________________________________________________________T_&_C________________________ */

.legal{
	position: relative;
	padding-top: 6rem;
	height: 250vh;
}

.legal h1{
	font-weight: 250;
	padding-left: 1rem;
}

.tc_Nav{
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.tc_Nav ul{
	position: relative;
	padding-left: 4rem;
}

.tc_Nav a{
	font-size: 2.5rem;
	font-family: Abadi-Extra Light;
	font-weight: 200;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
}

.tc_Nav a:hover{
	font-size: 2.6rem;
	font-family: Abadi-Extra Light;
	font-weight: 300;
	text-decoration: underline;
	-webkit-transition: all 0.5s ease;
}

.main{
	position: relative;
	padding-left: 6rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10rem;
	grid-row-gap: 0px;
}

.main h1{
	font-size: 3rem;
	padding-bottom: 1rem;
	padding-top: 5rem;
}

.main p{
	padding-left: 4rem;
	font-size: 2rem;
}

.right img{
	transform: translateX(50%);
	scale: 150%;	
}

.left { grid-area: 1 / 1 / 4 / 2; }
.right { grid-area: 1 / 2 / 2 / 3; }

.floats{
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 0;
	width: 50%;
	height: 100%;
	transform: translateZ(0);
	/* transform: translateX(50%); */
}

.floats li{
	position: absolute;
	list-style: none;
	display: block;
	bottom: -100px;
	animation: square 30s infinite;
	animation-timing-function: linear;
}

.floats li:nth-child(1) {
	width: 40px;
	height: 40px;
	left: 20%;
}

.floats li:nth-child(2){
	width: 60px;
	height: 60px;
	left: 40%;
	animation-delay: 2s;
	animation-duration: 25s;
}

.floats li:nth-child(3){
	width: 10px;
	height: 10px;
	left: 60%;
	animation-delay: 4s;
	animation-duration: 19s;
}
.floats li:nth-child(4){
	width: 80px;
	height: 80px;
	left: 80%;
	animation-delay: 1s;
	animation-duration: 26s;
}

.floats li:nth-child(5){
	width: 50px;
	height: 50px;
	left: 50%;
	animation-delay: 7s;
	animation-duration: 19s;
}

.floats li:nth-child(6){
	width: 70px;
	height: 70px;
	left: 30%;
	animation-delay: 5s;
	animation-duration: 29s;
}

.floats li:nth-child(7){
	width: 40px;
	height: 40px;
	left: 75%;
	animation-delay: 3s;
	animation-duration: 17s;
}


@keyframes square{
	0%{
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100%{
		-webkit-transform: translateY(-3000px) rotate(630deg);
		transform: translateY(-3000px) rotate(630deg);
	}
}

/* ___________________________________________________________FOOTER____________________________ */

.footerbtn{
	position: relative;
	float: right;
	top: 5rem;
	left: 1rem;
	-webkit-transition: all 0.5s ease;
}

.footerbtn :hover{
	scale: 105%;
	-webkit-transition: all 0.5s ease;
}

.footer {
	bottom:0;
	left:0;
	position:relative;
    width: 100%;
	top: 5rem;
    height: 30vh;
    overflow-y:hidden;
    margin:0 auto;
	z-index:999;
	background-color: black;
}

.footer #container{
	margin-top:5px;
	width:100%;
	height:100%;
	position:relative;
	top:0;
	left:0;
	background: black;
}

.footer #cont{
	position:relative;
	top:40px;
	right:190px;
	width:150px;
	height:auto;
	margin:0 auto;
}
.footer_center{
	position: relative;
	padding-left: 20vw;	
	padding-top: 5rem;
	width:100%;
	float:left;
	text-align:left;
	display: flex;
	flex-direction: row;
}

.footergrid {
	display: flex;
	flex-direction: row;
	position: relative;
	left: 15rem;
	text-decoration: none;	
}

.footerCol1 {
	padding-left: 5rem;
}

.footerCol2 {
	padding-left: 5rem;
}
.footerCol3 {
	padding-left: 5rem;
}

.footerLinks {
	padding-top: 15px;
	padding-left: 10px;
	font-family: Abadi-Extra Light;
	color: white;
	font-size: 1.6rem;
	width: 15rem;
	-webkit-transition: all 0.5s ease;
}

.footerLinks:hover{
	font-family: Fjalla One;
	-webkit-transition: all 0.5s ease;
}

.footer p{
	font-family: Abadi-Extra Light;
	font-size: 1.6rem;
}

.footer a{
	color: white;	
	font-family: Abadi-Extra Light;
	-webkit-transition: all 0.5s ease;
}

.footer a:hover{
	font-family: Fjalla One;
	/* text-decoration: underline; */
	-webkit-transition: all 0.5s ease;
}

.links{
	display: flex;
	flex-direction: row;	
}

.links img{
	scale: 60%;
	-webkit-transition: all 0.5s ease;
}

.links img:hover{
	scale: 70%;
	-webkit-transition: all 0.5s ease;
	filter: drop-shadow(0px 0px 5px #f81894);
}
