* {
    padding: 0;
    margin: 0;
}


:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    /* padding: 0 1rem; */
    font-family: 'Poppins', sans-serif;
    /* font-size: var(--normal-font-size); */
    transition: .5s
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none;
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* justify-content: flex-end; */
    padding: 0 1rem;
    /* background-color: var(--white-color); */
    background: -webkit-linear-gradient(#ca639a, #95bfc7);
    /* background-color: #7D9D9C; */
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    /* color: var(--first-color); */
    /* background: -webkit-linear-gradient(#7E0F4B, #1A5865);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  */
    /* color: linear-gradient(to right,#7E0F4B, #1A5865); */
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.nav-area-item {

    display: flex;
}

.nav-area-item img {
    width: 40px;
    height: 40px;


}

header .nav-area-item input[type=search] {
    border-radius: 5px;
    border: none;
    /* border: linear-gradient(to right,#7E0F4B, #1A5865); */
    font-size: 12px;
    padding-left: 10px;
    margin-right: 20px;
    outline: none;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    /* background-color: var(--first-color); */
    background: linear-gradient(to right, #7E0F4B, #1A5865);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    /* height: auto; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: scroll;
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    /* padding: .5rem 0 .5rem 1.5rem */
    padding: 10px 7px;
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

/* 
.height-100 {
    height: 100vh;

} */

.body-bg {
    background-color: #f1f2f7;
}

/* my-css */

.main-content-first-section {

    /* color: rgb(0, 0, 0); */
    overflow: auto;

    width: 100%;
    min-height: 100%;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: #fff;
}

.main-content-first-box {
    padding: 20px;
    position: relative;
    /* z-index: -1;    */
    /* color: rgb(245, 0, 0);    */
    /* opacity: 1; */
    z-index: 2;
    color: #000;
}

.main-content-first-box span {
    padding-left: 115px;

}

.main-content-first-box::before {
    position: absolute;
    content: "";
    bottom: 0;
    color: #fff !important;
    right: 0;
    width: 15%;
    height: 15%;
    /* border-top-radius: 8px; */
    border-top-left-radius: 5px;
    z-index: -1 !important;
    transition: all 0.5s ease-in-out;
    background: linear-gradient(to right, #7E0F4B, #1A5865);

}

.main-content-first-box:hover::before {
    background: linear-gradient(to right, #7E0F4B, #1A5865);

    width: 100%;
    height: 100%;
    border-bottom-left-radius: 0;
}

.main-content-first-box:hover {
    color: #fff;
}

.height-100 h4 {
    padding: 20px;
    font-weight: 600;

    padding: 20px 38px;

    background: -webkit-linear-gradient(#7E0F4B, #1A5865);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.main-content-first-box .bx {
    font-size: 33px;
    /* background: linear-gradient(to right,#7E0F4B, #1A5865);  */
    padding: 3px;
    border-radius: 20px;
}

.main-content-first-box .span-icon {
    padding: 0;
    display: block;
    text-align: center;
}


.main-content-first-box .icon-1 {
    background-color: #a994ff;
}

.main-content-first-box .icon-2 {
    background-color: orangered;
}

.main-content-first-box .icon-3 {
    background-color: yellowgreen;
}

.main-content-first-box .icon-4 {
    background-color: goldenrod;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    top: 39px;
    left: -132px;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);
    border-radius: 5px;
    z-index: 1;
    font-weight: 600;
    background-color: #fff;
}

.dropdown-content a {
    color: black;
    padding: 12px 8px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;


}

.dropdown-content a:hover {
    background: -webkit-linear-gradient(#7E0F4B, #1A5865);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .dropdown:hover .dropbtn {color: #e31d24;} */




.div-col-3-first span i {
    font-size: 35px;
    background-color: #a994ff;
    padding: 4px;
    border-radius: 21px;
}

.col-3-second-div {
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);
    padding: 20px 20px 0px;
    border-radius: 9px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.my-progress-bar {
    padding: 20px 0px 5px 0px;

}



.col-6-div {
    padding: 40px;
    border-radius: 9px;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);

}



.my-table {
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);
    padding: 15px;
    border-radius: 9px;
}

.my-table .table thead th {
    font-weight: 600;
}

.reviews {
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);
    padding: 15px;
    border-radius: 9px;

}

.reviews img {
    width: 50px;
    height: 50px;
    display: inline-block;

}



.reviews-item strong {
    margin-left: 5px;
}

.reviews-item span {
    margin-left: 215px;
    color: chocolate;
    display: inline-block;
}

.main-content-first-box:hover .span-icon i {
    animation: rotate 0.8s ease-in-out;
}

@keyframes rotate {

    0% {
        transform: rotate(360deg);
    }

}

/* .box-circular:hover{
 transform: scale(1.2);
 transition: all 0.5s ease-in-out;
} */

.social {
    min-height: 100%;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);
    padding: 20px;
    border-radius: 9px;
}

.social-item h3 {
    font-weight: 600;
    font-size: 18px;
}

.social-item i {
    font-size: 40px;
}

.bxl-twitter {
    color: #1DA1F2;

}

.bxl-facebook {
    color: #4267B2;

}

.bxl-instagram {
    color: #e95950;

}

.my-page-table {
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

.table-header-item-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header {
    background: linear-gradient(to right, #7E0F4B, #1A5865);
    padding: 12px;
    margin: 13px 0px;
    border-radius: 5px;
    color: #fff;
}

.table-header input[type=search] {
    border-radius: 5px;
    border: none;
    font-size: 13px;
    padding-left: 12px;

    outline: none;
    height: 34px;
}

.table-header i {
    font-size: 33px;
    background: rgb(144, 121, 228);
    padding: 3px;
    border-radius: 20px;
    cursor: pointer;
}

.my-page-table .bx-trash {
    font-size: 20px;
    margin-left: 14px;
    color: red;
    cursor: pointer;
}







/* pop css */

/* Set a style for all buttons */
button {
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;

}

button:hover {
    opacity: 1;
}

/* Float cancel and delete buttons and add an equal width */
.cancelbtn,
.deletebtn {
    float: left;
    width: 50%;
}

/* Add a color to the cancel button */
.cancelbtn {
    background-color: #ccc;
    color: black;
}

.modal h2 {
    color: red;
    font-weight: 600;
    text-align: center;
}

.modal p {

    text-align: center;
}

/* Add a color to the delete button */
.deletebtn {
    background-color: #f44336;
}

/* Add padding and center-align text to the container */
.container-pop {
    padding: 16px;
    /* text-align: center; */
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: #474e5d;
    padding-top: 50px;


}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
/* hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
  }
    */
/* The Modal Close Button (x) */
.close {
    position: absolute;
    right: 103px;
    top: 70px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

.close:hover,
.close:focus {
    color: #f44336;
    cursor: pointer;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {

    .cancelbtn,
    .deletebtn {
        width: 100%;
    }
}


.my-form {
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 20%);
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}


.form-control:focus {
    color: #212529 !important;
    /* background-color: #f7f0fa!important; */
    border: 2px solid;
    border-color: #b28bae !important;
    outline: none !important;
    box-shadow: none !important;

}


/* 
.border-gradient {
    border: 10px solid;
    border-image-slice: 1;
    border-width: 1px;
   
  }
  .border-gradient-purple {
    border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
  }  */


.mybtn button {
    text-transform: uppercase;
    font-weight: 600;
    background: linear-gradient(to right, #7E0F4B, #1A5865);
    border-radius: 7px;
}

.my-color {


    /* background-color: #fff; */
    margin-top: 100px;
}

.login-box {
    width: 100%;
    background-color: #99b9cc;
    height: 450px;
    /* border-top-left-radius: 10px; */

}

.form-box {
    width: 100%;
    height: 450px;
    /* background-color: #369471; */
    /* border-top-right-radius: 100px; */
    padding: 30px;
}

.form-box h5 {
    color: gray;
}

.content-box {
    display: flex;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    background-color: #fff;
}

.my-sign-form label {
    display: block;
    font-size: 14px;
    padding-bottom: 2px;
    padding-top: 14px;
    color: gray;
}

.my-sign-form input {
    width: 100%;
    outline: none;
    border: none;
    border-radius: 20px;
    padding: 4px 10px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

.my-sign-btn button {
    background-color: #639;
    margin-top: 23px;
    border-radius: 51px;
    padding: 6px;
    color: #fff;
}



.create-item {
    padding: 24px;
    margin-top: 39px;
}

.create {
    border: 1px solid gray;
    border-radius: 50px;
    margin: 20px 0px;
    background: rgba(238, 238, 238, .6);
}

.create p {
    text-align: center;
    margin: 0;
    padding: 10px;
    color: gray;
    font-weight: 600;
}

.create p a {
    text-decoration: none;

}

.create-box h2 {
    font-size: 35px;
    text-align: center;
}

.with-google p a {
    color: #ec412c;
}

.with-google {
    border: 1px solid #ec412c;
    transition: all 0.5s;
}

.with-facebook p a {
    color: #3765c9;
}

.with-facebook {
    border: 1px solid #3765c9;
    transition: all 0.5s;
}

.with-email p a {
    color: #663399;
}

.with-email {
    border: 1px solid #663399;
    transition: all 0.5s;

}

.with-email:hover {
    background-color: #663399;

}

.with-email:hover a {
    color: #fff;
}


.with-facebook:hover {
    background-color: #3765c9;

}

.with-facebook:hover a {
    color: #fff;
}


.with-google:hover {
    background-color: #ec412c;

}

.with-google:hover a {
    color: #fff;
}

.create-item img{
    width: 52px;
    padding-right: 18px;
}

.create-item:hover img{
  color: #fff;
}

.form-margin{
    margin-top: 60px;
}

.sign-margin{
    margin-top: 100px;
}

.my-first-map{
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.team-box{
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    background-color: #fff;
    border-radius: 10px; 
}

.team-content{
    
    padding: 20px;
}

.team-content h3{
    font-size: 21px;
    color: gray;
}

.image-overlay-element{
    position: relative;
}

.overlay{
    position: absolute;
    top: 0%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.7);
   opacity: 0;
   transition: all 0.5s;
}

.overlay i{
    font-size: 40px;
    padding: 0px 10px;
}

.team-box:hover .overlay{
    opacity: 1;
}

.team-box:hover .overlay > *{
    transform: translateY(0px);
}

.overlay > * {
    transform: translateY(50px);
    transition: all 0.5s;
}

.error{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #822b41;
}

.error h3{
    font-size: 54px;
    color: #fff;
    margin-bottom: 20px;
}

.error p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.error a{
    background: #fff;
    padding: 10px 35px;
    border-radius: 35px;
    font-size: 19px;
    color: gray;
}