@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

/* scroll css start */
::-webkit-scrollbar {
    width: 10px;
}

li {
    list-style: none;
    font-size: 16px;
    color: #5e6075;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #002B22;
    border-radius: 10px;
}

/* scroll css end */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

@keyframes infiniteScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Scale to 150% of original size */
    }

    100% {
        transform: scale(1);
        /* Back to original size */
    }
}

/* html {
    overflow-x: hidden ;
  } */

a {
    text-decoration: none;
}

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #5e6075;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    color: #5e6075;
}

input:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

/* header  */

.main-header {
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px 0;
    transition: 0.7s;
}

.bg_header {
    background: rgb(0 0 0 / 50%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.main-header .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .img-logo h1 {
    color: #fff;
    font-size: 20px;
}

.btn-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 10px;
}

.btn-reg {
    color: #FFF;
    font-size: 14px;
    background: #002B22;
    padding: 6px 26px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.7s;
    display: block;
    width: fit-content;
    border-color: #002B22;
    border-radius: 20px;
}

.btn-reg::before {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #FFF;
    position: absolute;
    transform: scale(0);
    border-radius: 50%;
    z-index: -1;
    transition: 0.7s;
}

.btn-reg:hover::before {
    transform: scale(2);
}

.btn-reg:hover {
    color: #002B22;
}

.main-banner {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-banner .banner-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -2;
}

.owl-item.active .main-banner .banner-img img {
    animation: zoom-in-zoom-out 7s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        scale: 100%;
    }

    100% {
        scale: 130%;
    }
}

.main-banner::before {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9051995798319328) 0%, rgba(0, 0, 0, 0.2553396358543417) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}

.main-banner .content h2 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 39px;
    position: relative;
    width: fit-content;
    text-transform: capitalize;
}

.main-banner .content h2::before {
    content: "";
    background-color: #b2d45b;
    position: absolute;
    bottom: -8px;
    height: 4px;
    width: 43%;
    border-radius: 10px;
}

.main-banner .content p {
    color: #fff;
    font-size: 15px;
    padding-top: 22px;
    padding-bottom: 12px;
}

.banner-slider .owl-nav {}

.banner-slider .owl-dots {
    display: none;
}

.banner-slider .owl-nav button {
    top: 50%;
    position: absolute;
    left: 30px;
    width: 40px;
    height: 40px;
    color: #fff !important;
    border-radius: 50%;
    background-color: #002B22 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-slider .owl-nav .owl-next {
    left: unset;
    right: 30px;
}

.typeJsText {
    display: block;
    padding: 0;
    border-right: 1px solid #fff;
    height: 50px;
    width: fit-content;
}

/* sec-profiles */

.sec-profiles {
    padding: 50px 0 60px;
}

.sec-profiles .title h2 {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 35px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
}

