section.page-name {margin: 30px 0;}
.skin-wrapper.skin-wrapper-inner header.header-top {
    position: relative;
}
/* START: CONTENT-BOX */
.main-content-box {
    background: #fff;
    box-shadow: 0 4px 7px 0px rgba(0, 0, 0, 0.2);
    padding: 34px;
    border-radius: 15px;
    overflow: hidden;
}

.main-content-image img {
    width: 100%;
    height: 100%;
}

/* .main-content-box h2,.main-content-box h3,.main-content-box h4,.main-content-box h5,.main-content-box h6{
    position:relative;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    margin-top: 10px;
} */

.main-content-box ul {
    margin-right: 15px;
    margin-bottom: 20px;
}

.main-content-box ul li::marker {
    color: var(--primary);
}

.main-content-box ul li {
    list-style: disc;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.main-content-box p {
    line-height: 1.8;
    font-size: 13px;
}

.main-content-box a:hover {
    color: #000;
}

.main-content-box.no-dot ul li {
    list-style: none;
}

.main-content-box.no-dot ul {
    margin: 0 0 20px 0;
    padding: 0;
}

.main-content-box.no-dot ul li .fa,.main-content-box.no-dot ul li .fa,.main-content-box .fa {
    margin-left: 5px;
    color: var(--primary);
    transition:all 0.2s linear;
}
.main-content-box.no-dot ul li:hover .fa,.main-content-box.no-dot ul li:hover .fa {
    margin-left: 8px;
    color: #000;
}
.main-content-box ul li svg {
    margin-left: 5px;
}
.main-content-box a:link,.main-content-box a:visited {
    color: var(--primary);
}
.main-content-box .main-title-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
/* END: CONTENT-BOX */


.inner-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-menu-image {
    aspect-ratio: 1/1;
    margin: 0 auto;
    height: 180px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #ddd;
}

.inner-menu-box h3 a:link,.inner-menu-box h3 a:visited {
    color: var(--title);
}

.inner-menu-box h3 {
    text-align: center;
    font-size: 14px;
    margin: 12px 0 12px 0;
}
.inner-menu-item {
    display: none;
}

.inner-menu-item.active {
    display: block;
}

.inner-menu-container ul li {
    border-radius: 50px;
    color: var(--title);
    border: 1px solid #fff;
    margin-bottom: 6px;
    font-size: 14px;
    padding: 14px 24px;
    cursor: pointer;
}
.inner-menu-container ul li.active {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: #EFF5FF;
}
.inner-menu-box {
    margin-bottom: 16px;
}
.main-title-menu {
    margin-bottom: 20px;
}
.main-title-menu :is(h1, h2, h3, h4, h5, h6) span {
  color: var(--primary);
  background: #fff;
  z-index: 4;
  padding-left: 15px;
  position: relative;
}

.main-title-menu :is(h1, h2, h3, h4, h5, h6) {
  position: relative;
  margin: 0;
}

.main-title-menu :is(h1, h2, h3, h4, h5, h6):before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  height: 1px;
  background: #EBEBEB;
}

.skin-wrapper.skin-wrapper-inner nav.navbar.navbar-expand-lg:before {
    background: #F4F4F4;
}

.see-all-menu a {
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 6px 18px;
    background: #fff;
    transition: all 0.2s linear;
}

.see-all-menu {
    text-align: center;
}

.see-all-menu a:hover {
    background: var(--primary);
    color: #fff;
}
/* START: value-missions */
.value-missions-box ul {
    margin: 0;
    padding: 0;
}

.value-missions-box {
    position: relative;
    background: rgb(0 93 220);
    min-height: 360px;
    border-radius: 16px;
    padding: 20px;
}

.value-missions-box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20rem;
    height: 20rem;
    opacity: 0.1;
    z-index: 0;
}

.value-missions-box h3 {
    margin: 0 0 3px;
}

.value-missions-text {
    position: relative;
    z-index: 0;
    color: #fff;
}

.value-missions-text h3, .value-missions-text p, .value-missions-text ul li {
    color: #eaeaea;
}
/* END: value-missions */

/* START: MANAGERS */
.staff-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  filter: drop-shadow(0px 2.995px 8.984px rgba(12, 68, 204, 0.1));
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.staff-box:hover {
  filter: drop-shadow(0px 4px 12px rgba(12, 68, 204, 0.2));
  transform: translateY(-4px);
}

.staff-box .staff-image {
  position: relative;
  z-index: 2;
  background: #fff;
  margin: 0 auto;
  max-height: 196px;
  width: 100%;
  aspect-ratio: 3/4;
  transition: all 0.4s ease;
}

.staff-box .staff-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.staff-box:hover .staff-image img {
  transform: scale(1.05);
}

.staff-details {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 12px 20px 8px;
}

.staff-details h5,
.staff-details h6 {
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  transition: all 0.3s ease;
  margin: 0;
}

.staff-details h6:last-child {
  border: 0;
}

.staff-name {
  opacity: 1;
  max-height: 100px;
}

