:root {
    --primary-color: #E6B80B;
    --btn-fill-color: #A38308;
    --read-more-btn-color: #D1A70A;
    --background-yellow: #FDF8E7;
    --background-yellow-2: #FBF4DA;
    --background-yellow-3: #FAF7E5;
    --background-blue: #CDEFF8;
    --white: #f2f2f2;
    --black: #313132;
    --gray: #646464;
    --gray-2: #808080;
    --border-gray: #DEDEDE;
    --dashboard-border: #F3F3F3;
}

.title-section {
    height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 150px;
}

.title-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    text-align: left;
}

.title-section h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.title-section p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: rgb(204 204 204);
    width: 100%;
    text-align: center;
}

.contact-options-div .contact-option {
    margin-bottom: 30px;
}

.title-section .a-group {
    margin-top: 30px;
}

.experience-section .a-group {
    flex-direction: column;
}

.experience-section .a-group .outline-btn {
    margin-bottom: 15px;
}

.a-group-outer {
    justify-content: start;
}

.title-section .a-group .outline-btn {
    color: var(--white);
    border: 2px solid var(--white);
}

.our-story-section img,
.our-values-section img,
.our-legacy-section img {
    width: 100%;
    border-radius: 8px;
}


.our-legacy-section img,
.how-it-work-section img {
    border-radius: 8px 8px 0px 0px;
}

.how-it-work-bg .px-2 {
    margin-top: 50px;
}

.our-story-section-right {
    padding: 0px 25px 0px 25px;
    margin-top: 20px;
}

.vision-mission-div .card-content {
    margin-bottom: 0px;
}

.vision-div {
    margin-bottom: 30px;
}

.our-values-section-right {
    margin-top: 30px;
}

.our-values-section-left {
    padding: 0px 15px 0px 15px;
}

.person-bg {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 30%, #FDF8E7 30%, #FDF8E7 70%, #FFFFFF 70%, #FFFFFF 100%);
    text-align: center;
}

.person {
    width: 300px;
    height: 300px;
    border-radius: 100%;
}

.card-title-inner {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.person-bg .card-title-inner {
    margin-top: 20px;
}

.card-div {
    background-color: var(--background-yellow-2);
    border-radius: 8px;
}

.card-div-margin-bottom {
    margin-bottom: 20px;
}

.space-for-read-more {
    margin-bottom: 50px !important;
}

.margin-right-img-div {
    padding-right: 15px;
}

.margin-left-img-div {
    padding-left: 15px;
}

.margin-bottom-img {
    margin-bottom: 15px;
}

.testimonial-section {
    margin-bottom: 150px;
}

.inquiry-img {
    margin-bottom: 20px;
}

.contact-div {
    padding-right: auto;
}

.contact-option {
    padding: 20px;
}

.contact-option svg {
    margin-bottom: 20px;
    fill: var(--btn-fill-color);
}

.how-it-work-item,
.vision-mission-div {
    border-radius: 8px;
    box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.1) !important;
}

/* Form======================================================================== */

.form-div {
    padding-left: auto;
}

.contact-options-div {
    flex-direction: column;
}

