/*
Theme Name: Intramovies.com
Author: KMSTUDIO
Version: 1.0
*/

html { font-size: 17px; }
body {
	background-color: #fff;
	color: #000;
    font-family: 'Overpass', sans-serif;
	font-weight: 300;
	padding: 0;
	margin: 0;
}

body.no-scroll {
	overflow: hidden;
}

h1,
h2.home {
    font-size: 3rem;
    font-weight: 100;
    text-transform: uppercase;
    color: #000;
    margin-top: 3rem;
    margin-bottom: 1rem;
}
h1:before,
h2.home:before {
    content: ">";
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-right: 0.5rem;
}
h1:first-child,
h2.home:first-child {
    margin-top: 0;
}
h2 {
	font-size: 2.2rem;
	font-weight: 100;
	text-transform: uppercase;
	color: #000;
	margin-top: 3rem;
	margin-bottom: 1rem;
}
h3 {
	font-size: 1.8rem;
	font-weight: 100;
	text-transform: none;
	color: #000;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}
h4 {
	font-size: 1.5rem;
	font-weight: 300;
	text-transform: none;
	color: #000;
	margin-top: 1.5rem;
	margin-bottom: 0;
}
h5 {
	font-size: 1.1rem;
	font-weight: 400;
	text-transform: none;
	color: #000;
	margin-top: 1.5rem;
	margin-bottom: 0;
}

a,
button {
	color: #fff;
	transition: color 400ms,
		        background-color 400ms,
                border 400ms;
	text-decoration: none;
}
a:hover,
button:hover {
	color: #333;
}
a,
a:hover,
a:link,
a:visited,
a:active {
	outline: none;
}

hr {
    opacity: 1;
    background-color: #000;
    margin: 1.5rem 0;
}

.overlay-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	opacity: 1;
	transition: opacity 800ms;
    
}
.overlay-bg.inactive {
	opacity: 0;
	pointer-events: none;
}


/*--- NAVIGATION RESPONSIVE */
nav.nav-responsive {
	position: fixed;
	top: 0;
	bottom: 0;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
	padding: 0;
	opacity: 0;
	overflow-y: auto;
	transition: all 300ms;
}
nav.nav-responsive.position-left {
	transform: translateX(-100%);
	left: 0;
}
nav.nav-responsive.position-right {
	transform: translateX(100%);
	right: 0;
}
nav.nav-responsive .header {
	margin-top: 2rem;
    margin-bottom: 2rem;
}
nav.nav-responsive .header .logo {
	
}
nav.nav-responsive .header .logo img {
	width: 150px;
}
nav.nav-responsive .header .menu-close {
	
}
nav.nav-responsive .header .menu-close span {
	cursor: pointer;
	font-size: 2.5rem;
	transition: background-color 600ms,
				color 600ms,
				transform 500ms cubic-bezier(.67,-0.09,.58,1);
	transform: rotate(0deg);
	display: block;
	color: #000;
}
nav.nav-responsive .header .menu-close span:hover {
	transform: rotate(180deg);
    color: #ffcc00;
}
nav.nav-responsive .header .menu-close span:before {
	width: auto;
    margin: 0 .2em;
    display: block;
}
nav.nav-responsive .download-pdf-alt {
    margin: 3rem -15px 1.6rem -15px;
}
nav.nav-responsive .download-pdf-alt a {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 20px 5px;
    display: block;
}
nav.nav-responsive .download-pdf-alt a:hover {
    color: #ffcc00;
    background-color: #000;
}
nav.nav-responsive .download-pdf-alt .icon-download {
    font-size: 1.2rem;
    margin-left: 0.7rem;
}
nav.nav-responsive ul {
	padding: 0;
	margin: 0 -15px 20px -15px;
	list-style-type: none;
}
nav.nav-responsive ul li {
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	list-style-type: none;
}
nav.nav-responsive ul li ul {
	padding: 0;
	margin: 0 0 10px 0;
}
nav.nav-responsive ul li ul li {
	text-transform: none;
}
nav.nav-responsive ul li ul li a {
	padding-left: 40px;
}
nav.nav-responsive ul li a {
	color: #000;
	font-weight: 400;
	display: block;
	padding: 10px 20px 5px;
	text-decoration: none;
}
nav.nav-responsive ul li.current-menu-item a {
    color: #ffcc00;
}
nav.nav-responsive ul li.search span.icon-search {
    display: none;
}
nav.nav-responsive ul li a:hover {
	color: #fff;
	background-color: #ffcc00;
	text-decoration: none;
}


