
/*------------------------------------ 
    01 - Theme Settings 
------------------------------------*/

:root {
  --primary-color: #0ABBD9;
  --secondary-color: #0ABBD9;
  --background-color: #fff;
  --title-color: #001226;
  --body-color: #59595e;
  --main-text-color: #001226;
  --text-light-color: #818ea0;
  --link-color: #ff6a00;
  --white-color: #fff;
  --form-border-color: #d9dde3;
  --form-placeholder-color: #9aa5b3;
  --theme-black-color: #000000;
  --theme-gray-color: #D9D9D9;
  --theme-white-color: #ffffff;
  --theme-danger-color: #ef262c;
  --theme-warning-color: #ff5c00;
  --theme-info-color: #e8e8e8;
  --theme-border-color: #f1f1f1;
  --theme-success-color: #00a046;
  --theme-light-color: #f2f3f5;
  --fade-border-color: #e0e5ea;
  --button-color: #00a046;
  --button-color-active: #037535;
}

:root {
  --primary-font: "Raleway", sans-serif;
  --secondary-font: "Raleway", sans-serif;
  --title-font: "Raleway", sans-serif;
  --body-font: "Raleway", sans-serif;
  --style-font: "Raleway", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
}

:root {
  --main-container-width: 1200px;
  --border-radius-size: 16px;
  --form-radius-size: 16px;
}

html, body {
    font-family: var(--primary-font);
    font-size: 15px;
	color: var(--body-color);
    letter-spacing: 0.0175em;
    line-height: 1.428571429;
    margin: 0;
	font-weight: 400;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
@media (min-width: 768px){
    .ptb-lg-2 {
        padding-right: 2%;
        padding-left: 2%;
    }
}
@media (max-width: 768px){
    html, body {
        font-size: 90%;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
	color: var(--title-color);
	margin: 0 0 0.5em;
    word-break: break-word;
    font-weight: 600;
}

.h1, h1 {
    font-size: 46px;
    letter-spacing: 0;
    line-height: 56px;
}
.h2, h2 {
    font-size: 36px;
    letter-spacing: 0.1px;
    line-height: 44px;
}
.h3, h3 {
    font-size: 26px;
    letter-spacing: 0.2px;
    line-height: 36px;
}
.h4, h4 {
    font-size: 22px;
    letter-spacing: 0.3px;
    line-height: 30px;
}
.h5, h5 {
    font-size: 18px;
    letter-spacing: 0.4px;
    line-height: 24px;
}
.h6, h6 {
    font-size: 16px;
    letter-spacing: 0.3px;
    line-height: 20px;
}
img {
    vertical-align: middle;
}
.img, img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}
a {
     color: var(--primary-color);
     display: inline-block;
}
a:hover {
    color: var(--primary-color);
}
a.disabled {
    pointer-events: none;
    color: #ccc;
}
a[href*="#active"]:not([href*="#active"]) {
	background-color: var(--primary-color);
	color: #fff;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: var(--title-color);
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: var(--primary-color);
}
b,
label,
strong {
	font-weight: 500 !important;
	color: #424242;
}
hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 0;
    border-top: 1px solid var(--theme-border-color);
}
@media (max-width: 992px) {
    hr {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}
li {
    list-style: none;
}
.bg-theme {
    background-color: var(--primary-color) !important;
}
.bg-theme, .bg-theme>a {
    color: #fff !important;
}
.hide {
    display: none;
}
.abs_btn {
    position: absolute;
    top: 10px;
    right: 16px;
    border: none;
    background: transparent;
}
.copied {
    width: 200px;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    color: #ffffff;
    padding: 30px 20px;
    background-color: #000000;
    border-radius: var(--border-radius-size);
    transition: .4s opacity;
    z-index: 999;
}
span.rating i {
    font-size: 11px;
}
.text-base-sm, .text-body-sm {
    font-size: 13px !important;
    line-height: 20px !important;
	font-weight: 450 !important;
}
.text-sheet {
    font-size: 11px !important;
    line-height: 17px !important;
}
.text-caption {
    font-size: 10px !important;
    line-height: 16px !important;
}

.job-title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

[class*=span-] {
    grid-column: 1 / -1;
    min-width: 0;
}
.action-card {
    flex: 1 1 0 !important;
    position: relative;
    text-align: center;
}
.card-shadow {
    -webkit-backdrop-filter: blur(2.3393px);
    backdrop-filter: blur(2.3393px);
    background: hsla(0, 0%, 99%, .6);
    border-radius: var(--border-radius-size);
    box-shadow: 0 1.2rem 1.6rem -4px rgba(16, 24, 40, .08), 0 4px 6rem -0.2rem rgba(16, 24, 40, .03);
}
.info-box {
    border-radius: var(--border-radius-size);
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.cw-30 {
    width: 30px;
}
.cw-40 {
    width: 40px;
}
.cw-50 {
    width: 50px;
}
.cw-60 {
    width: 60px;
}
.cw-70 {
    width: 70px;
}
.cw-80 {
    width: 80px;
}
.cw-100 {
    width: 100px;
}

.ptb-80 {
    padding: 80px 0;
}
@media (max-width: 768px) {
    .ptb-80 {
        padding: 40px 0;
    }
}
.flex-gap-14 {
    gap: 14px;
}
.flex-gap-5 {
    gap: 5px;
}
.flex-gap-10 {
    gap: 10px;
}
.flex-gap-20 {
    gap: 20px;
}
.flex-gap-30 {
    gap: 30px;
}
.flex-gap-40 {
    gap: 40px;
}


.gap-5 {
    gap: 5px;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.gap-30 {
    gap: 30px;
}
.gap-40 {
    gap: 40px;
}
@media (min-width: 768px) {
   .br-md-1 {
    border-right: 1px solid var(--theme-border-color);
	}
}
.thumb-w-100{
    width: 100%;
}
@media (max-width: 768px) {
  .col-ss-1, .col-ss-2, .col-ss-3, .col-ss-4, .col-ss-5, .col-ss-6, .col-ss-7, .col-ss-8, .col-ss-9, .col-ss-10, .col-ss-11, .col-ss-12 {
    float: left;
  }
  .col-ss-12 {
    width: 100%;
  }
  .col-ss-11 {
    width: 91.66666667%;
  }
  .col-ss-10 {
    width: 83.33333333%;
  }
  .col-ss-9 {
    width: 75%;
  }
  .col-ss-8 {
    width: 66.66666667%;
  }
  .col-ss-7 {
    width: 58.33333333%;
  }
  .col-ss-6 {
    width: 50%;
  }
  .col-ss-5 {
    width: 41.66666667%;
  }
  .col-ss-4 {
    width: 33.33333333%;
  }
  .col-ss-3 {
    width: 25%;
  }
  .col-ss-2 {
    width: 16.66666667%;
  }
  .col-ss-1 {
    width: 8.33333333%;
  }
  .col-ss-pull-12 {
    right: 100%;
  }
  .col-ss-pull-11 {
    right: 91.66666667%;
  }
  .col-ss-pull-10 {
    right: 83.33333333%;
  }
  .col-ss-pull-9 {
    right: 75%;
  }
  .col-ss-pull-8 {
    right: 66.66666667%;
  }
  .col-ss-pull-7 {
    right: 58.33333333%;
  }
  .col-ss-pull-6 {
    right: 50%;
  }
  .col-ss-pull-5 {
    right: 41.66666667%;
  }
  .col-ss-pull-4 {
    right: 33.33333333%;
  }
  .col-ss-pull-3 {
    right: 25%;
  }
  .col-ss-pull-2 {
    right: 16.66666667%;
  }
  .col-ss-pull-1 {
    right: 8.33333333%;
  }
  .col-ss-pull-0 {
    right: auto;
  }
  .col-ss-push-12 {
    left: 100%;
  }
  .col-ss-push-11 {
    left: 91.66666667%;
  }
  .col-ss-push-10 {
    left: 83.33333333%;
  }
  .col-ss-push-9 {
    left: 75%;
  }
  .col-ss-push-8 {
    left: 66.66666667%;
  }
  .col-ss-push-7 {
    left: 58.33333333%;
  }
  .col-ss-push-6 {
    left: 50%;
  }
  .col-ss-push-5 {
    left: 41.66666667%;
  }
  .col-ss-push-4 {
    left: 33.33333333%;
  }
  .col-ss-push-3 {
    left: 25%;
  }
  .col-ss-push-2 {
    left: 16.66666667%;
  }
  .col-ss-push-1 {
    left: 8.33333333%;
  }
  .col-ss-push-0 {
    left: auto;
  }
  .col-ss-offset-12 {
    margin-left: 100%;
  }
  .col-ss-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-ss-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-ss-offset-9 {
    margin-left: 75%;
  }
  .col-ss-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-ss-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-ss-offset-6 {
    margin-left: 50%;
  }
  .col-ss-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-ss-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-ss-offset-3 {
    margin-left: 25%;
  }
  .col-ss-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-ss-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-ss-offset-0 {
    margin-left: 0%;
  }
}
.bg {
    background-color: #F2F6FD;
}
.pb-70 {
    padding-bottom: 70px;
}
.py-100 {
    padding: 100px 0;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.py-120 {
    padding: 120px 0;
}
.pt-120 {
    padding-top: 120px;
}
.pb-120 {
    padding-bottom: 120px;
}
.col-md-pr-2 {
    padding-right: 2%;
}
.col-md-pl-2 {
    padding-left: 2%;
}
.job-description p,
.text-excerpt p{
	margin: 0;
}
.list-group-item.active {
	color: inherit;
    background-color: transparent;
	border-color: var(--theme-border-color);
}
.indicator-online {
	position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 12px;
    height: 12px;
    background-color: #00cf00;
    border-radius: 50%;
}
.indicator-online.lt-2 {
    right: 2px;
    bottom: 2px;
}
.indicator-online.lt-5 {
    right: 5px;
    bottom: 5px;
}
.modal-backdrop {
    display: none;
}
.icon {
    vertical-align: middle;
}
.icon {
    word-wrap: normal;
    fill: currentcolor;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: inline-block;
    flex-shrink: 0;
    font-style: normal;
    font-weight: 400;
    height: 2.4rem;
    letter-spacing: normal;
    margin-top: -0.1em;
    text-transform: none;
    white-space: nowrap;
    width: 2.4rem;
}
.icon-box-outline {
    display: flex;
    gap: 10px;
    align-items: start;
}
.icon-box-outline i{
    font-size: 10px;
    padding: 6px;
    border: 1px solid brown;
    border-radius: 50px;
    line-height: normal;
    display: block;
}
.token-wrap{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
    gap: 8px;
}
.token-link {
    display: inline-flex;
    -moz-column-gap: 12px;
    column-gap: 8px;
    background: #f1f1f1;
    border-radius: 20px;
    color: #676767;
    font-weight: 550;
    max-height: 32px;
    min-height: 32px;
    padding: 0 12px;
    border: none;
    font-size: 80%;
    line-height: 30px;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: color .1s ease-in-out;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.break {
    word-wrap: break-word;
    word-break: break-word;
}

.text-pre-line {
    white-space: pre-line !important;
}

.flex-1 {
    flex: 1 !important;
}
.justify-space-between {
    justify-content: space-between !important;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 32px;
    gap: 32px;
}
.box-outline-border {
    padding-top: 20px;
    border-top: 1px solid var(--theme-border-color);
}

.af-grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
    gap: 20px;
}

.af-grid-container.gap-0 {
    gap: 0;
}
.span-3 {
    grid-column: span 3;
}
@media (min-width: 992px){
	.span-lg-9 {
		grid-column: span 9;
	}
	.span-lg-3 {
		grid-column: span 3;
	}
	.af-lbp-3 {
		border-left: 1px solid var(--theme-border-color);
		padding-left: 20px !important;
	}
}
@media (min-width: 768px){
	.span-lg-8 {
		grid-column: span 7;
	}
	.span-lg-4 {
		grid-column: span 4;
	}
	.af-lbp-4 {
		border-left: 1px solid var(--theme-border-color);
		padding-left: 20px !important;
	}
}
@media (min-width: 992px){
    .min-width-220 {
        width: 220px;
    }
}
/**************
btn Start 
***************/
.btn {
    position: relative;
    color: #ffffff;
    padding: 10px 20px;
    transition: all 0.5s;
    text-transform: capitalize;
    border-radius: var(--border-radius-size);
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
    z-index: 1;
    font-weight: inherit;
}
.btn::before {
    width: 100%;
    height: 480px;
    transition-duration: .2s;
}
.btn::before {
    content: "";
    height: 300px;
    width: 100%;
    background: #05264E;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn-sm {
    padding: 0.275rem 1.175rem;
    border-radius: var(--border-radius-size);
    font-size: 85%;
}
.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-primary.focus,.btn-primary:focus {
    box-shadow: none;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary.disabled,.btn-primary:disabled {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-primary.disabled:hover, .btn-primary:disabled:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(38,143,255,.5);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    box-shadow: none;
}
.dropdown-menu.right {
    right: 0;
    left: unset;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-color);
}
.wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    width: 100%;
    background: #F3F3F7;
    z-index: -1;
}
.site-wrapper {
    padding-top: 9rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .site-wrapper {
        padding-top: 7rem;
        margin-bottom: 0rem;
    }
}

.card {
    box-shadow: none;
    margin-bottom: 1rem;
}
.card-body {
    padding: 0;
}

.panel-default {
    border-color: transparent;
}
.panel {
    margin-bottom: 20px;
    padding: 5% 4%;
    background: #ffffff;
    border-radius: var(--border-radius-size);
    box-shadow: none;
    box-shadow: 0 1.2rem 1.6rem -4px rgba(16, 24, 40, .08), 0 4px 6rem -0.2rem rgba(16, 24, 40, .03);
}
@media (max-width: 768px){
	.panel {
        padding: 20px 15px;
    }
}
.panel-body {
    padding: 0;
}
.page-title {
    padding: 0;
}

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 600;
}

.available-jobs a {
    color: black;
}
/**************
table Start 
***************/

div.dataTables_wrapper div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    margin-bottom: 0;
}
div.dataTables_wrapper div.dataTables_length select {
    display: inline-block;
    padding: 0px 15px;
    height: 35px;
    background-color: #e4ebe4;
    outline: none;
    border-radius: var(--border-radius-size);
    transition: all .15s ease-in-out;
    border: 2px solid #e4ebe4;
    font-weight: 500;
}
div.dataTables_wrapper div.dataTables_filter input {
    height: 35px;
}
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
    border: 1px solid #dfd7ca;
}