.form-div h4 {
    font-size: 32px;
    line-height: 60px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.ar_form {
    margin-top: 50px;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-section .testimonial-slider {
    margin-top: 50px;
}

.ar_form * {
    transition: .3s ease-in-out;
    /* box-sizing: border-box; */
}

.ar_form form {
    width: 100%;
}

.ar_form form input::placeholder,
.ar_form form textarea::placeholder {
    color: var(--gray-2);
    font-weight: 300;
}

.ar_form form input,
.ar_form form textarea {
    width: 100%;
    margin: 10px 0px;
    padding: 10px 10px;
    border-radius: 6px;
    font-weight: 700;
    background-color: transparent;
    outline: none;
}

.ar_form form input[type="text"],
.ar_form form input[type="email"],
.ar_form form input[type="file"],
.ar_form form input[type="password"],
.ar_form form textarea {
    border: 1px solid var(--gray-2);
    color: var(--gray);
}

.ar_form form input[type="text"]:focus,
.ar_form form input[type="email"]:focus,
.ar_form form input[type="file"]:focus,
.ar_form form input[type="password"]:focus,
.ar_form form textarea:focus {
    border-color: var(--btn-fill-color);
}

.ar_form form input[type="submit"] {
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    background-color: var(--btn-fill-color);
    padding: 15px;
    text-align: center;
    width: 180px;
    border: none;
}

/* File Chooser===================================================== */

.file-input-container {
    position: relative;
    width: 100%;
    border: 1px solid var(--gray-2);
    border-radius: 6px;
    margin: 10px 0px;
    padding: 10px;
    font-weight: 300;
    cursor: pointer !important;
}

.file-input-container span {
    cursor: pointer !important;
    font-size: 12px;
    color: var(--btn-fill-color);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer !important;
}

.custom-file-label {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

/* ======================================================== */

/* ============================================================================================ */

.service-btn-slider .slick-prev {
    left: -5px;
}

.service-btn-slider .slick-next {
    right: 7px;
}

.popup-div {
    display: none !important;
}

.contact-us-section {
    margin-bottom: 150px;
}

.vision-mission-div svg {
    fill: var(--primary-color);
    margin-right: 0px;
    margin-bottom: 20px;
}

.service-btn-slider {
    margin-top: 50px;
}

.service-btn-item {
    padding: 30px;
}

.service-btn-item img {
    margin-right: 20px;
    width: 50px;
}

.service-btn-item a {
    width: fit-content;
    padding: 15px;
    color: var(--black);
    border-radius: 6px;
    border: 1px solid var(--gray);
    font-weight: 600;
    font-size: 16px;
}

.services-web {
    display: none;
}

.services-mobile {
    margin-bottom: 20px;
}

.service-btn-slider .slick-next::before {
    content: url('../icon/arrow-right.png');
}

.service-btn-slider .slick-prev::before {
    content: url('../icon/arrow-left.png');
}

.step-number-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border-radius: 100%;
    background-color: white;
    box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 20px;
}

.step-number-div h3 {
    font-size: 50px;
    font-weight: 700;
    color: var(--black);
}

.how-it-work-bg {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 5%, #FDF8E7 5%, #FDF8E7 95%, #FFFFFF 95%, #FFFFFF 100%);
    text-align: center;
}

/* Scroll Down============================================================================================================================== */
.scroll-btn {
    margin-top: 20px;
}

.scroll-btn a {
    display: inline-block;
    font-size: 2em;
    font-weight: lighter;
    color: var(--white);
    transform: rotateZ(90deg);
}

.scroll-btn a span {
    float: left;
    animation: colors 1.5s infinite;
}

.scroll-btn a span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-btn a span:nth-child(2) {
    animation-delay: 0.33s;
}

/* .scroll-btn a span:nth-child(3) {
    animation-delay: 0.66s;
} */

@keyframes colors {

    0%,
    40%,
    100% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }
}

/* Circle Half Border================================================= */

/* .circle {
    background-color: white;
    border-radius: 100%;
}

.circle-1 {
    border-top: 5px solid transparent;
    border-top-color: var(--primary-color);
}

.circle-2 {
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
}

.circle-3 {
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.circle-4 {
    border: 5px solid transparent;
    border-color: var(--primary-color);
} */

/* .circle:hover {
    border-color: var(--primary-color);
} */

/* Popup==================================================== */

.popup {
    position: fixed;
    bottom: 0;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none;
    border-radius: 8px 8px 0px 0px;
}

/* .popup h4{
    border-bottom: 1px solid var(--border-gray);
} */
.popup-body {
    padding: 20px 30px 30px 30px;
}

.popup-header {
    border-radius: 8px 8px 0px 0px;
    padding: 30px 30px 10px 30px;
    background-color: var(--background-yellow-2);
}

.popup a {
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
}

.close-btn {
    border: none;
    background-color: transparent;
    padding: 0 !important;
}

.popup a.active {
    color: var(--primary-color) !important;
}

.profile-social-media {
    border-top: 1px solid var(--border-gray);
    margin-top: 20px;
}

.visible {
    display: block;
}

/* dashboard===================================================================== */

.dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    height: 100%;
    padding: 65px 0px;
    border-right: 1px solid var(--dashboard-border);
}

.dashboard-nav ul {
    list-style-type: none;
    padding: 0;
}

