/*primary color*/
.bg-cream {
    background-color: #FFF2E1;
    background-image: url(../img/mainBannerNew.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    min-height: 600px;
    padding: 60px;
}
.bg-sec2{
    background-image: url(../img/section2Bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    min-height: 600px;
    padding: 50px;
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #F48C06;
}
.bg-brown{
    background-color: #a28235;
}
.text-brown{
    color: #a28235;
}
.text-blue{
    color: #0f95d4;
}
.bg-brown:hover{
    background-color: #0f95d4;
}
.bg-blue{
    background-color: #0f95d4;
}
.bg-blue:hover{
    background-color: #a28235;
}
.text-yellow-500 {
    color: #F48C06;
}
.text-yellow-500 {
    color: #ffffff;
}
.brdrBlue{
    border: solid 5px #07304c;
}
.floating { 
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    color: #2F327D;
}

.disclaimer-bg {
    background-image: url('../img/disclaimerBg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.disclaimer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #a28235;
    opacity: 0.8; */
}

.disclaimer-content {
    position: relative;
}

.last-bg {
    background-image: url('../img/lastSection.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
}