.staff-name a {
  text-decoration: none;
  color: #0c44cc;
  font-weight: 600;
  transition: color 0.3s ease;
}

.staff-name a:hover {
  color: #0a35a3;
}

/* Hidden extra info - uses max-height technique for smooth animation */
.staff-extra-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s linear, opacity 0.4s linear, padding 0.4s linear;
}

.staff-box:hover .staff-extra-info {
  max-height: 300px;
  opacity: 1;
  padding-top: 4px;
}

.staff-extra-info h6 {
  font-weight: 400;
  color: #555;
  font-size: 0.9em;
}

.staff-extra-info h6 a {
  color: #0c44cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.staff-extra-info h6 a:hover {
  color: #0a35a3;
  text-decoration: underline;
}


.view-staff-image img {
    width: 70%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 7px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.view-staff-image .main-content-box {
    /* margin-top: -85px; */
    /* position: relative; */
    padding: 106px 0px 0;
    margin: -102px 12px 0;
    /* background: var(--primary); */
    /* color: #fff !important; */
}

.view-staff-image .main-content-box a#dnn_ctr403_Default_ViewProperty_PropertyAgent-9511-14 img {
    width: fit-content;
}

.view-staff-image h3,.view-staff-image h6 {
    margin: 0 0 8px;
    /* color: #fff; */
}
.view-staff-image {
    text-align: center;
}
.staff-details h6:hover{
    background: var(--primary);
    color: #fff;
}
.staff-details h6:hover a:link {
    color: #fff;
}
.view-staff-image h3 img {
    width: fit-content;
}
.staff-container {
    margin-top: 24px;
}
/* END: MANAGERS */

/* START: certificates */
.certificates-image img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.certificates-image {
    height: 444px;
    cursor: pointer;
}

.certificates-box {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #b9cde3;
    margin-bottom: 22px;
}

.certificates-details h2 {
    font-size: 16px;
    margin: 10px 0;
    padding: 0;
    min-height: 64px;
}

.certificates-details h3 {
    padding: 0;
    font-size: 14px;
    margin: 10px 0;
    min-height: 56px;
}

.certificates-details {
    padding: 0 30px;
}
/* END: certificates */




/* START: FAQ */
div#accordion005 h6.accordion-header {
    margin: 0;
}
/* END: FAQ */

/* START: SERVICES */
.services-inner-image img {
    width: 100%;
    height: 100%;
}

.services-inner-image {
    aspect-ratio: 1/1;
    width: 70%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 2.995px 8.984px rgba(12, 68, 204, 0.1);
    border: 1px solid #ddd;
    transition: all 0.2s linear;
}

.services-inner-text {
    text-align: center;
}

.services-inner-text h3 {
    font-size: 16px;
    margin: 0 0 12px;
}

.services-inner-text h4 {
    font-size: 14px;
    margin: 0;
}

.services-inner-text {
    box-shadow: 0px 2.995px 8.984px rgba(12, 68, 204, 0.1);
    padding: 100px 8px 16px;
    margin-top: -87px;
    border-radius: 10px;
}

.services-inner-box {
    margin-bottom: 45px;
}

.services-inner-box:hover .services-inner-image {
    transform: translateY(-12px);
}


.services-cats h2 {
    margin: 0 0 8px;
}

.services-cats ul {
    padding: 0;
}

.services-cats ul li a {
    display: inline-block;
    width: 100%;
    background: rgb(0 93 220 / 14%);
    border-radius: 50px;
    padding: 0 20px;
    transition: all 0.2s linear;
}

.services-cats ul li {
    margin-bottom: 8px;
}

.services-cats ul li a:hover {
    background: var(--primary);
    color: #fff;
}

.services-search,div#dnn_ctr470_NewsSearch_pnlSearch {
    display: flex;
    gap: 8px;
    margin-bottom: 13px;
}

.services-search btn {
    flex: 0 0 30%;
}

.services-search input[type="text"], input#dnn_ctr470_NewsSearch_txtSearch {
    flex: 1;
}

.services-search input[type="submit"],input#dnn_ctr470_NewsSearch_btnSearch {
    background: var(--primary);
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 5px;
    padding: 6px 19px;
}

.view-service-title {
    margin-bottom: 24px;
}

.view-service-title img {
    /* flex: 0 0 20%; */
    max-width: 100%;
    width: 100%;
    position: relative;
    border-radius:16px;
}

.view-service-text {
    margin: 0;
    /* padding: 0 30px; */
}

.view-service-text h3 {
    margin: 0 0 26px;
}
.view-service-text h3>a img {
    width: fit-content;
}
/* END: SERVICES */
/* START: CONTACT US */
.contact-box {
    margin-bottom: 17px;
    padding: 30px;
}

.contact-us-details {
    width: 84%;
    margin: -238px auto 109px;
    background: #fff;
    box-shadow: 0px 1.317px 2.634px -1.317px rgba(24, 39, 75, 0.12),    0px 1.756px 5.268px -0.878px rgba(24, 39, 75, 0.08);
    position: relative;
    z-index: 0;
    padding: 15px;
    border-radius: 10px;
}