.dashboard-nav ul li {
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.dashboard-nav svg {
    margin-right: 10px;
}

.dashboard-nav ul li a {
    display: flex;
    padding: 20px 110px;
}

.dashboard-nav ul li a {
    color: var(--gray);
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}

.dashboard-nav ul li:hover,
.dashboard-active {
    background: linear-gradient(to right, #E6B80B 0%, #FAE79E 100%);
    border-bottom: 1px solid rgba(230, 184, 11, 1);
}

.dashboard-nav ul li:hover a,
.dashboard-active a {
    color: var(--black) !important;
}

.dashboard-nav ul li:hover svg path,
.dashboard-active a svg path {
    stroke: var(--black);
}

main {
    margin-left: 0px;
}

.main-content {
    background-color: #FAFAFA;
    padding: 10px;
}

.dashboard-header .header-user-img {
    width: 35px;
    border-radius: 100%;
}

.dashboard-nav .logo {
    width: 115px;
}

.dashboard-nav .logo-anchor {
    margin-bottom: 80px;
}

.dashboard-header {
    padding: 25px 10px;
    background-color: white;
}

.dashboard-title {
    font-size: 20px;
    font-weight: 600;
}

.notification-div {
    position: relative;
    margin-right: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: rgba(255, 46, 46, 1);
    border-radius: 100%;
    position: absolute;
    right: 0px;
    top: -5px;
}

.dashboard-profile-div {
    background-color: white;
    padding: 25px 10px;
    border-radius: 10px;
    box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashboard-profile-div img {
    width: 150px;
    margin-right: 0px;
}

.dashboard-profile-div .dashboard-title {
    margin-bottom: 5px;
}

.agreement-div {
    background-color: #EBFED7;
    border-radius: 8px;
    padding: 10px;
    height: fit-content;
    font-size: 15px;
    line-height: 32px;
    font-weight: 500;
    margin-top: 30px;
}

/* dashboard accordion========================================= */


.dashboard-accordion-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashboard-accordion-item-header {
    padding: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dashboard-accordion-item-header::after {
    content: url(../icon/arrow-down.png);
    position: absolute;
    right: 25px;
}

.dashboard-accordion-item-header.active::after {
    content: url(../icon/arrow-top.png);
}

.dashboard-accordion-item-body {
    transition: max-height 0.5s ease-out;
    overflow: hidden;
    max-height: fit-content !important;
}

.dashboard-accordion-item-body-content {
    padding: 10px;
}

.your-property-div {
    border-radius: 6px;
    padding: 10px;
    background-color: #FAFAFA;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.your-property-div img {
    border-radius: 8px;
    width: 100%;
}

.your-property-div .dashboard-title {
    margin: 15px 0px;
}

.your-property-img-div {
    position: relative;
    width: fit-content;
    margin-right: 20px;
}

.property-single-right h2 {
    margin-bottom: 20px !important;
}

.your-property-img-div svg {
    margin-right: 0px !important;
}

.property-single-img {
    width: 100% !important;
    border-radius: 8px !important;
    margin-right: 0px !important;
}

.your-property-img-div {
    margin-bottom: 20px;
}

.your-property-img-div .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 25px;
}

.your-property-div .description svg {
    margin-right: 10px;
}

.payment-history-div-header button {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--black);
    background-color: white;
}

.payment-history-div-header h2 {
    margin-bottom: 15px !important;
}

.payment-history-div {
    padding: 0px;
}

.payment-history-div-header {
    width: 100%;
    padding: 25px 10px;
}

.payment-history-table {
    width: -webkit-fill-available;
}

.payment-history-table thead {
    background-color: var(--background-yellow);
}

.payment-history-table thead th {
    padding: 10px 25px;
}

.payment-history-table tbody td {
    padding: 15px 25px;
}

.payment-history-table tbody tr {
    border-bottom: 1px solid #EAECF0;
}

.payment-history-table input,
.payment-history-table tbody td svg {
    margin-right: 10px;
}

.payment-history-table thead label {
    color: var(--gray-2);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.file-size {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--gray-2);
}

.pdf-label {
    color: var(--black);
}

.view-option {
    margin-right: 40px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.view-document {
    margin-right: 20px;
}

.documents-div .overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.document-name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #EFF4F6;
}

.documents-main-content {
    height: 100vh;
}

.user-img-div {
    position: relative;
}

.user-img-div img {
    width: 100px;
}

.user-img-div .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-profile-div-inner {
    padding: 25px;
    background-color: #FAFAFA;
    border-radius: 8px;
}

.profile-div-inner img {
    margin-bottom: 20px;
}

.detail-label svg {
    margin-right: 10px;
}

.profile-detail {
    position: absolute;
    margin-left: 250px;
}

.edit-profile-div {
    margin-bottom: 50px;
}

.user-settings-div form {
    margin-top: 5px;
    padding-top: 60px;
    border-top: 1px solid;
    border-image: linear-gradient(to right, #E7EAEE 0%, #E7EAEE 50%, #FFF 50%, #FFF 100%)1;
}

.name {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--gray);
}

.user-settings-div form input {
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--gray-2);
}

.user-settings-div form input:focus {
    border: 1px solid var(--primary-color);
}

.user-settings-div form label {
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    color: var(--gray-2);
    margin-bottom: 0px;
}

.user-settings-div form input::placeholder {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #191D23;
}

.left-input {
    padding-right: 0px;
}

.right-input {
    padding-left: 0px;
}

.form-row {
    margin-bottom: 0px;
}

.user-settings-div form button {
    border-radius: 12px;
    background-color: var(--btn-fill-color);
    color: var(--background-yellow);
    width: 100%;
    padding: 15px 0px;
    border: none;
    margin-top: 40px;
}

.user-settings-div form button:hover {
    background-color: var(--btn-fill-color);
    color: var(--background-yellow);
}

.toggle-dashboard {
    margin-right: 20px;
}

/* sidebar================================================================== */
.dashboard-nav-web {
    display: none;
}

.dashboard-header-mobile {
    top: 0;
    left: 0;
}

.toggle {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    outline: 0;
    margin-right: 5px;
    z-index: 99;
}

.toggle span {
    width: 100%;
    height: 3px;
    background: #555;
    display: block;
    position: relative;
}

.toggle span:before,
.toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #555;
    transition: all 0.3s ease-out;
}

