*{
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Goldman', cursive;
    background-image: url(images/logo.png);    
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: 0.5s;
    scroll-behavior: smooth;
    max-width: 100%;

}
.heading{
    background-image: url(https://media.istockphoto.com/photos/software-developer-freelancer-woman-working-at-night-picture-id1173805290?s=2048x2048);
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
}
.logo img{
    width: 60%;
    border: solid white 3px;
    border-radius: 50px;
    cursor: pointer;
    
}
.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;

}

.nav-list{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8px;
    
}
.nav-list li{
    list-style: none;
    
}
.nav-list li a{
    text-decoration: none;
    color: white;
    padding: 10px;

}
.logo img:hover{
    background-color: white;
    border-radius: 50px;
    transition: 0.7s;
}
.nav-list li a:hover{
background-color: white;    
color: black;
border-radius: 50px;
transition: 0.5s;

    
}  
/* Dropdown Button */
.dropbtn {
    background-color:transparent;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    font-family: 'Goldman', cursive;


  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 40px;

  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    transition: 0.7s;
    font-size: 15px;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: gray;
padding: 10px;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
 
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14%;
    margin-top: 10px;
    margin-bottom: 10px;
}


.main-box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 534px;
}
.lside{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    margin-top: 50px;
}
.lside img{
    width: 220px;
    border-radius: 100px;
    cursor: pointer;
}

.rside{
    width: 70%;  
    
}
.bigtext, .smalltext{
    color: white;
}
.bigtext:hover{
    background-color: white;
    color: black;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 30px;
    padding: 20px;
    
}
.bigtext{
    font-size: 50px;
}
.info{
    padding: 10px;
}
th, td{
    border-collapse: collapse;
    border: double 3px black;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    background-color: white;
    color: black;
    box-sizing: border-box;
    border-radius: 20px;
    cursor: pointer;
text-align: left;
}

.checked {
    color: rgb(180, 63, 9);
}
.details, .skills{
    margin: 20px 50px;
}
.details:hover, .skills:hover{
    background-color:black;
    color: white;
    transition: 0.9s;
    border-radius: 40px;
    padding: 10px;
}
/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    bottom: 8px;
    width: 100%;
    text-align: center;
    margin-top: 0px;
}
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
    
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
 
.carousel{
    width: 50%;
    margin: 5% 22%;
    border: solid black 2px;
    border-radius: 50px;
    
}
.text{
    color: black;
    font-size: 20px;
}
.client-heading{
    margin-top:20px;
    text-align: center;
}
#contact{
    height: 455px;
    border: 2px solid black;
    border-radius: 50px;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 10px;

}
.form{
    max-width: 50%;
    margin: auto;
    padding: 10px;
}
.form input{
    width: 80%;
    margin-left: 10%;
    border-radius: 20px;
    padding: 8px;
}
textarea{
    border-radius: 50px;
    padding: 10px;
    margin-left: -20px;
}
.form input ::placeholder{
    font-family: 'Goldman', cursive;

}
#contact h2{
text-align: center;
padding-top: 20px;
}
#contact button{
    width: 10%;
    margin-left: 45%;
    border-radius: 20px;
    padding: 8px;
}
#contact button a:hover{
    background-color: black;
    color: white;
    cursor: pointer;
    transition: 0.7s;
    border-radius: 20px;
}
#contact button a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
#contact:hover{
    background-color: rgb(153, 145, 145);
    color: white;
    transition: 0.7s;
}
footer{
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    max-width: 157%;
}
.burger{
    display: none;
    position: absolute;
    right: 10%;
    top: 15px
}
.line{
   width: 421%;
   background-color: white;
   height: 4px;
   margin: 3px 3px;
}
@media only screen and (max-width: 1024px){
    .nav-list{
        flex-direction: column;
        height: 200px;
    }
    .navbar{
        flex-direction: column;
        padding: 10px;
        height: 378px;
        transition: 1s;
    }
    .logo {
        
            display: flex;
            justify-content: center;
            align-items: center;
            width: 46%;
            margin-top: -58px;
            margin-bottom: 10px;
        }
    
        .nav-list li {
            padding: 10px;
    }

    .form textarea {
        max-width: 100%  ;
    
    }
    textarea {
        border-radius: 50px;
        padding: 9px;
        margin-left: -6px;
    }
    .form ::placeholder{
        font-size: 10px;
    }
    #contact{
        width: 91%;
    }
    #contact button {
        width: 24%;
        margin-left: 40%;
        border-radius: 20px;
        padding: 8px;
        margin-top: 0;
    }
    
    .client-heading {
        margin-top: 20px;
        max-width: 100%  ;

    }
    .heading{
width: 113%;  
}
    .lside img {
        width: 81px;
        border-radius: 100px;
        cursor: pointer;
        margin-top: 2px;
    }
    .main-box {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 534px;
        flex-direction: column;
    }
    .bigtext {
        font-size: 20px;
    }
    
   
   
    .details{
        margin: 8px 0px;
        width: 100%;
    }
    .skills {
        margin: 8px 60px;
        width: 75%;
        
    }
    .bigtext:hover{
        background-color: white;
        color: black;
        cursor: pointer;
        transition: 0.5s;
        border-radius: 30px;
        padding: 20px;
        max-width: 100%;
    }
    
   .table td, .table th, .skills td, .skills th{
       font-size: 12px;
   }
   .mySlides {
    display: block;
    padding: 24px;
    
   }
   /* Hamburger for navigation */
.burger{
    display: block;
}
.h-nav-resp{
    height: 0px;
}
.v-class-resp{
    opacity: 0;
}
footer {
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
    width: 107%;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 40px;

  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    transition: 0.7s;
    font-size: 12px;
  }
  

}
   

   