/*--- HEADER */
header.primary {
	padding: 1.5rem 0;
	position: fixed;
	width: 100%;
	background-color: #fff;
    z-index: 11;
}
header.primary .logo {
    margin-right: 3rem;
}
header.primary .logo img {
    width: 180px;
}
header.primary .download-pdf {
    background-color: #ffcc00;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.7rem 0.4rem;
    border: 2px solid #ffcc00;
}
header.primary .download-pdf:hover {
    border-color: #000;
}
header.primary .download-pdf > span:first-child {
    margin-right: 1rem;
}
header.primary .download-pdf > span:last-child {
    font-size: 1.3rem;
}
header.primary .download-pdf > span {
    line-height: 1;
}
header.primary .hamburger {
    font-size: 1.8rem;
    display: none;
    cursor: pointer;
    color: #000;
}
header.primary .hamburger .icon-menu:before {
    padding-top: 0.7rem;
}
header.primary .nav-desktop nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
header.primary .nav-desktop nav ul li {
    position: relative;
    margin: 0 1.5rem 0 0;
    padding: 0;
    list-style-type: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}
header.primary .nav-desktop nav ul li.current-menu-item > a {
    color: #ffcc00;
}
header.primary .nav-desktop nav ul li a {
    color: #000;
    text-decoration: none;
}
header.primary .nav-desktop nav ul li a:hover {
    color: #ffcc00;
    text-decoration: none;
}
header.primary .nav-desktop nav ul li a > span {
    color: #ffcc00;
}
header.primary .nav-desktop nav ul li > ul {
	position: absolute;
	z-index: 10;
	display: block;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(255, 255, 255, .9);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 1rem 2rem;
	margin-top: 0.7rem;
	-webkit-transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
	-o-transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
	transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
}
header.primary .nav-desktop nav ul li:hover > ul {
	opacity: 1;
	visibility: visible;
}
header.primary .nav-desktop nav ul li > ul li {
	display: block;
	margin: 0;
	white-space: nowrap;
	font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-align: center;
}
header.primary .nav-desktop nav ul li > ul li:after {
	content: "";
	width: 70%;
	height: 1px;
	background-color: #000;
	display: block;
	margin: 0.4rem auto 0.6rem auto;
}
header.primary .nav-desktop nav ul li > ul li:last-child:after {
	height: 0;
	display: inline;
	margin: 0;
}
header.primary .nav-desktop nav ul li.search span.text {
    display: none;
}
header.primary .nav-desktop nav ul li.search {
    font-size: 1.6rem;
}
header.primary .nav-desktop nav ul li.search a > span {
    color: #000;
    transition: color 400ms,
		        background-color 400ms,
                border 400ms;
}
header.primary .nav-desktop nav ul li.search a:hover > span {
    color: #ffcc00;
}


/*--- STILI GENERALI */
.form-control {
    border-radius: 0;
}
.form-control:focus {
	color: #000;
    background-color: #fff;
	border-color: #fff;
	box-shadow: none;
}

.button {
	background-color: #fff;
	color: #000;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 1rem;
	align-items: center;
	padding: 0.5rem 0.7rem 0.4rem;
	border: 2px solid #fff;
}

/* Progress status button */
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.m-progress {
    position: relative;
    opacity: .8;
    color: transparent !important;
    text-shadow: none !important;
}
.m-progress:hover,
.m-progress:active,
.m-progress:focus {
    cursor: wait;
    color: transparent;
    outline: none !important;
    box-shadow: none;
}
.m-progress:before {
    content: '';
    display: inline-block;
    position: absolute;
    background: transparent;
    border: 1px solid #fc0;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation:    ld 1s ease-in-out infinite;
    -o-animation:      ld 1s ease-in-out infinite;
    animation:         ld 1s ease-in-out infinite;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    margin: 0;
    width: auto;
}

@media screen AND (min-width: 991px) {
    .container-mini {
        max-width: 800px;
    }
}