.sec-profiles .title h2::before {
    content: "";
    background-color: #002B22;
    position: absolute;
    bottom: -8px;
    height: 4px;
    width: 250px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.search-box {
    padding: 20px 24px;
    background: #b2d45b;
    border-radius: 51px;
    margin: 0 0 25px;
    box-shadow: 0px 10px 20px 6px rgba(0, 0, 0, 0.1);
}

.search-box .txt-box input {
    color: #000;
    font-family: "Poppins", sans-serif;
    width: 100%;
    padding: 6px 18px;
    outline: none;
    border: 1px solid #dee2e6;
    border-radius: 19px;
    font-size: 14px;
}

.search-box .txt-box input::placeholder {
    color: #000;
    font-family: "Poppins", sans-serif;
}

.search-box .btn-box {
    display: flex;
    justify-content: space-evenly !important;
    align-items: center;
}

.search-box .btn-box button {
    padding: 6px 16px;
    border: 1px solid #002B22;
}

.search-box .btn-box button:nth-child(2) {
    background: #5f8500;
    border-color: #5f8500;
}

.sec-profiles .table.dataTable {
    border-radius: 18px 18px 0px 0px;
    overflow: hidden;
}

.sec-profiles table.dataTable td.dt-type-numeric,
.sec-profiles table.dataTable th.dt-type-numeric {
    text-align: left;
}

.sec-profiles thead {
    background-color: #002B22;
    color: #fff;
    border: 1px solid #002B22;
}

.sec-profiles .user-avatar {
    width: 30px;
    height: 30px;
    /* border-radius: 50%; */
    margin-right: 10px;
    vertical-align: middle;
}

.sec-profiles table tr {
    cursor: pointer;
}

.sec-profiles table tr td {
    align-content: center;
}

.sec-profiles table tr td:nth-last-child(1) a {
    margin: 0 auto;
    border: 1px solid #002B22;
}

.sec-profiles .pagination {
    justify-content: center;
    gap: 0 4px;
}

.sec-profiles {
    background-image: url(../images/new-pat-1.svg) !important;
    background-color: #edebe0 !important;
    background-repeat: no-repeat !important;
}

.sec-profiles .pagination li {}

.sec-profiles .pagination li:nth-child(1) a {}

.sec-profiles .pagination li:nth-last-child(1) a {}

.pagination li a {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 50% !important;
    background: #5f8500 !important;
    border-color: #5f8500 !important;
    color: #fff !important;
}

.sec-profiles .pagination .page-item.active a {
    background: #002B22 !important;
    border-color: #002B22 !important;
}

/* main-banner inner-banner */

.main-banner.inner-banner {
    height: 60vh;
}

.main-banner.inner-banner .content h2 {
    margin: 0 auto;
}

.main-banner.inner-banner .content h2::before {
    left: 50%;
    transform: translateX(-50%);
}

/* profile  */

.sec-profile {
    padding: 50px 0;
}

/* General card styles */
.user-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0px 0 9px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border: 3px solid #002b22;
}

/* Card cover styles */
.card-cover {
    /* margin-bottom: 0; */
    /* height: 200px; */
    /* background-size: cover; */
    /* background-position: center; */
    position: relative;
}

/* Avatar wrapper - positioned relative to contain the absolutely positioned avatar */
.avatar-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* position: absolute; */
    top: 95%;
    left: 20px;
    /* transform: translateY(-16%); */
    /* z-index: 10; */
    gap: 0 20px;
    margin-bottom: 30px;
}

/* Avatar styling */
.avatar {
    position: relative;
    background-color: rgba(169, 169, 169, 0.5);
    /* Light mode */
    padding: 0.5rem;
    background-color: rgba(97, 97, 97, 0.5);
    /* Dark mode */
    border-radius: 50%;
    z-index: 10;
}

.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    /* Optional, adds a border for visual emphasis */
}

/* Card body styling */
.card-body {
    padding: 1.25rem;
    flex-grow: 1;
    z-index: 5;
    position: relative;
}

/* Card name styling */
.card-name {
    margin-bottom: 0.25rem;
    font-size: 21px !important;
    font-weight: 600 !important;
    text-align: left;
    /* margin-left: 130px; */
    color: #5e6075 !important;
}

/* Card information styling */
.card-info {
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 0;
    font-size: 14px;
    text-align: left;
    margin-left: 130px;
}

.sec-profile .information {
    /* margin-top: 30px; */
}

.sec-profile .information .side-info {
    /* border-right: 2px solid rgba(97, 97, 97, 0.5); */
    /* box-shadow: rgba(0, 0, 0, 0.45) 3px 0px 0px 0px; */
    height: 100%;
    position: relative;
}

.sec-profile .information .side-info::before {
    content: "";
    /* box-shadow: rgba(0, 0, 0, 0.45) 3px 0px 0px 0px; */
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #002b22;
}

.sec-profile .information .side-info .descrip {
    max-height: 120px;
    overflow-y: auto;
    margin-bottom: 13px;
    margin-right: 5px;
}

.sec-profile .information .side-info .descrip::-webkit-scrollbar {
    width: 5px;
}

