@charset "UTF-8";

/* Colours

green: #32ad70
dark green: #206D47

*/

/* General */

h1,
h2,
h3,
h4,
p,
li,
a {
    font-family: 'Comfortaa', cursive !important;
}

html {
    background-color: #32ad70;
}

body {
    /*    font: 400 15px Lato, sans-serif;*/


    line-height: 1.8;
    color: #818181;
    overflow-x: hidden;
}


h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #206D47;
    font-weight: 600;
    margin-bottom: 30px;
}

h4 {
    font-size: 19px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
}

#home {
    width: 50px;
    margin: 0;
    padding: 5px;
}

#home .logo-img {
    width: 100%;
    height: auto;
    animation: rotateLogo 5s ease-in-out infinite;
}

/*
.navbar-brand .logo {
    width: 30px;
}
*/

/*
.navbar-brand .logo img {
    width: 100%;
}
*/


.jumbotron {
    background-color: #32ad70;
    color: #fff;
    padding: 100px 25px;
    font-family: Montserrat, sans-serif;
    cursor: default;
    border-bottom-right-radius: 40vw;
    border-bottom-left-radius: 40vw;
    width: 110vw;
    position: relative;
    left: -5vw;
}

.jumbotron .logo-block {
    width: 15%;
    max-width: 200px;
    min-width: 80px;
    margin: 0 auto;
}

.jumbotron .logo-block .logo-img {
    animation: rotateLogo 2.5s 0.4s ease-in-out;
    -webkit-animation: rotateLogo 2.5s 0.4s ease-in-out;
}

.jumbotron h1 {
    margin-top: 10px;
}

@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateLogo {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.container-fluid {
    padding: 60px 50px;
    max-width: 1000px;
}

.container-fluid.full {
    max-width: none;
}

.bg-grey {
    background-color: #f6f6f6;
}

.logo-small {
    color: #32ad70;
    font-size: 50px;
}

.logo {
    color: #32ad70;
    font-size: 200px;
}

.thumbnail {
    padding: 0 0 15px 0;
    border: none;
    border-radius: 0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none;
    color: #32ad70;
}

.carousel-indicators li {
    border-color: #32ad70;
}

.carousel-indicators li.active {
    background-color: #32ad70;
}

.item h4 {
    font-size: 19px;
    line-height: 1.375em;
    font-weight: 400;
    font-style: italic;
    margin: 70px 0;
}

.item span {
    font-style: normal;
}

.panel {
    border: 1px solid #32ad70;
    border-radius: 0 !important;
    transition: box-shadow 0.5s;
}

.panel:hover {
    box-shadow: 5px 0px 40px rgba(0, 0, 0, .2);
}

.panel-footer .btn:hover {
    border: 1px solid #32ad70;
    background-color: #fff !important;
    color: #32ad70;
}

.panel-heading {
    color: #fff !important;
    background-color: #32ad70 !important;
    padding: 25px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.panel-footer {
    background-color: white !important;
}

.panel-footer h3 {
    font-size: 32px;
}

.panel-footer h4 {
    color: #aaa;
    font-size: 14px;
}

.panel-footer .btn {
    margin: 15px 0;
    background-color: #32ad70;
    color: #fff;
}

.navbar {
    margin-bottom: 0;
    background-color: #32ad70;
    z-index: 999;
    border: 0;
    font-size: 12px !important;
    line-height: 1.42857143 !important;
    letter-spacing: 4px;
    border-radius: 0;
    font-family: Montserrat, sans-serif;
}

.navbar li a,
.navbar .navbar-brand {
    color: #fff !important;
    transition: background 0.5s, color 0.5s, box-shadow 0.2s, padding 0.2s;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
    color: #fff !important;
    box-shadow: inset 0px -5px #fffc;
    padding: 10px 15px 20px;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
    color: #fff !important;
}

.j-nav-link {
    cursor: pointer;
}

footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #32ad70;
}

.slideanim {
    visibility: hidden;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

@media screen and (max-width: 768px) {
    .col-sm-4 {
        text-align: center;
        margin: 25px 0;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 150px;
    }
}

/* Navbar -------------------------------- */

.container > .navbar-header {
    position: absolute;
}

.container > .navbar-header #home {
    opacity: 0;
    transition: opacity 0.3s;
}

.scrolled-nav .container > .navbar-header #home {
    opacity: 1;
}

.jumbotron {
    transition: 0.5s;
}

.jumbotron * {
    transition: opacity 0.5s;
}