.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid hsl(0deg 0% 92.94% / 10%);
}

table thead {
    background-color: rgb(0 0 0 / 9%);
}
table.table thead th {
    border-bottom: none;
}
table.table-bordered td, table.table-bordered th {
    border: none !important;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(247 247 247 / 64%);
}
.table-striped tbody tr:nth-of-type(even) {
    background: #f5f5f5;
}
.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgb(251 249 249);
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    vertical-align: middle;
	padding: 15px 15px;
}
table.dataTable thead tr:first-child th, table.dataTable thead tr:first-child td {
    font-weight: 400;
}
table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
    right: 2em;
}
table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
    right: 1.5em;
}
table.dataTable>thead .sorting:before, table.dataTable>thead .sorting:after, table.dataTable>thead .sorting_asc:before, table.dataTable>thead .sorting_asc:after, table.dataTable>thead .sorting_desc:before, table.dataTable>thead .sorting_desc:after, table.dataTable>thead .sorting_asc_disabled:before, table.dataTable>thead .sorting_asc_disabled:after, table.dataTable>thead .sorting_desc_disabled:before, table.dataTable>thead .sorting_desc_disabled:after {
    bottom: 1em;
}
table tr.disabled {
    pointer-events: none;
}
.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    cursor: default;
}

#datatables-buttons {
}
#datatables-buttons .btn-secondary {
    color: #000;
    background-color: #f7f6f6;
    border-color: #fafafa;
    font-weight: 500;
    font-size: 12px;
    padding: 0 10px;
    margin: 0 1px;
    border-radius: 0;
}

/**************
form-control Start 
***************/
.form-control {
    padding: 0px 15px;
    height: 40px;
    background-color: #e4ebe4;
    outline: none;
    border-radius: var(--border-radius-size);
    transition: all .15s ease-in-out;
    border: 2px solid #e4ebe4;
    font-weight: 500;
}

.form-horizontal .form-group {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: inset 0 0 0 transparent,none
}

select.form-control {
    text-transform: capitalize;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 24px;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.select2-container img {
    width: 20px;
    height: 12px;
}
.select2-container .select2-selection {
	padding: 0px 15px;
    min-height: 40px;
    background-color: #e4ebe4;
    outline: none;
    border-radius: var(--border-radius-size);
    transition: all .15s ease-in-out;
    border: 2px solid #e4ebe4 !important;
    font-weight: 500;
}
.select2-container .select2-selection:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: inset 0 0 0 transparent,none
}

.select2-container .select2-selection .select2-selection__rendered {
    line-height: 40px;
}
.select2-container .select2-selection .select2-selection__rendered li,
.select2-container .select2-selection .select2-selection__rendered span {
    line-height: 24px;
}
.select2-container .select2-selection .select2-selection__arrow {
    height: 38px;
}

body#tinymce {
    background: #e4ebe4;
}

fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.form-card {
    text-align: left
}
fieldset:not(:first-of-type) {
    display: none
}
.nav-pills .nav-link {
    background-color: #f8f6f6;
}
.navbar-badge {
    right: 0px;
    top: 0px;
}
.overflow-scrollbar {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    overflow-y: auto;
}
.overflow-scrollbar.box-7 {
    max-height: calc(72vh - 3.5rem);
    max-height: calc(72vh - 1rem);
}
/**************
site End
***************/

/**************
vertical-menu Start 
***************/
.nav.vertical-menu li {
    padding: 5px 15px;
    background: #e4ebe4;
    margin-bottom: 5px;
    color: #44444a;
}
.nav.vertical-menu li a {
    color: #44444a;
}
.nav.vertical-menu li:hover a {
    color: #008000;
}
/**************
vertical-menu End
***************/

/**************
site-navbar Start 
***************/
.column {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.column.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.column.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.column.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column.align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.site-brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-brand a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-brand a img {
   max-width: 180px;
}

@media (max-width: 768px) {
    .site-brand a img {
        max-width: 140px;
    }
}
.site-header .header-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.site-header .header-wrapper {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-between;
}

.site-header .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navbar {
    background: #ffffff80;
}
.site-navbar .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-sidebar .nav-link>.right:nth-child(2), .nav-sidebar .nav-link>p>.right:nth-child(2) {
    right: 0;
}
/**************
site-navbar End
***************/


/**************
site header Start 
***************/
.site-header .header-logo {
  color: #001b4f;
    font-weight: 700;
    font-size: 22px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}
.site-header .avatar img {
    width: 35px;
    border-radius: 50%;
}

.site-header .main-menu > li.avatar > a {
    display: flex;
    align-items: center;
    line-height: normal;
}
.site-header .main-menu > li.avatar > a .success-rate {
    font-size: 10px;
    color: var(--primary-color);
}

.site-header {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--theme-border-color);
}

.site-header .main-menu>li {
  position: relative;
}

.site-header .main-menu>li>a {
    color: #444;
    padding: 5px 1vw 5px 1vw;
    display: block;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}
.site-header .main-menu>li.active>a {
  color: var(--primary-color);
}

.site-header .main-menu>li:hover>a {
  color: var(--primary-color);
}

.site-header .main-menu>li>a>i {
    color: #0d0f16;
    line-height: normal;
}

.site-header .main-menu>li>a:hover>i {
  color: var(--primary-color);
}

.site-header .main-menu>li:hover>a i {
  color: var(--primary-color);
}

.site-header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 220px;
  overflow: hidden;
  background: #fff;
  list-style: none;
  padding: 0;
  z-index: 5;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  border-top: 2px solid var(--primary-color);
  transform: translateY(120%);
  -webkit-transform: translateY(120%);
  -moz-transform: translateY(120%);
  -ms-transform: translateY(120%);
  -o-transform: translateY(120%);
  
}
.site-header .main-menu li.nav-item.avatar .sub-menu {
  right: 0;
  left: unset;
}
.site-header .main-menu>li:hover .sub-menu {
  display: block;
  transform: translateY(0);
  -webkit-transform: translateY(00);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.site-header .main-menu .sub-menu .nav-separator-item {
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
}
.site-header .main-menu .sub-menu a {
  padding: 8px 15px;
  display: block;
  font-size: 14px;
  background: #fff;
  color: currentColor;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}
.site-header .main-menu .sub-menu a i {
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
  text-align: left;
  font-size: 12px;
}

.site-header .main-menu .sub-menu a:hover {
  background: var(--primary-color);
  color: #fff;
}
.site-header .main-menu .sub-menu a:hover i{
  color: #fff;
}

.site-header .header-logo figure img {
  max-width: 200px;
}

.site-header .demo-link {
  margin-left: 1vw;
}

.site-header .side-menu-close {
  background: transparent;
}

.site-header .side-menu-close span {
  background: #21395F;
  width: 28px;
}

#call-action .call-action {
    color: #444;
    padding: 5px 1vw 5px 1vw;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}
#call-action .call-action.action-1 {
    background: #ffffff;
    border: 1px solid transparent;
    padding: 6px 5px;
}
#call-action .call-action.action-1 a{
    color: #444;
}
#call-action .call-action.action-1 a i{
    color: var(--primary-color);
    font-size: 85%;
}
#call-action .call-action.action-2 a {
    color: #fff;
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #ffffff99;
    padding: 20px 0;
    transition: all .4s ease-in-out;
    font-weight: 600;
}
.site-header.sticky {
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid var(--theme-border-color);
    transition: all .4s ease-in-out;
    padding: 5px 0;
}

/**************
site-header End
***************/


