body{
    background-image: url('images/big-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
html, body{
    font-family: 'Quicksand', sans-serif;
    font-family: 'Raleway', sans-serif;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Raleway', sans-serif;
}
a{
    color: black;
    text-decoration: none;
}
ul{
    list-style-type: none;
}
button, input[type = "submit"]{
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
}
.container{
    max-width: 1320px;
    padding: 0 3rem;
    margin: 0 auto;
}
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.text{
    line-height: 1.6;
    letter-spacing: 1px;
}
.form-control{
    width: 100%;
    margin: 0.6rem 0;
    max-width: 500px;
    border: 1px solid #fff;
    border-radius: 0.2rem;
    padding: 0.7rem;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    background-color: transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.btn{
    padding: 0.7rem 2.4rem;
    border-radius: 0.2rem;
    background-color:  rgb(255, 190, 68);
    color: #fff;
    border: 1px solid  rgb(255, 190, 68);
}
.btn:hover{
    opacity: 0.9;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

/* css stop transition and animation */
.resize-animation-stopper *{
    -webkit-animation: none!important;
            animation: none!important;
    -webkit-transition: none!important;
    -o-transition: none!important;
    transition: none!important;
}

.py-4{
    padding: 4rem 0;
}
img{
    width: 100%;
    display: block;
}
.title-wrap{
    text-align: center;
    padding: 1.4rem 0;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.lg-title{
    font-size: 1.8rem;
}
.sm-title{
    display: block;
    color: #787878;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.7;
}
.my-2{
    margin: 2rem 0;
}
.shadow{
    -webkit-box-shadow: 0px 0px 18px -4px rgba(109, 109, 109, 0.64);
            box-shadow: 0px 0px 18px -4px rgba(109, 109, 109, 0.64);
}
.shadow:hover{
    -webkit-box-shadow: 0px 0px 18px -4px rgba(73, 73, 73, 0.64);
            box-shadow: 0px 0px 18px -4px rgba(68, 68, 68, 0.64);
}

.island {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between; /* Distribute buttons equally */
     /* Add padding to buttonspadding: 10px 0; */
}

/* Style for the buttons */


.card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Add zoom effect on hover */
}

.card:hover img {
    transform: scale(1.05); /* Zoom in by 5% on hover */
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 18px;
    margin: 0;
}

.card-description {
    font-size: 14px;
    color: #777;
}
.row {
    display: flex;
    justify-content: space-between; /* Equal space between the divs */
}

.social-profile {
    flex: 1; /* Equal width for both divs */
    margin: 0 5px; /* Add spacing between divs */
}

.social-profile iframe {
    width: 70%;
    height: 600px;
    overflow-y: scroll; /* Enable vertical scrollbar */
    overflow-x: hidden; /* Disable horizontal scrollbar */
    border: none;
}
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

.marquee-container {
    height: 500px;
    overflow: hidden;
}

.blog-row-destination {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 40s linear infinite; /* Adjust duration as needed */
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