.sec-profile .information .side-info .descrip p {
    font-size: 14px;
    padding-right: 5px;
}

.sec-profile .information h3 {
    color: #000;
    font-size: 23px;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    padding: 0 0 10px;
}

.sec-profile .information ul li {
    padding-bottom: 7px;
}

.sec-profile .information ul li a {
    color: #000;
}

.sec-profile .information ul li a i {
    padding-right: 5px;
}

.sec-profile .information .portfolio ul {
    justify-content: center;
    gap: 0 10px;
}

.sec-profile .information .portfolio h3 {
    text-align: center;
}

.sec-profile .information .portfolio .img-port {
    display: block;
    width: 100%;
}

.sec-profile .information .portfolio .img-port img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.sec-profile .information .portfolio iframe {
    height: 260px;
    width: 100%;
}

.sec-profile .information .portfolio .portf-slide {
    margin: 0 0 10px;
}

.sec-profile .information .portfolio .owl-item {
    padding: 0 10px;
}

.sec-profile .information .portfolio .owl-nav {}

.sec-profile .information .portfolio .owl-nav button {
    top: 50%;
    position: absolute;
    left: -7px;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 50%;
    background-color: #002B22;
}

.sec-profile .information .portfolio .owl-nav .owl-next {
    left: unset;
    right: -7px;
}

footer {
    background: rgb(17, 17, 17);
    padding: 10px 0;
}

footer p {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/* .signup-sec */

.signup-sec {
    padding: 70px 0;
    background: #002B22;
}

.signup-sec .signup-box {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px 35px;
    background: rgb(0 0 0 / 50%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
}

.signup-sec .signup-box .txt-box label {
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin: 0 0 3px;
}

.signup-sec .signup-box .txt-box input,
.signup-sec .signup-box .txt-box textarea,
.signup-sec .signup-box .txt-box select {
    color: #000;
    font-family: "Poppins", sans-serif;
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.signup-sec .signup-box .txt-box input::placeholder,
.signup-sec .signup-box .txt-box textarea::placeholder {
    color: #000;
    font-family: "Poppins", sans-serif;
}

.fldset.margin-field label {
    font-size: 11px;
    line-height: 18px;
    text-align: left;
    position: unset;
}

.fldset.margin-field input[type="checkbox"] {
    width: 1em !important;
    height: 1rem !important;
    position: relative;
    top: 2px;
}

.fldset label {
    font-size: 12px;
    color: #fff !important;
    padding-left: 5px;
    font-family: "Poppins", sans-serif;
}

.fldset {
    display: flex;
    align-items: flex-start;
    margin: 0 0 11px;
    gap: 5px;
}

.signup-sec .signup-box h3 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 39px;
    position: relative;
    text-transform: capitalize;
    text-align: center;
    margin: 0 0 18px;
}

.signup-sec .signup-box button {
    margin: 0 auto;
    border: 1px solid #002B22;
}

.signup-sec .signup-box .img-thumb {
    max-height: 75px;
    border: 2px solid none;
    border-radius: 3px;
    padding: 1px;
    cursor: pointer;
    width: 100%;
}

.signup-sec .signup-box .img-thumb-wrapper {
    display: inline-block;
    margin: 10px 10px 0 0;
    position: relative;
}

.signup-sec .signup-box .remove {
    display: block;
    background: #002920;
    border: 1px solid none;
    color: white;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: -3px;
    right: -5px;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-sec .signup-box .remove:hover {
    background: white;
    color: black;
}

.signup-sec .content h1 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 39px;
    position: relative;
    width: fit-content;
    text-transform: capitalize;
}

.signup-sec .content p {
    color: #fff;
    font-size: 15px;
    padding-top: 22px;
    padding-bottom: 12px;
}
.btn-reg.red{
    background: #c70707;
    border-color: #c70707;
}


/* .sec-profiles .dt-layout-row {
    display: none !important;
} */




@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 576px) {}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 376px) {}