*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Tilt+Prism&display=swap');

@media(min-width:1201px){
    /* -----------------Styling the navigation menu-------------------- */

        /* ----------------------for laptop view------------------ */

    .navigation{
        height: 80px;
        width: 100%;
        background-color: black;
        display: flex;
        /* align-items: center; */
        justify-content: center;
    }
    .navigation>header{
        display: flex;
        width: 80%;
        height: 80px;
    }
    .navigation>header>.icon{
        height: 80px;
        width: 50%;
        display: flex;
        align-items: center;
        
    }
    .navigation>header>.icon>a{
        text-decoration: none;
        color: rgb(235, 23, 23);
        font-size: 20px;
        letter-spacing: 2px;
        font-family: 'Tilt Prism', cursive;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navigation>header>.icon>a>img{
        margin-right: 10px;
    }
    
    
    .navigation>header>.menu{
        width: 50%;
        /* border: 2px solid blue; */
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }
    .navigation>header>.menu>a{
        text-decoration: none;
        color: white;
        font-size: 15px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    .navigation>header>.menu>a:hover{
        color: rgb(235, 52, 52);
    }
    .topnav{
        display: none;
    }

/*---------- -----------------------disinging content1------------------- */
    #content1{
        height: 80vh;
        width: 100%;
        background: url(./images/bubbles-dktp.svg),linear-gradient(-45deg, rgb(108,14,224),rgb(240,55,166));
        background-repeat: no-repeat;
        background-position: 100%;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    #content1>article{
        display: flex;
        width: 70%;
        height: 80%;
    
    }
    #content1>article>.mobile{
        width: 35%;
        height: 100%;
    }
    #content1>article>.mobile>img{
        
        background-position:center;
        width: 75%;
        height: 100%;
        border-top-left-radius: 34px;
        border-top-right-radius: 34px;
        background-repeat: no-repeat;
    }
    #content1>article>.text{
        width: 65%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }
    #content1>article>.text>.emp{
        height: 70%;
        width: 90%;
        /* background-color: pink; */
    }
    #content1>article>.text>.emp>p{
        color: white;
        font-size: 50px;
        font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
        font-weight: bold;
    }
    #content1>article>.text>.emp>a>button{
        border-radius: 25px;
        border: 0;
        height: 45px;
        width: 170px;
        color: black;
        font-size: 15px;
        font-weight:700;
        font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
    }
    #content1>article>.text>.emp>a>button:hover{
        cursor: pointer;
        background-color: black;
        color: white;
        
    }
}
/* navigation bar */
@media(max-width:1200px){
    /* ---------------------Styling the navigation menu for mobile view-------- */
    .topnav {
        overflow: hidden;
        background-color: black;
        position: relative;
      }
      
      /* Hide the links inside the navigation menu (except for logo/home) */
      .topnav #myLinks {
        display: none;
        font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
      }
      
      /* Style navigation menu links */
      .topnav a {
        color: white;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        display: block;
      }
      
      .icon>a{
        text-decoration: none;
        color: rgb(235, 23, 23);
        font-size: 20px;
        letter-spacing: 2px;
        font-family: 'Tilt Prism', cursive;
        display: flex;
        width: 30%;
        align-items: center;
        justify-content: center;
        /* border: 1px solid red; */
    }
    .icon>a>img{
        margin-right: 10px;
    }
      /* Style the hamburger menu */
      .topnav a.icon {
        background: black;
        display: block;
        position: absolute;
        right: 6px;
        top: 2px;
      }
      
      /* Add a grey background color on mouse-over */
      .topnav a:hover {
        color: rgb(235, 52, 52);
        
      }
      
      /* Style the active link (or home/logo) */
      .active {
        background-color: #060706;
        color: white;
      }
      .topnav i{
        font-size: 30px;
      }
      .topnav i:hover{
        color: white;
      }
      .navigation{
        display: none;
      }

      /* --------------Designing the content1 for mobile view----------- */
      #content1{
        height: 80vh;
        width: 100%;
        background: url(./images/bubbles-dktp.svg),linear-gradient(-45deg, rgb(108,14,224),rgb(240,55,166));
        background-repeat: no-repeat;
        background-position: 100%;
        background-size: cover;
        
    }
    #content1>article{
        width: 100%;
        height: 100%;
        
    }
    #content1>article>.mobile{
        display: none;
        
    }
    
    #content1>article>.text{
        width: 100%;
        height: 100%;
        
    }
    #content1>article>.text>.emp{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #content1>article>.text>.emp>p{
        color: white;
        font-size: 50px;
        font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
        font-weight: bold;
    }
    #content1>article>.text>.emp>a>button{
        border-radius: 25px;
        border: 0;
        height: 45px;
        width: 170px;
        color: black;
        font-size: 15px;
        font-weight:700;
        font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
    }
    #content1>article>.text>.emp>a>button:hover{
        cursor: pointer;
        
    }
}

/* -----------------------navbar ended-------------------- */
/* ---------------------content1 ended-------------------- */

#content2{
    width: 100%;
    height: fit-content;
}
#content2>article{
    width: 100%;

}
#content2>article>p{
    font-size: 40px;
    font-weight: bold;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 80px;
}
.logo{
    width: 130px;
    height: 130px;
    margin-bottom: 35px;
}
#content2>article>.table{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

