/*
*/

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

input.button {
  border: none;
  outline: none;
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input[type=checkbox] {
  border: none;
  outline: none;
}

img {
  outline: none;
  border: none;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

button,
a,
input[type=submit] {
  transition: all 0.5s ease-out, all 0.5s ease-in;
}

body,p,h1,h2,h3,h4,h5,h6,span,ul,ol,li,dl,dt,dd,form {
    padding:0;
    margin:0
    }
    html,body {
    padding:0;
    margin:0;
    height:auto
    }
    input:focus {
    outline:none
    }
    a {
    color:inherit;
    cursor:pointer
    }
    textarea:focus {
    border:none;
    outline:none;
    overflow:auto;
    resize:none
    }
    textarea {
    resize:none;
    border:none
    }
    input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -moz-appearance:none;
    -webkit-appearance:none;
    margin:0
    }
    select {
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none
    }
    select::-ms-expand {
    display:none
    }
    input.button {
    border:none;
    outline:none
    }
    input::-webkit-input-placeholder {
    opacity:1
    }
    input::-moz-placeholder {
    opacity:1
    }
    input:-ms-input-placeholder {
    opacity:1
    }
    input:-moz-placeholder {
    opacity:1
    }
    input[type=checkbox] {
    border:none;
    outline:none
    }
    img {
    outline:none;
    border:none;
    max-width:100%;
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none
    }
    li {
    list-style:none
    }
    a,a:active,a:hover {
    text-decoration:none;
    outline:none!important
    }
    a:focus {
    outline:none;
    text-decoration:none
    }
    * {
    box-sizing:border-box
    }
    button,a,input[type=submit] {
    transition:all .5s ease-out,all .5s ease-in
    }
    :not(output):-moz-ui-invalid {
    box-shadow:inset 0 0 5px red
    }
    a:after,a:before {
    transition:.5s all ease-out,.5s all ease-in;
    -ms-transition:.5s all ease-out,.5s all ease-in;
    -webkit-transition:.5s all ease-out,.5s all ease-in;
    -o-transition:.5s all ease-out,.5s all ease-in
    }
    button:after,button:before {
    transition:.5s all ease-out,.5s all ease-in;
    -ms-transition:.5s all ease-out,.5s all ease-in;
    -webkit-transition:.5s all ease-out,.5s all ease-in;
    -o-transition:.5s all ease-out,.5s all ease-in
    }
    :focus {
    outline:none!important
    }
    .clearfix {
    clear:both;
    display:block
    }
    .clearfix::before {
    content:"";
    clear:both;
    display:block
    }
    .clearfix:after {
    content:"";
    clear:both;
    display:block
    }
    button {
    border:unset;
    background:unset
    }
    a,span {
    display:inline-block
    }
    label {
    width:100%
    }



/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #13547a;
  --secondary-color: #22b3c1;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #22b3c1;
  --custom-btn-bg-hover-color: #13547a;
  --dark-color: #001973;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #13547a;


  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;

  --body-font-family: 'Open Sans', sans-serif;
  --title-font-family: 'Poppins', sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}


/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #253247 0%, #243146 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay+.container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
  /* background-image: linear-gradient(15deg, #001973 0%, var(--dark-color) 100%); */
  padding-top: 150px;
  padding-bottom: 80px;
  BACKGROUND-COLOR: rgba(14, 29, 52, 0.9);
}


.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  /* background-color: var(--secondary-color);/ */
  background-color: rgba(14, 29, 52, 0.9);
}

.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(128, 208, 199, 0.35);
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
  /* color: #FFF; */
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  /* color: var(--white-color); */
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #22b3c1;
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #13547a 0%, #22b3c1 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}