/**************
side-menu Start 
***************/
.side-menu-wrap {
  width: 300px;
  position: fixed;
  left: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 15000;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-wrap.opened {
  left: 0;
  transition: .8s;
  -webkit-transition: .8s;
  -moz-transition: .8s;
  -ms-transition: .8s;
  -o-transition: .8s;
}

.side-menu-nav .side-menu-logo {
    border-bottom: 2px solid #FE8204;
    display: block;
    height: auto;
}

.side-menu-wrap .side-menu-logo img {
    width: 150px;
    margin-right: 10px;
    height: auto;
}

.side-menu-wrap .side-menu-logo {
    display: block;
    border-bottom: 1px solid #ddd;
	padding: 1rem;
}
.side-menu-wrap .avatar {
    display: flex;
    align-items: center;
    line-height: normal;
	padding: 1rem;
}
.side-menu-wrap .avatar img {
    width: 34px;
    border-radius: 50px;
    margin-right: 10px;
}
.side-menu-wrap .name {
    display: block;
    color: #000000;
    font-weight: 700;
    font-size: 14px;
}
.side-menu-wrap a {
    color: black;
}
.side-menu-wrap .avatar .success-rate {
    font-size: 10px;
    color:var(--primary-color);
}


.side-menu-nav .main-menu>li {
  position: relative;
}

.side-menu-nav .main-menu>li>a>i {
  color: #5c5c5c;
}

.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--primary-color);
  background: #fff;
  display: none;
}

.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #eee;
}

.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: #212529;
  font-weight: 600;
  font-size: .9em;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-nav .main-menu .sub-menu a i {
  color: #03328E;
}

.side-menu-nav .main-menu .sub-menu~i {
    font-size: .8em;
    position: absolute;
    padding: 12px 11px;
    right: 0;
    top: 0;
    border-left: 1px solid #ccc;
    cursor: pointer;
    left: 0;
    justify-content: flex-end;
}
.side-menu-nav .main-menu .sub-menu~i:hover {
    border-left: 1px solid #008000;
}

.side-menu-nav .main-menu .sub-menu a:hover {
  background: #F5F5F5;
}

.side-menu-nav .main-menu>li>a {
  color: #212529;
  padding: 15px 30px 15px 10px;
  font-weight: 600;
  display: block;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.side-menu-close {
  height: 40px;
  width: 40px;
  background: #21395F;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.side-menu-close span {
  height: 2px;
  width: 20px;
  background: #fff;
  position: relative;
  opacity: 1;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-close span:nth-child(1) {
  top: -5px;
}

.side-menu-close span:nth-child(3) {
  bottom: -5px;
}

.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}

.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}

.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}

/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}


.site-menu.main-nav {
    border-left: 1px solid beige;
}
.site-menu.main-nav li.nav-item .nav-link {
    display: block;
    padding: 1.5rem 1rem;
}
/**************
site-menu End
***************/


















/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #F2F6FD;
    padding-top: 146px;
    padding-bottom: 97px;
  z-index: 1;
}

.site-breadcrumb .hero-shape-3{
  top: 200px;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 35px;
  color: #05264E;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: #05264E;
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #05264E;
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: #05264E;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: #1a8ac8;
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: #1a8ac8;
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 280px;
  }
}


/* ===================
hero css 
====================== */

.hero-section {
  position: relative;
}

.hero-single {
  padding-top: 220px;
  padding-bottom: 150px;
  background: #F2F6FD;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single .hero-content .hero-title {
  color: #05264E;
  font-size: 45px;
  margin: 20px 0;
  font-weight: 800;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.hero-single .hero-content .hero-title span::after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  height: 25px;
  width: 100%;
  left: 0;
  bottom: -6px;
  z-index: -1;
  opacity: 0.1;
}

.hero-single .hero-content .hero-sub-title {
  color: var(--primary-color);
  font-size: 22px;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
}

.hero-single .hero-content p {
  color: #05264E;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

.hero-info-box{
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-info-img{
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.hero-info-img span {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  margin-left: -10px;
}

.hero-info-img span img{
  border-radius: 50%;
}

.hero-info-content h6{
  font-weight: 600;
}
 
.hero-info-content h6 span{
  color: var(--primary-color);
  font-weight: 700;
}

.hero-single .hero-img img{
  position: absolute;
  bottom: 0;
  width: 38%;
  z-index: 2;
}

.hero-single .hero-img-shape{
  position: absolute;
  bottom: 150px;
  margin-left: 100px;
  width: 70%;
  z-index: 1;
}

.hero-shape img{
  position: absolute;
}

.hero-shape .hero-shape-1{
  left: 0;
  bottom: 0;
  z-index: -1;
}

.hero-shape .hero-shape-2{
  left: 40%;
  top: 20%;
  width: 100px;
  opacity: .2;
  z-index: -1;
}

.hero-shape .hero-shape-3{
  right: 10%;
  top: 20%;
  width: 50px;
  opacity: .2;
  z-index: -1;
}

.hero-shape .hero-shape-4{
  left: 22%;
  top: 0;
  width: 120px;
  opacity: .1;
  z-index: -1;
}



@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
}

@media all and (max-width: 991px) {
  .hero-single{
    padding-top: 200px;
  }

  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }

  .hero-img {
    display: none;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1.5rem;
  }

  .hero-single .hero-content .hero-btn .theme-btn {
    padding: 12px 15px;
  }

  .search-form-wrapper{
    padding: 15px 20px !important;
  }

  .search-form-wrapper .theme-btn{
    width: 100%;
  }

}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .theme-btn {
    padding-left: 20px;
  }

  .hero-shape .hero-shape-2{
    left: 10%;
  }

  .search-form-wrapper div[class*='col-']{
    border-right: none !important;
  }

  .search-form-wrapper .theme-btn{
    margin-top: 20px;
  }
}



/* =====================
play btn
===================== */

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--primary-color);
  color: #fff !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--primary-color);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}




/* ===================
search css
====================== */

.search-form{
  position: relative;
}

.search-form-wrapper{
  background: #fff;
  border-radius: 15px;
  padding: 10px 20px 8px 15px;
  box-shadow: 0px 10px 20px rgb(10 42 105 / 7%);
}

