html, body {
    font-size: 25px;
}

/*------ fonts -------*/
/*   
@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/RobotoBlack.eot');
    src: url('/assets/fonts/RobotoBlack.eot') format('embedded-opentype'),
         url('/assets/fonts/RobotoBlack.woff2') format('woff2'),
         url('/assets/fonts/RobotoBlack.woff') format('woff'),
         url('/assets/fonts/RobotoBlack.ttf') format('truetype'),
         url('/assets/fonts/RobotoBlack.svg#RobotoBlack') format('svg');

    font-weight: 900;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/RobotoBold.eot');
    src: url('/assets/fonts/RobotoBold.eot') format('embedded-opentype'),
         url('/assets/fonts/RobotoBold.woff2') format('woff2'),
         url('/assets/fonts/RobotoBold.woff') format('woff'),
         url('/assets/fonts/RobotoBold.ttf') format('truetype'),
         url('/assets/fonts/RobotoBold.svg#RobotoBold') format('svg');

    font-weight: 700;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/RobotoMedium.eot');
    src: url('/assets/fonts/RobotoMedium.eot') format('embedded-opentype'),
         url('/assets/fonts/RobotoMedium.woff2') format('woff2'),
         url('/assets/fonts/RobotoMedium.woff') format('woff'),
         url('/assets/fonts/RobotoMedium.ttf') format('truetype'),
         url('/assets/fonts/RobotoMedium.svg#RobotoMedium') format('svg');

    font-weight: 600;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/RobotoRegular.eot');
    src: url('/assets/fonts/RobotoRegular.eot') format('embedded-opentype'),
         url('/assets/fonts/RobotoRegular.woff2') format('woff2'),
         url('/assets/fonts/RobotoRegular.woff') format('woff'),
         url('/assets/fonts/RobotoRegular.ttf') format('truetype'),
         url('/assets/fonts/RobotoRegular.svg#RobotoRegular') format('svg');

    font-weight: 400;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/RobotoLight.eot');
    src: url('/assets/fonts/RobotoLight.eot') format('embedded-opentype'),
         url('/assets/fonts/RobotoLight.woff2') format('woff2'),
         url('/assets/fonts/RobotoLight.woff') format('woff'),
         url('/assets/fonts/RobotoLight.ttf') format('truetype'),
         url('/assets/fonts/RobotoLight.svg#RobotoLight') format('svg');

    font-weight: 300;
    font-style: normal;
    font-display: fallback;
} */


body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

h1, h2, h3, h4, h5, h6, p, span {
    margin: 0;
    padding: 0;
}

a, a:link, a:hover, a:visited, a:active, a:focus {
    text-decoration: none;
    color: #212529;
}

#main-header .wrapper {
    border-bottom: 1px solid #c9c9c9;
}

#main-header .wrapper {
    padding-bottom: 10px;
    min-height: 110px;
}