.scrolled-nav + .content .jumbotron {
    padding: 10px 25px;
}

/* Align navigation to centre */
.navbar .navbar-collapse {
    text-align: center;
}

.navbar-nav.navbar-align {
    display: inline-block;
    float: none;
    vertical-align: top;
    transition: display 0.5s, margin 0.2s;
}

.scrolled-nav .navbar-nav.navbar-align {
    margin-left: 0;
}

/* Home  -------------------------------- */

.row.img-margins {
    margin: 40px 0;
}

/* Carousel -------------------------------- */

.carousel {
    position: relative;
    margin: 40px 0;
}

#carousel .caption {
    color: #32ad70;
    margin-top: 20px;
    background-color: transparent;
}

.carousel-indicators {
    top: -50px;
}

/* Products ----------------------------- */

h2.p-heading {
    font-size: 50px;
    margin-top: 50px;
    color: #32ad70;
    text-transform: capitalize;
    opacity: 1;
    transition: opacity 0.5s;
    text-align: center;
}

h2.align-left,
h3.align-left {
    text-align: left;
}

h3 {
    margin-bottom: 30px;
}

.mTop40 {
    margin-top: 40px;
}

.colours {
    display: none;
    /*    background-color: #f0f0f0;*/
    padding: 30px 10px;
    margin: 30px;
}

.btn-colour {
    font-size: 18px;
    color: #206D47;
    transition: color 0.2s, background 0.2s;
}

.btn-colour:hover,
.btn-colour:active,
.btn-colour.active {
    color: #666;
    box-shadow: none;
    background-color: #ccc;
}

.colour-circle {
    height: 80px;
    width: 80px;
    background-color: green;
    border-radius: 100px;
    margin: 0 auto;

}

.product-type {
    margin-bottom: 80px;
}

.product {
    margin-bottom: 40px;
}

/* Poster */

.animated-poster {
    width: 100%;
}

.animated-poster .wrapper {
    width: 80%;
    margin: 0 auto;
}

.animated-poster .wrapper .img {
    width: 100%;
    height: auto;
}


/* Modal -------------------------------- */

/* Style the Image Used to Trigger the Modal */
.modal-img {
    border-radius: 1px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.modal-img:hover {
    opacity: 0.8;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */



}

.modal .wrapper {
    height: 80%;
    /*    width: 80%;*/
}

/* Modal Content (Image) */


.modal .modal-content {
    margin: auto;
    display: block;
    /*    width: 100%;*/
    /*    max-width: 1000px;*/
    border-radius: 2px;
    background: transparent;
}

.modal .modal-content.img-v {
    height: calc(100% - 150px);
    width: auto;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
.modal .caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
/*
.modal .modal-content, 
.modal .caption { 
    animation-name: zoom;
    animation-duration: 0.4s;
}
*/

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    text-shadow: none;
    opacity: 0.7;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Carousel */

/*
.carousel-inner .item {
    width: 100%;
    height: 300px;
}
*/

/*
.carousel-inner .item > img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}
*/

/* Burger buton*/
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .navbar-toggle {
    transition: background 0.2s;
}

.navbar-default .navbar-toggle:hover {
    background-color: #fff9;
}




.modal-img.coin {
    display: block;
    max-width: 150px;
    margin: 0 auto;
}



.container-fluid.bg-grey {
    background: transparent;
}

.product .col-sm-6 {
    margin-bottom: 50px;
}


.row .process {
    margin-bottom: 40px;
}

.row.inspires img {
    width: 80%;
}

.cmist .row img {
    width: 70%;
    display: block;
    margin: 0 auto;
}



/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 770px) {


    .modal .modal-content {
        width: 80%;
    }

    #home {
        margin-left: 20px;
    }

    .container > .navbar-header {
        position: static;
    }

    .navbar-default .navbar-collapse {
        border: 0;
    }
}

.carousel-control .glyphicon-chevron-right::before,
.carousel-control .glyphicon-chevron-left::before {
    transition: color 0.5s;
}

.carousel-control:hover .glyphicon-chevron-right::before,
.carousel-control:hover .glyphicon-chevron-left::before {
    color: #32ad70;
}


.carousel-control {
    transition: opacity 0.5s, color 0.5s;
}




/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .animated-poster .wrapper {
        max-width: 450px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
/*@media only screen and (min-width: 768px) {...} */

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .animated-poster .wrapper {
        /*        max-width: 300px;*/
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {

    .animated-poster .wrapper {
        max-width: 400px;
    }
}
}
