*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.world{
    background-image: url(../images/world.webp);
    background-size: contain;
}

a{
    text-decoration: none;
}

.bull-con{
    background-image: url(https://havasfinance.com/img/in-equity-decor-1.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.brown{
    background-color: rgb(17, 37, 16);
}
.t-brown{
    color: rgb(37, 16, 16);
}
.b-brown{
    border: 1px solid rgb(37, 16, 16);
}

.bull-con a{
    text-decoration: none;
}

.con{
    width: 100%;
    height: 100%;
}

.rotate-l{
    transform: rotate(80deg);
    background-color: rgba(215, 175, 100, 0.816);
    border-radius: 10px;
    position: absolute;
    top:-137px;
    left:130px;
    width: 370px;
    height: 640px;
}
.rotate-r{
    transform: rotate(-80deg);
    background-color: rgba(215, 175, 100, 0.816);
    border-radius: 10px;
    position: absolute;
    top:-137px;
    right:130px;
    width: 370px;
    height: 640px;
}

.rotate-r2{
    transform: rotate(-80deg);
    background-color: rgba(215, 175, 100, 0.816);
    border-radius: 10px;
    position: absolute;
    top:-137px;
    right:130px;
    width: 370px;
    height: 640px;
}

.pic-size{
    height: 370px;
    width: 640px; 
}
.pic-size2{
    height: 370px;
    width: 640px; 
}

.mar-sm2{
    margin-top: 100px;
}

.bull-con .hide-sm{
    display: block;
}
.bull-con .hide-lg{
    display: none;
}

@media only screen and (max-width:1000px) {
    .bull-con .hide-sm{
        display: none;
    }
    .bull-con .hide-lg{
        display: block;
    }

    .rotate-l{
        transform: rotate(80deg);
        background-color: rgba(215, 175, 100, 0.816);
        border-radius: 10px;
        position: absolute;
        top:-75px;
        left:65px;
        width: 220px;
        height: 370px;
    }
    .rotate-r{
        transform: rotate(-80deg);
        background-color: rgba(215, 175, 100, 0.816);
        border-radius: 10px;
        position: absolute;
        top:-75px;
        right:65px;
        width: 220px;
        height: 370px;
    }
    .rotate-r2{
        transform: rotate(-80deg);
        background-color: rgba(215, 175, 100, 0.816);
        border-radius: 10px;
        position: absolute;
        top:-25px;
        right:10px;
        width: 270px;
        height: 370px;
    }

    .pic-size{
        height: 220px;
        width: 370px; 
    }
    
    .hide-sm{
        display: none;
    }

    .mar-sm{
        margin-top: 500px;
    }
    .mar-sm2{
        margin-top: -20px;
    }
}
@media only screen and (min-width:1000px) {
    .hide-lg{
        display: none;
    }
}

.loader{
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    transform: rotate(45deg);
}
.loader::before{
    content: '';
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: -24px;
    animation: animloader 4s ease infinite;
}
.loader::after{
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    animation: animloader2 2s ease infinite;
}

.loader-con{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999999999999;
}
@keyframes animloader{
    0%{
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }
    12%{
        box-shadow: 0 24px white, 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }
    25%{
        box-shadow: 0 24px white, 24px 24px white, 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }
    37%{
        box-shadow: 0 24px white, 24px 24px white, 24px 48px white, 0px 48px rgba(255, 255, 255, 0);
    }
    50%{
        box-shadow: 0 24px white, 24px 24px white, 24px 48px white, 0px 48px white;
    }
    62%{
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px white, 24px 48px white, 0px 48px white;
    }
    75%{
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px white, 0px 48px white;
    }
    87%{
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px white;
    }
    100%{
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }
}
@keyframes animloader2{
    0%{
        transform: translate(0, 0) rotateX(0) rotateY(0);
    }
    25%{
        transform: translate(100%, 0) rotateX(0) rotateY(180deg);
    }
    50%{
        transform: translate(100%, 100%) rotateX(-180deg) rotateY(180deg);
    }
    75%{
        transform: translate(0, 100%) rotateX(-180deg) rotateY(360deg);
    }
    100%{
        transform: translate(0,0) rotateX(0) rotateY(360deg);
    }
}

.blob{
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.youtube-vid{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999999999999999;
    background-color: rgba(0, 0, 0, 0.457);
}

.menu{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999999999999999;
    display: none;  
    background-color: black;
}

.vid-con{
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0px);
    }
}

.circle{
    overflow: hidden;
    transform: translateY(0px);
    animation: float 6s ease-in-out infinite;
}

.purple{
    background-color: rgb(199, 18, 112);
}

.to-orange{
    color: black;
}
.to-orange:hover{
    color: orange;
}

/*slideshow start*/
.bull-con .slideshow-container{
    position: relative;
    margin: auto;
}

.bull-con .slideshow-container .mySlides{
    display: none;
}

.fad{
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade{
    from{opacity: .4}
    to{opacity: 1}
}