.mobile-nav ul li a.mobile-item{
    font-weight: 400;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;

  > .col,
  > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.btn-black {
    background: #212529;
    border: none;
    color: #fff;
    font-size: .8rem;
    padding: .45rem .7rem;
}

.btn-black:hover {
    opacity: .85;
    color: #fff;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.fixalize {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 90.7vh;
}

.fixalize-footer {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wrapper {
    padding: 2rem 0;
}

.logo-idea {
    display: block;
    position: relative;
    z-index: 500;
}

.logo-idea img{
    width: 170px;
}

.logo-idea:hover {
    /*filter: blur(2px); */
}

.home-h, .home-o, .home-m, .home-e {
    opacity: 0;
}

.load-btn {
    border:  1px solid #000;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: .5rem;
    line-height: 1;
    font-weight: 700;
    padding: 12px 30px 10px;
}

.load-btn:hover {
    background: #000;
    color: #fff;
}


.main-nav li {
    display: inline-block;
	font-size: .55rem;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}

.main-nav li ul {
    position: absolute;
    top: 25px;
    left: -3px;
    padding: 25px 0 0;
    min-width: 10rem;
    /*display: none;*/
    background: none;
    opacity: 0;
    -webkit-transition: all .5s; 
    -moz-transition: all .5s; 
    -ms-transition: all .5s; 
    -o-transition: all .5s; 
    transition: all .5s;  

}

.main-nav li ul:before {
    content: '';
    width: 1px;
    height: 0;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .5s; 
    -moz-transition: all .5s; 
    -ms-transition: all .5s; 
    -o-transition: all .5s; 
    transition: all .5s;
}

.main-nav li:hover ul:before {
    height: 100%;
}
 
.main-nav li:hover ul {
    opacity: 1;
}

.main-nav li:hover a {
    color: #949494;
}


.main-nav li ul li {
    display: inline-block;
    font-size: .45rem;
    margin: 0;
    border-right: none;
}

.main-nav li ul li .svg {
    height: 9px;
    margin-right: 3px;
    -webkit-transition: all .25s; 
    -moz-transition: all .25s; 
    -ms-transition: all .25s; 
    -o-transition: all .25s; 
    transition: all .25s;
    transform: rotate(0deg);
}

.main-nav li ul li:hover .svg {
    transform: rotate(90deg);
}

.main-nav li ul li a {
    padding: 7px 20px 7px 31px;
    position: relative;
}

.main-nav li ul li:hover a {
    color: #ccc;
}

.main-nav li.active a {
    color: #c9c9c9;
}

.main-nav li ul li a i {
    margin-right: 3px;
}

.main-nav li ul li a:before {
    display: none;
}

.main-nav li.active:after {
    width: 100%;
}

.main-nav li:hover:after {
    width: 100%;
}

.main-nav {
	margin: 0 0 -3px 2px;
}

.main-nav li a {
    display: block;
    padding: 15px 0 15px;
    position: relative;
    z-index: 1;
}

.main-nav li a:last-child {
	padding: 15px 0 0 15px;
}

i {
    color: red!important;
}

.main-nav li:first-child a:before {
    display: none;
}

/* .main-nav li:last-child a {
    color: #999;
} */

.style-text h1 {
	font-size: 3.5rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.1;
}

.style-text h1 span {
	display: block;
	font-size: 2rem;
	margin-top: 20px;
	font-weight: 300;
}

.style-text p {
	font-size: .7rem;
	line-height: 1.8;
	font-weight: 100;
	margin-bottom: 1.5rem;
	color: #212529;
}

.style-text p.small {
	font-size: .47rem;
	margin-bottom: 1rem;
}

.tags-article {
	display: block;
	font-size: 0.5rem;
}

.date {
	display: block;
    font-size: 0.6rem;
	color: #c7c7c7;
}

.g-map {
	margin: 50px 0 40px;
}

.contact-form {
	margin: 30px 0 0;
}

.contact-form label {
	font-size: .9rem;
}

.contact-form .custom-control-label {
	line-height: 2;
	cursor: pointer;
	font-size: .5rem;
}

.style-text p:last-child {
	margin-bottom: 0;
}

.style-text p.intro {
	font-size: 1.25rem;
	line-height: 1.4;
}

.content-1 .style-text.first h2 {
	font-size: 1.25rem;
}

.style-text h2 {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: .25rem;
	color: #212529;
}

.cat .style-text h2 {
	text-transform: uppercase;
	font-weight: 900;
}

.style-text h3 {
	margin-bottom: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.5;
    color: #212529;
    text-transform: uppercase;
}


.style-text.short-text {
	line-height: 1.6;
	font-size: .8rem;
}

.style-text h4 {
	font-size: .7rem;
	line-height: 1.8;
	margin-bottom: .25rem;
    font-weight: 700;
}

.style-text ul {
	margin-top: 0;
	margin-bottom: 1.4rem;
}

.style-text ul li {
	font-size: .7rem;
	line-height: 1.4;
	font-weight: 100;
    list-style: none;
	margin-bottom: .4rem;
	position: relative;
    margin-left: 0;
	color: #212529;
}

.style-text a {
	text-decoration: underline;
}

.style-text a:hover {
	text-decoration: none;
}

.text-white .style-text h2, .text-white .style-text h3, .text-white .style-text p, .text-white .style-text ul li {
		color: #ffffff;
	}

.share-it {
	text-align: right;
	margin: 40px 0 0;
}

.at-resp-share-element .at-share-btn{
	border: 1px solid #212529!important;
}

.arrow-img{
    padding-bottom: 2px;
}

.title-box {
	padding: 2rem 0 2.5rem;
}

.title-box h2 {
	margin: 1rem 0 0;
	font-size: 1.25rem;
}

.title-box h3 {
	margin: .75rem 0 0;
	font-size: .8rem;
	font-weight: 400;
}

.image-box {
	margin: .35rem 0 .35rem;
	overflow: hidden;
}

.gallery-box {
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.customize-controls {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	display: none!important;
}

.btn-control {
	cursor: pointer;
	height: 100%;
	font-size: 4rem;
	line-height: 1;
	color: rgba(255,255,255,.75);
	display: inline-block;
	padding: 0 32px;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
	transform: scale(1);
}

.btn-control:hover {
	transform: scale(1.3);
}

.drag-it {
	border-radius: 100%;
	width: 50px;
	height: 50px;
	background: #fff;
	color: #212529;
	text-align: center;
    font-size: .45rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 3;
	padding-top: 11px;
	animation: dragAnimation 3s infinite;
}

.drag-it span {
	display: block;
}

.drag-it i {
    font-size: .7rem;
    margin-top: 3px;
}


@keyframes dragAnimation {
  0% {
    right: 40px;
  }
  50% {
    right: 80px;
  }
  100% {
    right: 40px;
  }
}

.image-box .tns-item img {
	width: 100%;
	transition: all 3s cubic-bezier(.1, 0, 0.8, 1);
	transform: scale(1.25);
}	

.image-box .tns-item.tns-slide-active img {
	transform: scale(1);
}

.image-box img .gallery-box img {
	width: 100%;
}

.content-box {
	margin-bottom: 6rem;
}

.embed-responsive {
	margin-bottom: 12rem;
	position: relative;
}

.sound-btn {
	font-size: 60px;
	line-height: 60px;
	color: #fff;
	position: absolute;
	bottom: 30px;
	right: 30px;
	cursor: pointer;
	z-index: 50;
}

.ovrl {
	position: absolute;
	top: -50%;
	left: 0;
	width: 100%;
	height: 200%;
	z-index: 40;
}

.content-box:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 2rem;
}

.project-info.bottom {
	margin-bottom: 3.75em;
}

.info-box {
	text-transform: uppercase;
	font-size: .45rem;
	font-weight: 600;
}

.info-box span {
	margin: 0 3px;
    font-size: .55rem;
}

.info-box i {
	font-size: .55rem;
	margin: 0 2px 0 0;
}

.info-box a {
	display: inline-block;
	line-height: 1;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	line-height: 1.4;
}

.info-box a:hover {
	opacity: .55;
}

.info-box a span {
	opacity: .5;
}

.regular-link {
	font-weight: 400;
}

.btn-slide {
	text-transform: uppercase;
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
}

.btn-slide strong {
	font-weight: 700;
}

.btn-slide a {
	display: block;
	height: 100%;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.btn-slide:hover a, .trigger-btns:hover .btn-slide a {
	padding-top: 50%;
}

.btn-slide span {
	display: block;
	font-weight: 400;
	font-size: .6rem;
}

.btn-slide i {
	font-size: .8rem;
	line-height: 1.2;
	margin-right: 8px;
}

.btn-prev {
	padding-right: 40px;
}

.btn-next {
	padding-left: 40px;
}

.btn-slide.btn-next i {
	margin-right: 0;
	margin-left: 8px;
}

.btn-next span i {
	margin-left: 5px;
}

.prev-next-box {
	padding-top: 6rem;
}

.fixxxr-wrapper {
	position: -webkit-sticky;
	position: sticky;
	top: 2rem;
}

.fixxxr {
	width:100%;
	height:100%;
	margin-left:auto;
	margin-right:auto;
}

.fixxxr small {
	font-size: 14px;
}

.section-wrap {
    border-top: 1px solid #c9c9c9;
    padding: 10px 0 40px;
}

.section-wrap .custom-col-inside {
	padding: 0 10px;
}

.style-text .section-wrap p {
    margin-bottom: 1rem;
}

.section-wrap ul li {
	font-size: 0.61rem;
}

.ill-page {
    width: 100%;
    height: 400px;
    background-repeat: no-repeat!important;
    background-position: center top!important;
    background-size: cover!important;
    margin: 0 0 100px;
}

.blog-box {
	padding-bottom: 25px;
	margin-bottom: 25px;
    padding-top: 10px;
    border-top: 1px solid #c9c9c9;
	position: relative;
}

.blog-box h2 {
	font-size: 1rem;
    line-height: 1;
	font-weight: 700;
    margin: 0 0 10px;
}

.blog-box p {
    font-size: .7rem;
    line-height: 1.6;
    font-weight: 300;
}

.blog-text {
	/* padding-left: 30px; */
}

.blog-text span {
	display: block;
	margin: 20px 0 0;
	font-size: .55rem;
}

.blog-text span i {
	margin: 0 3px 0 0;
}

.content-box .img-fluid {
	width: 100%;
}

.gallery-box .row {
	margin-left: -5px;
	margin-right: -5px;
}

.gallery-box .col {
	padding-left: 5px;
	padding-right: 5px;
}

.gallery-img {
	margin-top: 10px;
}

.filter-box {
	padding: 0 0 1rem;
}

.filter-buttons {
	margin-top: 30px;
}

.filter-buttons a {
	display: inline-block;
    border: 1px solid #212529;
    padding: 5px 10px 4px;
    text-decoration: none;
    font-size: .35rem;
    line-height: 1;
    margin-bottom: 2px;
    text-transform: uppercase;
    transition: all 0.2s;
}

.filter-buttons a.active, .filter-buttons a:hover {
	background: #212529;
	color: #fff;
}

.tags {
	margin-top: -1.1rem;
}

.pt-rem {
	padding-top: 1rem;
}
.pb-rem {
	padding-bottom: 1rem;
}
.tags span {
	font-size: .6rem;
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	cursor: pointer;
}

.tags span i {
	font-size: .4rem;
	margin: 0 0 0 3px;
}

.dropdown-menu {
	min-width: 5rem;
	font-size: .55rem;
	border-radius: 0;
	left: 1px!important;
}

.dropdown-item {
	padding: .25rem .75rem;
}

.dropdown-divider {
	margin: .25rem 0;
}

.tags strong {
	display: inline-block;
	font-size: .6rem;
	text-transform: uppercase;
	font-weight: 700;
}

.CookieDeclaration{
    font-size: 16px;
    font-weight: 100 !important;
}

#CookieDeclarationUserStatusPanel{
    font-size: .7rem !important;
}

.style-text .CookieDeclaration p.CookieDeclarationTypeHeader, .CookieDeclarationTableHeader{
    font-weight: 600 !important;
    font-family: 'Roboto';
}

.style-text .CookieDeclaration p{
    font-weight: 100 !important;
}

.portfolio-page .content-box{
    margin-bottom: 0;
    padding-bottom: 2rem;
}

.portfolio-page .wrapper{
    padding-bottom: 0;
}

.folio-box {
	margin: 0 0 75px;
}

.folio-image {
	display: block;
	margin: 0 0 .75rem;
	position: relative;
	overflow: hidden;
}

.folio-image img {
	width: 100%;
	transform: scale(1);
	transition: all .35s cubic-bezier(.1, 0, 0.8, 1);
}


.folio-box a {
	display: block;
}

.prev-next-box .folio-box a {
	display: flex;
	width: 475px;
}

.prev-next-box .folio-box a.last {
	flex-direction: row-reverse;
}

.prev-next-box .folio-image {
	margin: 0;
	width: 60%;
}

.prev-next-box .folio-box {
	margin: 0;
}

.folio-box a:hover img, .trigger-btns:hover .folio-box img  {
	transform: scale(1.1);
}

.folio-label {
	font-size: .4rem;
	line-height: 1;
	display: inline-block;
	text-transform: uppercase;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	color: #fff;
	padding: 0 0 4px 5px;
	opacity: 0;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	font-family: Arial, sans-serif;
}

.folio-box a:hover .folio-label, .trigger-btns:hover .folio-box .folio-label {
	opacity: 1;
}

.folio-box .h2 {
	display: block;
	font-size: .9rem;
	line-height: 1.2;
	margin: 0 0 10px;
	font-weight: 900;
	text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ft-style p:last-child {
	margin:  10px 0 0;
}

.prev-next-box .folio-box .h2 {
	font-size: .75rem;
	margin: 0 0 0 20px;
	width: 320px;
}

.prev-next-box .folio-box a.last .h2 {
	margin: 0 20px 0 0;
	text-align: right;
}

.folio-box .folio-image .h3 {
	display: block;
    position: absolute;
    font-size: 1.5rem;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
    z-index: 2;
    left: 0;
    padding: 30px;
}

.folio-box .folio-image .h3 small {
	display: block;
	font-weight: 300;
}

.folio-box .folio-image .nr-box {
	position: absolute;
	bottom: 10px;
	right: 10px;
	line-height: 1;
	font-size: 1rem;
	font-weight: 300;
	color: #fff;
	z-index: 2;
}

.folio-box .p {
	display: block;
	font-size: .45rem;
	line-height: 1.7;
	text-transform: uppercase;
	margin: 0;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mobile-nav {
	display: none;
}

footer {
	border-top: 1px solid #c9c9c9;
}

footer p.copyright {
	font-size: .45rem;
	margin: 0;
}

#main-footer {
	position: relative;
	width: 100%;
}

#main-footer ul li {
	line-height: 1;
}

#main-footer ul li a {
	text-decoration: underline;
	text-transform: uppercase;
	font-size: .4rem;
	font-weight: 600;
}

#main-footer h2 {
	font-size: 2.25rem;
	line-height: 1.1;
	font-weight: 800;
	text-transform: uppercase;
	margin:  0 0 15px;
}

