﻿
/* change container */
.container {
    padding: 1rem 2rem;
}

.containerfooter {
    padding: 1rem 0;
}

.containerText {
    padding: 0rem 2rem;
}

/* change colunm thumbnail */
.col_thumbnail {
    display: inline-block;
    margin: 20px 10px;
}

.form-control {
    min-width: 100%;
}

a {
    border: 0;
}

p {
    margin-bottom: 0;
}

h3 {
    margin-bottom: 0;
}

/* change MenuFooter */
ul li {
    /*list-style-type: none;*/
    padding-right: 20px;
}

#menuFooter ul li {
    /*font-size: 10pt;*/
}


#menuFooter ul {
    margin-right: 0px;
}

    #menuFooter ul li ul {
        padding: 0 10px;
    }

    #menuFooter ul li {
        /*font-size: 10pt;*/
    }

#menuFooter > .container {
    /*font-size: 10pt;*/
    padding: 1.5rem 1rem;
}

/* change footer */
.footer {
    padding: 0;
    background-color: gray;
    text-align: center
}

    .footer p {
        font-size: 16px;
        margin: 0;
        color: black;
    }


/* change caption */
body, html {
    height: 100%;
    margin: 0;
}

.caption {
    position: sticky;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
}

    .caption span.border {
        background-color: #111;
        color: #fff;
        padding: 18px;
        font-size: 25px;
        letter-spacing: 10px;
    }

/* change tag h  */
h3 {
    letter-spacing: 5px;
    text-transform: uppercase;
    font: 20px "Lato", sans-serif;
    color: #111;
}


/* css smooth scroll */
body {
    position: relative;
}

header {
    background: gray;
    width: 100%;
    -webkit-transition: position 20s;
    -moz-transition: position 20s;
    -ms-transition: position 20s;
    -o-transition: position 20s;
    transition: position 20s;
}

section {
    height: 150vh;
    position: relative;
    top: 60px;
}

.fixed {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}


/*-------------- zoom image --------------*/
.zoom {
    position: relative;
    /*border: 1px solid #333;*/
    /*margin: 2%;*/
    overflow: hidden;
    /*width: 540px;*/
}

    .zoom img {
        max-width: 100%;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .zoom:hover img {
        -moz-transform: scale(1.3);
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }


/*-------------- circle image --------------*/
.ratio {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    /*padding-bottom: 100%;*/
    position: relative;
    /*width: 100%;*/
}

.img-circle {
    border-radius: 50%;
}

.img-responsive {
    /*display: block;*/
    height: auto;
    max-width: 100%;
}

/*-------------- cart --------------*/
.badge-notify {
    background: red;
    position: relative;
    top: -20px;
    right: 10px;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
}

/*list news css*/
.card-horizontal {
    display: flex;
    flex: 1 1 auto;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

/*-------------- list --------------*/
/*.card-title {
    margin-bottom: 20px;
    margin: 20px 0;
    padding: 10px 0;
}*/

card-text {
    margin-bottom: 20px;
}
p.card-text {
    /*margin: 20px 0;*/
    padding: 10px 0;
}

/*-------------- icon --------------*/
.card-icon {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    /* background-color: #fff; */
    background-clip: border-box;
    /* border: 1px solid rgba(0,0,0,.125); */
    border-radius: .25rem;
    /* margin: 0.5rem; */
}

/*-------------- content text --------------*/
.container-text {
    padding: 1rem 3rem;
}

@media (max-width: 575.98px) {
    .container-text {
        padding: 1rem 2rem;
    }
}

/* carousel */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    /*margin: 75px;*/
}



/* Control buttons  */

.carousel-control {
    background: none;
    color: #222;
    font-size: 2.3em;
    text-shadow: none;
    margin-top: 30px;
}
/* Previous button  */
.carousel-control-prev.left {
    left: -12px;
}
/* Next button  */
.carousel-control-next.right {
    right: -12px !important;
}
/* Changes the position of the indicators */
/*.carousel-indicators {
    right: 50%;
    top: auto;
    bottom: 0px;
    margin-right: -19px;
}*/
    /* Changes the color of the indicators */
    /*.carousel-indicators li {
        background: #c0c0c0;
    }*/

    /*.carousel-indicators .active {
        background: #333333;
    }*/

/*#carouselExampleIndicators img {
    width: 250px;
    height: 100px
}*/

/* End carousel */