/*---------------------------------------
  TOPICS
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block>a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay>a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #001973;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px 0;width: 100%;
  padding: 40px;
  color: var(--dark-color);
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
  margin-top: 20px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--primary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.news .news-flx .new-itm {
  position: relative;
  padding: 10px;
  background-color: #fff;
  padding-bottom: 30px;
  border: 1px solid #edf2f8;
  border-radius: 10px;
}

.news .news-flx .new-itm a.arr-link,
.news-outr .work_tabs .tab-content .work_flx .work_itm a.arr-link {
  width: 50px;
  height: 50px;
  margin-top: 13px;
  cursor: pointer;
  transition: .6s ease-in-out;
  display: flex;
  align-items: center;
  border-radius: 50px;
  background-color: #edf2f8;
  margin-left: 13px;
  justify-content: center;
}

.news-flx .owl-stage-outer {
  padding: 18px 10px;
  margin: -10px;
}

.news .news-flx .new-itm:hover a.arr-link,
.news-outr .work_tabs .tab-content .work_flx .work_itm:hover a.arr-link {
  background: #22b3c1;
}

.news .news-flx .new-itm:hover a.arr-link img {
  filter: invert(1);
}

.news .news-flx .new-itm .img img {
  max-width: 100% !important;
  width: 100% !important;
  object-fit: cover;
  height: 240px !important;
  border-radius: 10px;
}

.news .news-flx .new-itm .cnt strong {
  font: 18px / 25px var(--title-font-family);
  margin: 11px 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .news-flx .new-itm .cnt p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 25px;
  margin: 0;
}

.news .news-flx .new-itm a.arr-link {
  width: 50px;
  height: 50px;
  margin-top: 13px;
  cursor: pointer;
  transition: .6s ease-in-out;
  display: flex;
  align-items: center;
  border-radius: 50px;
  background-color: #edf2f8;
  margin-left: 13px;
  justify-content: center;
}

.news .news-flx .new-itm a.arr-link img {
  width: auto;
  height: auto;
}

.news .news-flx .new-itm:hover {
  box-shadow: 5px 3px 3px 0px #edf2f8;
}

.ban-cnt.container {
  right: 0;
  z-index: 1;
  left: 0;
  position: relative;
}

.banner .ban_in .ban_img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .ban_in:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  Z-INDEX: 1;
  opacity: 0.3;
}

.ban-cnt b {
  font-size: 18px;
  line-height: 25px;
  font-family: var(--title-font-family);
  color: #fff;
  background-color: #22b3c1;
  padding: 8px 20px 8px 40px;
  border-radius: 6px;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  letter-spacing: 3.8px;
  margin-left: auto;
}

.ban-cnt strong {
  font-size: 73px;
  font-family: var(--title-font-family);
  line-height: 80px;
  color: #ffffff;
  display: block;
  position: relative;
}

.ban-cnt .ban_txt {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  text-align: end;
}

.banner .ban_in {
  position: relative;
  height: 100%;
}

.ban-cnt .ban_txt p {
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  margin: 20px 0;
}

.ban-cnt .ban_txt a {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: 19PX;
  font-weight: var(--font-weight-semibold);
  padding: 15px;
  transition: all 0.3s;
  margin-bottom: 0;
}

.banner .ban_in {
  /* position: relative; */
  padding: 130px 0 50px;
}

.ban_img {
  position: absolute;
  top: 0;
  width: 100%;
  right: 0;
  bottom: 0;
}

.ban-cnt .ban_txt .ban_title h1 {
  COLOR: #FFF;
}

.ban-cnt .ban_txt a:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.navbar a.navbar-brand img {
  filter: invert(1) brightness(0100);
  height: 70px;
  object-fit: contain;
}