#main-footer a:hover, #main-footer p.copyright a:hover {
	color: #c9c9c9;
}

.scroll-top {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
    border: 1px solid #000;
    padding: 0 10px;
}

a.ft-btn {
	border: 1px solid #000;
	color: #fff;
	background: #000;
	padding: 14px 30px 13px;
	text-transform: uppercase;
	font-size: .5rem;
	line-height: 1;
	font-weight: 700;
	display: inline-block;
	margin:  20px 0 0;
}

a.ft-btn:hover {
	background: #fff;
	color: #000;
}

.ft-text {
	font-size: .75rem;
	line-height: 1.5;
	padding-right: 50px;
}

.ft-style {
    font-size: .55rem;
    line-height: 1.6;
}

.ft-style a {
	text-decoration: underline;
}

.arrow-img {
	height: 20px;
}

.category-shortbox {
	padding-bottom: 80px;
	border-bottom: 1px solid #eee;
}

.category-shortbox:last-child {
	border-bottom: none;
}

.category-shortbox h2 {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 2.25rem;
}

.shortbox-title {
	text-transform: uppercase;
	font-size: .5rem;
	font-weight: 800;
	letter-spacing: 2px;
}

.shortbox-desc {
	font-size: .8rem;
}

.shortbox-small {
	font-size: .5rem;
	line-height: 1.6;
}

