@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Red Hat Display", sans-serif;
}

p {
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
}

.banner {
    width: 100%;
    position: relative;
}

.banner img {
    width: 100%;
}

.banner::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: transparent url('../img/background.png') 0% 0% no-repeat padding-box;
}

.content {
    max-width: 700px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    color: white;
    transform: translate(-50%, -50%);
}

.content p {
    margin: 0;
    padding: 20px 0px;
}

.content h2 {
    font-size: 34px;
    font-weight: bold;
    text-align: center;
}

.f-heading {
    padding-bottom: 35px;
    text-align: center;
}

.f-heading h2 {
    text-align: center;
    color: #242F59;
    font-size: 22px;
    font-weight: 500;
}

.f-heading p {
    font-size: 15px;
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: #242F59;
}

footer {
    padding: 50px 0px;
    background-color: #fff;
}

.top {
    margin-left: -65px;
}

.btm {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 20px;
}

.btm a {
    text-decoration: none;
    font-size: 15px;
    color: #242F59;
}

.btm p {
    font-size: 15px;
    margin: 0;
    padding: 3px 0px;
}

.btm h2 {
    font-size: 18px;
}

.btm .left h2 span {
    font-weight: bold;
}

.btm h6 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
    color: #242F59;
}

address {
    margin: 0;
    padding: 10px 0px;
}


/*======================================== 
    Radio Css Start Here
/*========================================*/

.select_cate {
    padding: 70px 0;
}

.middle {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin:auto;
}

.middle .box {
    width: 100%;
    height: 120px;
    background-color: #fff;
    transition: all 250ms ease;
    will-change: transition;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-weight: 900;
    text-align: center;
    border-radius: 10px;
}

.middle i {
    /* position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; */
    font-size: 36px;
    max-height: 70px;
    color: #0077fd;
    margin-bottom: 15px;
}

.middle .box span {
    /* position: absolute;
    transform: translate(0, 50px);
    left: 0;
    right: 0; */
    transition: all 300ms ease;
    font-size: 15px;
    user-select: none;
    color: #2a3e64;
    text-transform: uppercase;
}

.middle label {
    width: 30%;
    border: 1px solid #ddd;
}

.middle input[type="radio"] {
    display: none;
}

input[type="radio"], input[type="checkbox"] {
    width: auto;
    height: auto;
}

.middle input[type="radio"]:checked+.box {
    background-color: #0077fd;
    color: #fff;
}

.middle input[type="radio"]:checked+.box i {
    color: #fff;
}

.middle input[type="radio"]:checked+.box span {
    color: white;
    /* transform: translateY(45px);
    -webkit-transform: translateY(45px);
    -moz-transform: translateY(45px);
    -ms-transform: translateY(45px);
    -o-transform: translateY(45px); */
}

/* .middle .box span:before {
    font-family: FontAwesome;
    display: block;
    transform: translateY(-80px);
    opacity: 0;
    transition: all 300ms ease-in-out;
    font-weight: normal;
    color: white;
    -webkit-transform: translateY(-80px);
    -moz-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.middle .back-end span:before {
    content: '\f0f4';
} */