#slider-home .progress-bar {
    display: none;
    position: absolute;
    background-color: #ffcc00;
    width: 1%;
    height: 0.4rem;
    z-index: 2;
}
#slider-home {
    height: 650px;
}
#slider-home .swiper-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
#slider-home .bottom {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
}
#slider-home .bottom .type {
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: #ffcc00;
    display: inline-block;
    padding: 0.6rem 1.5rem 0.4rem;
}
#slider-home .bottom .meta {
    background-color: rgba(0, 0, 0, .77);
    padding: 1.2rem 1.5rem 1rem;
}
#slider-home .bottom .meta .title {
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-right: 1.2rem;
}
#slider-home .bottom .meta .director {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}
#slider-home .bottom .meta .director span {
    text-transform: uppercase;
}  
#slider-home .bottom .meta .paging {
    
}
#slider-home .bottom .meta .paging .bullets-page {
    margin-right: 1.5rem;
}
#slider-home .bottom .meta .paging .bullets-page .swiper-pagination-bullet {
	width: 1.2rem;
	height: 1.2rem;
	background-color: #ffcc00;
	opacity: .7;
	margin-right: 0.3rem;
}
#slider-home .bottom .meta .paging .bullets-page .swiper-pagination-bullet:last-child {
	margin-right: 0;
}
#slider-home .bottom .meta .paging .bullets-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}
#slider-home .bottom .meta .paging .goto-production {
    line-height: 1;
}
#slider-home .bottom .meta .paging .goto-production a {
    color: #fff;
    font-size: 2rem;
}

.container-color {
    border: 0.8rem solid #fff;
}
.container-color > div {
    padding: 2.5rem 0;
    overflow: hidden;
    min-height: 700px;
}
.container-color > .container-color-intramovies {
    background-color: #ffcc00;
}
.container-color .show-more {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
}
.container-color .show-more a {
    color: #000;
}
.container-color .show-more a:hover {
    color: #fff;
}
.container-color > .container-color-classics {
    background-color: #333;
}
.container-color > .container-color-classics h2.home {
    color: #fff;
}
.container-color > .container-color-classics h2.home:before {
    color: #ffcc00;
}
.container-color > .container-color-classics .show-more a {
    color: #ffcc00;
}
.container-color > .container-color-classics .show-more a:hover {
    color: #fff;
}
.container-color > .container-color-classics hr {
    background-color: #fff;
}

.productions-list {
	margin-bottom: 1rem;
}
.productions-list figure {
	transition: all 400ms;
	position: relative;
    overflow: hidden;
}
.productions-list figure:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
	transition: all 400ms;
}
.productions-list figure:hover:after {
	background-color: rgba(0, 0, 0, .2);
}
.productions-list figure img {
    transition: transform 400ms;
}
.productions-list figure:hover img {
	transform: scale(1.1);
}
.productions-list .single-slide header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
}
.productions-list .single-slide header h2 {
	text-align: left;
	font-weight: 300;
	font-size: 1.8rem;
	margin: 0 0 20px 0;
}
.productions-list .single-slide header h2 a {
	color: #000;
	text-decoration: none;
}
.productions-list .single-slide header h2 a:hover {
	color: #fff;
	text-decoration: none;
}
.productions-list .single-slide .content {
	font-size: 0.9rem;
}
.productions-list .single-slide .read-all a {
	text-transform: uppercase;
	font-weight: 300;
	color: #000;
	text-decoration: none;
	font-size: 0.9rem;
}
.productions-list .single-slide .read-all a:hover {
	color: #fff;
	text-decoration: none;
}
.productions-list .single-slide {
	margin-bottom: 2rem;
}

.classics-list {
	margin-bottom: 2rem;
}
.classics-list article {
	
}
.classics-list article figure {
    margin: 0 0 2rem 0;
	transition: all 400ms;
	position: relative;
    overflow: hidden;
}
.classics-list article figure:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
	transition: all 400ms;
}
.classics-list article figure:hover:after {
	background-color: rgba(0, 0, 0, .2);
}
.classics-list article figure img {
    transition: transform 400ms;
}
.classics-list article figure:hover img {
	transform: scale(1.1);
}
.classics-list article h3 {
	margin: 0 0 0 0;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}
