#body{
    background-color: #e1b6e3;
    margin: 0px;
}
/*for laptop having min-width 1200px*/
@media screen and (min-width:1200px){
    
#header{ /*for header background'*/
    background-color:#9d57c9 ;
    height: 120px;
    position: relative;
}
#main_heading{ /*for heading 'rise-up'*/
    position: absolute;
    top: 20px;
    left: 110px;
    color: #ffffff;
    font-family:inter,sans-serif;
    font-size: 50px;
    font-weight: bolder;
    text-shadow: 3px 5px 3px black;
}
#sub_heading{ /*for sub-heading*/
    position: absolute;
    left: 53px;
    top: 70px;   
    color: #ffffff;
    font-family: inter,sans-serif;
    font-size: 16px;
    text-shadow: 1px 3px 3px black;
}
#navbar{  /*for navbar background container*/
    position: absolute;
    max-width: 730px;
    height:55px;
    background-image: linear-gradient(to right ,#0B14FB,#FC5D5D,#0b13fb);
    top: 30px;
    right: 10px;
    border-radius: 10px;
    box-shadow: 2px 4px 3px black;
}
#navcontainer{ /*for making horizontal nav bar*/
    list-style-type: none;
    
}
#navcontainer li{
    display: inline;
    float: left;
}
#navcontainer li a{
    display:block;
    text-decoration: none;
    color: #ffffff;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    font-family: inter ,sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
   }
#navcontainer li a:hover{
    color: #33ff00;
    border-bottom: 2px solid #33ff00;
    text-shadow: 2px 5px 3px black;
}
#navcontainer li a:active{
    color: rgb(255, 255, 0);
    border-bottom: 2px solid rgb(255, 255, 0);
}
/*horizontal nav bar end here*/
/* for content*/
.content1{
    position: relative;
    max-width: 30%;
    height:300px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
    background-color: #ae8ab2;
   box-shadow: 3px 5px 3px black;
    border-radius: 30px 15px 30px 15px;
}
.content1 .content1_1{
    padding-top: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    font-family: inter,sans-serif;
    text-transform: uppercase;
    color:white;
}
.content1 .content1_2{
    font-size: 16px;
    width: 75%;
    margin: auto;
    text-align: left;
    color:white;
    text-transform: capitalize;
    font-family: inter,sans-serif;
}
/*style for aling three div in row*/
.box{
    position: relative;
    margin:15px;
   max-width: 100%;
   height: 300px;
   box-sizing: border-box;
}
.leftbox{
    width: 30%;
    height: 300px;
    position: absolute;
    left: 2%;
    text-align: center;
    background-color: #ae8ab2;
    box-shadow: 3px 5px 3px black;
    border-radius: 30px 15px 30px 15px;
}
.leftbox .leftbox_content_1{
    color:white;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-family: inter,sans-serif;
    text-transform: uppercase;
}
.leftbox .leftbox_content_2{
    color: white;
    font-size: 16px;
    width: 75%;
    margin: auto;
    text-align: left;
    text-transform: capitalize;
    font-family: inter,sans-serif;
}
.middlebox{
   width: 30%;
    height: 300px;
    position: absolute;
    left: 35%;
    text-align: center;
    background-color: #ae8ab2;
    box-shadow: 3px 5px 3px black;
    border-radius: 30px 15px 30px 15px;
}
.middlebox .middlebox_content_1{
    color:white;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-family: inter,sans-serif;
    text-transform: uppercase;
}
.middlebox .middlebox_content_2{
    font-size: 16px;
    width: 75%;
    margin: auto;
    text-align: left;
    text-transform: capitalize;
    font-family: inter,sans-serif; 
    color: white;
}
.rightbox{
    width: 30%;
    height: 300px;
    position: absolute;
    right:2%;
    text-align:center;
    background-color: #ae8ab2;
    box-shadow: 3px 5px 3px black;
    border-radius: 30px 15px 30px 15px;
}
.rightbox .rightbox_content_1{
    color:white;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-family: inter,sans-serif;
    text-transform: uppercase;
}
.rightbox .rightbox_content_2{
    font-size: 16px;
    width: 75%;
    margin: auto;
    text-align: left;
    text-transform: capitalize;
    font-family: inter,sans-serif; 
    color: white;
}
.extrainfo{
    background-color: #ae8ab2;
    width: 70%;
    height: 180px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 25px;
    box-sizing: border-box;
    box-shadow: 3px 5px 3px black;
    border-radius: 30px 15px 30px 15px;
    padding: 10px;
}
.extrainfo .extrainfo_content{
    font-size: 16px;
    width: 90%;
    margin: auto;
    text-align: center;
    text-transform: capitalize;
    font-family: inter,sans-serif; 
    color: white;
    padding-top:5px;
}
.extrainfo_content .a{
    text-decoration: none;
    color: rgb(54, 50, 50);
    font-weight: bold;
    transition: all 0.2s;
}
.extrainfo_content .a:hover{
    color: #dfe838;
    border-bottom: 2px solid #dfe838;
}
#footer{
    background-color:#9d57c9 ;
    height: 170px;
    position: relative;
}
.footer_1{
    background-color: inherit;
    color: white;
    width: 25%;
    position: absolute;
    height: 120px;
    left: 0%;
    box-sizing: border-box;
}
.f1{
    position: relative;
}
.f11{
    position: absolute;
    color: white;
    font-size: 16px;
    font-family: sans-serif;
    top: 15px;
    left: 7%;
    text-transform: uppercase;
}
.f12{
    position: absolute;
    color: white;
    font-family: sans-serif;
    top: 40px;
    left: 5%;
}
.f12 img{
    width: 40px;
    height: 40px;
}
.f12 a p{
    position: absolute;
    text-decoration: none;
    color: white;
    top:-5px;
    left:100%;
    padding-left: 10px;
}
.f12 p:hover{
    color: #33ff00;
}
.f13{
    position: absolute;
    color: white;
    font-family: sans-serif;
    top: 80px;
    left: 5%;
}
.f13 img{
    height: 35px;
    width: 35px;
}
.f13 a p{
    position: absolute;
    text-decoration: none;
    color: white;
    top:-5px;
    left:100%;
    padding-left: 10px;
}
.f13 p:hover{
    color: #33ff00;
}
.f14{
    position: absolute;
    color: white;
    font-family: sans-serif;
    top: 120px;
    left: 5%;  
}
.f14 img{
    height: 35px;
    width: 35px;
}
.f14 a p{
    position: absolute;
    text-decoration: none;
    color: white;
    top:-5px;
    left:100%;
    padding-left: 10px;
}
.f14 p:hover{
    color: #33ff00;
}
.footer_2{
    background-color:inherit;
    color: white;
    width: 20%;
    position: absolute;
    height: 120px;
    left: 25%;
    box-sizing: border-box;
}
.footer_3{
    width: 20%;
    position: absolute;
    height: 120px;
    left: 45%;
    color: white;
    box-sizing: border-box;
}
.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #ae8ab2;
    border: none;
    border-radius: 15px;
   box-shadow: 0 9px 3px #1d1c1c;
    margin-top: 40px;
    font-family: sans-serif;
    transition: all 0.1s;
    text-transform:uppercase;
}
  .button:hover{
    background-color: white;
    color: #ae8ab2;
}
.button:active {
    background-color: #ece4e4;
    box-shadow: 0 5px #1d1c1c;
    transform: translateY(4px);
  }