.shortbox-info {
	margin-top: 20px;
}

.category-shortbox h6 {
    font-size: .5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin:  0 0 10px;
}

#main-footer hr {
	margin:  70px 0;
	border-color: #eee;
}

#main-footer a:hover, #main-footer p.copyright a:hover {
	text-decoration: none;
}

#main-footer h3 {
    font-size: .65rem;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-weight: 800;
}

#main-footer h4 {
	font-size: .5rem;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 1px;
}

.w-200 {
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
}

h1, h2, h3, ul li, p, .client-box, .logo-idea {
	/*-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;*/
}

.darky, .darky h1, .darky h2, .darky h3, .darky ul li, .darky p, .darky .client-box, .darky .logo-idea, .darky a, .darky a:link, .darky a:hover, .darky a:visited, .darky a:active, .darky a:focus {
	color: #fff;
}

.darky .main-nav li:after, .darky .main-nav li ul {
	background-color: #fff;
}

.darky .main-nav li ul {
	border-color: #fff;
}

.darky .main-nav li ul li a {
	color: #212529;
}

.darky .logo-idea {
	filter: invert(100%);
}

.darky .content-box {
	border-color: rgba(255,255,255,.25);
}

.darky .main-nav ul li:after {
	background-color: #212529;
}

.subcategory-intro-text {
	font-weight: 900;
    font-size: 0.8rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
}