@media(max-width:500px){
    #content2>article>.table>.tab{
        width: 80%;
        /* border: 2px solid green; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #content2>article>.table>.tab>.t1{
        /* border: 2px solid black; */
        width: 25%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10px 10px 50px 10px;
        
    }
    #content2>article>.table>.tab>.t1>h1{
        margin-bottom: 10px;
    }
    .icon>a{
        text-decoration: none;
        color: rgb(235, 23, 23);
        font-size: 20px;
        letter-spacing: 2px;
        font-family: 'Tilt Prism', cursive;
        display: flex;
        width: 50%;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width:950px){
    #content2>article>.table>.tab{
        width: 80%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
    }
    #content2>article>.table>.tab>.t1{
        width: 55%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10px 10px 40px 10px;
        
    }
    #content2>article>.table>.tab>.t1>h1{
        margin-bottom: 10px;
    }
}
@media(min-width:950px){
    #content2>article>.table>.tab{
        width: 80%;
        /* border: 2px solid green; */
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    #content2>article>.table>.tab>.t1{
        /* border: 2px solid black; */
        width: 25%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10px 10px 80px 10px;
        /* background-color: aqua; */
        
    }
    #content2>article>.table>.tab>.t1>h1{
        margin-bottom: 10px;
    }
    
}

#id{
    background-color: rgb(242, 197, 205);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
#ue{
    background-color: rgb(230,230,102);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
#co{
    background-color: rgb(184,52,60);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
#mob{
    background-color: rgb(30,149,248);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
#lap{
    background-color: rgb(235,142,112);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
#cms{
    background-color: rgb(152,254,195);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
#et{
    background-color: rgb(83,63,81);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
#coa{
    background-color: rgb(180,130,147);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}



/* ----------------content2 ended here--------------- */

#content3{
    font-weight: bold;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
    background: linear-gradient(rgb(176, 35, 194) 15%, rgb(96, 11, 231));
    color: white;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
}
#content3>p{
    font-size: 40px;
}
#content3>h2{
    font-size: 25px;
    font-weight: lighter;
    margin: 20px;
}
#content3>button{
    width: 150px;
    height: 40px;
    background-color: rgb(128,20,216);
    color: white;
    border: 1px solid white;
    font-size: 15px;
}
#content3>button:hover{
    border: 1px solid black;
    cursor: pointer;
    box-shadow: 0px 0px 3px black;
}
@media(max-width:550px){
    #content3>p{
        font-size: 30px;
    }
    #content3>h2{
        font-size: 15px;
        margin: 20px;
    }
}

/* -----------------content3 ended here----------------- */
#content4>div>h1{
    font-size: 30px;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
}
#content4{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    align-items: center;
}
#content4>div{
    margin-top: 50px;
}
#content4>.c4{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 70%;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 60px;
}
#content4>.c4>p{
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
}
#content4>.c4>h2{
    font-family:Helvetica,Arial,sans-serif;
    color: rgb(197, 68, 68);
    margin-top: 5px;
}


/* -- -----------------content4 ended here----------------- -- */
#content5{
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(./images/bubbles-dktp.svg),linear-gradient(-45deg, rgb(108,14,224),rgb(240,55,166));
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: cover;
    /* background-color: aqua; */
}
#content5>p{
    font-size: 60px;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
    
}
#content5>a>button{
    border-radius: 25px;
    border: 0;
    height: 45px;
    width: 170px;
    color: black;
    font-size: 15px;
    font-weight:bold;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
    
}
#content5>a>button:hover{
    cursor: pointer;
    background-color: black;
    color: white;
}
/* -- -----------------content5 ended here----------------- -- */

@media(max-width:851px){
    footer{
        height:fit-content;
        width: 100%;
        background-color: black;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer>article{
        height: 65%;
        width: 100%;
        /* background-color: blueviolet; */
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    footer>article>.icon1{
        width: 100%;
        height: 100%;
        /* background-color: rgb(209, 16, 16); */
        display: flex;
        justify-content: space-evenly;
    }
    footer>article>div{
        width: 45%;
        height:100%;
        /* background-color: red; */
        /* border: 2px solid green; */
        margin-bottom: 25px;
        margin-top: 10px;
        
    }
    
}
@media(min-width:850px){
    footer{
        height: 75vh;
        width: 100%;
        background-color: black;
        display: flex;
        /* justify-content: center; */
        align-items: center;
    }
    footer>article{
        height: 65%;
        width: 100%;
        /* background-color: blueviolet; */
        display: flex;
        justify-content: center;
    }
    footer>article>.icon1{
    width: 30%;
    height: 100%;
    /* background-color: white; */
    display: flex;
    justify-content: right;
}
footer>article>div{
    width: 15%;
    height:100%;
}

}


footer>article>div>ul{
    list-style: none;
}
footer>article>.div1>a{
        text-decoration: none;
        color: rgb(235, 23, 23);
        font-size: 20px;
        letter-spacing: 2px;
        font-family: 'Tilt Prism', cursive;
        display: flex;
        align-items: center;
        justify-content: center;
}
footer>article>.div1>a>img{
    margin-right: 10px;
}
footer>article>div>ul>.textarea{
    color: #b7b7b7;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
}
footer>article>div>ul>li{
    margin-bottom: 20px;
}
footer>article>div>ul>li>a{
    text-decoration: none;
    color: white;
    font-family: var(--font-family,spotify-circular),Helvetica,Arial,sans-serif;
}
footer>article>div>ul>li>a:hover{
    color: rgb(235, 52, 52);
}

footer>article>.icon1>a>i{
    font-size: 50px;
    color: white;
    margin-left: 20px;
}

