/* 
CSS Global Styling
Author: Anbuselvan Rocky
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
    background: transparent;
}

.logo {
    cursor: pointer;
    margin-right: auto;
}

li,
a {
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    color: #FFF;
}


nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}
nav a:hover{
    color: #fcfcfd;
    transition: all 0.3s ease 0s;
}

.sidebar{
    position: fixed;
    top: 0; 
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sidebar li{
    width: 100%;
  }
  .sidebar a{
    width: 100%;
  }
  .menu-button{
    display: none;
  }
  

header > button {
    padding: 9px 25px;
    background-color: #4caf50;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

header > button:hover {
    background-color: rgba(0, 136, 169, 0.8);
}

/* Content */
.wrapper {
    background: url('../img/home-bg-1.jpg') no-repeat center center / cover;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1; 
}

.wrapper:before {
    position: absolute;
    content: '';
    background-image: linear-gradient(to right, rgba(16, 94, 252, 0.95), rgba(39, 110, 252, 0.95), rgba(90, 143, 249, 0.95), rgba(130, 170, 249, 0.95), rgba(163, 192, 251, 0.95));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}


.content {
    display: flex;
    padding: 40px 10%;
    justify-content: space-between;
    color: #FFF;
}

.hero-info h1 {
    font-size: 40px;
}

.hero-info p {
    margin: 30px 0;
    font-weight: 400;
    line-height: 2;

}

.locale {
    animation-name: colorChange;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

button {
    width: 150px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #fb5283, #ff3527);
    border-radius: 6px;
    cursor: pointer;
}


.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-outline {
    border-radius: 30px;
    color: #ffffff;
    border-color: #ffffff;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.btn-outline:hover {
    background: #ffffff;
    color: #6730e3;
}

i.fa {
    margin-right: 10px;
}

.social-links {
    text-align: center;
}

.social-links img {
    height: 40px;
    margin: 40px;
    cursor: pointer;
}

.btn-social {
    padding: 9px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.bg-facebook {
    background-color: #4267B2;
}

.bg-youtube {
    background-color: #FF0000;
}

.bg-instagram {
    background-color: #C13584;
}

@media(max-width: 1200px) {
    
    .content{
        width: 100%;
        text-align:center;
    }
    .image{
        width: 100%;
        position: absolute;
        bottom: -5%;
        display: flex;
        justify-content: center;
    }
    .content img{
        display: none;
    }

    .hideOnMobile{
        display: none;
      }
      .menu-button{
        display: block;
      }
}

@media(max-width: 576px) {
    
    .content{
        width: 100%;
        text-align:center;
    }
    .image{
        width: 100%;
        position: absolute;
        bottom: -5%;
        display: flex;
        justify-content: center;
    }
    .content img{
        display: none
    }
}
@media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
  }