.classics-list article h4 {
	margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}
.classics-list article p {
	color: #fff;
}
.classics-list article .read-more {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
}
.classics-list article .read-more a {
    color: #fff;
}
.classics-list article .read-more a:hover {
    color: #ffcc00;
}

nav.paging {
    
}
nav.paging ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
/*
nav.paging ul::before {
	content: ">";
	font-weight: 700;
	font-size: 1.5rem;
	color: #fff;
	margin-right: 0.5rem;
	display: inline-block;
	padding: 0.4rem 0 0.1rem;
}
*/
nav.paging ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-weight: 700;
    font-size: 1rem;
}
nav.paging ul li a {
	padding: 0.2rem 0.2rem 0rem;
	display: inline-block;
	color: #000;
}
nav.paging ul li a:hover {
	background-color: #fff;
	color: #000;
}
nav.paging ul li a.active {
	background-color: #fff;
	color: #000;
}
nav.paging ul li:after {
	content: "-";
    color: #fff;
    margin: 0 0.1rem;
}
nav.paging ul li:last-child:after {
	content: "";
    margin: 0;
}


/*--- PRODUCTION (ARCHIVE) */
.container-color-classics h1 {
    color: #fff;
}
ul.tags {
    margin: 0 0 2rem 0;
    padding: 0;
    list-style-type: none;
}
ul.tags li {
    margin: 0 8px 0 0;
    padding: 0;
    list-style-type: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
}
ul.tags li:nth-child(1) {
    
}
ul.tags li:nth-child(1):before {
    content: " ";
    margin: 0;
}
ul.tags li:before {
    content: "#";
    color: #000;
    margin: 0 -3px 0 0;
}
ul.tags li:last-child {
    margin: 0;
}
ul.tags li a {
    color: #000;
}
ul.tags li a.current {
    color: #fff;
}
ul.tags li a:hover {
    color: #fff;
}
.container-color-classics ul.tags li a.current {
     color: #ffcc00;
}
.container-color-classics ul.tags li a:hover {
     color: #ffcc00;
}
.container-color-classics ul.tags li:before {
    color: #fff;
}
.container-color-classics ul.tags li a {
    color: #fff;
}


/*--- PRODUCTION (SINGLE) */
.single-production-post {
    
}
.single-production-post .trailer-container {
    background-color: #000;
}
.single-production-post .columns {
    
}
.single-production-post .columns .left {
    width: 75%;
    margin-right: 2rem;
}
.single-production-post .columns .right {
    width: 25%;
}
.single-production-post h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 0 0;
    line-height: 1;
}
.single-production-post h1:before {
    content: "";
    margin: 0;
}
.single-production-post h2 {
    font-size: calc(2.5rem / 2);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 0 0;
}
.single-production-post .meta-primary {
    margin-top: 1.5rem;
}
.single-production-post .meta-primary .groups {
    display: flex;
    flex-wrap: wrap;
}
.single-production-post .meta-primary .groups .meta {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}
.single-production-post .meta-primary .groups .meta:last-child {
    margin-right: 0;
}
.single-production-post .meta-primary .groups .meta h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-right: 0.3rem;
}
.single-production-post .meta-primary .groups .meta h3:after {
    content: ":";
}
.single-production-post .meta-primary .groups .meta ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}
.single-production-post .meta-primary .groups .meta ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 0.9rem;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
}
.single-production-post .meta-primary .groups .meta ul li:after {
    content: ",";
    margin-right: 0.3rem;
}
.single-production-post .meta-primary .groups .meta ul li:last-child:after {
    content: "";
    margin-right: 0;
}
.single-production-post ul.function-icons {
    margin: 0 0 2rem 0;
    padding: 0;
    list-style-type: none;
}
.single-production-post ul.function-icons li {
    margin: 0 1rem 0 0;
    padding: 0;
    list-style-type: none;
    font-size: 1.8rem;
}
.single-production-post ul.function-icons li:last-child {
    margin: 0;
}
.single-production-post h3 {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}
.single-production-post ul.function-icons li a {
    color: #000;
    text-decoration: none;
}
.single-production-post ul.function-icons li a:hover {
    color: #000;
    text-decoration: none;
}
.single-production-post .meta-secondary {
    
}
.single-production-post .meta-secondary .meta {
    margin-bottom: 1rem;
}
.single-production-post .meta-secondary .meta h3 {
    
}
.single-production-post .meta-secondary .meta ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.single-production-post .meta-secondary .meta ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 0.9rem;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
}
.single-production-post .meta-secondary .meta ul.comma {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}
.single-production-post .meta-secondary .meta ul.comma li:after {
    content: ",";
    margin-right: 0.3rem;
}
.single-production-post .meta-secondary .meta ul.comma li:last-child:after {
    content: "";
    margin-right: 0;
}
.single-production-post figure.cover {
    margin-bottom: 2rem;
}
.single-production-post .photogallery {
    
}
.single-production-post .photogallery figure {
	width: calc((100% / 3) - (0.5rem - (1rem / 6)));
	margin: 0 0.5rem 0.5rem 0;
}
.single-production-post .photogallery figure:nth-child(3n+3) {
	margin: 0 0 0.5rem 0;
}
.single-production-post .photogallery figure img {
    
}
.single-production-post .container-color-classics * {
    color: #fff !important;
}


