.card {
    /* transition: all 0.3s; */
    transition: .1s ease-in-out;
    /* -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out; */
}

.card:hover {
    transform: scale(1.1);
}


/*  */
* {
    box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */


/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    /* right: 100px; */
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column {
    float: left;
    width: 25%;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

div.scroll-container {
    background-color: #333;
    overflow: auto;
    white-space: nowrap;
    /* padding: 10px; */
}




/*  */
.featurette {
    /* transition: all 0.3s; */
    transition: .3s ease-in-out;
    /* -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out; */
}

.featurette:hover {
    transform: scale(1.05);
}

.services {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0px;
}

.footerfont {
    color: white;
}



/* LOGO */
.wrapper {
    background-color:  #E1E2E2;
    height: 130px;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.wrapper:before, .wrapper:after {
    content: "";
    position: absolute;
    height: 130px;
    width: 150px;
    z-index: 2;
}

.wrapper:after{
    right: 0;
    top: 0;
    transform: rotateZ('180deg');
}

.wrapper:before {
    left: 0;
    top: 0;
}

.wrapper .track{
    display: flex;
    width: calc(150px * 10);
    animation: scroll 15s 0.5s linear infinite;
}

.wrapper .logo {
    width: 150px;
    padding: 100px;
}

.wrapper .logo img {
    height: 90px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-150px * 5));
    }
}

@media print {
    html, body {
       display: none;  /* hide whole page */
    }
}

.section-title {
    color: red;
    font-weight: bold;
}


/* V-RAY */
.vrh4{
    font-size: 16px;
}

.vrft{
    font-family: 'Poppins';
    color: #101010;
}

.vrul{
    list-style-type: disc;
    padding-left: 20px;
}

.vrhr{
    margin: 20px 0;
    background-color: #ffffff00;
}

.vrtable{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.vrtr:nth-child(even){
    background-color: #f9f9f9;
}

.vrtd{
    padding: 8px;
    vertical-align: top;
}