@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Mooli&family=Vina+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-style: normal;
}
.hide{
    display: none;
}
section{
    width: 100%;
    padding: 1% 10%;
    background-color: rgb(235, 233, 233);
}
nav{
  display: flex;
  justify-content: center;  
}
.our-full-courses-image-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 30vh;
    background-image: url('/image/Our-full-courses.jpg');
    background-size: cover;
    background-position: center;
}

.our-full-courses-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.our-full-courses-image-overlay h1{
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    font-size: 60px;
    font-weight: 900;
}
.checkout-page{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 5%;
}
.checkout-page form{
    padding: 3%;
    width: 60%;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.checkout-page form label{
    width: 30%;
    text-align: left;
    font-size: 30px;
    margin-top: 15px;

}
.checkout-page form input,
.checkout-page form select{
    width: 65%;
    margin-top: 16px;
    font-size: 22px;
    padding: 5px;
}
.checkout-page form input[type="submit"]{
    width: 30%;
    cursor: pointer;
    background-color: rgb(59, 22, 161);
    color: white;
    border: 1px solid white;
}
.checkout-page form input[type="submit"]:hover{
    color: rgb(59, 22, 161);
    background-color: white;
    border: 1px solid rgb(59, 22, 161);
}

.checkout-page div{
    width: 35%;
    background-color: white;
    padding: 3%;
    text-align: center;
}
.checkout-page div h2{
    font-weight: 700;
    font-size: 30px;
    padding: 10px 0;
    border-bottom: 5px double rgb(59, 22, 161);
}
.checkout-page div h3{
    font-weight: 700;
    font-size: 25px;
    padding-top: 20px;
	text-align:left;
}
.inter-checkout-page{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-evenly;
	padding:0 5%;
}
.paypal{
    width: 60%;
    font-size: 30px;
    padding: 0 5%;
	padding-top: 2%;
	background-color:white;
}
.paypal-image{
    width:30%
}
.paypal-image img{
    width: 100%; 
}
/* Error message */
.error-message{
    text-align: center;
    background-color: white;
}
.error-message p,.error-message h3{
    font-size: 25px;
    padding: 5px 0;
}
.error-message  a{
    color: white;
    text-decoration: none;
    margin: 0 20px;
    padding: 10px 20px;
    display: inline-block; /* Required for the transform to work properly */
    transition: transform 0.3s ease; /* Smooth transition effect */
}

.error-message a:hover {
    transform: scale(1.2); /* Scale to 1.2 times the original size */
}