.toggle span:before {
    top: -8px;
}

.toggle span:after {
    top: 8px;
}

.toggle span.toggle {
    background: transparent;
}

.toggle span.toggle:before {
    top: 0;
    transform: rotate(-45deg);
}

.toggle span.toggle:after {
    top: 0;
    transform: rotate(45deg);
}

.sidebar {
    z-index: 9;
    background: #fff;
    width: 235px;
    position: fixed;
    top: 0;
    left: -235px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding-top: 90px;
    transition: all 0.3s ease-out;
}

.sidebarshow {
    left: 0;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    display: block;
}

.sidebar ul li a {
    padding: 8px 48px;
    font-size: 16px;
    color: #222;
    font-family: arial;
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
    font-weight: 500;
}

.sidebar ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 1px;
    z-index: -1;
    transition: all 0.3s ease-out;
}

.sidebar ul li a:hover:before {
    width: 100%;
}

/* =============================================================================== */

/* Scroll table================================================== */

table.table-condensed.table-striped {
    /* width: 1000px; */
    /* overflow-x: scroll; */
    /* display: block; */
}

.file-name {
    min-width: 570px;
}

.file-size {
    min-width: 150px;
}

.ticket-subject {
    min-width: 150px;
}

.start-date,
.modified-date {
    min-width: 100px;
}

.file-date {
    min-width: 200px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-style: none;
}

.table-condensed.table-striped th {
    text-align: left;
}

.table>:not(caption)>*>* {
    box-shadow: none;
}

.dashboard-section-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-gray);
}

.property-single-div {
    padding: 0px;
}

.property-single-div svg {
    margin-right: 10px;
}

.dashboard-section-body {
    padding: 25px 10px;
}

.dashboard-section-body-inner {
    border-radius: 6px;
    padding: 25px 10px;
    background-color: #FAFAFA;
    box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.1);
}

.property-detail span {
    margin: 0px 50px;
    width: fit-content;
}

.label-description{
    min-width: 210px;
}

.property-detail-div {
    margin-top: 30px;
}

.property-detail-label .description,
.property-detail span {
    color: var(--black);
    font-weight: 600;
}

.property-gallery .dashboard-section-header {
    padding: 0px;
    border: none;
}

.property-gallery .dashboard-section-header h2 {
    margin-bottom: 40px;
}

.property-gallery img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.add-ticket-btn {
    width: 100px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--btn-fill-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 12px;
    line-height: 24px;
    font-weight: 600;
}

.add-ticket-btn svg {
    margin-right: 0px;
    width: 20px;
    height: 20px;
}

.add-ticket-btn:hover {
    color: var(--white);
}

.table-header {
    border-bottom: 1px solid var(--border-gray);
    margin-top: 25px;
}

