@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500,600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Galdeano&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Galdeano&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: #516171;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 700;
    color: #092032;
}

.fa{
    margin-right: 8px;
}

a{
    color: #092032;
    text-decoration: none;
    transition: all 0.4s;
}

p.fnt-kanit.grad.fnt-16{
    color: #f307ad;
}

bg{
    background-position: center;
    background-size: cover;

}

/*NAVBAR*/
nav.top-nav{
    background-color: #96232d;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p{
    margin-bottom: 0%;
    display: inline-block;
    margin-right: 16px;
    color: #fff;
}

.top-nav i,
.top-nav span{
    vertical-align: middle;
}

.social-links a{
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display:inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border-radius: 100%;
}

.social-links a:hover{
    background-color: #fff;
    color: #ff4d29;
}

.navbar{
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:active{
    color: #ff4d29;

}

.btn{
    padding: 9px 24px;
}

.btn-brand{
    background-color: #ff4d29;
    color: #fff;
    border-color: #ff4d29;
}

.btn-brand:hover{
    color: #fff;
    background-color: #d63e20;

}

div.col-lg-2.col-md-6.bg-set-counter:hover{
    border-color: var(--sky-blue);
    border-bottom: 0.5rem solid var(--bs-blue);
    cursor: pointer;
    border-radius: 5%;
    background:linear-gradient(45deg, #96232d,#2a2e79);
    color: #fff;
}

a.nav-link{
    --bs-navbar-nav-link-padding-x: 1.5rem;
}


h2.fnt-kanit.heading-fnt{
    font-size: 40px;
    font-weight: 400;
    background: linear-gradient(135deg, #96232d 40%, #2a2e79 60%);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-family: "Galdeano", serif;
}

p.marg-btm-20.fnt-16.clr-222{
    font-family: "Galdeano";
    font-size: 1.1rem;
    color: black;
    font-weight: 900;
}


img.gallery{
    display: inline-block;
    max-width: 100%;
    height: 21rem;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    border-radius: 10px;
    margin-top: 2rem;
}

h3.image{
    background: linear-gradient(135deg, #96232d 40%, #2a2e79 60%);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace;
}

/*FOOTER*/

footer{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 20px 50px;
    flex-direction: column;
    margin-top: 7%;
}

footer .social_icon,
footer .menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon li,
footer .menu li
{
    list-style: none;
}

footer .social_icon li a,
footer .menu li a
{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s; 
}

footer .social_icon li a:hover{
    transform: translateY(-10px);
    color: #ff4d29;;
}

footer .menu li a{
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover{
    opacity: 1;
    color: #ff4d29;;
}

footer p{
    color: #fff;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(wave.png);
    background-size: 1000px 100px;
}

footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animatewave 4s linear infinite;
}

footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animatewave_02 4s linear infinite;
}

footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animatewave 3s linear infinite;
}

footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animatewave_02 3s linear infinite;
}


@keyframes animatewave{
    0%{
        background-position-x: 1000px;
    }

    100%{
        background-position-x: 0px;
    }
}

@keyframes animatewave_02{
    0%{
        background-position-x: 0px;
    }

    100%{
        background-position-x: 1000px;
    }
}

section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
    color: #fff;
}