body {
    height: 100vh;
}
main {
    background-image: url(../images/leaf.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
#homeSlider {
    opacity: 0.9;
    height: 40%;
}
#homeSlider img {
    height: 40%;
    width: 100%;
}
#homeCallto {
    padding-top: 20px;
    padding-bottom: 60px;
}
#homeCallto .icon img {
    max-height: 40%;
    max-width: 40%;
}
#homeCallto a {
    text-decoration: none;
}
#homeCallto .title {
    font-family: Poppins;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 20px;
    padding-top: 10px;
    font-weight: 400;
}
/*
.pendulam .rope {
    width: 2px;
    height: 258px;
    background-image: url('../images/line.png');
    background-repeat: no-repeat;
    position: absolute;
    right: 145px;
    top: 0;
    z-index: 2000;
}
.pendulam .coin {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 35px;
    top: 255px;
    perspective: 1000px;
    animation: spin 10s linear infinite;
    z-index: 2000;
    transform-style: preserve-3d;
    background-image: url('../images/circle.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: center;
}
.pendulam .coin>div {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    color: var(--primary);
    margin: 0;
}
.pendulam .coin .front {
    transform: rotateY(0deg);
    padding: 60px 60px 0 40px;
}
.pendulam .coin .back {
    transform: rotateY(180deg);
    padding: 60px 40px 0 60px;
}
.pendulam .coin p {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}
.pendulam .coin h5 {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 900;
    line-height: 24px;
}
@keyframes spin {
    0% {
        transform: rotateY(0deg);
        right: 35px;
    }
    25% {
        transform: rotateY(90deg);
        right: 40px;
    }
    50% {
        transform: rotateY(180deg);
        right: 45px;
    }
    75% {
        transform: rotateY(270deg);
        right: 50px;
    }
    100% {
        transform: rotateY(360deg);
        right: 55px;
    }
}
*/