/* PRELOADER */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: url(img/slc-bk01.jpg) no-repeat center center fixed;
    background-size: cover;
    background-color: #000000;
}

#status2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: white;
}

#status {
    width: 500px;
    height: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(img/slc-logo2.png);
    background-repeat: no-repeat;
    background-position: center;
    margin: -250px 0 0 -250px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*************************************/

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: "Montserrat", sans-serif;
    color: #3e3947;
    background-color: #ceced4;
    overflow: hidden;
}

body,
html {
    height: 100%;
}

a {
    color: #3e3947;
    text-decoration: none;
}

img {
    max-width: 100%;
}

/**************************************/

.section {
    /*min-height:100%;*/
    position: relative;
    padding: 1rem 0;
}

#section0 {
    background: url(img/slc-bk01.jpg) no-repeat;
    background-position: 50% 50%;
    background-size: auto 110%;
    z-index: 2;
    perspective: 1000;
	background-attachment: fixed;

	-webkit-animation-duration: 10s;
	        animation-duration: 10s;
	-webkit-animation-delay: 2s;
	        animation-delay: 2s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;

}


@-webkit-keyframes backAnimation {
  0%   {background-size: auto 110%;}
  100% {background-size: auto 150%;}
}


@keyframes backAnimation {
  0%   {background-size: auto 110%;}
  100% {background-size: auto 150%;}
}


.section p {
    line-height: 1.6;
}

@media only screen and (min-width: 768px) {
    .section h1 {
        font-size: 30px;
        font-size: 1.875rem;
    }
    .section p {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

#navigation {
    position: fixed;
    left: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

#navigation li {
    text-align: right;
}

#navigation a {
    display: inline-block;
}

#navigation a:after {
    content: "";
    display: table;
    clear: both;
}

#navigation a span {
    display: inline-block;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transform: rotate(-90deg);
}

#navigation a:hover span {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: rotate(-90deg);
}

#navigation a:hover .label {
    opacity: 0;
}

#navigation a.is-selected .dot {
    background-color: white;
    border: 1px solid white;
    padding: 5px !important;
    background-clip: content-box;
}

#navigation a.is-selected .label {
    opacity: 1;
}

#navigation .dot {
    position: relative;
    /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
    top: 8px;
    background-clip: content-box;
    height: 16px;
    width: 16px;
    padding: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

#navigation .label {
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    left: 0;
    margin-right: 0;
    padding: 0;
    color: white;
    font-size: 14px;
    font-size: 0.875rem;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
    opacity: 0;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    pointer-events: none;
    font-weight: 500 !important;
}

.logo img {
    width: 300px;
    height: auto;
    position: fixed;
}

.nav-main ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 40px;
}

.nav-main ul li {
    display: inline;
    padding: 0 12px;
}

.nav-main ul li a {
    color: white;
    font-weight: 500;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: black;
    opacity: 0.27;
}

.heroCont p, .heroCont h1, .heroCont h2 {
    color: white;
    font-weight: 500;
    font-size: 31px;
    line-height: 46px;
    margin: 100px 0;
    margin-bottom: 70px;
}

.bigFont {
    font-weight: 400 !important;
    font-size: 31px !important;
    line-height: 46px !important;
}

.bigFont2 {
    font-size: 26px !important;
}

.bigFont span {
    font-weight: 600;
}

.heroCont p span, .heroCont h1 span, .heroCont h2 span,
.heroContCenter p span, .heroContCenter h1 span, .heroContCenter h2 span {
    font-weight: 600;
}

.heroContCenter p, .heroContCenter h1 {
    color: white;
    font-weight: 400;
    font-size: 38px;
    padding: 40px 0;
}

.heroCont2 p, .heroCont2 h2 {
    margin: 70px 0;
    margin-bottom: 100px;
}

.bkgGrey {
    background-color: #37465c;
}

.bkgGreyLight {
    background-color: #ceced4;
}

