body, * {
    padding: 0;
    margin: 0;
    transition: 0.3s ease all;
    cursor: default;
}
hr {
    width: 70%;
    color: rgb(186, 186, 186) !important;
}

.landing {
    height: 1000px;
}
.l-inner {
    height: 1000px;
}
.lt-inner {
    padding-right: 150px !important;
}
.l-para {
    margin-top: 10px;
}
.status {
    font-size: 11px !important;
    color: rgb(145, 145, 145);
}
.profile {
    height: 400px !important;
    border-radius: 100%;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.profile-label {
    background-color: white; 
    position: absolute; 
    left: 6%; 
    padding: 5px;
}
.role {
    color: white;
    padding: 5px 2px;
    background-color: #2424ab;
}
.mail-btn {
    position: relative;
    display: inline-block;
    padding: 5px 30px;
    font-size: 16px;
    color: #2424ab;
    text-decoration: none;
    overflow: hidden;
    background-color: transparent;
    border: 2px solid #2424ab;
    transition: color 0.4s ease;
    cursor: pointer;
}

.mail-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #2424ab;
    transition: width 0.4s ease;
    z-index: -1;
}

.mail-btn:hover::before {
    width: 100%;
}

.mail-btn:hover {
    color: #fff;
}
p {
    margin-bottom: 30px;
}
.subtitle {
    color: #d3d3d3;
}
.logos {
    margin: 30px 0px 30px 0px;
}
.icon {
    filter: grayscale(100%);
    height: 30px;
    transition: 0.3s ease all;
}
.icon:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}
.label {
    color: #d3d3d3;
    font-size: 12px;
}
.copyright {
    color: #d3d3d3;
    font-size: 11px;
}

/*FONTS*/

.montserrat-h {
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }

.montserrat-p {
    font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*BLOG*/

/*BLOG NAV*/

.navbar-brand {
    cursor: pointer;
    margin-left: 50px;
    color: grey !important;
    font-size: 13px !important;
}
.nav-link {
    cursor: pointer;
}

.pagination {
    font-size: 12px;
    margin-bottom: 30px;
    color: #d3d3d3;
}
.page-links {
    cursor: pointer;
    color: #d3d3d3;
    text-decoration: none;
}
.page-links:hover {
    text-decoration: underline;
    color:#535353;
}

.blog-inner {
    padding-left: 50px;
    margin-top: 100px;
}

.blog-subtitle {
    margin-bottom: 30px;
    padding: 5px 10px;
    width: fit-content;
    background-color: #2424ab;
    color: #ffffff;
}

/*media*/
@media only screen and (max-width: 1380px) {
    .profile-label {
        background-color: white; 
        position: absolute; 
        left: 2%; 
        padding: 2px;
        font-size: 11px;
    }
  }
@media only screen and (max-width: 1050px) {
    .profile {
      height: 300px !important;
    }
    .lt-inner {
        padding-right: 50px !important;
    }
  }
  @media only screen and (max-width: 750px) {
    .profile {
      height: 200px !important;
    }
  }
  @media only screen and (max-width: 575px) {
    .blog-inner {
        padding-left: 2px;
        margin-top: 50px;
    }
    .profile {
      height: 250px !important;
    }
    .profile-label {
        background-color: white; 
        position: absolute; 
        left: 18%; 
        padding: 2px;
        font-size: 11px;
    }
    .l-inner {
        width: 100%;
        height: 400px;
    }
    .lt-inner {
        padding-right: 8px !important;
    }
    hr {
        width: 100%;
    }
    .l-heading {
        margin-bottom: 30px;
    }
    .l-para {
        margin-bottom: 30px;
    }
    .copyright {
        padding-bottom: 20px;
    }
    .copy-block {
        text-align: center;
    }
  }