@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prosto+One&display=swap');


/* ######################################################## Main CSS ############################################### */

body{
    font-family: 'poppins',Arial, Helvetica, sans-serif;
}
::selection {
    background-color: #07A5F4;
    color: #ffffff;  
  }


/* ###################################################### Utility CSS ############################################ */


/* text */
.primary-txt{
    color: black;
}
.secondary-txt{
    color: #07A5F4;
}
.tertiary-txt{
    color: #fff;
}
.fourth-txt{
    color: #8C8C8C;
}


/* Background */
.primary-bg{
    background: #fff;
}
.secondary-bg{
    background: #F4FBFF;
}
.tertiary-bg{
    background: #07A5F4;
}
.fourth-bg{
    background: #F3F5F6;
}

.fifth-bg{
    background: #FF5D5D;
}

.sixth-bg{
    background: #E5F7FF;
}

.footer-01-bg{
    background: #02354F;
}

.footer-02-bg{
    background: #0D557A;
}

.transparent-bg {
    background-color: transparent 
}



/* Buttons */
.btn-primary-btn{
    background:#07A5F4;
    color: #fff;
    border: #07A5F4 1px solid;
}
.btn-primary-btn:hover{
    color:#07A5F4;
    background:transparent;
    border: #07A5F4 1px solid;
}

.btn-secondary-btn{
    background:#FFFFFF;
    color: #000;
    border: #FFFFFF 1px solid;
}
.btn-secondary-btn:hover{
    color:#000;
    background: transparent;
    border: #FFFFFF 1px solid;
}

.btn-tertiary-btn{
    background:#424343;
    color: #fff;
    border: #424343 1px solid;
}

.btn-tertiary-btn:hover{
    color:#424343;
    background: transparent;
    border: #424343 1px solid;
}


/* Outline Buttons */
.btn-outline-primary-btn{
    color: #07A5F4;
    border: #07A5F4 1px solid;
    background: #fff;
}

.btn-outline-primary-btn:hover{
    color: #fff;
    border: #07A5F4 1px solid;
    background: #07A5F4;
}

.border-card{
    border: 1px solid #ddd;
}

.border-card:hover{
    border: 2px solid #07A5F4;
}

/* border */
.primary-border{
    border: 2px #07A5F4 solid;
}

.custom-input {
    border: none; 
    border-bottom: 2px solid #07A5F4;
    border-radius: 0;
    box-shadow: none; 
  }

.custom-input:focus {
    border-bottom-color: #07A5F4;
    outline: none; 
    box-shadow: none; 
  }



/* footer css  */


/* footer css */

.footer {
    background-color: #003c5c;
    color: white;
    padding: 20px 0;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;

}

.footer ul li a {
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 3px;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #07A5F4;
}

.footer .social-icons a {
    font-size: 25px;
    background: #fff;
    color: #003c5c;
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    color: #07A5F4;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    color: #ebebeb;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 995px) {
    .footer .img-fluid {
        width: 200px; /* Adjust image width */
        height: 45px; /* Adjust image height */
    }
}