.contact-us-container img {
    border-radius: 10px;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.contact-us-details h3 {
    margin: 0 0 16px;
}

.contact-us-box {
    /* border: 1px solid #ddd; */
    /* border-radius: 10px; */
    padding: 10px;
}

.contact-us-box ul li svg {
    margin-left: 8px;
}

.contact-us-box ul li {
    display: flex;
    margin-bottom: 6px;
}

.contact-us-box ul li svg {
    flex: 0 0 24px;
}

.contact-us-link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-link a:link,.contact-us-link a:visited {color: var(--primary);font-size: 15px;font-weight: bold;border: 1px solid var(--primary);padding: 13px 17px;display: inline-block;border-radius: 5px;transition: all 0.2s linear;}
.contact-us-details >.row {
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 0;
}

.contact-us-details .row .col-sm-4 {
    border-right: 1px solid #ddd;
}

.contact-us-link a:hover {
    background: var(--primary);
    color: #fff;
}
.contact-us-container svg path {
fill: var(--primary);
}
.contact-us-link a:hover svg path {
    fill: #fff;
}

.contact-us-container {
    height: 480px;
    margin-bottom: 109px;
}
/* END: CONTACT US */

/* START: FORM */
.LiveForms .ms-nav-pills>li {
    float: right !important;
}
.LiveForm .page-break-section [class*="form-col-"] {
    float: right !important;
}
div#LiveForm434 input#dnn_ctr434_View_Email_434_2 {
    background: rgb(0 93 220 / 24%);
    border-radius: 50px;
    border: 0;
    /* padding: 18px 0 !important; */
    height: unset;
}

div#LiveForm434 input#dnn_ctr434_View_Submitbutton_434_3 {
    background: var(--primary);
    border-radius: 50px;
    /* padding: 2px 0; */
    width: unset !important;
    height: unset !important;
    transform: translate(8px, 0);
    /* top: 0; */
}

h3#Heading_434_1 {
    margin: 0;
    padding: 0;
    border: 0;
}

div#LiveForm434 ul.page-break-section {
    box-shadow: 0 0 20px 2px rgb(0 0 0 / 8%);
    border-radius: 16px;
}
/* END: FORM */













.view-contact-us ul li {
    display: flex;
    /* align-items: center; */
    gap: 16px;
    margin-bottom: 23px;
  }
  .view-contact-us ul li p {
    margin: 0;
  }

  .view-contact-us ul li em {
    font-size: 24px;
    /* width: 34px; */
    transition: all 0.2s ease;
  }

  .view-contact-us ul {
    padding: 0;
  }

  .view-contact-us:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 54%;
  }

  .view-contact-us {
    padding: 0 32px 0 0px;
    margin-bottom: 20px;
    position: relative;
  }

  .view-contact-us ul li:hover em {
    color: var(--primary);
    margin-left: 8px;
  }

  .view-contact-us ul li a:link,
  .view-contact-us ul li a:visited {
    color: var(--title);
    margin-left: 18px;
  }
  .view-contact-us ul li a:hover {
    color: var(--primary);
  }
.view-contact-us ul {
    display: flex
;
    flex-wrap: wrap;
}
.view-contact-us ul li {
    flex: 0 0 50%;
}
    .locations-box a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .locations-box {
    position: relative;
  }

  .locations-box .locations-image {
    border-radius: 16px;
    overflow: hidden;
    height: 233px;
  }

  .locations-box .locations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .locations-box h5 {
    text-align: center;
    background: #fff;
    box-shadow: 0px 8px 64px 0px rgba(41, 65, 115, 0.08);
    padding: 11px 0;
    border-radius: 16px;
  }

  .locations-box:hover h5 {
    color: var(--primary);
  }

div#dvMap {
    height: 500px;
    width: 100%;
}


.view-course-image {
    position: relative;
}
.view-course-details h2 {
    font-size: 18px;
}




















.loc-container iframe {
    width: 100%;
}
.location-image {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
}

.location-image a {
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.location-image a i {
    font-size: clamp(16px, 2.5vw, 28px);
}

.location-image a.link-iran {
    top: 27%;
    left: 61%;
}

.location-image a.link-brazil {
    top: 56%;
    left: 35%;
}

.location-image a.link-russia {
    top: 16%;
    left: 57%;
}

.location-image a.link-uae {
    top: 34%;
    left: 63%;
}

.location-image a.link-japan {
    top: 26%;
    left: 84%;
}

.location-image a.link-china {
    top: 29%;
    left: 79%;
}

.location-image a.link-germany {
    top: 17%;
    left: 50%;
}

.location-image a.link-turkey {
    top: 24%;
    left: 56%;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .location-image a i {
        font-size: clamp(14px, 2vw, 24px);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .location-image a i {
        font-size: clamp(12px, 1.8vw, 20px);
    }
}


