@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Handlee&family=Poppins&family=Roboto&family=Sigmar&family=Tangerine:wght@700&display=swap');

/*font-family: 'Courgette', cursive;
font-family: 'Handlee', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Sigmar', cursive;
font-family: 'Tangerine', cursive; */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.degree-info{
    width: 100%;
    max-width: 350px;
    margin-top: 15px;
    /* background: #0e7482; */
    box-shadow: 0 0 10px #0e7482;
    padding: 10px 15px;
    color: #064440;
    border-radius: 5px;
    border-left: 10px solid #0e7482;
    border-bottom: 10px solid #0e7482;
    font-size: 14px;
    text-transform: uppercase;
    text-align: left;
}
.degree-info i{
    margin-right: 10px;
}

.about-container {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 200px;
    column-gap: 30px;
}

.about-container::before {
    content: '';
    position: absolute;
    top: -100px;
    background: url('../images/wave-about2.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    z-index: -1;
}

.img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.about-heading {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 30px;
}

.about-heading span {
    font-size: 20px;
    background: #ffd073;
    padding: 5px 10px;
    border-radius: 3px;
}

.about-heading h1 {
    text-transform: lowercase;
    font-size: 54px;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
}

.about-heading p {
    font-size: 18px;
    letter-spacing: 1px;
}

.about-heading a {
    margin-top: 50px;
    text-decoration: none;
    font-size: 18px;
    background: #038e80;
    padding: 10px 28px;
    color: #fff;
    border-radius: 50px;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.about-heading a:hover {
    background: #01302b;

}

.img-wrapper img {
    max-width: 400px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: 3px solid #00fff2;
    border-right: 3px solid #00fff2;
}

section {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 200px;
    row-gap: 20px;
    min-height: 50vh;
}

#info {
    background: #eef0ff;
    width: 100%;

}

#info h2 {
    font-size: 30px
}

#info p {
    font-size: 18px;
    line-height: 26px;
    word-spacing: 5px;
}

#info a {
    text-decoration: none;
    text-transform: capitalize;
    border: 1px solid #120895;
    padding: 7px 15px;
    border-radius: 20px;
    color: #120895;
    transition: 0.4s ease-in-out;
}

#info a:hover {
    background: #01302b;
    color: #fff;
}

.box {
    width: 100%;
    max-width: 900px;
    background: #3298a3;
    padding: 20px 40px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 70px;
    margin: 0 auto;
    column-gap: 10px;

}

.box::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background: #bfe3e7;
    z-index: -1;
}

.box img {
    max-width: 400px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: 3px solid #00fff2;
    border-right: 3px solid #00fff2;
}

.box-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    color: #303;
}
.box-content h2{
    color: #dfedec;
    font-size: 30px;
    text-transform: capitalize;
}
.box-content p{
    color: #bbd8d7;
}
#box3 {
    position: relative;
    top: 100px;
    min-height: 100vh;
    flex-direction: row;
    column-gap: 20px;
}

#box3::before {
    content: '';
    position: absolute;
    background: url('../images/wave-box-3.png');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.box3-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    box-shadow: 0 0 4px #050a65cc;
    padding: 10px;
    border-radius: 4px;
}

.box3-content h2 {
    font-size: 34px;
    text-transform: capitalize;
    color: #038e80;
}

.boxbtn {
    text-decoration: none;
    font-size: 24px;
    text-transform: capitalize;
    padding: 6px 12px;
    background: #1bffec;
    color: #333;
    width: fit-content;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}

.boxbtn:hover {
    background: #2dc2b3;
    color: #fff;
}

.box3-content p b {
    font-size: 17px;
    text-transform: capitalize;
    color: #15776d;
}

.box3-content p {
    font-size: 16px;
    text-transform: capitalize;
}

#box3 img {
    max-width: 400px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: 3px solid #00fff2;
    border-right: 3px solid #00fff2;
}
@media (max-width:998px) {
    .about-container{
        flex-direction: column;
        padding: 40px 20px;
    } 
    .about-heading{
        width: 100%;
    }
    .img-wrapper{
        width: 100%;
    }
    
    #info{
        padding-left: 20px;
        padding-right: 20px;
    }
    .box{
        flex-direction: column;
        top: 0;
    }
    .box::after {
        left: 0;
        top: 50px;
    }
    #box3{
        flex-direction: column;
        padding: 40px 20px;
    }
    .box3-content{
        width: 100%;
       
    }
    #box3 img{
        position: relative;
       
        margin-bottom: 70px;
        /* border: 5px solid red; */
    }
}
@media (max-width:450px) {
    .img-wrapper img, .box img,  #box3 img{
        max-width: 300px;
    }
     
}