/* -------------------------------------------------
------------- Admin color picker tool ---------- 
--------------------------------------------------*/
.admin-page-options-box {
	margin-bottom: 40px;
	background: white;
    padding: 10px;
}
.admin-set-text {
	font-size: 0.6rem;
}
.admin-set-form .input-group {
	width: auto;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #212529;
    background-color: #212529;
}
.admin-set-form .custom-control-label::after, .admin-set-form .custom-control-label::before {
    width: 0.6rem;
    height: 0.6rem;
}
.admin-set-form .custom-control-label::before, .admin-set-form .custom-control-label::after {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: -0.9rem;
}
.admin-set-form  .custom-checkbox .custom-control-label::before {
    border-radius: .1rem;
}
.admin-set-form .custom-control {
	margin-left: 10px;
}
.admin-set-form .btn-white {
	font-size: 0.6rem;
	border: 1px solid #212529;
	border-radius: 0;
	transition: all 0.2s;
}
.admin-set-form .btn-white:hover {
	color: #fff;
	background: #212529;
}
.admin-set-form .submit-button .btn-white {
	padding: 5px 10px;
	margin-left: 20px;
}
.admin-set-form .input-group-btn .btn-white {
	padding: 5px;
}
.admin-set-form .dropdown-item.active, .admin-set-form .dropdown-item:active {
	background-color: #212529;
	color: #fff!important;
}
.admin-color-picker {
    margin-right: 20px;
}
.acp-wrap {
	margin-left: 15px;
}
input[type=checkbox]:focus {
    outline: 0;
}

/* ANIMATED NAV */

* {
  margin: 0;
  padding: 0; 
}

/* Icon 1 */

#btn-mobile {
  width: 25px;
  height: 20px;
  position: relative;
  z-index: 500;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#btn-mobile span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #212529;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#btn-mobile span:nth-child(1) {
  top: 0px;
}

#btn-mobile span:nth-child(2),#btn-mobile span:nth-child(3) {
  top: 10px;
}

#btn-mobile span:nth-child(4) {
  top: 20px;
}

#btn-mobile.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#btn-mobile.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  }

#btn-mobile.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#btn-mobile.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.contact-form .svg {
	height: 20px;
}

.top-slider {
    margin-bottom: 30px;
}

.tags .svg {
	height: 15px;
}

.volume-btn .svg {
	height: 70px;
}

.trigger-btns .svg path {
	color: #000;
}

.trigger-btns .svg  {
	height: 24px;
}

.btn-prev .svg {
	margin-right: 10px;
}

.btn-next .svg {
	margin-left: 10px;
}

.home-section {
    top: 0;
    width: 100%;
    margin-top: 200px;
    text-align: center;
    position: relative;
}

.home-section h1 {
    z-index: 2;
    font-weight: 900;
    font-size: 2rem;
}