.search-form-wrapper div[class*='col-']{
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.search-form-wrapper div[class*='col-']:nth-last-child(1),
.search-form-wrapper div[class*='col-']:nth-last-child(2){
  border: none;
}

.search-form .form-group-icon{
  position: relative;
}

.search-form .form-group-icon i{
  position: absolute;
  left: 10px;
  top: 16px;
}

.search-form .form-control{
  padding: 12px 10px 12px 35px;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  outline: none;
}

.search-form .nice-select{
  width: 100%;
  height: 50.5px;
  line-height: 50px;
  border-radius: 0px;
  padding-left: 30px;
  font-size: 16px;
  border: none;
  outline: none;
}

.search-form .nice-select:after{
  height: 8px;
  width: 8px;
  margin-top: -6px;
}

.search-form .nice-select .list{
  width: 100%;
  background: #fff;
  border-radius: 12px;
  border: none;
  box-shadow: 0px 10px 20px rgb(10 42 105 / 6%);
}

.search-form .nice-select .option.focus,
.search-form .nice-select .option.selected.focus,
.search-form .nice-select .option:hover{
  background: #E0EEFF;
  color: var(--primary-color);
}

.search-form-wrapper .theme-btn{
  padding: 10px 14px;
}

.popular-search{
  margin-top: 30px;
}

.popular-search span{
  font-weight: 600;
  color: #05264E;
  margin-right: 10px;
}

.popular-search a{
  color: #4F5E64;
}

.popular-search a:hover{
  color: var(--primary-color);
}

.search-area{
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.search-area .nice-select,
.search-area .form-control{
  border: 1px solid #ced4da;
  border-radius: 10px;
}

.search-area .search-form-wrapper{
  padding: 20px 30px;
}

.search-area .search-form-wrapper div[class*='col-']{
  border: none;
}

.search-area label{
  margin-bottom: 5px;
  color: #05264E;
}




/* ===================
category css
====================== */

.category-area {
 position: relative;
}

.category-item{
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: all .5s ease-in-out;
}

.category-item:hover{
  transform: translateY(-7px);
}

.category-icon{
  background: rgba(60, 101, 245, .1);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: var(--primary-color);
  border-radius: 11px;
  transition: all .5s ease-in-out;
}

.category-item:hover .category-icon{
  background: var(--primary-color);
  color: #fff;
}

.category-item h6{
  font-size: 17px;
  margin-bottom: 3px;
  transition: all .5s ease-in-out;
}

.category-item p{
  font-weight: 500;
  color: #757F95;
  font-size: 15px;
  transition: all .5s ease-in-out;
  margin: 0;
}

.category-item p:hover,
.category-item h6:hover{
  color: var(--primary-color);
}



/* ===================
career css
====================== */

.career-area{
  position: relative;
}

.career-img img{
  border-radius: 15px;
}

.career-img-3{
  margin-top: 24px;
}
@media (min-width: 992px){
    .career-right{
      margin-left: 20px;
    }
}
.career-list{
  margin-top: 20px;
  margin-bottom: 35px;
}

.career-list li{
  margin-bottom: 10px;
  font-weight: 500;
}

.career-list li i{
  color: var(--primary-color);
  margin-right: 5px;
}

@media all and (max-width: 992px) {
  .career-right {
    margin-top: 60px;
  }
}

@media all and (max-width: 768px) {
  .career-img-1{
    margin-bottom: 24px;
  }
}




/* ===================
job css
====================== */

.job-area{
  position: relative;
}

.job-item{
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  position: relative;
  transition: all .5s ease-in-out;
}

.job-item:hover{
  transform: translateY(-7px);
}

.job-bookmark{
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 37px;
  background: rgba(60, 101, 245, .1);
  right: 15px;
  top: 15px;
  font-size: 20px;
  text-align: center;
  color: var(--primary-color);
  border-radius: 50px;
}

.job-bookmark:hover{
  background: var(--primary-color);
  color: #fff;
}

.job-top{
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.job-title a:hover{
  color: var(--primary-color);
}

.job-employer{
  margin-top: 5px;
  color: var(--primary-color);
  font-weight: 500;
}

.job-employer:hover{
  color: var(--primary-color);
}

.job-img{
  width: 60px;
}

.job-img img{
  border-radius: 15px;
}

.job-info-list li{
  display: inline-block;
  margin: 0 10px 8px 0;
}

.job-skill{
  margin-top: 5px;
}

.job-skill a{
  background: rgba(60, 101, 245, .1);
  border-radius: 50px;
  padding: 2px 12px;
  color: var(--primary-color);
  font-size: 14px;
}

.job-skill a:hover{
  background: var(--primary-color);
  color: #fff;
}

.job-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, .04);
}

.job-salary-amount{
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.job-salary-type{
  font-size: 15px;
}

.job-bottom .theme-btn{
  padding: 7px 15px;
}


/* job grid */
.job-grid .job-item{
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-grid2 .search-form-wrapper,
.job-grid2 .job-sort,
.job-grid2 .job-sidebar{
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.job-grid2 .job-item{
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 15px;
}

.job-grid2 .job-img{
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.job-grid2 .job-img img{
  border-radius: 50%;
}

.job-grid2 .job-top{
  margin-bottom: 15px;
}


/* job list */
.job-list .job-item{
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-list2 .search-form-wrapper,
.job-list2 .job-sort,
.job-list2 .job-sidebar{
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.job-list2 .job-item{
  display: flex;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 15px;
}

.job-list2 .job-img{
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.job-list2 .job-img img{
  border-radius: 50%;
}

.job-list2 .job-top{
  margin-bottom: 15px;
}


@media all and (max-width: 991px) {
  .job-list2 .job-item {
    flex-direction: column;
    gap: 5px;
  }
}



/* ===================
job sidebar
=================== */

.job-sidebar{
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-sidebar-item{
  margin-bottom: 35px;
}

.job-sidebar-item:last-child{
  margin-bottom: 0;
}

.job-sidebar-title{
  font-size: 19px;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.job-sidebar .form-check-input{
  margin-top: 6px;
  box-shadow: none;
  border-color: #05264E;
}

.job-sidebar .form-check-input:focus{
  border-color: var(--primary-color);
}

.job-sidebar .form-check-label{
  width: 100%;
  color: #05264E;
}

.job-sidebar .form-check-label span{
  float: right;
}

.job-sidebar .form-check{
  margin: 12px 0;
}



/* ===================
job sort
=================== */
.job-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  margin-bottom: 25px;
  padding: 10px 10px 10px 15px;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-sort-list-grid a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #CED4DA;
  color: #05264E;
}

.job-sort-list-grid a.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.job-sort .nice-select {
  width: 100%;
  height: 46px;
  line-height: 44px;
  border-radius: 8px;
  padding-left: 15px;
  font-size: 16px;
  border-color: #CED4DA;
  color: #05264E;
}

.job-sort .form-control:focus,
.job-sort .nice-select:focus {
  border-color: var(--primary-color);
}

.job-sort .nice-select .list {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
}

.job-sort .nice-select .option.focus,
.job-sort .nice-select .option.selected.focus,
.job-sort .nice-select .option:hover {
  background: #F6F6F6;
  color: var(--primary-color);
  border-radius: 8px;
}

.job-sort .nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: -6px;
  right: 15px;
}

@media all and (max-width: 767px) {
  .job-sort {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .job-sort-box{
    width: 100%;
  }

}



/* ===================
job single
=================== */
 .job-single{
  position: relative;
 }

 .job-single-img img{
  border-radius: 15px;
 }

 .job-single-title{
  margin-top: 25px;
  margin-bottom: 15px;
 }

 .job-single-info{
  margin-top: 25px;
 }

 .job-single-info h5{
  margin-bottom: 15px;
 }

 .job-single-info ul li{
  margin: 8px 0;
  position: relative;
 }

 .job-single-info ul li i{
  color: var(--primary-color);
  margin-right: 5px;
 }

 .job-location h5{
  margin-top: 35px;
  margin-bottom: 20px;
 }

 .job-location iframe{
  width: 100%;
  height: 300px;
  border-radius: 15px;
 }

 .job-single-social-share{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .05);
 }

 .job-single-social-share span{
  color: #05264E;
  font-weight: 600;
  margin-right: 10px;
 }

 .job-single-social-share a{
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
  background: rgba(57, 101, 245, .1);
  color: var(--primary-color);
  margin: 0 2px;
 }

 .job-single-social-share a:hover{
  background: var(--primary-color);
  color: #fff;
 }

 .job-single .job-sidebar{
  padding: 30px;
 }

 .job-single-employer{
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
 }

 .job-single-employer img{
  width: 60px;
  height: 60px;
  border-radius: 15px;
 }

 .job-single-employer-info a{
  color: var(--primary-color) !important;
 }

 .job-single-heading-btns{
  margin-top: 20px;
 }

 .job-single-heading-btns .theme-btn2{
  margin-left: 8px;
 }

 .job-single-list{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .06);
 }

 .job-single-list h5{
  margin-bottom: 25px;
 }

 .job-single-list li{
  display: flex;
  gap: 15px;
  margin: 15px 0;
 }

 .job-single-list-icon{
  width: 30px;
  line-height: 38px;
  font-size: 25px;
  color: var(--primary-color);
 }

 .job-single-list-info h6{
  font-weight: 600;
  margin-bottom: 5px;
 }

 .job-employer-contact{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .05);
 }

 .job-employer-contact h5{
  margin-bottom: 15px;
 }

 .job-employer-contact li{
  margin: 8px 0;
 }

 .job-employer-contact li i{
  width: 20px;
 }

 .related-job{
  margin-top: 60px;
 }

 .related-job h4{
  margin-bottom: 30px;
 }

 .related-job .job-item{
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
 }





/* =====================
price range slider
===================== */

.price-range-slider{
  margin-bottom: 50px;
}

.price-range-slider .price-range-info{
  margin-bottom: 20px;
}

.priceRange {
  background: transparent;
  border: none;
  font-weight: 800;
  outline: none;
  color: var(--primary-color);
}

.price-range-slider label {
  color: #05264E;
  font-weight: 500;
}

.price-range-slider .ui-slider-handle {
  top: -0.36em !important;
  border-radius: 50px;
  background: #fff !important;
  border: 4px solid var(--primary-color) !important;
  width: 1.1em;
  height: 1.1em;
  outline: none;
}

.price-range-slider .ui-widget.ui-widget-content {
  background: #E6E9EC;
  border: none;
  border-radius: 50px;
  padding: 0;
  height: 0.4em;
}

.price-range-slider .ui-widget-header {
  background: var(--primary-color);
}




/* ===================
employer css
====================== */
.employer-area{
  position: relative;
}

.employer-item{
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 25px;
  background: #fff;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: all .5s ease-in-out;
}

.employer-item:hover{
  transform: translateY(-7px);
}

.employer-bookmark{
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 37px;
  background: rgba(60, 101, 245, .1);
  right: 15px;
  top: 15px;
  font-size: 20px;
  text-align: center;
  color: var(--primary-color);
  border-radius: 50px;
}

.employer-bookmark:hover{
  background: var(--primary-color);
  color: #fff;
}

.employer-img{
  width: 60px;
}

.employer-img img{
  border-radius: 50px;
}

.employer-content h5 a:hover{
  color: var(--primary-color);
}

.employer-job{
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 3px;
}

.employer-content p{
  margin-top: 8px;
}

.employer-content p i{
  color: var(--primary-color);
}

/* employer grid */
.employer-grid .employer-item{
  border: none;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-grid2 .employer-item{
  flex-direction: column;
}

.employer-grid2 .search-form-wrapper,
.employer-grid2 .job-sidebar,
.employer-grid2 .job-sort{
 box-shadow: none;
 border: 1px solid rgba(0, 0, 0, .08);
}

/* employer list */
.employer-list .employer-item{
  border: none;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-list2 .employer-item{
  align-items: center;
}

.employer-list2 .employer-img{
  width: 100px;
}

.employer-list2 .employer-img img{
  border-radius: 15px;
}

.employer-list2 .search-form-wrapper,
.employer-list2 .job-sidebar,
.employer-list2 .job-sort{
 box-shadow: none;
 border: 1px solid rgba(0, 0, 0, .08);
}




/* ===================
employer single css 
====================== */
.employer-single{
  position: relative;
}

.employer-heading{
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.employer-heading-content{
  display: flex;
  gap: 20px;
}

.employer-heading-content img{
  width: 160px;
  height: 160px;
  border-radius: 15px;
}

.employer-heading-list{
  margin-top: 5px;
}

.employer-heading-list li{
  display: inline-block;
  margin-right: 10px;
}

.employer-heading-list li i{
  margin-right: 5px;
}

.employer-heading-rate{
  margin-top: 8px;
}

.employer-heading-rate i{
  color: #F5BE3D;
}

.employer-heading-tag{
  margin-top: 15px;
}

.employer-heading-tag a{
  background: #F2F6FD;
  padding: 2px 20px;
  margin-right: 8px;
  border-radius: 50px;
}

.employer-heading-tag a:hover{
  color: var(--primary-color);
}

.employer-gallery-item{
  position: relative;
  margin-bottom: 25px;
}

.employer-gallery-item img{
  border-radius: 15px;
}

.employer-gallery-item .gallery-link{
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  border-radius: 50px;
  text-align: center;
  color: #fff;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.employer-gallery-item:hover .gallery-link{
  opacity: 1;
  visibility: visible;
}

.employer-single-job .job-item{
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-single .job-sidebar{
  padding: 30px;
}

.employer-overview ul{
  margin-top: 25px;
  margin-bottom: 30px;
}

.employer-overview li {
  margin: 8px 0;
  font-weight: 500;
}

.employer-overview li span{
  float: right;
  font-weight: normal;
}

.employer-overview li a{
  color: var(--primary-color);
}

.employer-location-map{
  margin-top: 30px;
}

.employer-location-map iframe{
  border-radius: 15px;
  margin-top: 20px;
  width: 100%;
  height: 250px;
}

.employer-social{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.employer-social-link{
  margin-top: 18px;
}

.employer-social-link a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  border-radius: 50px;
  color: #fff;
  text-align: center;
  margin-right: 5px;
}

.employer-social-link a:hover{
  background: #05264E;
  color: #fff;
}

.employer-heading-with-img{
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-single-img img{
  border-radius: 15px;
}

.employer-heading-with-img .employer-heading{
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}



@media all and (max-width: 767px) {
  .employer-heading{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .employer-heading-tag a:first-child{
    margin-bottom: 15px;
  }

  .employer-heading-content{
    flex-direction: column;
  }
}


/* ===================
candidate css 
====================== */
.candidate-item{
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.candidate-item:hover{
  transform: translateY(-7px);
}

.candidate-bookmark{
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 37px;
  background: rgba(60, 101, 245, .1);
  right: 15px;
  top: 15px;
  font-size: 20px;
  text-align: center;
  color: var(--primary-color);
  border-radius: 50px;
}

.candidate-bookmark:hover{
  background: var(--primary-color);
  color: #fff;
}

.candidate-bio{
  display: flex;
  align-items: center;
  gap: 14px;
}

.candidate-bio-content h5 a:hover{
  color: var(--primary-color);
}

.candidate-img{
  width: 95px;
}

.candidate-img img{
  border-radius: 50%;
}

.candidate-content p{
  margin-top: 15px;
}

.candidate-bio-rate i{
  font-size: 13px;
  color: #F5BE3D;
}

.candidate-bio-rate span{
  font-size: 13px;
  margin-left: 2px;
}

.candidate-skill{
  margin-top: 15px;
  margin-bottom: 20px;
}

.candidate-skill a{
  background: #F2F6FD;
  padding: 2px 20px;
  border-radius: 50px;
  margin: 5px 5px 5px 0;
}

.candidate-skill a:hover{
  background: var(--primary-color);
  color: #fff;
}

.candidate-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.candidate-salary{
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.candidate-salary span{
  font-weight: normal;
  font-size: 15px;
  color: #757F95;
}

.candidate-bottom .theme-btn{
  padding: 6px 15px;
}


/* candidate grid */
.candidate-grid2 .candidate-item{
  flex-direction: column;
  box-shadow: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bio{
  flex-direction: column;
}

.candidate-grid2 .search-form-wrapper,
.candidate-grid2 .job-sidebar,
.candidate-grid2 .job-sort{
 box-shadow: none;
 border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bottom{
  justify-content: center;
}



/* candidate list */
.candidate-list2 .candidate-item{
  align-items: center;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  justify-content: space-between;
}

.candidate-list2 .candidate-img{
  width: 100px;
}

.candidate-list2 .candidate-img img{
  border-radius: 15px;
}

.candidate-list2 .search-form-wrapper,
.candidate-list2 .job-sidebar,
.candidate-list2 .job-sort{
 box-shadow: none;
 border: 1px solid rgba(0, 0, 0, .08);
}


@media all and (max-width: 767px) {
  .candidate-list2 .candidate-item {
    flex-direction: column;
    text-align: center;
  }

  .candidate-list2 .candidate-skill{
    padding: 20px 0;
  }

  .candidate-list2 .candidate-bio{
    flex-direction: column;
  }
}



/* ===================
candidate single css 
====================== */
.candidate-single{
  position: relative;
}

.candidate-heading{
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.candidate-heading-content{
  display: flex;
  gap: 20px;
}

.candidate-heading-content img{
  width: 185px;
  height: 185px;
  border-radius: 15px;
}

.candidate-heading-list{
  margin-top: 5px;
}

.candidate-heading-list li{
  display: inline-block;
  margin-right: 10px;
}

.candidate-heading-list li i{
  margin-right: 5px;
}

.candidate-heading-rate{
  margin-top: 8px;
}

.candidate-heading-rate i{
  color: #F5BE3D;
}

.candidate-heading-tag{
  margin-top: 15px;
}

.candidate-heading-tag a{
  background: #F2F6FD;
  padding: 2px 20px;
  margin-right: 8px;
  border-radius: 50px;
}

.candidate-heading-tag a:hover{
  color: var(--primary-color);
}

.candidate-heading-with-img{
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.candidate-single-img img{
  border-radius: 15px;
}

.candidate-heading-with-img .candidate-heading{
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}

.candidate-skill-item{
  margin-bottom: 20px;
  position: relative;
}

.candidate-skill-item .skill-tag {
  margin-bottom: 10px;
  display: inline-block;
  color: #757F95;
  font-size: 15px;
  position: relative;
}

.candidate-skill-item .skill-box {
  width: 100%;
  height: 5px;
  background: #F1F1FA;
  border-radius: 50px;
  position: relative
}

.candidate-skill-item .progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 50px;
  background: var(--primary-color);
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  width: 0;
}

.candidate-skill-item .skill-percentage {
  color: #757F95;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: -35px;
}

.candidate-timeline-wrapper {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-timeline {
  margin-bottom: 50px;
  margin-left: 50px;
}

.candidate-timeline:last-child {
  margin-bottom: 0px;
}

.candidate-timeline-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 15px;
  border-radius: 50px;
  color: var(--primary-color);
  margin-left: 15px;
  background: rgba(60, 101, 245, .1);
}

.candidate-timeline-title {
  color: #05264E;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

.candidate-timeline-title::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--primary-color);
  background: #fff;
  border-radius: 50%;
  left: -50px;
  top: 3px;
}

.candidate-timeline-title::after {
  content: '';
  position: absolute;
  width: 22px;
  border-top: 3px solid var(--primary-color);
  left: -26px;
  top: 13px;
}

.candidate-timeline-sub-title {
  margin: 10px 0px;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-color);
}

.candidate-timeline-discription p:last-child {
  margin-bottom: 0px;
}

.candidate-single .job-sidebar{
  padding: 35px;
}

.candidate-sidebar-btns a:first-child{
  margin-right: 8px;
}

.candidate-social{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.candidate-social-link{
  margin-top: 18px;
}

.candidate-social-link a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  border-radius: 50px;
  color: #fff;
  text-align: center;
  margin-right: 5px;
}

.candidate-social-link a:hover{
  background: #05264E;
  color: #fff;
}


@media all and (max-width: 767px) {
  .candidate-heading{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .candidate-heading-tag a:first-child{
    margin-bottom: 15px;
  }

  .candidate-heading-content{
    flex-direction: column;
  }
}




/* ===================
location css 
====================== */
.location-area{
  position: relative;
}

.location-item{
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 25px;
  background: #fff;
  transition: all .5s ease-in-out;
}

.location-item:hover{
  transform: translateY(-7px);
}

.location-img img{
  border-radius: 15px;
  width: 100%;
}

.location-content{
  padding-top: 10px;
}

.location-content h5{
  margin-bottom: 5px;
}

.location-content h5 a:hover{
  color: var(--primary-color);
}

.location-content-info{
  display: flex;
  gap: 15px;
  align-items: center;
}





/* ===================
banner css 
====================== */

.banner-item {
  width: 100%;
  height: Auto;
  border-radius: 10px;
  position: relative;
}

.banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, .3);
}

.banner-item img {
  border-radius: 10px;
  width: 100%;
}

.banner-item-content {
  position: absolute;
  top: 20px;
  right: 20px;
}

.banner-item-content h2 {
  color: #fff;
}

.banner-item-content p {
  color: #fff;
}

.banner-item-content a {
  padding: 6px 20px;
  color: #fff;
  background: var(--primary-color);
  margin-top: 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: all .5s ease-in-out;
}

.banner-item-content a:hover {
  background: var(--primary-color);
}

.banner-item2 .banner-item-content {
  top: unset;
  right: unset;
  left: 20px;
  bottom: 20px;
}

.banner-item3 .banner-item-content {
  top: unset;
  bottom: 20px;
}

@media all and (max-width: 991px) {
  .banner-item {
    margin-bottom: 25px;
  }
}




/* ===================
about css 
====================== */

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  margin: 0 40px 0 20px;
}

.about-img img {
  border-radius: 15px;
}

.about-img::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #ECF0FE;
  border-radius: 50%;
  left: -50px;
  top: -50px;
  z-index: -1;
}

.about-shape {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.about-right {
  position: relative;
  display: block;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 35px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.about-list li .about-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .about-icon span {
  font-size: 20px;
  color: var(--primary-color);
}


@media all and (max-width: 991px) {
  .about-left {
    margin-bottom: 60px;
  }
}




/* ===================
service css 
====================== */

.service-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-item {
  position: relative;
  padding: 15px 15px 30px 15px;
  margin-top: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  transition: all .5s ease-in-out;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.service-img {
  overflow: hidden;
  border-radius: 10px;
  margin-top: -30px;
}

.service-img img {
  border-radius: 12px;
}

.service-item:hover .service-img img {
  transform: scale(1.1) rotate(2deg);
  transition: all .5s ease-in-out;
}

.service-content {
  position: relative;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 30px 0 30px 0;
  margin: -45px 0 0 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  position: relative;
  transition: all .5s ease-in-out;
}

.service-icon i {
  color: var(--primary-color);
  font-size: 48px;
  line-height: 1;
  transform: rotate(-45deg);
}

.service-icon img {
  width: 70px;
}

.service-arrow {
  margin-top: 25px;
}

.service-title a {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #05264E;
}

.service-title a:hover {
  color: var(--primary-color);
}

.service-arrow a {
  width: 50px;
  height: 50px;
  line-height: 42px;
  border-radius: 15px;
  border: 3px solid #fff;
  background: var(--primary-color);
  transform: rotate(45deg);
  color: #fff;
  font-size: 20px;
  text-align: center;
  position: relative;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.service-item:hover .service-arrow a {
  border-color: var(--primary-color);
  background: #fff;
}

.service-item .service-arrow a i {
  transition: all .5s ease-in-out;
}

.service-item:hover .service-arrow a i {
  color: var(--primary-color);
  transform: rotate(-45deg);
}




/* service-area 2 */
.service-area2 {
  position: relative;
}

.service-area2 .service-item {
  background: #00081D;
  padding: 28px;
  position: relative;
}

.service-area2 .service-icon {
  margin: 0 auto;
}

.service-area2 .service-item p,
.service-area2 .service-item .service-title a {
  color: #fff;
}

.service-area2 .service-item:hover .theme-btn {
  background: var(--primary-color);
}

.service-slider .service-item {
  box-shadow: none;
}

.service-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.service-slider .owl-dots .owl-dot span {
  background: rgba(28, 185, 200, .4);
  margin: 5px;
  width: 20px;
  height: 7px;
  border-radius: 50px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.service-slider .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}





/* ====================
service single
==================== */

.service-single-wrapper .widget-title {
  font-weight: 700;
}

.service-single-list i {
  color: var(--primary-color);
  margin-right: 10px;
}

.service-download a {
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  color: #05264E;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.service-download a i {
  margin-right: 10px;
}

.service-download a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.service-details h3 {
  color: #05264E;
  font-weight: 700;
}

.service-details img {
  border-radius: 7px;
}




/* ===================
skill css 
====================== */

.skills-section {
  margin-top: 40px;
}

.skill-left {
  position: relative;
}

.skill-left img {
  border-radius: 7px;
}

.skill-shape {
  position: absolute;
  z-index: -1;
  left: -22px;
  top: -1px;
  width: 100%;
  height: 100%;
}

.skill-img {
  position: relative;
  display: block;
  -webkit-mask-image: url(../img/shape/03.png);
  mask-image: url(../img/shape/03.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: 100% 100%;
  -webkit-mask-position: center center;
  mask-position: center center;
  overflow: hidden;
}

.progress-box {
  margin-bottom: 30px;
  position: relative;
}

.progress-box:last-child {
  margin-bottom: 0;
}

.progress-box h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.progress-box .progress {
  box-shadow: 0px 10px 31px rgb(169 177 193 / 17%);
  border: 1px solid #D5E0F5;
  height: 16px;
  padding: 4px;
  border-radius: 50px;
  background-color: #fff;
}

.progress-box .progress .progress-bar {
  background: linear-gradient(to right, #fe6d1c 0%, #fd3d10 100%);
  border-radius: 50px;
}

@media all and (max-width: 991px) {
  .skill-right .site-heading {
    font-size: 30px;
  }

  .skill-img img {
    width: 100%;
  }

}




/* ===================
feature css 
====================== */

.feature-area {
  position: relative;
}

.feature-item {
  padding: 50px 20px;
  position: relative;
  background: #05264E;
  text-align: center;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 12px;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.feature-item::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  border-radius: 50%;
  right: -100px;
  top: -100px;
  z-index: -1;
}

.feature-icon {
  font-size: 80px;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
}

.feature-title {
  color: #fff;
  margin-bottom: 10px;
}

.feature-item p {
  color: #fff;
}




/* ===================
video css 
====================== */

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 15px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 450px;
  z-index: 100;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }

  .video-wrapper h1 {
    font-size: 28px;
    margin-top: 25px;
  }
}



/* ===================
step/process css 
====================== */

.process-area {
  position: relative;
}

.process-item {
  position: relative;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: all .5s ease-in-out;
}

.process-item:hover{
  transform: translateY(-7px);
}

.process-count {
  position: absolute;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  right: 15px;
  top: 15px;
  color: var(--primary-color);
  opacity: .1;
}

.process-icon{
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  background: var(--primary-color);
  margin-bottom: 10px;
}

.process-content h5{
  margin-bottom: 5px;
}




/* ===================
choose css 
====================== */

.choose-area {
  position: relative;
  z-index: 1;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 35px;
}

.choose-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background: #05264E;
  border-radius: 50px;
  color: #fff;
  transition: 0.4s;
  margin-top: 2px;
  font-size: 40px;
}

.choose-item-content {
  flex: 1;
}

.choose-item-content h4 {
  margin-bottom: 5px;
}

.choose-img {
  margin-left: 50px;
  position: relative;
  z-index: 1;
}

.choose-img img {
  border-radius: 12px;
}

.choose-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #05264E;
  left: 0;
  top: 0;
  border-radius: 12px;
  transform: rotate(5deg);
  z-index: -1;
}



@media all and (max-width: 991px) {
  .choose-img {
    margin-top: 60px;
  }
}




/* ===================
testimonial css 
====================== */

.testimonial-area {
  position: relative;
}

.testimonial-item{
  background: #F2F6FD;
  padding: 20px;
  border-radius: 15px;
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  right: 30px;
  bottom: -20px;
  font-size: 80px;
  color: var(--primary-color);
  opacity: .1;
}

.testimonial-rate{
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-content{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.testimonial-author-img{
  width: 60px;
}

.testimonial-author-img img{
  border-radius: 50%;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: rgba(60, 101, 245, .2);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
  width: 18px;
}



/* ===================
counter css 
====================== */

.counter-area {
  position: relative;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
  position: relative;
  transition: all .5s ease-in-out;
}

.counter-box:hover{
  transform: translateY(-7px);
}

.counter-box .icon {
  position: relative;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background:var(--primary-color);
  text-align: center;
  color: #fff;
}

.counter-box .counter-number{
  display: flex;
  align-items: center;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: #05264E;
  font-size: 30px;
  font-weight: 600;
}

.counter-box .counter-sign{
  font-size: 30px;
  color: #05264E;
  line-height: 1;
  font-weight: 600;
}

.counter-box .title {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 1199px) {
  .counter-area .counter-box {
    margin-bottom: 25px;
  }
}



/* ===================
cta-area css 
====================== */

.cta-area {
  position: relative;
}

.cta-wrapper{
  background: var(--primary-color);
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-wrapper::before{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #587AF3;
  border-radius: 50%;
  left: 10%;
  top: -50px;
  z-index: -1;
}

.cta-wrapper::after{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 20px solid #587AF3;
  border-radius: 50%;
  right: 10%;
  bottom: -50px;
  z-index: -1;
}

.cta-content {
    padding: 39px 0;
}

.cta-content h1{
  color: #fff;
}

.cta-content p{
  color: #fff;
  font-size: 18px;
  margin: 10px 0 25px 0;
}

.cta-content .btn{
  background: #fff;
  color: var(--primary-color);
  padding: 10px 40px;
}

.cta-content .btn:hover{
  color: #fff;
}






















/**************
information Start 
***************/
.information {
    clear: both;
    text-align: left;
    margin-bottom: 2%;
}
.information table tr {
    gap: 20px;
    display: flex;
    width: 100%;
}
.information table tr td {
    width: 50%;
    background: #fff;
    border-radius: var(--border-radius-size);
    float: left;
}
/**************
information End
***************/


/**************
login-form Start 
***************/
.login-form {
    position: relative;
    display: flex;
    align-items: center;
	justify-content: space-between;
	width: 100%;
    height: 90px;
	margin-top: 0px;
    padding: 0 40px;
	background-color: #E7F1FB;
}
.login-form form {
    width: 100%;
    display: flex;
}
.login-form form label {
    float: left;
    width: auto
}
.login-form form input {
    float: left
}
.login-form form input {
    border: 1px solid #326C9E;
    margin: 0 5px;
    box-shadow: 0 0 10px #C7FAFF;
    padding: 2px;
    width: 150px;
}
.login-form form .g-recaptcha {
    float: left;
    width: auto
}
.login-form form #form-left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.login-form form #form-right {
    position: relative;
    float: right;
    position: relative;
    width: 22%;
	margin-top: 20px
}
.login-form form #form-right input.btn {
    position: absolute;
    top: 4px;
    right: 10px
}
.login-form form input.btn {
    background-color: #0074DB;
    color: #FFF;
    cursor: pointer;
    height: 27px;
    line-height: 25px;
    margin-left: 0;
    padding: 0;
    width: 85px;
}
.login-form .signup span.one {
    color: #2C6DA7;
    width: 100%;
    float: left;
    text-align: right
}
.login-form .signup span.two {
    margin-left: 5px;
    width: 100%;
    float: left;
    text-align: right;
	padding-right: 10px;
}
.login-form .signup span.two a {
    color: #0373D7;
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    text-decoration: none
}

/**************
login-form End
***************/


/**************
banner Start 
***************/
.banner {
    height: 450px;
    border-radius: var(--border-radius-size)
}

.banner-overly {
    background-color: transparent;
    background-image: linear-gradient(100deg, var(--primary-color) 0%, #07E9F000 50%);
    height: 100%;
    border-radius: var(--border-radius-size);
}
.banner .title {
    list-style: none;
    font-size: 30px;
    border-radius: 6px;
    line-height: 1.6em;
    color: white;
    font-style: italic;
    font-weight: bold;
    padding: 4% 0px 0px 4%;
}
.banner ul {
    padding: 0 4% 3%;
}
.banner ul li {
    list-style: none;
    font-size: 20px;
    line-height: 1.6em;
    color: white;
	font-style: italic;
    font-weight: bold;
}
.banner .signup {
    height: 48px;
    max-width: 205px
}
.banner .signup-btn{
    margin: 0px 4%;
}
.banner .signup-btn {
    background-color: #ffffff;
    border-radius: var(--border-radius-size);
    border: 1px solid var(--secondary-color);
    display: inline-block;
    cursor: pointer;
    color: var(--secondary-color);
    font-family: Arial;
    font-size: 20px;
    padding: 15px 40px;
    text-decoration: none;
    text-shadow: 0px 1px 0px var(--secondary-color);
    font-weight: bold;
    font-style: italic;
}
.banner .signup-btn:hover {
	background-color: var(--secondary-color);
	color: #fff;
	
}
.banner .signup-btn:active {
	position:relative;
	top:1px;
}
.pay-content img {
    width: 100%;
}
/**************
Banner End
***************/


/**************
Service Start 
***************/
.service-box {
    width: 100%;
    float: left;
	background: var(--primary-color);
	border-radius: var(--border-radius-size);
}
.service-box .inner {
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
	background: #e2ffe0;
}
.service-box .service-title {
    color: #FFF;
    margin: 0;
    padding: 15px 22px;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}
.service-box .inner h1 {
    padding: 15px;
}
.service-box .inner .data {
    margin: 0 auto 30px;
    width: 90%;
}
.service-box .inner .data h2 {
    font-size: 3rem;
    font-style: italic;
    padding-bottom: 10px;
    padding-top: 5px;
    color: var(--secondary-color);
    border-bottom: 1px dashed var(--primary-color);
}
.service-box .inner .data .text {
    color: #01346B;
    font-size: 14px;
    font-weight: 400;
    margin-left: 15px;
    margin-top: 10px;
    padding: 0;
}
.service-box .inner .data .text li {
    padding: 6% 0;
    list-style: none;
}
.service-box .inner .data .text p.first {
    margin: 0 0 15px
}
.service-box .inner .data .text p.last {
    margin: 0 0 15px
}
.service-box .inner .data .text p {
    margin: 0 0 3px
}
/**************
Service End
***************/


/**************
Activity Start 
***************/
.activity-box {
    margin-top: 5px;
}
.activity-head {
    float: left;
    margin-left: 25px
}
.activity-head img {
    float: left
}

.activity-head h1 {
    color: #0171D3;
    margin-left: 15px;
    margin-top: 10px;
    float: left
}
.activity-inner h4 {
    color: #0474D8;
    font-size: 100px
}

.activity-inner .list {
    color: #2949B0;
    font-size: 10px;
    line-height: 15px;
    margin-top: 10px
}

.activity-inner .one {
    width: 150px;
    float: left
}

.activity-inner .two {
    width: 50px;
    float: left;
    text-align: center
}

.activity-inner .three {
    width: 30px;
    float: left;
    margin-left: 25px
}

.activity-inner .four {
    float: left;
    margin-left: 20px;
    text-align: center;
    width: 40px
}

.activity-inner .five {
    float: left;
    text-align: center;
    width: 55px
}

.activity-inner .six {
    float: left;
    margin-left: 15px;
    width: 150px
}
.be-apart {
    background-color: var(--secondary-color);
    float: right;
    height: 30px;
    margin-top: 15px;
    text-align: center;
    width: 240px;
    margin-right: 10px;
    line-height: 30px;
    border-radius: var(--border-radius-size);
}

.be-apart a {
    color: #FFF;
    font-size: 13px;
    font-style: italic;
    text-decoration: none
}
/**************
activity End
***************/


/**************
social-link Start 
***************/
.social-link ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.social-link ul li {
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 4px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 0 !important;
    cursor: pointer;
}
.social-link ul li:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.social-link ul li:hover a {
    color: #fff;
}
/**************
social-link End
***************/


/**************
404 page Start 
***************/
.page_404{ 
    padding:40px 0; 
    background:#fff; 
}

.page_404  img{ 
    width:100%;
}

.four_zero_four_bg{
 background-image: url(../images/404.gif);
    height: 400px;
    background-position: center;
}
 
 
.four_zero_four_bg h1{
    font-size:80px;
}
 
.four_zero_four_bg h3{
	font-size:80px;
}
			 
.link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
}
	
.contant_box_404{ 
    margin-top:-50px;
}
/**************
404 page End
***************/


/**************
timeline Start 
***************/
.timeline-item {
	 padding: 0em 2em 2em;
	 position: relative;
	 color: rgba(0, 0, 0, .7);
	 border-left: 2px solid rgba(0, 0, 0, .3);
}
 .timeline-item p {
	 font-size: 1rem;
}
.timeline-item::after {
    width: 20px;
    height: 20px;
    display: block;
    top: 0px;
    position: absolute;
    left: -11px;
    border-radius: 20px;
    content: '';
    border: 2px solid rgba(0, 0, 0, .3);
    background: white;
}
 .timeline-item:last-child {
	 border-image: linear-gradient(to bottom, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, 0)) 1 100%;
}
/**************
timeline End
***************/


/**************
breadcrumb Start 
***************/
.breadcrumb {
  width: 100%;
  list-style: none;
  display: inline-block;
  border: 1px solid #e9ecef;
  padding: 0;
}
.breadcrumb .fa {
  font-size: 14px;
}
.breadcrumb li {
  width: 25%;
  float: left;
}
.breadcrumb li a {
  color: #2e2e2e;
  display: block;
  background: #fbfbfb;
  text-decoration: none;
  position: relative;
  height: 48px;
  line-height: 48px;
  padding: 0 10px 0 5px;
  text-align: center;
}
.breadcrumb li:nth-child(even) a {
  background-color: #e9ecef;
}
.breadcrumb li:nth-child(even) a:before {
  border-color: #e9ecef;
  border-left-color: transparent;
}
.breadcrumb li:nth-child(even) a:after {
  border-left-color: #2980b9;
}
.breadcrumb li:first-child a {
  padding-left: 15px;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px 0 0 4px;
}
.breadcrumb li:first-child a:before {
  border: none;
}
.breadcrumb li:last-child a {
  padding-right: 15px;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0;
  border-radius: 0 4px 4px 0;
}
.breadcrumb li:last-child a:after {
  border: none;
}
.breadcrumb li a:before, .breadcrumb li a:after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid #fbfbfb;
  border-width: 24px 20px;
  width: 0;
  height: 0;
}
.breadcrumb li a:before {
  left: -20px;
  border-left-color: transparent;
}
.breadcrumb li a:after {
  left: 100%;
  border-color: transparent;
  border-left-color: #f5f2f2;
}
.breadcrumb li a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}
.breadcrumb li a:hover:before {
  border-color:var(--primary-color);
  border-left-color: transparent;
}
.breadcrumb li a:hover:after {
  border-left-color: var(--primary-color);
}
.breadcrumb li a:active {
  background-color: var(--primary-color);
}
.breadcrumb li a:active:before {
  border-color: var(--primary-color);
  border-left-color: transparent;
}
.breadcrumb li a:active:after {
  border-left-color: var(--primary-color);
}
/**************
breadcrumb End
***************/


/**************
description Start 
***************/
.description-wrapper {
  position: relative;
}
.description-wrapper .show, 
.description-wrapper .hide {
  position: absolute;
  bottom: 0em;
  z-index: 100;
  text-align: center;
}

.description-wrapper .hide {display: none;}
.description-wrapper .show:target {display: none;}
.description-wrapper .show:target ~ .hide {display: block;}
.description-wrapper .show:target ~ .description {
   max-height: 2000px;    
}

.description-wrapper .show:target ~ .fade {
  margin-top: -88px;
  background: transparent;
}

.description-wrapper .description {
  position: relative;
  margin: 2em auto;
  max-height: 250px;
  overflow: hidden;
  transition: max-height .5s ease;
}
.description-wrapper .fade {
  background: linear-gradient(to bottom, rgba(100, 100, 100, 0) 0%, #fbfbfb 75%);
  height: 100px;
  margin-top: -100px;
  position: relative;
  opacity: 1;
}

.line-clamp-7 .excerpt-hidden {
    -webkit-line-clamp: 7;
}
.line-clamp-6 .excerpt-hidden {
    -webkit-line-clamp: 6;
}
.line-clamp-5 .excerpt-hidden {
    -webkit-line-clamp: 5;
}
.line-clamp-4 .excerpt-hidden {
    -webkit-line-clamp: 4;
}
.line-clamp-3 .excerpt-hidden {
    -webkit-line-clamp: 3;
}
.line-clamp-2 .excerpt-hidden {
    -webkit-line-clamp: 2;
}
.line-clamp-1 .excerpt-hidden {
    -webkit-line-clamp: 1;
}
 .excerpt-hidden {
	 position: relative;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 .excerpt-hidden:after {
	 content: "";
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 0px;
	 background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
}
 .excerpt-visible {
	 height: auto;
	 overflow: auto;
}
/**************
description End
***************/


/**************
reports Start 
***************/
.reports-overview .nav-tabs .nav-item {
    position: relative;
}
.reports-overview .nav-tabs .nav-item.active {
    position: relative;
    border-bottom: 2px solid #39ad31;
    background: #dcf5f8;
}
.reports-overview .nav-tabs .nav-link.active {
    color: #495057;
    background: #dcf5f8;
    border-color: #dee2e6 #dee2e6 #fff;
}
.reports-overview .nav-tabs .nav-item .nav-link, 
.reports-overview .nav-tabs .nav-link.active {
    border: none;
}
.reports-overview .nav-tabs .nav-link {
    display: block;
    padding: 1rem 0;
}
.reports-overview .nav-tabs .nav-link:focus, 
.reports-overview .nav-tabs .nav-link:hover {
    border: none;
}
/**************
reports End
***************/


/**************
site timeline Start 
***************/
.list-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid var(--theme-border-color);
}
.list-inline li {
    position: relative;
}
.list-inline li.active::before,
.list-inline li:active::before {
	content: '';
    position: absolute;
	width: 100%;
    height: 3px;
    bottom: 0;
    border-bottom: 3px solid #28a745;
    margin-bottom: -2px;
}
.list-inline li a {
    color: var(--title-color);
    font-weight: 500;
}

.list-inline .nav-item.show .nav-link, 
.list-inline .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: transparent;
}
.list-inline .nav-link:focus, 
.list-inline .nav-link:hover {
    border-color: transparent;
}

/**************
site timeline End
***************/


/**************
chat Start 
***************/
.content-outbox {
	position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: calc(420px - 1rem);
    max-height: calc(420px - 1rem);
    overflow: hidden;
    overflow-y: auto;
}

.msg-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatlist .form-control {
    border-radius: var(--border-radius-size);
    background-color: #e6ecf1;
}

.chatlist .form-control:focus {
    outline: 0;
    box-shadow: inherit;
}

a.add img {
    height: 36px;
}

.chatlist .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    align-items: center;
    justify-content: space-between;
    flex-wrap: inherit;
}

.chatlist .nav-tabs .nav-item {
    width: 100%;
}

.chatlist .nav-tabs .nav-link {
    width: 100%;
    color: #180660;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: capitalize;
    margin-top: 5px;
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.chatlist .nav-tabs .nav-item.show .nav-link,
.chatlist .nav-tabs .nav-link.active {
    color: #222;
    background-color: #fff;
    border-color: transparent transparent #000;
}

.chatlist .nav-tabs .nav-link:focus,
.chatlist .nav-tabs .nav-link:hover {
    border-color: transparent transparent #000;
    isolation: isolate;
}
.chatlist .chat-box-head {
    padding: 16px 0;
}

.chatlist .content-outbox {
    height: calc(436px - 1rem);
    max-height: calc(436px - 1rem);
}

.chat-list h3 {
    color: #222;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
}

.chat-list p {
    color: #343434;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
}

.chat-list .item {
    margin-bottom: 15px;
    position: relative;
    text-decoration: none;
    background: #e6ecf1;
    padding: 10px;
    border-radius: var(--border-radius-size);
}
.chat-list .item:hover { 
    background: #343a40; 
}

.chat-list .item.active h3,
.chat-list .item:hover h3{ 
    color: #fff;
}
.chat-list .item.active p,
.chat-list .item:hover p{ 
    color: #fff; 
}

.chat-box-head {
    padding: 14px;
    border-bottom: 1px solid #ccc;
    border-radius: var(--border-radius-size) var(--border-radius-size) 0px 0px;
}

.chat-box-head h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}

.chat-box-head p {
    color: #d3d3d3;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
}


.moreoption {
    display: flex;
    align-items: center;
    justify-content: end;
}

.moreoption .navbar {
    padding: 0;
}

.moreoption li .nav-link {
    color: #222;
    font-size: 15px;
}

.moreoption .dropdown-toggle::after {
    display: none;
}

.moreoption .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: auto;
    right: 0;
    margin-top: 0.125rem;
}
.chat-box-body {
	
}
.chat-box-body > .chat {
    height: calc(410px - 3.5rem);
    max-height: calc(420px - 1rem);
    overflow: hidden;
}
.chat-box-body > .chat {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    overflow-y: auto;
}
.chat-box-body > .chat {
    margin: 0;
}

.chat-box-body ul li {
    list-style: none;
    margin: 30px 0;
}

.chat-box-body ul li.sender,
.chat-box-body ul li.repaly {
    display: block;
    width: 100%;
    position: relative;
}
.chat-box-body .avatar {
    border-radius: 50%;
    float: left;
    height: 40px;
    width: 40px;
	margin-right: 20px;
}
.chat-box-body .avatar img {
    border-radius: 50%;
    width: 40px;
    height: auto;
}
.chat-box-body .chat p {
    padding: 0;
    margin: 0;
}
.chat-box-body ul li .message ul li {
    list-style: none;
    margin: 0;
}

.chat-box-footer {
	padding: 15px;
    border-top: 1px solid #ccc;
    border-radius: 0px 0px var(--border-radius-size) var(--border-radius-size);
}
.chat-box-footer .attach {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}
.chat-box-footer .button-wrapper {
    position: relative;
    width: 125px;
    height: auto;
    text-align: left;
    margin: 0 auto;
    display: block;
    background: #F6F7FA;
    border-radius: var(--border-radius-size);
    padding: 10px 15px;
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.chat-box-footer .button-wrapper span.label {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    color: #343945;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 12px;
}

.chat-box-footer .button-wrapper #upload {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.chat-box-footer .button-wrapper .form-control {
    border-radius: var(--border-radius-size);
}

.chat-box-footer .button-wrapper span.label img {
    margin-right: 5px;
}

.chat-box-footer .button-wrapper {
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.chat-box-footer button:focus {
    outline: 0;
}

.chat-box-footer .form-control {
    border-radius: 0px;
    background: transparent;
    border: none;
    color: #ffffff;
}
.chat-box-footer .btn {
    border-radius: 0;
    border-width: 1px;
    box-shadow: none;
    padding: 0.6rem 1.75rem;
}


@media (max-width: 768px) {
	.content-outbox {
		margin-bottom: 20px;
	}
	.content-outbox {
	    height: 100%;
        min-height: calc(100% - 1rem);
    }
    .chatlist .content-outbox {
        height: 100%;
        max-height: 100%;
    }
}

/* chat search Box */
#the-filter {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
}
 
/* LIST */
#chat-list .item.hide { display: none !important; }



/**************
chat End
***************/


/**************
progress Start 
***************/
.progress-wrap {
    margin-top: 0;
    margin-bottom: 1rem;
}
.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    transition: width .6s ease;
}
.bg-warning {
    background-color: #ffc107!important;
}
.progress-label-left
{
    float: left;
    margin-right: 0.5em;
    line-height: 1em;
}
.progress-label-right
{
    float: right;
    margin-left: 0.3em;
    line-height: 1em;
}
/**************
progress End
***************/


/**************
Review Start 
***************/
#review_content {
    position: relative;
    border-radius: var(--border-radius-size);
    background: #f8f9fa;
    border-top: 3px solid #089f9f;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 1rem;
}
.star-light {
	color:#e9ecef;
}
.star-ratings {
  unicode-bidi: bidi-override;
  color: #ccc;
  font-size: 20px;
  position: relative;
  margin: 0;
  padding: 0;
} 
.star-ratings .fill-ratings {
    color: #e7711b;
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}   
.star-ratings span {
    display: inline-block;
}

.star-ratings .empty-ratings {
    padding: 0;
    display: block;
    z-index: 0;
}

/**************
ratings End
***************/


/**************
Hero Start 
***************/
.hero-section {
    overflow: hidden;
    background: #008000;
}
.hero-section .text-black {
    color: black;
}
.hero-section .up-n-link {
    color: #008000;
    background-color: #ffffff;
    border-color: #ffffff;
}
.hero-group-img-wrapper a {
    margin-left: -20px;
}

.hero-group-img-wrapper a:first-of-type {
    margin-left: 0;
}

.hero-group-img-wrapper a .hero-group-img {
    width: 65px;
    border-radius: 50%;
    border: 3px solid #fff;
}

.hero-counter-title {
    font-size: 30px;
}

.hero-rating {
    padding-left: 20px;
    border-left: 1px solid var(--theme-border-color);
}

.hero-rating i {
    font-size: 10px;
}

/* Hero Two */
.hero-two {
    /* min-height: 100vh; */
    padding: 350px 0 170px 0;
}

.hero-two::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 19, 28, 0.8);
}

.hero-two-title {
    font-size: 60px;
    line-height: 70px;
}

.hero-two-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tag-item {
    padding: 10px 14px;
    color: var(--dark-100);
    border-radius: 50px;
    background: #1d2c32;
    box-shadow: 20px 20px 45px 5px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    text-align: center;
    display: inline-block;
    line-height: 1;
}
/**************
Hero End 
***************/


/**************
profile Start 
***************/

.box-profile .nav-link {
    display: block;
    padding: .3rem 0rem;
}

/**************
profile End 
***************/


/**************
Radio buttons Start 
***************/
.radio-wrapper {
    padding: var(--border-radius-size);
    background: #e4ebe4;
    border-radius: var(--border-radius-size);
}

.radio-buttons 
{
  text-align: center;
}

.custom-radio input 
{
  display: none;
}

.radio-btn 
{
  width: 100%;
  height: 122px;
  border: 3px solid transparent;
  display: inline-block;
  border-radius: var(--border-radius-size);
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px #c3c3c367;
  cursor: pointer;
}

.radio-btn > i {
  color: #ffffff;
  background-color: #008000;
  font-size: 20px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) scale(2);
  border-radius: 50px;
  padding: 3px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
  width: 30px;
  height: 30px;
  line-height: 24px;
}

.radio-btn .hobbies-icon 
{
  width: 100%;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radio-btn .hobbies-icon img 
{
    display: block;
    width: 40px;
    margin-bottom: 20px;
    margin: 0 auto;
    border-radius: 50px;
    border: 1px solid #e4ebe4;
}
.radio-btn .hobbies-icon i 
{
  color: #FFDAE9;
  line-height: 80px;
  font-size: 60px;
}

.custom-radio input:checked + .radio-btn 
{
  border: 2px solid #008000;
}

.custom-radio input:checked + .radio-btn > i 
{
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
/**************
radio End 
***************/



/**************
box Start 
***************/

.box-style {
    padding: 28px;
    margin-bottom: 14px;
}

/**************
box End 
***************/




/* Fade in Css */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

.fade-in.one {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.fade-in.two {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fade-in.three {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7;
  animation-delay: 0.7s;
}


.emojionearea-standalone {
  float: right;
}
.task-details ul, .job-details ul {
    list-style: none;
    padding: 0;
}


@media (min-width: 992px){
    
    .hero-section picture img {
        margin-bottom: -80px;
    }
    .hero-title {
        font-size: 70px;
        line-height: 70px;
    }
    .thumb-w-40{
        width: 40%;
    }
    .thumb-w-50{
        width: 50%;
    }
    .thumb-w-60{
        width: 60%;
    }
    .thumb-w-80{
        width: 80%;
    }
}

@media (min-width: 768px){
    .container-fluid {
        max-width: 1500px;
    }
    .box-style {
        height: 140px;
    }
}

@media (max-width: 992px){
	.site-menu.main-nav ul.nav-menu {
		margin: auto;
		padding: 0;
	}
	.site-menu.main-nav li.nav-item {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.site-menu.main-nav li.nav-item .nav-link {
        display: block;
        padding: .5rem 1rem;
        list-style: none;
        border-bottom: 1px solid #d9dfdd;
        color: #444444;
        font-weight: 500;
        font-size: 13px;
    }
	.site-menu.main-nav li.nav-item .navbar-badge {
		right: 10px;
		top: 10px;
	}
    .site-header .column.align-center.center {
		display: none;
	}
	#call-action .call-action.sign-up {
		display: none;
	}
    .success-info .title {
        font-weight: 700;
    }
	.hide-mobile {
		display: none;
	}
	.page-title {
        margin-top: 10px;
    }
}


@media (max-width: 768px){
    .container-fluid,
	.container {
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .box-outline-border {
        padding: 0;
        border: none;
        border-top: 1px solid var(--theme-border-color);
        padding-top: 20px;
    }
    .h1, h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .h2, h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .h3, h3 {
        font-size: 22px;
        line-height: 28px;
    }
    .h4, h4 {
        font-size: 17px;
        line-height: 20px;
    }
    .h5, h5 {
        font-size: 16px;
        line-height: 20px;
    }
    .h6, h6 {
        font-size: 14px;
        line-height: 20px;
    }
	.page-title {
		text-align: center;
	}
	.w-50 {
        width: 100% !important;
    }
    .m-hide {
		display: none;
	}
	div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
        text-align: left;
        margin-bottom: 10px;
    }
    table thead {
        display: none;
    }
    table tr {
        padding: 15px !important;
        display: block;
    }
    table td, table th {
        border: none !important;
        width: 100%;
        display: block;
    }
    table tr {
        justify-content: center;
    }
	.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
		padding: 2px;
	}
	table tr.tasks-list td .status,
	table tr.tasks-list td {
        display: flex;
        justify-content: space-between;
    }
	
	.call-action.post-a-job {
		display: none;
	}
	.information table tr {
        padding: 0px !important;
        display: block;
        width: 102%;
        margin-left: -1%;
        margin-right: -1%;
    }
	.information table tr td {
		width: 48%;
		margin: 1%;
		padding: 5px;
        font-size: 11px;
	}
	.banner {
        height: 400px;
    }
    .banner .signup-btn {
        padding: 10px 30px;
    }
    .box-style {
        padding: 15px;
    }
}




/**************
site footer Start 
***************/
.site-footer {
    border-top: 1px solid var(--theme-border-color);
    background: #FFF;
}
.site-footer ul {
    list-style: none;
    padding: 0;
}
.site-footer ul li {
    display: block;
}
.site-footer ul li a {
    color: var(--body-color);
}
.site-footer ul li a:hover {
    opacity: 0.7;
}

.footer-widgets {
    padding: 120px 0 50px;
    background: rgb(0 0 0 / 98%);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
}
.footer-widgets .left{
	padding-right: 1.5rem;
	border-right: 1px solid rgb(255 255 255 / 14%);
}
.footer-widgets .right{
	padding-left: 1.5rem;
}
.footer-widgets .widget-title {
    color: #ffffff;
}
.footer-widgets p {
    color: #b9b9b9;
    line-height: 30px;
}
.Coppyright {
    background: #f7f7f7;
    padding: 30px 0;
}
.Coppyright .copyright-text{
    color: #222222;
}


@media (max-width: 768px){
	.footer-widgets .left{
    	padding-right: 0;
    	border-right: none;
    }
    .footer-widgets .right{
    	padding-left: 00;
    }
    .footer-widgets {
        padding: 60px 0 20px;
    }
    .Coppyright .copyright-text {
        text-align: center !important;
        margin: 5px 0;
    }
}

/* ===================
footer css 
====================== */

.footer-area {
  background: #F2F6FD;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-area::before{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #1a8ac8;
  left: 30%;
  top: -50px;
  border-radius: 50%;
  opacity: .08;
}

.footer-area::after{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 20px solid #1a8ac8;
  right: 30%;
  bottom: -50px;
  border-radius: 50%;
  opacity: .08;
}
.footer-widget {
  position: relative;
  z-index: 1;
}
.footer-widget {
    margin-top: 20px;
    padding-top: 6%;
    padding-bottom: 4%;
}

.footer-widget-box {
  margin-bottom: 20px;
}
.footer-logo img {
  width: 180px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.copyright .copyright-text {
  color: #66789C;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #1a8ac8;
  font-weight: 500;
}

.footer-widget-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  z-index: 1;
  font-weight: 600;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2.5px;
  background-color: #1a8ac8;
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 10px;
  height: 2.5px;
  background-color: #1a8ac8;
  bottom: 0;
  left: 35px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-list li a {
  position: relative;
  /* padding-left: 10px; */
  transition: all .5s ease-in-out;
}

.footer-list li a::before{
  /* content: ""; */
  /* position: absolute; */
  /* height: 1.8px; */
  /* width: 7px; */
  /* background: #66789C; */
  /* left: 0; */
  /* top: 10px; */
  /* transition: all .5s ease-in-out; */
}

.footer-list li a:hover::before{
  width: 10px;
  background: #1a8ac8;
}

.footer-list li a i {
  margin-right: 5px;
  color: #1a8ac8;
  font-weight: 400;
  font-size: 14px;
}

.footer-list li a:hover {
  padding-left: 5px;
  color: #1a8ac8;
}

.footer-widget-box p {
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: #fff;
  color: #1a8ac8;
  transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
  background: #1a8ac8;
  color: #fff;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--body-color);
}

.footer-contact li a {
  color: #66789C;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    margin-right: 15px;
    border-radius: 50px;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--primary-color);
}

.subscribe-form .form-group-icon{
  position: relative;
}

.subscribe-form .form-control {
  padding: 17px 65px 17px 45px;
  border-radius: var(--border-radius-size);
  box-shadow: none;
  border: none;
}
.subscribe-form .btn {
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-size: 20px;
  padding: 5px 15px;
}

.subscribe-form .btn span{
  margin-right: 0;
}

.footer-download{
  margin-top: 20px;
}

.footer-download h5{
  margin-bottom: 12px;
}

.footer-download-content{
  display: flex;
  gap: 10px;
}

.footer-download img{
  border-radius: var(--border-radius-size);
}


@media all and (max-width: 992px) {

  .footer-area::before {
    display: none;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 768px) {

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}













@media (max-width: 768px){
    div.dataTables_wrapper div.dataTables_length label {
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    div.dataTables_wrapper div.dataTables_length select {
        width: -webkit-calc(100% - 100px);
        width: -moz-calc(100% - 100px);
        width: calc(100% - 100px);
    }
    
    div.dataTables_wrapper div.dataTables_filter label {
        width: 100%;
    }
    div.dataTables_wrapper div.dataTables_filter input {
        width: -webkit-calc(100% - 50px);
        width: -moz-calc(100% - 50px);
        width: calc(100% - 50px);
    }
    .avatar.mr-3 {
        display: none;
    }
    .btn-row.btn-row-right {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        column-gap: 5px;
        row-gap: 5px;
        justify-content: end;
        width: 110px;
    }
    .token-link {
        min-height: 22px;
        line-height: 22px;
    }
}