.navbar-expand-lg .navbar-nav {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0;
}
footer.site-footer img {
    width: 250px;
    height: 100px;
    object-fit: cover;
}
.welcom .inr_flx {
  display: flex;align-items: center;
}
.welcom .inr_flx .lft img {
height: 485px;
    max-width: 616px;
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}
.welcom .inr_flx .ryt p:not(:last-of-type) {
  margin: 20px 0;
}.welcom .inr_flx .ryt ul li.btm-cnt {
  display: flex;padding-top: 0;
  text-align: center;
  margin-top: 30px;
}.welcom .inr_flx .ryt ul li.btm-cnt .img strong {
    display: block;
    font: 20px / 25px DMSans-SemiBold;
    margin-top: 13px;
}
.welcom .inr_flx .ryt ul li.btm-cnt .img {
  width: 100%;
  border-right: 1px solid #e5e5e5;
  padding-right: 30px;
  margin-right: 30px;
}.welcom .inr_flx .ryt ul li.btm-cnt .img:last-of-type{padding-right: 0;margin-right: 0;border-right: unset;}
.welcom .inr_flx .lft .btm-cnt {
  position: absolute;
  background-color: #dbd6d0;
  padding: 30px;
  border-radius: 10px;
  right: 0;
}.welcom .inr_flx .lft .btm-cnt p {margin-bottom: 0;
  font: 20px / 30px var(--body-font-family);
  color: #FFF;
}.welcom .inr_flx .lft .btm-cnt {
  position: absolute;
  background-color:var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  right: 0;
  max-width: 450px;
  bottom: -30px;
}
.welcom .inr_flx .lft {
    position: relative;
}
.custom-block-topics-listing .custom-block-image {
    width: 100%;
    height: 450px;
    margin: 0;
    object-fit: cover;
}
.custom-block-topics-listing-info p {
    height: 270px;
    overflow-y: scroll;
}
.custom-block-topics-listing-info p::-webkit-scrollbar-thumb{background-color: #001973;}
.custom-block-topics-listing-info p::-webkit-scrollbar{
width: 3px;
}
.topics-detail-section .row.my-4 img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}
.graag .row .ryt img {
    max-width: 663px;
    height: 486px;
    width: 100%;
    object-fit: cover;border-radius: 20px;
}
.graag p{margin: 10px 0;}
.map_cnt .row iframe.google-map {
    height: 400px;
}
/* service-overview */
/* service overview */
.onze-die .top_cnt {
  text-align: center;
  max-width: 690px;
      margin-bottom: 40px;
  margin: auto;
}
.onze-die {
  /* padding: 100px 0; */
}
.onze-die .top_cnt h1 {
  margin-bottom: 15px;
}
.onze_blk .inr_flx a {
  display: block;
}
.onze_blk .inr_flx{display: flex;align-items: center;}
.onze_blk .inr_flx .lft img {
  height: 390px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}.onze_blk {
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  padding: 30px;
  border-radius: 20px;
}
.onze_blk .inr_flx a.btn.custom-btn {
    width: fit-content;
}
.onze_blk .inr_flx .ryt {
  /* width: 41%;
  margin-left: 65px; */
}
.onze_blk .inr_flx .ryt img {
  height: 45px;
  width: 45px;
  object-fit: contain;
  display: block;
}.onze_blk .inr_flx .ryt strong {
  font: 40px / 45px DMSans-Regular;
  display: block;
  margin: 15px 0;
}
.onze_blk .inr_flx .ryt p {
  margin: 10px 0 20px;
}
.onze_blk .inr_flx .ryt b{font-size: var(--h5-font-size);}
.onze_blk .inr_flx .ryt a.btn-1 {
  background-color: #fff;
  width: fit-content;
  padding: 15px 30px;
}
.onze_blk:nth-child(odd) .inr_flx {
  flex-direction: row-reverse;
}
.onze_blk:nth-child(odd) .inr_flx .ryt {
  margin-left: 0;
  margin-right: auto;
}
.onze_blk:not(:last-child) {
  margin-bottom: 30px;
}
.welcom.ser_exp.ultra_sound .inr_flx .ryt {
  width: 42%;
}
.welcom.ser_exp.ultra_sound {
  padding-bottom: 100px;
}
.serv_det_ovr .inr_flx {
  display: flex
;
}
.serv_det_ovr .inr_flx .lft {
  width: 28%;
}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs {
  flex-direction: column;
  border-radius: 15px;
  background-color: #f4eee8;
  border: unset;
  padding: 45px 40px 45px 40px;
}
.serv_det_ovr {
  padding: 100px 0;
}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a{background-color: #f4eee8;padding: 23.5px 0 23.5px;font: 18px / 30px DMSans-Medium;color: #7f7f7f;display: flex;align-items: center;/* justify-content: space-between; */border: transparent;}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs strong {
  font: 25px / 30px DMSans-Medium;
}.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a img:first-of-type {
  margin-right: 15px;
  filter: contrast(0) brightness(0.99);
}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a img {
  filter: contrast(0.5);
}.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a img:last-of-type {
  margin-left: auto;
}.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs li:not(:last-of-type) a {
  border-color:transparent ;
  border-bottom: 1px solid #cccc;
  margin: 0;
}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a.active{border-color: transparent;}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs li:last-of-type a {
  padding-bottom: 0;
}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a.active {
  color: #000;
}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a.active img{
  filter: unset;
}
.serv_det_ovr .inr_flx .lft ul.nav.nav-tabs a.active img:last-of-type{filter: invert(1);}
.serv_det_ovr .inr_flx .lft .why_blk {
  padding: 45px 20px 40px 40px;
  border: 1px solid #cccc;
  border-radius: 10px;
  margin-top: 30px;
}
.serv_det_ovr .inr_flx .lft .why_blk ul li {
  font: 18px / 26px 'DMSans-Regular';
  padding-left: 56px;
  background: url(../images/app-tik.png) no-repeat;
}.serv_det_ovr .inr_flx .lft .why_blk ul li{
  padding-bottom: 27px;
}.serv_det_ovr .inr_flx .lft .why_blk ul {
  margin-top: 24px;
}
.serv_det_ovr .inr_flx .lft .why_blk a.btn-1 img {
  margin-right: 10px;
}
.serv_det_ovr .inr_flx .lft .why_blk a.btn-1:hover img{filter: invert(1);}.serv_det_ovr .inr_flx .lft .why_blk a.btn-1 {
  margin-top: 20px;
}
.serv_det_ovr .inr_flx > .ryt {
  padding-left: 50px;
  width: 72%;
}.serv_det_ovr .inr_flx .ryt .top_img img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 580px;
  border-radius: 20px;
  margin-bottom: 26px;
}
.serv_det_ovr .inr_flx .ryt .top_cnt p {
  margin: 15px 0 15px;
}
.serv_det_ovr .inr_flx .ryt .top_cnt > strong {
  margin: 30px 0 10px;
  display: block;
}
.serv_det_ovr .inr_flx .ryt .top_cnt p {
  margin: 15px 0 15px;
}