/*--- NEWS (ARCHIVE) */
.news-archive {
	
}
.news-archive .title-with-icon {
	margin-bottom: 40px;
}
.news-archive .row {
	margin-bottom: 20px;
}
.news-archive .single-slide {
    margin-bottom: 2rem;
}
.news-archive .single-slide .box-content {
	
}
.news-archive .single-slide figure {
	transition: all 400ms;
	position: relative;
    overflow: hidden;
}
.news-archive .single-slide figure:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
	transition: all 400ms;
}
.news-archive .single-slide figure:hover:after {
	background-color: rgba(0, 0, 0, .2);
}
.news-archive .single-slide figure img {
    transition: transform 400ms;
}
.news-archive .single-slide figure:hover img {
	transform: scale(1.1);
}
.news-archive .single-slide header {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: column;
}
.news-archive .single-slide header time {
	order: 1;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.2rem;
	margin: 0;
}
.news-archive .single-slide header h2 {
	order: 2;
	text-align: left;
	font-weight: 300;
	font-size: 1.8rem;
	margin: 0 0 20px 0;
}
.news-archive .single-slide header h2 a {
	color: #000;
	text-decoration: none;
}
.news-archive .single-slide header h2 a:hover {
	color: #fff;
	text-decoration: none;
}
.news-archive .single-slide .content {
	font-size: 0.9rem;
}
.news-archive .single-slide .read-all a {
	text-transform: uppercase;
	font-weight: 300;
	color: #000;
	text-decoration: none;
	font-size: 0.9rem;
}
.news-archive .single-slide .read-all a:hover {
	color: #fff;
	text-decoration: none;
}
.news-archive .default-button {
	margin-top: 40px;
}


/*--- NEWS (SINGLE) */
.news-single {
    
}
.news-single time {
    order: 1;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.2rem;
	margin: 0;
}


/*--- FOOTER */
footer.primary {
    background-color: #00000a;
    padding: 1.5rem 0;
}
footer.primary .logo {
    margin-right: 3rem;
}
footer.primary .logo img {
    width: 120px;
}
footer.primary ul {
    margin: 0 3rem 0 0;
    padding: 0;
    list-style-type: none;
}
footer.primary ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #fff;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
}
footer.primary ul li:after {
    content: ".";
    color: #fff;
    margin: 0 0.3rem;
}
footer.primary ul li:last-child:after {
    content: "";
    margin: 0;
}
footer.primary a {
    color: #fff;
    text-decoration: none;
}
footer.primary a:hover {
    color: #ffcc00;
    text-decoration: none;
}
footer.primary p {
    color: #fff;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin: 0;
}
footer.primary .own-socials {
    margin-right: 3rem;
}
footer.primary .own-socials li {
    font-size: 1.5rem;
    margin: 0 0.8rem 0 0;
    line-height: 1;
}
footer.primary .own-socials li:last-child {
    margin: 0;
}
footer.primary .own-socials li:after {
    margin: 0;
    content: "";
}
footer.primary .logo-unefa {
    
}
footer.primary .logo-unefa img {
    width: 120px;
}