.footer_4{
    background-color: inherit;
    width: 35%;
    position: absolute;
    height: 120px;
    left: 65%;
    box-sizing: border-box;
}
.footer_41{ 
    list-style-type: none;
    
}
.footer_41 li{
    display: inline;
    float: left;
}
.footer_41 li a{
    display:block;
    text-decoration: none;
    color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    text-align: center;
    font-size: 18px;
    font-family: inter ,sans-serif;
    text-transform: capitalize;
   }
   .footer_41 li a:hover{
    color: #33ff00;
   }
}
/*for small laptops having min width 990px*/
@media screen and (min-width:990px) and (max-width:1200px){
    /*for header and nav*/
    #header{ /*for header background'*/
        background-color:#9d57c9 ;
        height: 120px;
        position: relative;
    }
    #main_heading{ /*for heading 'rise-up'*/
        position: absolute;
        top: 30px;
        left: 75px;
        color: #ffffff;
        font-family:inter,sans-serif;
        font-size: 42px;
        font-weight: bolder;
        text-shadow: 3px 5px 3px black;
    }
    #sub_heading{ /*for sub-heading*/
        position: absolute;
        left: 20px;
        top: 75px;   
        color: #ffffff;
        font-family: inter,sans-serif;
        font-size: 15px;
        text-shadow: 1px 3px 3px black;
    }
    #navbar{  /*for navbar background container*/
        position: absolute;
        max-width: 680px;
        height:45px;
        background-image: linear-gradient(to right ,#0B14FB,#FC5D5D,#0b13fb);
        top: 45px;
        right: 10px;
        border-radius: 10px;
        box-shadow: 2px 4px 3px black;
    }
    #navcontainer{ /*for making horizontal nav bar*/
        list-style-type: none;
        
    }
    #navcontainer li{
        display: inline;
        float: left;
    }
    #navcontainer li a{
        display:inline;
        text-decoration: none;
        color: #ffffff;
        padding-right: 18px;
        padding-left: 15px;
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        font-family: inter ,sans-serif;
        text-transform: uppercase;
        transition: all 0.3s;
        vertical-align: middle;
       }
    #navcontainer li a:hover{
        color: #33ff00;
        text-shadow: 2px 5px 3px black;
        border-bottom: 2px solid #33ff00;
    }
    #navcontainer li a:active{
        color: rgb(255, 255, 0);
        border-bottom: 2px solid rgb(255, 255, 0);
    }
    /*horizontal nav bar end here*/
    /* for content*/
    .content1{
        position: relative;
        max-width: 30%;
        height:300px;
        margin: auto;
        text-align: center;
        margin-top: 20px;
        background-color: #ae8ab2;
       box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .content1 .content1_1{
        padding-top: 20px;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        font-family: inter,sans-serif;
        text-transform: uppercase;
        color:white;
    }
    .content1 .content1_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        color:white;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
    /*style for aling three div in row*/
    .box{
        position: relative;
        margin:15px;
       max-width: 100%;
       height: 300px;
       box-sizing: border-box;
    }
    .leftbox{
        width: 30%;
        height: 300px;
        position: absolute;
        left: 2%;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .leftbox .leftbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .leftbox .leftbox_content_2{
        color: white;
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
    .middlebox{
       width: 30%;
        height: 300px;
        position: absolute;
        left: 35%;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .middlebox .middlebox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .middlebox .middlebox_content_2{
        font-size: 15px;
        width: 82%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .rightbox{
        width: 30%;
        height: 300px;
        position: absolute;
        right:2%;
        text-align:center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .rightbox .rightbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .rightbox .rightbox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .extrainfo{
        background-color: #ae8ab2;
        width: 75%;
        height: 170px;
        margin: auto;
        margin-top: 15px;
        margin-bottom: 25px;
        box-sizing: border-box;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
        padding: 10px;
    }
    .extrainfo .extrainfo_content{
        font-size: 15px;
        width: 95%;
        margin: auto;
        text-align: center;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
        padding-top:5px;
    }
    .extrainfo_content .a{
        text-decoration: none;
        color: rgb(54, 50, 50);
        font-weight: bold;
        transition: all 0.2s;
    }
    .extrainfo_content .a:hover{
        color: #dfe838;
        border-bottom: 2px solid #dfe838;
    }
    #footer{
        background-color:#9d57c9 ;
        height: 170px;
        position: relative;
    }
    .footer_1{
        background-color: inherit;
        color: white;
        width: 25%;
        position: absolute;
        height: 120px;
        left: 0%;
        box-sizing: border-box;
    }
    .f1{
        position: relative;
    }
    .f11{
        position: absolute;
        color: white;
        font-size: 15px;
        font-family: sans-serif;
        top: 15px;
        left: 7%;
        text-transform: uppercase;
    }
    .f12{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 40px;
        left: 5%;
    }
    .f12 img{
        width: 35px;
        height: 35px;
    }
    .f12 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 6px;
    }
    .f12 p:hover{
        color: #33ff00;
    }
    .f13{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 80px;
        left: 5%;
    }
    .f13 img{
        height: 35px;
        width: 35px;
    }
    .f13 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 6px;
    }
    .f13 p:hover{
        color: #33ff00;
    }
    .f14{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 120px;
        left: 5%;  
    }
    .f14 img{
        height: 35px;
        width: 35px;
    }
    .f14 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 6px;
    }
    .f14 p:hover{
        color: #33ff00;
    }
    .footer_2{
        background-color:inherit;
        color: white;
        width: 20%;
        position: absolute;
        height: 120px;
        left: 25%;
        box-sizing: border-box;
    }
    .footer_3{
        width: 20%;
        position: absolute;
        height: 120px;
        left: 45%;
        color: white;
        box-sizing: border-box;
    }
    .button {
        display: inline-block;
        padding: 12px 20px;
        font-size: 20px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: #fff;
        background-color: #ae8ab2;
        border: none;
        border-radius: 15px;
       box-shadow: 0 9px 3px #1d1c1c;
        margin-top: 40px;
        font-family: sans-serif;
        transition: all 0.1s;
        text-transform:uppercase;
    }
      .button:hover{
        background-color: white;
        color: #ae8ab2;
    }
    .button:active {
        background-color: #ece4e4;
        box-shadow: 0 5px #1d1c1c;
        transform: translateY(4px);
      }
    .footer_4{
        background-color: inherit;
        width: 35%;
        position: absolute;
        height: 120px;
        left: 65%;
        box-sizing: border-box;
    }
    .footer_41{ 
        list-style-type: none;
        
    }
    .footer_41 li{
        display: inline;
        float: left;
    }
    .footer_41 li a{
        display:block;
        text-decoration: none;
        color: #ffffff;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 5px;
        text-align: center;
        font-size: 16px;
        font-family: inter ,sans-serif;
        text-transform: capitalize;
       }
       .footer_41 li a:hover{
        color: #33ff00;
       }
}
/*for tabs and ipad min-width 760px*/
@media screen and (min-width:760px) and (max-width:990px){
       /*for header and nav*/
       #header{ /*for header background'*/
        background-color:#9d57c9 ;
        height: 140px;
        position: relative;
    }
    #main_heading{ /*for heading 'rise-up'*/
        position: absolute;
        top: 33px;
        left: 75px;
        color: #ffffff;
        font-family:inter,sans-serif;
        font-size: 40px;
        font-weight: bolder;
        text-shadow: 3px 5px 3px black;
    }
    #sub_heading{ /*for sub-heading*/
        position: absolute;
        left: 20px;
        top: 75px;   
        color: #ffffff;
        font-family: inter,sans-serif;
        font-size: 14px;
        text-shadow: 1px 3px 3px black;
    }
    #navbar{  /*for navbar background container*/
        position: absolute;
        right: 0px;
        width: 400px;
        height:140px;
        background-image: linear-gradient(to right ,#0B14FB,#FC5D5D,#0b13fb);
        box-sizing: border-box;
    }
    #navcontainer{ /*for making horizontal nav bar*/
        list-style-type: none;
        
    }
    #navcontainer li a{
        display:block;
        padding: 4px;
        text-decoration: none;
        color: #ffffff;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        font-family: inter ,sans-serif;
        text-transform: uppercase;
        transition: all 0.3s;
       }
    #navcontainer li a:hover{
        color: #33ff00;
        text-shadow: 2px 5px 3px black;
        text-decoration-line: underline;
    }
    #navcontainer li a:active{
        color: rgb(255, 255, 0);
        border-bottom: 2px solid rgb(255, 255, 0);
    }
    /*horizontal nav bar end here*/
     /* for content*/
     .content1{
        position: relative;
        max-width: 50%;
        height:300px;
        margin: auto;
        text-align: center;
        margin-top: 20px;
        background-color: #ae8ab2;
       box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .content1 .content1_1{
        padding-top: 20px;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        font-family: inter,sans-serif;
        text-transform: uppercase;
        color:white;
    }
    .content1 .content1_2{
        font-size: 15px;
        width: 70%;
        margin: auto;
        text-align: left;
        color:white;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
    /*style for aling three div in row*/
    .box{
        position: relative;
        margin:15px;
       max-width: 100%;
       height: 620px;
       box-sizing: border-box;
    }
    .leftbox{
        width: 45%;
        left: 3%;
        top: 320px;
        height: 300px;
        position: absolute;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .leftbox .leftbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .leftbox .leftbox_content_2{
        color: white;
        font-size: 15px;
        width: 70%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
    .middlebox{
       width: 50%;
        height: 300px;
        position: absolute;
        left: 25%;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .middlebox .middlebox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .middlebox .middlebox_content_2{
        font-size: 15px;
        width: 70%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .rightbox{
        width: 45%;
        height: 300px;
        position: absolute;
        right:3%;
        top: 320px;
        text-align:center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .rightbox .rightbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .rightbox .rightbox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .extrainfo{
        background-color: #ae8ab2;
        width: 85%;
        height: 180px;
        margin: auto;
        margin-top: 15px;
        margin-bottom: 15px;
        box-sizing: border-box;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
        padding: 10px;
    }
    .extrainfo .extrainfo_content{
        font-size: 14px;
        width: 95%;
        margin: auto;
        text-align: center;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
        padding-top:5px;
    }
    .extrainfo_content .a{
        text-decoration: none;
        color: rgb(54, 50, 50);
        font-weight: bold;
        transition: all 0.2s;
    }
    .extrainfo_content .a:hover{
        color: #dfe838;
        border-bottom: 2px solid #dfe838;
    }
    #footer{
        background-color:#9d57c9 ;
        height: 170px;
        position: relative;
    }
    .footer_1{
        background-color: inherit;
        color: white;
        width: 30%;
        position: absolute;
        height: 120px;
        left: 0%;
        box-sizing: border-box;
    }
    .f1{
        position: relative;
    }
    .f11{
        position: absolute;
        color: white;
        font-size: 15px;
        font-family: sans-serif;
        top: 15px;
        left: 5%;
        text-transform: uppercase;
    }
    .f12{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 40px;
        left: 3%;
    }
    .f12 img{
        width: 35px;
        height: 35px;
    }
    .f12 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size:14px;
    }
    .f12 p:hover{
        color: #33ff00;
    }
    .f13{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 80px;
        left: 3%;
    }
    .f13 img{
        height: 35px;
        width: 35px;
    }
    .f13 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 14px;
    }
    .f13 p:hover{
        color: #33ff00;
    }
    .f14{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 120px;
        left: 3%;  
    }
    .f14 img{
        height: 35px;
        width: 35px;
    }
    .f14 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 14px;
    }
    .f14 p:hover{
        color: #33ff00;
    }
    .footer_2{
        background-color:inherit;
        color: white;
        width: 25%;
        position: absolute;
        height: 120px;
        left: 30%;
        box-sizing: border-box;
    }
    .footer_3{
        width: 22%;
        position: absolute;
        height: 120px;
        left: 52%;
        color: white;
        box-sizing: border-box;
    }
    .button {
        display: inline-block;
        padding: 10px 16px;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: #fff;
        background-color: #ae8ab2;
        border: none;
        border-radius: 15px;
       box-shadow: 0 9px 3px #1d1c1c;
        margin-top: 40px;
        font-family: sans-serif;
        transition: all 0.1s;
        text-transform:uppercase;
    }
      .button:hover{
        background-color: white;
        color: #ae8ab2;
    }
    .button:active {
        background-color: #ece4e4;
        box-shadow: 0 5px #1d1c1c;
        transform: translateY(4px);
      }
    .footer_4{
        background-color: inherit;
        width: 26%;
        position: absolute;
        height: 120px;
        left: 74%;
        box-sizing: border-box;
    }
    .footer_41{ 
        list-style-type: none;
        
    }
    .footer_41 li a{
        display:block;
        text-decoration: none;
        color: #ffffff;
        padding-left: 1px;
        padding-right: 1px;
        padding-bottom: 8px;
        text-align: left;
        font-size: 15px;
        font-family: inter ,sans-serif;
        text-transform: capitalize;
       }
       .footer_41 li a:hover{
        color: #33ff00;
       }
}
/*for small tabs min width 550px*/
@media screen and (min-width:550px) and (max-width:760px){
      /*for header and nav*/
      #header{ /*for header background'*/
        background-color:#9d57c9 ;
        height: 140px;
        position: relative;
    }
    #main_heading{ /*for heading 'rise-up'*/
        position: absolute;
        top: 34px;
        left: 75px;
        color: #ffffff;
        font-family:inter,sans-serif;
        font-size: 38px;
        font-weight: bolder;
        text-shadow: 3px 5px 3px black;
    }
    #sub_heading{ /*for sub-heading*/
        position: absolute;
        left: 20px;
        top: 75px;   
        color: #ffffff;
        font-family: inter,sans-serif;
        font-size: 13px;
        text-shadow: 1px 3px 3px black;
    }
    #navbar{  /*for navbar background container*/
        position: absolute;
        right: 0px;
        width: 245px;
        height:140px;
        background-image: linear-gradient(to right ,#0B14FB,#FC5D5D,#0b13fb);
        box-sizing: border-box;
    }
    #navcontainer{ /*for making horizontal nav bar*/
        list-style-type: none;
    }
    #navcontainer li a{
        display:block;
        padding: 4px;
        text-decoration: none;
        color: #ffffff;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        font-family: inter ,sans-serif;
        text-transform: uppercase;
        transition: all 0.3s;
       }
    #navcontainer li a:hover{
        color: #33ff00;
        text-shadow: 2px 5px 3px black;
        text-decoration-line: underline;
    }
    #navcontainer li a:active{
        color: rgb(255, 255, 0);
        border-bottom: 2px solid rgb(255, 255, 0);
    }
    /*horizontal nav bar end here*/
       /* for content*/
       .content1{
        position: relative;
        max-width: 60%;
        height:300px;
        margin: auto;
        text-align: center;
        margin-top: 20px;
        background-color: #ae8ab2;
       box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
        box-sizing: border-box;
    }
    .content1 .content1_1{
        padding-top: 20px;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        font-family: inter,sans-serif;
        text-transform: uppercase;
        color:white;
    }
    .content1 .content1_2{
        font-size: 15px;
        width: 70%;
        margin: auto;
        text-align: left;
        color:white;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
       /*style for aling three div in row*/
       .box{
        position: relative;
        margin:15px;
       max-width: 100%;
       height: 940px;
       box-sizing: border-box;
    }
    .leftbox{
        width: 60%;
        left: 20%;
        top: 320px;
        height: 300px;
        position: absolute;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .leftbox .leftbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .leftbox .leftbox_content_2{
        color: white;
        font-size: 15px;
        width: 70%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
    .middlebox{
       max-width: 60%;
        height: 300px;
        position: absolute;
        left: 20%;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .middlebox .middlebox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .middlebox .middlebox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .rightbox{
        width: 60%;
        height: 300px;
        position: absolute;
        left:20%;
        top: 640px;
        text-align:center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .rightbox .rightbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .rightbox .rightbox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .extrainfo{
        background-color: #ae8ab2;
        width: 90%;
        height: 180px;
        margin: auto;
        margin-top: 15px;
        margin-bottom: 15px;
        box-sizing: border-box;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
        padding: 10px;
    }
    .extrainfo .extrainfo_content{
        font-size: 14px;
        width: 95%;
        margin: auto;
        text-align: center;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
        padding-top:5px;
    }
    .extrainfo_content .a{
        text-decoration: none;
        color: rgb(54, 50, 50);
        font-weight: bold;
        transition: all 0.2s;
    }
    .extrainfo_content .a:hover{
        color: #dfe838;
        border-bottom: 2px solid #dfe838;
    }
    #footer{
        background-color:#9d57c9 ;
        height: 210px;
        position: relative;
    }
    .footer_1{
        background-color: inherit;
        color: white;
        width: 35%;
        position: absolute;
        height: 120px;
        left: 0%;
        box-sizing: border-box;
    }
    .f1{
        position: relative;
    }
    .f11{
        position: absolute;
        color: white;
        font-size: 15px;
        font-family: sans-serif;
        top: 15px;
        left: 5%;
        text-transform: uppercase;
    }
    .f12{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 40px;
        left: 3%;
    }
    .f12 img{
        width: 38px;
        height: 38px;
    }
    .f12 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size:15px;
    }
    .f12 p:hover{
        color: #33ff00;
    }
    .f13{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 80px;
        left: 3%;
    }
    .f13 img{
        height: 38px;
        width: 38px;
    }
    .f13 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 15px;
    }
    .f13 p:hover{
        color: #33ff00;
    }
    .f14{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 120px;
        left: 3%;  
    }
    .f14 img{
        height: 38px;
        width: 38px;
    }
    .f14 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 15px;
    }
    .f14 p:hover{
        color: #33ff00;
    }
    .footer_2{
        background-color:inherit;
        color: white;
        width: 30%;
        position: absolute;
        height: 120px;
        right: 0%;
        box-sizing: border-box;
    }
    .footer_3{
        width: 35%;
        position: absolute;
        height: 120px;
        left: 35%;
        color: white;
        box-sizing: border-box;
        margin-left:30px;
        margin-top: 30px;
    }
    .button {
        display: inline-block;
        padding: 10px 16px;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: #fff;
        background-color: #ae8ab2;
        border: none;
        border-radius: 15px;
       box-shadow: 0 9px 3px #1d1c1c;
        margin-top: 40px;
        font-family: sans-serif;
        transition: all 0.1s;
        text-transform:uppercase;
    }
      .button:hover{
        background-color: white;
        color: #ae8ab2;
    }
    .button:active {
        background-color: #ece4e4;
        box-shadow: 0 5px #1d1c1c;
        transform: translateY(4px);
      }
      
    .footer_4{
        background-color:inherit;
        width: 60%;
        position: absolute;
        height: 50px;
        left: 20%;
        top: 160px;
        box-sizing: border-box;
    }
    .footer_41{ 
        list-style-type: none;
    }
    .footer_41 li{
        display: inline;
        float: left;
    }
    .footer_41 li a{
        display:block;
        text-decoration: none;
        color: #ffffff;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 8px;
        text-align: center;
        font-size: 15px;
        font-family: inter ,sans-serif;
        text-transform: capitalize;
       }
       .footer_41 li a:hover{
        color: #33ff00;
       }
}
@media screen and (min-width:420px) and (max-width:550px){
     /*for header and nav*/
     #header{ /*for header background'*/
        background-color:#9d57c9 ;
        height: 215px;
        position: relative;
    }
    #main_heading{ /*for heading 'rise-up'*/
        position: absolute;
        top: 5px;
        left:30%;
        right: 30%;
        width:40%;
        color: #ffffff;
        font-family:inter,sans-serif;
        font-size: 38px;
        font-weight: bolder;
        text-shadow: 3px 5px 3px black;
    }
    #sub_heading{ /*for sub-heading*/
        position: absolute;
        width: 70%;
        left: 15%;
        right: 15%;
        top: 45px;   
        color: #ffffff;
        font-family: inter,sans-serif;
        font-size: 14px;
        text-shadow: 1px 3px 3px black;
    }
    #navbar{  /*for navbar background container*/
        position: absolute;
        right: 0px;
        width: 100%;
        height:140px;
        top: 75px;
        background-image: linear-gradient(to right ,#0B14FB,#FC5D5D,#0b13fb);
        box-sizing: border-box;
    }
    #navcontainer{ /*for making horizontal nav bar*/
        list-style-type: none;
    }
    #navcontainer li a{
        display:block;
        padding: 4px;
        padding-left: 30px;
        padding-right: 60px;
        text-decoration: none;
        color: #ffffff;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        font-family: inter ,sans-serif;
        text-transform: uppercase;
        transition: all 0.3s;
       }
    #navcontainer li a:hover{
        color: #33ff00;
        text-shadow: 2px 5px 3px black;
        text-decoration-line: underline;
    }
    #navcontainer li a:active{
        color: rgb(255, 255, 0);
        border-bottom: 2px solid rgb(255, 255, 0);
    }
    /*horizontal nav bar end here*/
        /* for content*/
        .content1{
            position: relative;
            max-width: 80%;
            height:300px;
            margin: auto;
            text-align: center;
            margin-top: 20px;
            background-color: #ae8ab2;
           box-shadow: 3px 5px 3px black;
            border-radius: 30px 15px 30px 15px;
            box-sizing: border-box;
        }
        .content1 .content1_1{
            padding-top: 20px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            font-family: inter,sans-serif;
            text-transform: uppercase;
            color:white;
        }
        .content1 .content1_2{
            font-size: 15px;
            width: 70%;
            margin: auto;
            text-align: left;
            color:white;
            text-transform: capitalize;
            font-family: inter,sans-serif;
        }
         /*style for aling three div in row*/
       .box{
        position: relative;
        margin:15px;
       max-width: 100%;
       height: 940px;
       box-sizing: border-box;
    }
    .leftbox{
        width: 80%;
        left: 10%;
        top: 320px;
        height: 300px;
        position: absolute;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .leftbox .leftbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .leftbox .leftbox_content_2{
        color: white;
        font-size: 15px;
        width: 70%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
    .middlebox{
       max-width: 80%;
        height: 300px;
        position: absolute;
        left: 10%;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .middlebox .middlebox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .middlebox .middlebox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .rightbox{
        width: 80%;
        height: 300px;
        position: absolute;
        left:10%;
        top: 640px;
        text-align:center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .rightbox .rightbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .rightbox .rightbox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .extrainfo{
        background-color: #ae8ab2;
        width: 95%;
        margin: auto;
        height: 210px;
        margin-top: 15px;
        margin-bottom: 15px;
        box-sizing: border-box;
        border-radius: 10px;
        box-shadow: 2px 4px 3px black;
        padding: 10px;
    }
    .extrainfo .extrainfo_content{
        font-size: 14px;
        width: 100%;
        margin: auto;
        text-align: center;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
        padding-top:4px;
    }
    .extrainfo_content .a{
        text-decoration: none;
        color: rgb(54, 50, 50);
        font-weight: bold;
        transition: all 0.2s;
    }
    .extrainfo_content .a:hover{
        color: #dfe838;
        border-bottom: 2px solid #dfe838;
    }
    #footer{
        background-color:#9d57c9 ;
        height: 260px;
        position: relative;
    }
    .footer_1{
        background-color: inherit;
        color: white;
        width: 35%;
        position: absolute;
        height: 160px;
        left: 0%;
        top: 50px;
        box-sizing: border-box;
    }
    .f1{
        position: relative;
    }
    .f11{
        position: absolute;
        color: white;
        font-size: 15px;
        font-family: sans-serif;
        top: 15px;
        left: 5%;
        text-transform: uppercase;
    }
    .f12{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 40px;
        left: 3%;
    }
    .f12 img{
        width: 38px;
        height: 38px;
    }
    .f12 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size:15px;
    }
    .f12 p:hover{
        color: #33ff00;
    }
    .f13{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 80px;
        left: 3%;
    }
    .f13 img{
        height: 38px;
        width: 38px;
    }
    .f13 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 15px;
    }
    .f13 p:hover{
        color: #33ff00;
    }
    .f14{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 120px;
        left: 3%;  
    }
    .f14 img{
        height: 38px;
        width: 38px;
    }
    .f14 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 15px;
    }
    .f14 p:hover{
        color: #33ff00;
    }
    .footer_2{
        background-color:inherit;
        color: white;
        width: 30%;
        position: absolute;
        height: 160px;
        left: 65%;
        top: 50px;
        box-sizing: border-box;
    }
    .footer_3{
        width: 40%;
        position: absolute;
        height: 50px;
        left: 30%;
        top:2px;
        color: white;
        box-sizing: border-box;
    }
    .button {
        display: inline-block;
        padding: 10px 16px;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: #fff;
        background-color: #ae8ab2;
        border: none;
        border-radius: 15px;
       box-shadow: 0 9px 3px #1d1c1c;
        margin-top: 10px;
        font-family: sans-serif;
        transition: all 0.1s;
        text-transform:uppercase;
    }
      .button:hover{
        background-color: white;
        color: #ae8ab2;
    }
    .button:active {
        background-color: #ece4e4;
        box-shadow: 0 5px #1d1c1c;
        transform: translateY(4px);
      }
      
    .footer_4{
        background-color:inherit;
        width: 100%;
        position: absolute;
        height: 50px;
        top: 210px;
        box-sizing: border-box;
    }
    .footer_41{ 
        list-style-type: none;
    }
    .footer_41 li{
        display: inline;
        float: left;
    }
    .footer_41 li a{
        display:block;
        text-decoration: none;
        color: #ffffff;
        padding-left: 30px;
        padding-right: 20px;
        padding-bottom: 8px;
        text-align: center;
        font-size: 15px;
        font-family: inter ,sans-serif;
        text-transform: capitalize;
       }
       .footer_41 li a:hover{
        color: #33ff00;
       }
}
@media screen and (max-width:420px){
      /*for header and nav*/
      #header{ /*for header background'*/
        background-color:#9d57c9 ;
        height: 215px;
        position: relative;
    }
    #main_heading{ /*for heading 'rise-up'*/
        position: absolute;
        top: 5px;
        left:32%;
        width:50%;
        color: #ffffff;
        font-family:inter,sans-serif;
        font-size: 38px;
        font-weight: bolder;
        text-shadow: 3px 5px 3px black;
    }
    #sub_heading{ /*for sub-heading*/
        position: absolute;
        width: 80%;
        left: 13%;
        top: 45px;   
        color: #ffffff;
        font-family: inter,sans-serif;
        font-size: 14px;
        text-shadow: 1px 3px 3px black;
    }
    #navbar{  /*for navbar background container*/
        position: absolute;
        right: 0px;
        width: 100%;
        height:140px;
        top: 75px;
        background-image: linear-gradient(to right ,#0B14FB,#FC5D5D,#0b13fb);
        box-sizing: border-box;
    }
    #navcontainer{ /*for making horizontal nav bar*/
        list-style-type: none;
    }
    #navcontainer li a{
        display:block;
        padding: 4px;
        padding-left: 30px;
        padding-right: 60px;
        text-decoration: none;
        color: #ffffff;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        font-family: inter ,sans-serif;
        text-transform: uppercase;
        transition: all 0.3s;
       }
    #navcontainer li a:hover{
        color: #33ff00;
        text-shadow: 2px 5px 3px black;
        text-decoration-line: underline;
    }
    #navcontainer li a:active{
        color: rgb(255, 255, 0);
        border-bottom: 2px solid rgb(255, 255, 0);
    }
    /*horizontal nav bar end here*/
      /* for content*/
      .content1{
        position: relative;
        max-width: 80%;
        height:300px;
        margin: auto;
        text-align: center;
        margin-top: 20px;
        background-color: #ae8ab2;
       box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
        box-sizing: border-box;
    }
    .content1 .content1_1{
        padding-top: 20px;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        font-family: inter,sans-serif;
        text-transform: uppercase;
        color:white;
    }
    .content1 .content1_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        color:white;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
     /*style for aling three div in row*/
      /*style for aling three div in row*/
      .box{
        position: relative;
        margin:15px;
       max-width: 100%;
       height: 940px;
       box-sizing: border-box;
    }
    .leftbox{
        width: 80%;
        left: 10%;
        top: 320px;
        height: 300px;
        position: absolute;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .leftbox .leftbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .leftbox .leftbox_content_2{
        color: white;
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif;
    }
    .middlebox{
       max-width: 80%;
        height: 300px;
        position: absolute;
        left: 10%;
        text-align: center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .middlebox .middlebox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .middlebox .middlebox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .rightbox{
        width: 80%;
        height: 300px;
        position: absolute;
        left:10%;
        top: 640px;
        text-align:center;
        background-color: #ae8ab2;
        box-shadow: 3px 5px 3px black;
        border-radius: 30px 15px 30px 15px;
    }
    .rightbox .rightbox_content_1{
        color:white;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        font-family: inter,sans-serif;
        text-transform: uppercase;
    }
    .rightbox .rightbox_content_2{
        font-size: 15px;
        width: 80%;
        margin: auto;
        text-align: left;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
    }
    .extrainfo{
        background-color: #ae8ab2;
        width: 95%;
        margin: auto;
        height: 220px;
        margin-top: 15px;
        margin-bottom: 15px;
        box-sizing: border-box;
        border-radius: 10px;
        box-shadow: 2px 4px 3px black;
        padding: 10px;
    }
    .extrainfo .extrainfo_content{
        font-size: 14px;
        width: 100%;
        margin: auto;
        text-align: center;
        text-transform: capitalize;
        font-family: inter,sans-serif; 
        color: white;
        padding-top:4px;
    }
    .extrainfo_content .a{
        text-decoration: none;
        color: rgb(54, 50, 50);
        font-weight: bold;
        transition: all 0.2s;
    }
    .extrainfo_content .a:hover{
        color: #dfe838;
        border-bottom: 2px solid #dfe838;
    }
    #footer{
        background-color:#9d57c9 ;
        height: 280px;
        position: relative;
    }
    .footer_1{
        background-color: inherit;
        color: white;
        width: 35%;
        position: absolute;
        height: 160px;
        left: 0%;
        top: 60px;
        box-sizing: border-box;
    }
    .f1{
        position: relative;
    }
    .f11{
        position: absolute;
        color: white;
        font-size: 15px;
        font-family: sans-serif;
        top: 15px;
        left: 5%;
        text-transform: uppercase;
    }
    .f12{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 40px;
        left: 3%;
    }
    .f12 img{
        width: 38px;
        height: 38px;
    }
    .f12 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size:15px;
    }
    .f12 p:hover{
        color: #33ff00;
    }
    .f13{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 80px;
        left: 3%;
    }
    .f13 img{
        height: 38px;
        width: 38px;
    }
    .f13 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 15px;
    }
    .f13 p:hover{
        color: #33ff00;
    }
    .f14{
        position: absolute;
        color: white;
        font-family: sans-serif;
        top: 120px;
        left: 3%;  
    }
    .f14 img{
        height: 38px;
        width: 38px;
    }
    .f14 a p{
        position: absolute;
        text-decoration: none;
        color: white;
        top:-7px;
        left:100%;
        padding-left: 4px;
        font-size: 15px;
    }
    .f14 p:hover{
        color: #33ff00;
    }
    .footer_2{
        background-color:inherit;
        color: white;
        width: 30%;
        position: absolute;
        height: 160px;
        left: 65%;
        top: 60px;
        box-sizing: border-box;
    }
    .footer_3{
        width: 40%;
        position: absolute;
        height: 50px;
        left: 32%;
        top:2px;
        color: white;
        box-sizing: border-box;
    }
    .button {
        display: inline-block;
        padding: 10px 16px;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: #fff;
        background-color: #ae8ab2;
        border: none;
        border-radius: 15px;
       box-shadow: 0 9px 3px #1d1c1c;
        margin-top: 10px;
        font-family: sans-serif;
        transition: all 0.1s;
        text-transform:uppercase;
    }
      .button:hover{
        background-color: white;
        color: #ae8ab2;
    }
    .button:active {
        background-color: #ece4e4;
        box-shadow: 0 5px #1d1c1c;
        transform: translateY(4px);
      }
      
    .footer_4{
        background-color:inherit;
        width: 100%;
        position: absolute;
        height: 50px;
        top: 230px;
        box-sizing: border-box;
    }
    .footer_41{ 
        list-style-type: none;
    }
    .footer_41 li{
        display: inline;
        float: left;
    }
    .footer_41 li a{
        display:block;
        text-decoration: none;
        color: #ffffff;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 8px;
        text-align: center;
        font-size: 15px;
        font-family: inter ,sans-serif;
        text-transform: capitalize;
       }
       .footer_41 li a:hover{
        color: #33ff00;
       }
}