.serv_det_ovr .inr_flx .ryt .top_cnt .inr_flx {
  align-items: center;
}.serv_det_ovr .inr_flx .ryt .top_cnt .inr_flx .ryt {
  padding-left: 36px;
}
.serv_inr_slid .itm img {
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  object-position: top;
}.serv_inr_slid {
  margin-top: 43px;
  margin-bottom: 45px;
  padding: 0 65px;
}
.serv_det_ovr .inr_flx .ryt .top_cnt .ques {
  display: flex
;
}.serv_det_ovr .inr_flx .ryt .top_cnt .ques .img {
  margin-right: 15px;
  width: 53px;
  height: 53px;
  background-color: #a9a08e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.serv_det_ovr .inr_flx .ryt .top_cnt .ques {
  display: flex
;
  align-items: center;
}.serv_det_ovr .inr_flx .ryt .top_cnt .ques {
  display: flex
;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.serv_inr_slid .owl-nav {
  position: absolute;
  top: 39%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
}
.serv_inr_slid.owl-carousel .owl-nav button {
  background: #f4eee8 url(../images/slid-prev.svg) no-repeat center center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: transparent;
}

.serv_inr_slid.owl-carousel .owl-nav button.owl-next {
  transform: rotate(180deg);
}
.serv_inr_slid.owl-carousel .owl-nav button:hover {
  filter: invert(1);
}
.serv_faq .ryt > strong {
  margin-bottom: 20px;
  display: block;
  font: 30px / 35px DMSans-Medium;
}
.row{margin-left: 0;margin-right: 0;    --bs-gutter-x: unset;}
/* .tin-wrap .inr-flx .ryt{width:50%} */
.tin-wrap .inr-flx{display:flex;align-items:center}
/* .tin-wrap .inr-flx .lft{display:flex;width:52%} */
.tin-wrap .inr-flx .lft img{width:100%;    max-width: 57%;height:423px;border-radius:10px;object-fit:cover}
.tin-wrap .inr-flx .lft img:last-of-type{
    max-width: 39%;
    height:423px;
    width:100%;
    margin-left:20px
    }
.tin-wrap .inr-flx .ryt > p{margin: 13px 0;padding-right:42px}
/* .tin-wrap .inr-flx .ryt{width:50%;padding-left: 88px;padding-right:26px} */
.tin-wrap .inr-flx .ryt ul strong{display:block;margin-bottom:10px;font-size: var(--p-font-size);}
/* .tin-wrap .inr-flx .ryt{width:50%} */
.tin-wrap .inr-flx{display:flex;align-items:center}
/* .tin-wrap .inr-flx .lft{display:flex;width:52%} */
.tin-wrap .inr-flx .lft img{width:100%;    max-width: 57%;height:423px;border-radius:10px;object-fit:cover}
.tin-wrap .inr-flx .lft img:last-of-type{
    max-width: 39%;
    height:423px;
    width:100%;
    margin-left:20px
    }
.tin-wrap .inr-flx .ryt > p{margin: 13px 0;padding-right:42px}
/* .tin-wrap .inr-flx .ryt{width:50%;padding-left: 88px;padding-right:26px} */
/* .tin-wrap .inr-flx .ryt ul strong{display:block;margin-bottom:10px} */
.tin-wrap .inr-flx .ryt ul {
    padding: 0;
}
/* .tin-wrap{padding:112px 0} */
.meest.cont-loc:after{clip-path:polygon(0 100%,100% 100%,100% 0%)}
/* .meest.cont-loc .inr-flx .lft h2 span{font-family:Exo-Regular} */
.meest.cont-loc .inr-flx .lft .cnt-info ul li{padding:0;background:unset;display:flex;align-items:center}
.meest.cont-loc .inr-flx .lft .cnt-info ul li .img{height:60px;min-width:60px;border-radius:50px;background:var(--dark-color);display:flex;align-items:center;justify-content:center}
/* .meest.cont-loc .inr-flx .lft .cnt-info ul li .cnt a{font:20px / 25px Exo-Bold;color:#222} */
.meest.cont-loc .inr-flx .lft .cnt-info ul li .cnt{margin-left:13px}
.meest.cont-loc .inr-flx .lft .cnt-info ul li:not(:last-child){margin-bottom:20px}
.meest.cont-loc .inr-flx .ryt img{border-radius:10px;max-width:705px;width:100%;object-fit:cover;height:452px}
/* .meest.cont-loc{padding:100px 0 120px} */
/* .meest.cont-loc .inr-flx .lft .cnt-info ul li .cnt a:hover{color:#f2af1d}   */
.tin-wrap.make-car .inr-flx .lft img{
    width: 100%;
    max-width: 705px;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    margin-left: auto;
}
.tin-wrap.make-car{padding-bottom:0}
/* .tin-wrap .inr-flx .ryt{padding-right:0} */
/* .car-wrap.abs-qua .inr-flx{display:flex;flex-direction:row-reverse} */
/* .car-wrap.abs-qua .inr-flx .ryt{margin-left:0;width:44%;margin-right:auto} */
.car-wrap.abs-qua .inr-flx .ryt > p{
    /* font:16px / 27px SourceSans3-Light; */
    /* color:#222; */
    /* font-weight:800 */
}
/* .car-wrap.abs-qua .inr-flx .lft{text-align:end;width:48.5%} */
.car-wrap.abs-qua .inr-flx .lft .sm{right:unset;left:0;bottom:40px}
.car-wrap.abs-qua .inr-flx > .lft > img{height:470px;max-width:535px;width:100%}
.car-wrap.abs-qua .inr-flx .lft .sm img{height:235px;max-width:250px}
.car-wrap.abs-qua .inr-flx > .ryt > ul > li{padding:0;background:unset;display:flex;align-items:center}
.car-wrap.abs-qua .inr-flx .ryt ul li .tick{min-width:50px;height:50px;border-radius:10px;background-color:var(--dark-color);display:grid;align-items:center;justify-content:center}
.car-wrap.abs-qua .inr-flx .ryt ul li .cnt{margin-left:20px}
.car-wrap.abs-qua .inr-flx > .ryt > ul > li:not(:last-of-type){padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #e5e5e5}
/* .car-wrap.abs-qua {padding-bottom: 110px;} */
.meest.cont-loc .inr-flx .lft .cnt-info ul li .cnt p {
    margin: 0;
}
.meest.cont-loc .inr-flx .lft .cnt-info ul {padding: 0;}
.car-wrap.abs-qua .inr-flx > .lft > img {
    height: 570px;
    max-width: 650px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.car-wrap.abs-qua .inr-flx .ryt ul {
    padding: 0;
}
.car-wrap.abs-qua .inr-flx .ryt ul li p{margin-bottom: 0;}
.visit-fac {
    text-align: center;

    background: url(../images/bg-img.jpg)no-repeat 100% / 100%;position: relative;z-index: 1;background-attachment: fixed;background-size: cover;
}.visit-fac:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    top: 0;z-index: -1;
}.visit-fac .inr-cnt * {
    color: #fff;
}.meest.cont-loc .ryt {
    padding-top: 20px;
}.car-wrap.abs-qua .inr-flx .ryt ul {
    padding-top: 30px;
}h1, h2, h3, h4, h5, h6{margin-bottom: 15px;}

.map_cnt .row .right iframe {
    width: 100%;
    MAX-WIDTH: 100%;
    HEIGHT: 300PX;
    BORDER-RADIUS: 20PX;
}
.news-flx img {
    height: 300px;
    object-fit: fill;border-radius: 15px 15px 0 0;
    
}
.news-flx .d-flex {
    PADDING: 23px 42px;
    height: 100%;
}
.news-flx blockquote
 {
    margin: 0;
    border-radius: unset;
}
.news-flx blockquote {
    margin: 0 !important;
    border-radius: 19px;
}
.news-flx .owl-stage {
    display: flex;
}
.news-flx .card{height: 100%;box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;}
.news-flx blockquote p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    /* margin-bottom: 23px !important; */
}

.banner-pg .owl-stage
 {
    DISPLAY: FLEX;
}
.news-flx .card figcaption {
    margin-bottom: 0;
    margin-top: 20px !important;
}
.topics-detail-section .row ul li {
    padding-left: 30px;
    background: url(../images/tick-blue.svg)no-repeat;
}
.topics-detail-section .row ul{margin-top: 20px;}
.topics-detail-section .row p{margin-bottom: 10px;}
.rev-btm {
    DISPLAY: FLEX;width: 100%;align-items: center;
}.rev-btm .clint img {
    max-width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    box-shadow: 0 7px 3rem rgba(0,0,0,.165);
    object-fit: cover;
}
.rev-btm .clint {  min-width: 70px !important;}
.rev-btm .cnt {
    margin-left: 20px;
    text-align: start;
}
/* cookie */

.cookie {
    position: fixed;
    top: 70%;
    width: 1350px;
    z-index: 99;
    box-shadow: 0 15px 10px -15px #0000001f;
    transform: translate(-50%, -50%);
    left: 50%;
}
.cookie .cnt strong
 {
    font-size: var(--h3-font-size);
}
.cookie .cnt button.cls_btn{
  padding: 0;
    width: 24px;
    position: absolute;
    background: url(../images/md-cls.svg) no-repeat right;
    height: 24px;
    top: -27px;
    margin-left: auto;
    right: 0;
}
.cookie .inr-flx{position: relative;}
.cookie .cookie_inr {
    background-color: #fff;
    max-width: 650px;    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    padding: 48px 30px;
    margin-left: auto;
    border-radius: 30px;
}.cookie .inr-flx p {
    margin: 15px 0;
}
.cookie .cnt .btns a:first-of-type{margin-right: 10px;}
.map_cnt iframe{    border-radius: 20px;}
blockquote{margin-bottom: 0;}
/*  */

/* blog-page */
.blog-ovr img {
    max-width: 100%;
    width: 100%;
    height: 605px;
    object-fit: cover;
    border-radius: 15px;
}
.blog-ovr p{
  color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}
.quote {
    margin: 60px 0 0;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 45px 20px;
    border-radius: 20px;
}

.quote p em{color: #fff;}
.blog_flx {
    display: flex;
    flex-wrap: wrap;
}
.blog_flx .blog_itm {
    width: 32.3%;
    margin-right: 1.5%;margin-bottom: 1.5%;
}
.blog_flx .blog_itm:nth-child(3n){margin-right: 0;}
.blog_flx .blog_itm .blog_img img{width: 100%;height: 250px !important;border-radius: 20px;object-fit: cover;}
.blog_flx .blog_itm a{display: block  ;}
.blog_flx .blog_itm {padding: 15px;border-radius: 20px;}
.blog_flx .blog_cnt {
    padding: 20px 0 0;
}
.blog_flx .blog_cnt strong{font-size: var(--h6-font-size);color: var(--p-font-size);}
.blog_flx .blog_cnt p{display: -webkit-box;overflow: hidden;text-overflow: ellipsis;-webkit-box-orient: vertical;-webkit-line-clamp: 2;margin-top: 10px;}
.blog_flx .blog_cnt a.arr-link{background-color: var(--dark-color);width: 50px;height: 50px;border-radius: 50px;display: flex;align-items: center;justify-content: center;margin-top: 15px;}
.blog_flx .blog_cnt a.arr-link img{filter: invert(1); width: auto;height: auto;}
.blog_flx .blog_itm:hover a.arr-link{background-color: var(--custom-btn-bg-color);}
.blog_flx .blog_itm{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    /* border: 1px solid transparent; */
}
.blog_flx .blog_itm{transition: .5s ease;}
.blog_flx .blog_cnt strong {
  display: -webkit-box;overflow: hidden;text-overflow: ellipsis;-webkit-box-orient: vertical;-webkit-line-clamp: 2;
}
.blogs_ h2{text-align: center;}
.blog_flx.slider {
    display: unset;
}
#blog-slider .blog_itm {width: 100%;height: 100%;}
#blog-slider .owl-stage{display: flex;}
#blog-slider .owl-stage-outer{
  padding: 10px 10px;margin: -10px -10px;
}
.map_cnt .inpt_ {
    padding-left: 0;
}
.map_cnt .inpt .input:focus{
  box-shadow: #001973 ;
}
.meest.cont-loc .cnt-info {
    margin-top: 17px;
}
.explore-section .shadow-lg{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px
}
.site-footer .col-lg-3:last-of-type{
  margin-top: 0;
}
.site-footer .mt-lg-0{margin-top: 0 !important;}
header.site-header .row .col-lg-5 {
    width: 100%;
}
header.site-header ol.breadcrumb {
    flex-wrap: unset;
}
.form-control:focus{
  box-shadow: 0 0 0 .25rem rgba(14, 29, 52, 0.9);
  border-color: rgba(14, 29, 52, 0.9);
}
.site-footer .copyright-text{margin-top: 0 !important;}
#chatbase-bubble-window {
    height: 450px !important;
    max-height: 450px !important;
}
/*  */