.bkgGreyLightMed {
    background-color: #8e9194;
}

#about {
    background-color: #ceced4;
    padding-bottom: 0;
}

.aboutCont {
    padding-top: 100px;
    padding-bottom: 40px;
}

.modelCont {
    padding-top: 0px;
    padding-bottom: 40px;
}

.holdingsCont {
    padding-bottom: 20px;
}

.aboutCont p {
    font-size: 24px;
    color: #1c252d;
    line-height: 34px;
}

.modelContb p, .modelContb h3 {
    font-size: 16px;
    line-height: 26px;
}

#model {
    z-index: -1;
    padding-bottom: 100px !important;
}

/*VIDEO*/

#myVideo {
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    margin-top: 100px;
    width: 100%;
}

.fixedVideo {
    position: absolute;
    bottom: -30px;
    width: 100%;
}

.fixedVideo p {
    display: inline-block;
    color: white;
    background-color: #37465c;
    padding: 50px 40px;
    padding-right: 60px;
    font-size: 31px;
    line-height: 46px;
}

.botomBorder {
    border-bottom: 1px solid black;
}

.holding01 {
    padding-top: 56.25%;
    background-color: grey;
    background: url(img/BEETMANN.jpg) no-repeat center center;
    background-size: auto 110%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.holding01:hover,
.holding01:active,
.holding01:focus {
    padding-top: 56.25%;
    background-color: grey;
    background: url(img/BEETMANN.jpg) no-repeat top center;
    background-size: auto 120%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.holding02 {
    padding-top: 70%;
    background-color: grey;
    background: url(img/ISOLID.jpg) no-repeat center center;
    background-size: auto 110%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.holding02:hover,
.holding02:active,
.holding02:focus {
    padding-top: 70%;
    background-color: grey;
    background: url(img/ISOLID.jpg) no-repeat center center;
    background-size: auto 120%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.holding03 {
    background-color: grey;
    background: url(img/GRUPO-NUTEC.jpg) no-repeat center center;
    background-size: auto 110%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.holding03:hover,
.holding03:active,
.holding03:focus {
    background-color: grey;
    background: url(img/GRUPO-NUTEC.jpg) no-repeat center center;
    background-size: auto 120%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.holding04 {
    background-color: grey;
    background: url(img/CENTRAL-CERVEZA.jpg) no-repeat center center;
    background-size: auto 110%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.holding04:hover,
.holding04:active,
.holding04:focus {
    background-color: grey;
    background: url(img/CENTRAL-CERVEZA.jpg) no-repeat center center;
    background-size: auto 120%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.holding05 {
    background-color: grey;
    background: url(img/ICELL.jpg) no-repeat center center;
    background-size: auto 110%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.holding05:hover,
.holding05:active,
.holding05:focus {
    background-color: grey;
    background: url(img/ICELL.jpg) no-repeat center center;
    background-size: auto 120%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.logoINB01 {
    background: url(img/BEETMANN-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding01:hover .logoINB01,
.holding01:active .logoINB01,
.holding01:focus .logoINB01 {
    background: url(img/BEETMANN-LOGO-COLOR.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logoINB02 {
    background: url(img/SOLID-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding02:hover .logoINB02,
.holding02:active .logoINB02,
.holding02:focus .logoINB02 {
    background: url(img/SOLID-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logoINB03 {
    background: url(img/GRUPO-NUTEC-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding03:hover .logoINB03,
.holding03:active .logoINB03,
.holding03:focus .logoINB03 {
    background: url(img/GRUPO-NUTEC-LOGO-COLOR.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logoINB04 {
    background: url(img/CENTRAL-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding04:hover .logoINB04,
.holding04:active .logoINB04,
.holding04:focus .logoINB04 {
    background: url(img/CENTRAL-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logoINB05 {
    background: url(img/ICELL-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    width: 75% !important;
}

.holding05:hover .logoINB05,
.holding05:active .logoINB05,
.holding05:focus .logoINB05 {
    background: url(img/ICELL-LOGO-BLANCO.png) no-repeat center center;
    background-size: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logoINB01 img,
.logoINB02 img,
.logoINB03 img,
.logoINB04 img,
.logoINB05 img {
    opacity: 0;
}

.logoIN {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logoIN img {
    width: 100%;
}

.holding03:hover .logoIN,
.holding03:active .logoIN,
.holding03:focus .logoIN {
    position: absolute;
    top: 5%;
    left: 35%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 65%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding01:hover .logoIN,
.holding01:active .logoIN,
.holding01:focus .logoIN {
    position: absolute;
    top: 15%;
    left: 85%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding04:hover .logoIN,
.holding04:active .logoIN,
.holding04:focus .logoIN {
    position: absolute;
    top: 20%;
    left: 82%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 25%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding05:hover .logoIN,
.holding05:active .logoIN,
.holding05:focus .logoIN {
    position: absolute;
    top: 12%;
    left: 75%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 35% !important;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.holding02:hover .logoIN,
.holding02:active .logoIN,
.holding02:focus .logoIN {
    position: absolute;
    top: 15%;
    left: 80%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logoIN02 {
    width: 100%;
}

.padding40TB {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding80TB {
    padding-top: 140px;
    padding-bottom: 140px;
}

#holdings {
    padding-bottom: 4px !important;
}

.textColorWhite {
    color: white !important;
}

.criteria {
    direction: rtl;
    overflow: auto;
    height: 50px;
    width: 50px;
    height: 400px;
}

.item_direction {
    direction: ltr;
    height: 300px;
    width: 100%;
    padding-left: 20px;
}

.item_direction:last-child {
    height: 200px;
}

.criteria::-webkit-scrollbar {
    -webkit-appearance: none;
}

.criteria::-webkit-scrollbar:vertical {
    width: 2px;
}

.criteria::-webkit-scrollbar:horizontal {
    height: 2px;
}

.criteria::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 0;
}

.criteria::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #adacac;
}




.criteriaN1 {
    position: absolute;
    top: -42px;
    right: -11px;
}

.criteriaN2 {
    position: absolute;
    bottom: -42px;
    right: -11px;
}

.criteriaN1 p,
.criteriaN2 p {
    font-size: 16px;
    color: white;
}

#footer {
    background-color: #37465c;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: -20px;
    z-index: 99;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

#footer {
    padding-top: 60px !important;
}

#footer p {
    line-height: 1.4rem;
    font-size: 18px;
}

.pT70 {
    padding-top: 90px;
    padding-bottom: 20px;
}

#myBtn img {
    position: absolute;
    top: 0;
    right: -54px;
}

.MT28 {
    margin-top: 28px;
}

.BBH {
    margin-top: -4px;
}

button:focus {
    outline: none;
    outline: none;
}


 @media only screen and (max-width: 993px){

.logo img {
    width: 200px;
    height: auto;
    position: fixed;
    max-width: 200px;
    margin-top: 16px;
}

#section0 {
        background: url(img/slc-bk01.jpg) no-repeat;
        background-position: 50% 50%;
        background-size: auto 100%;
        z-index: 2;
    }


    .item_direction:last-child {
    margin-top: 50px;
}

 }

@media only screen and (max-width: 769px) {
    #status {
        width: 250px;
        height: 250px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-image: url(img/slc-logo2.png);
        background-repeat: no-repeat;
        background-position: center;
        margin: -125px 0 0 -125px;
        background-size: 100%;
    }
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;
        background: url(img/slc-bk01.jpg) no-repeat center center;
        background-size: auto 100%;
        background-color: #000000;
    }
    .navbar-brand {
    	position: relative;
		display: block;
		min-height: 55px
	}

	.navbar-brand img {
    	position: fixed;
	}


    #navigation {
        display: none;
    }
    nav .navbar-brand img {
        width: 180px;
    }
    .navbar-toggler {
        border: none;
    }
    .navbar-toggler-icon {
        height: .9em;
    }
    .navbar-dark .navbar-toggler-icon {
        background-image: url(img/menuH.png);
    }
    .nav-main ul {
        text-align: right;
    }
    .navbar {
        padding: 0;
    }
    .nav-main ul li {
        display: inline;
        padding: 10px 12px;
    }
    #section0 {
        background: url(img/slc-bk01.jpg) no-repeat;
        background-position: 50% 50%;
        background-size: auto 100%;
        z-index: 2;
    }
    .heroCont p,   .heroCont h1, .heroCont h2 {
        font-size: 16.5px;
        line-height: 26px;
        margin: 50px 0;
    }
    .heroContCenter {
        padding: 0;
    }
    .heroContCenter p, .heroContCenter h1 {
        font-size: 18px;
        padding: 10px 0;
    }
    .aboutCont {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .aboutCont p {
        font-size: 15.5px;
        line-height: 25px;
    }
    .modelContb {
        padding-top: 40px;
    }
    .modelContb p, .modelContb h3 {
        font-size: 13.5px;
        line-height: 23px;
    }
    #myVideo {
        margin-top: 30px;
    }
    .fixedVideo p {
        display: inline-block;
        color: white;
        background-color: #37465c;
        padding: 20px 20px;
        padding-right: 40px;
        font-size: 18px;
        line-height: 24px;
    }
    .afVid {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .bigFont {
        font-size: 15.5px !important;
        line-height: 25px !important;
    }
    .aftVid02 {
        padding-bottom: 20px;
    }
    .aftVid03 {
        padding-top: 0px;
        padding-bottom: 40px;
    }
    #model {
        padding-bottom: 0px !important;
    }
    .holding01,
    .holding02,
    .holding03,
    .holding04,
    .holding05 {
        padding-top: 100%;
    }
    .holding03 {
        background: url(img/GRUPO-NUTEC.jpg) no-repeat center -50px;
        background-size: 110% auto;
    }
    .holding03:hover,
    .holding03:active,
    .holding03:focus {
        background: url(img/GRUPO-NUTEC.jpg) no-repeat center -50px;
        background-size: 120% auto;
    }
    .holding01:hover,
    .holding01:active,
    .holding01:focus,
    .holding02:hover,
    .holding02:active,
    .holding02:focus,
    .holding03:hover,
    .holding03:active,
    .holding03:focus,
    .holding04:hover,
    .holding04:active,
    .holding04:focus,
    .holding05:hover,
    .holding05:active,
    .holding05:focus {
        padding-top: 100%;
        perspective: 1000;
        -webkit-perspective: 1000;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .padding40TB {
        padding-top: 0;
        padding-bottom: 0;
    }
    .criteria {
        direction: ltr;
        overflow: auto;
        width: 95%;
        height: 240px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .padding80TB {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .item_direction {
        direction: ltr;
        height: 170px;
        width: 100%;
        padding-left: 0;
    }
    .criteriaN1 {
        position: absolute;
        top: 90px;
        right: 11px;
        width: 40px;
        text-align: right;
    }
    .criteriaN2 {
        position: absolute;
        bottom: -320px;
        right: 11px;
    }
    #criteria.bkgGreyLightMed {
        background-color: #ceced4 !important;
    }
    #criteria .textColorWhite {
        color: black !important;
    }
    .criteriaN1 p,
    .criteriaN2 p {
        font-size: 16px;
        color: black;
    }
    .criteria::-webkit-scrollbar-thumb {
        background-color: #1c252d;
    }
    #myBtn {
        right: -34px;
        font-size: 12px;
    }
    .textSmalMo {
        font-size: 12px;
    }
    .textSmalMo2 {
        font-size: 10px;
    }

        .item_direction:last-child {
    margin-top: 100px;
}

#footer p {
    line-height: 1.4rem;
    font-size: 10px;
}

}