.table-header a {
    padding: 12px 30px;
    color: var(--gray-2);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.active-table-hedaer {
    color: var(--primary-color) !important;
    border-bottom: 4px solid var(--primary-color);
    font-weight: 700 !important;
}

.tickets-div .table-responsive {
    padding: 25px;
}

.tickets-div .table-responsive .tablebody td {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #161615;
    padding: 20px 25px;
}

.tickets-div .table-responsive .tablehead {
    background-color: #F5F5F5;
}

.status-div-green {
    background-color: #D5FDCE;
    color: #1B9306;
    border-radius: 90px;
    width: fit-content;
    height: 25px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
}

.status-div-yellow {
    background-color: #FDF8CE;
    color: #A79607;
    border-radius: 90px;
    width: fit-content;
    height: 25px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
}

.status-div-blue {
    background-color: #CEE8FD;
    color: #0870C4;
    border-radius: 90px;
    width: fit-content;
    height: 25px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
}

.status-div-pink {
    background-color: #F1CEFD;
    color: #9408C4;
    border-radius: 90px;
    width: fit-content;
    height: 25px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
}

.ticket-id,
.ticket-subject {
    text-decoration: underline;
}

.ticket-page {
    height: 100vh;
}

.toggle-div {
    display: flex;
    align-items: center;
}

.profile-detail-web {
    display: none;
}

.profile-detail-mobile svg {
    margin-right: 10px;
}

.profile-detail-mobile .description {
    font-size: 14px;
    line-height: 28px;
}

.property-detail-web {
    display: none;
}

.property-detail-mobile {
    margin-top: 40px;
}

.address-svg {
    margin-top: 6px;
}

form input {
    margin-bottom: 10px;
}

.user-img-div {
    margin-bottom: 20px;
}

.login-form-div {
    padding-top: 100px;
}

.login-img {
    border-radius: 8px 8px 0px 0px !important;
}

.login-form {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

/* circle border========================================= */

.circle-wrap {
    display: grid;
    grid-template-columns: repeat(1, 160px);
    grid-gap: 80px;
    width: 150px;
    height: 150px;
    background: #d9d7da;
    border-radius: 50%;
    margin-bottom: 15px;
}

.circle-wrap .circle .mask,
.circle-wrap .circle .fill-1,
.circle-wrap .circle .fill-2,
.circle-wrap .circle .fill-3,
.circle-wrap .circle .fill-4{
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 50%;
}

.circle-wrap .circle .mask {
    clip: rect(0px, 150px, 150px, 75px);
}

.circle-wrap .inside-circle {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: var(--white);
    line-height: 120px;
    text-align: center;
    margin-top: 13px;
    margin-left: 13px;
    color: var(--black);
    position: absolute;
    z-index: 100;
    font-weight: 700;
    font-size: 3em;
}

/* color animation */

.mask .fill-1 {
    clip: rect(0px, 75px, 150px, 0px);
    background-color: var(--primary-color);
}

.mask.full-1,
.circle .fill-1 {
    animation: fill-1 ease-in-out 3s;
    transform: rotate(45deg);
}

@keyframes fill-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}


.mask .fill-2 {
    clip: rect(0px, 75px, 150px, 0px);
    background-color: var(--primary-color);
}

.mask.full-2,
.circle .fill-2 {
    animation: fill-2 ease-in-out 3s;
    transform: rotate(90deg);
}

@keyframes fill-2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

.mask .fill-3 {
    clip: rect(0px, 75px, 150px, 0px);
    background-color: var(--primary-color);
}

.mask.full-3,
.circle .fill-3 {
    animation: fill-3 ease-in-out 3s;
    transform: rotate(135deg);
}

@keyframes fill-3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(135deg);
    }
}

.mask .fill-4 {
    clip: rect(0px, 75px, 150px, 0px);
    background-color: var(--primary-color);
}

.mask.full-4,
.circle .fill-4 {
    animation: fill-4 ease-in-out 3s;
    transform: rotate(180deg);
}

@keyframes fill-4 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

.map iframe{
    height: 600px;
    width: 100%;
}

.card-content .avatar{
    margin-top: 0px;
    margin-right: 30px;
    margin-bottom: 0px;
}

.our-team-section .card-content{
    background-color: var(--background-yellow-2);
    margin: 30px;
    border-radius: 8px;
    padding: 40px;
}

.engineers-right{
    padding-left: 100px;
}

.our-team-section .description{
    width: 70%;
    text-align: center;
}
.our-team-section .section-header{
    text-align: center;
}

.designation{
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 20px;
}

.toggle-eye {
    width: 22px !important;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.position-relative {
    position: relative;
}