/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (max-width:1400px) {
  .container {
   padding: 0 10px;
  }
}

@media screen and (max-width:1100px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0;
    padding: 10px 14px;
  }
  .ban-cnt .ban_txt .ban_title h1{margin-bottom: 10PX !important;}
  .ban-cnt .ban_txt p{margin: 10PX 0;}
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
       background-color: rgba(14, 29, 52, 0.9);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
    height: 350px;
  }

  .custom-block-topics-listing>.d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .navbar a.navbar-brand img {
    height: 75px;
    object-fit: cover;
    width: 180px;
  }
  footer.site-footer .col-lg-3.col-12.mb-4.pb-2 {
    text-align: center;
}
.custom-block{padding: 30px 25px;}
.custom-block-topics-listing-info{margin: 0;}
.welcom .inr_flx .ryt {
    padding-top: 30px;
}
.welcom .inr_flx .lft{width: 60%;margin: auto;}
.welcom .inr_flx .lft .btm-cnt {
    max-width: 391px;
    padding: 25px;
}
.welcom .inr_flx .lft .btm-cnt p{margin: 0}
.graag .row .ryt img{max-width: 100%;}
.onze_blk .inr_flx .ryt{margin-top: 10px;}
.tin-wrap.make-car .inr-flx .lft img,.car-wrap.abs-qua .inr-flx > .lft > img {
    max-width: 100%;
    height: 400px;
}.tin-wrap .inr-flx .ryt

 {
    padding: 20px 10px 0;
}
.car-wrap.abs-qua .inr-flx .ryt {
    padding-top: 30px;
}
.tin-wrap .inr-flx .ryt > p{padding-right: 0;}
.news-flx .d-flex {
    padding: 15px;
}.rev-btm .cnt{margin-left: 10px;}
.rev-btm .clint img{max-width: 50px !important;height: 50px !important;}
.news-flx blockquote {
    padding: 30px;
}
.topics-detail-section .lft{padding-bottom: 30px;}
.blog-ovr img{height: 500px;}
.quote {
    margin-top: 30px;
}
.site-footer::after {
    /* width: 100px;
    height: 100px;
    border-width: 100px; */
    z-index: -1;
}.site-footer .mt-lg-0{margin-top: 0 !important;}

}


@media screen and (max-width:767px){
  .welcom .inr_flx .lft img {
    height: 450px;
}
.welcom .inr_flx .lft{
          width: 80%;
}
.onze_blk .inr_flx .lft, .onze_blk .inr_flx .ryt {
    padding: 0;
}
.onze_blk{padding: 25px;}
.onze_blk .inr_flx .ryt b{font-size: 18px}
.blog_flx .blog_cnt strong{font-size: 16px;line-height: 20px;}
.blog_flx .blog_cnt p{font-size: 16px;line-height: 20px;}
.blog_flx .blog_cnt a.arr-link{width: 40px;height: 40px;}
}

@media screen and (max-width:650px){
  .blog_flx .blog_itm{
    width: 49%;
  }
      .blog_flx .blog_itm:nth-child(3n){margin-right: 1.5%;}
   .blog_flx .blog_itm:nth-child(2n){margin-right:0}

}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }


  .ban-cnt .ban_txt {
    text-align: center;
  }

  .banner .ban_in {
    padding: 100px 0;
  }

  .ban-cnt .ban_txt p {
    margin: 10px 0;
  }

  .ban-cnt .ban_txt .ban_title h1 {
    margin-bottom: 15px !important;
  }

  .navbar a.navbar-brand img {
    height: 61px;
    object-fit: cover;
    width: 142px;
  }

  .ban-cnt b {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 1px;
  }

  .ban-cnt .ban_txt a {
    font-size: 15px;
    padding: 10px 19px;
  }
  .page-link{    padding: 5px 10px;}
  .custom-block{margin-bottom: 20px !important;}
  .custom-block-topics-listing-info p{height: 150px;}
  .welcom .inr_flx .lft .btm-cnt {
        max-width: 324px;
        padding: 14px;
    }
    .welcom .inr_flx .lft .btm-cnt p{font-size: 17px;line-height: 22px;}
        .welcom .inr_flx .lft img {
        height: 350px;
    }
    .graag .row .ryt img{        height: 350px;}
    .site-footer .row {
    flex-direction: column;
    align-items: start;
}
.site-footer-link{padding-left: 0;padding-right: 0;}
.onze_blk .inr_flx .lft img {
    height: 300px;
}
.tin-wrap.make-car .inr-flx .lft img, .car-wrap.abs-qua .inr-flx > .lft > img{height: 320px;}
.car-wrap.abs-qua .inr-flx > .lft > img{
  height: 450px;
}
.meest.cont-loc .inr-flx.row a {
    width: 200px;word-wrap: break-word;
}
blockquote{padding: 20px 20px;min-height: 205px;max-height: 205px;}
.topics-detail-section,.welcom{padding: 30px 0;}
.topics-detail-section .lft{padding-bottom: 30px;}
.section-padding{padding: 30px 0;}
.blog-ovr img{height: 430px;}
.blog_flx .blog_itm .blog_img img{height: 180px !important;border-radius: 15px;}
.blog_flx .blog_itm{border-radius: 15px;padding: 10px;}
}

@media screen and (max-width:380px) {
  .banner .ban_in {

    padding: 100px 0 50PX;
  }
      .welcom .inr_flx .lft {
        width: 100%;
    }
    .welcom .inr_flx .lft .btm-cnt {
        max-width: 286px;
        padding: 14px;
        right: 10px;
    }
    .blog_flx .blog_itm{width: 100%;}
    .blog_flx {flex-direction: column;}
}
