/*
 Theme Name:   Astra Child
 Theme URI:    https://wpastra.com/
 Description:  Astra Child Theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     astra
 Version:      1.0.0
 Text Domain:  astra-child
*/
/*========================= GENERAL =============================*/
:root{
  --primary-color-light: #03aed6;
  --primary-color-dark: #18344a;
  --title-font: 'Marcellus';
}
.main-btn{
  background: var(--primary-color-light);
  padding: 10px 30px;
  font-family: var(--title-font);
  border: 1px solid var(--primary-color-light);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.main-btn:hover{
  background: #fff;
  color: var(--primary-color-dark);
}
h2.section-title{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #00294d;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/*top header image*/
#content main .page-header {
  position: relative;
  overflow: hidden;
  background-attachment: fixed !important;
  background-size: cover !important;
  /* background-position: bottom !important; */
  background-repeat: no-repeat !important;
  height: 450px;
  margin-top: -120px;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.top-header-content{
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 1;
  max-width: 1200px !important;
}
.page-header img {
  height: 550px;
  object-fit: cover;
}
.page-header h1 {
  text-align: left;
  color: #fff;
  font-weight: 100;
  text-transform: uppercase;
  z-index: 1;
  font-size: 55px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}
/*breaadcrumb*/
.custom-breadcrumbs {
  font-size: 14px;
  margin-top: 10px;
  color: #fff;
}
.custom-breadcrumbs a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.custom-breadcrumbs a:hover{
  color: var(--main-color);
}
.custom-breadcrumbs span {
  margin: 0 5px;
  font-weight: 700;
}

/*========================= TOP HEADER =============================*/
.custom-top-header {
    padding: 10px 0;
    z-index: 11;
    background: #004b8e5e;
    height: 40px;
    backdrop-filter: blur(4px);
}
.custom-top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header-column {
    text-align: center;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-header-column i {
    color: var(--primary-color-light);
    font-size: 18px;
}
.top-header-column .column-label {
    font-weight: 600;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}
.top-header-column a,
.top-header-column span {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}
.top-header-column a:hover {
    color: #007bff;
}


/*======================== HEADER ============================*/
.site-header{
    background: #ffffffd1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(0);
}
.site-header.hide {
    transform: translateY(-100%);
}
.site-header.sticky ~ .custom-top-header {
    margin-top: 80px;
    transition: margin-top 0.3s ease-in-out;
}
header.ast-logo-title-inline .ast-site-identity{
  padding: 0;
}
header .custom-logo-link img{
  width: 300px !important;
}
.ast-primary-header-bar{
    background: transparent;
    border-bottom: unset;
}
header .ast-site-title-wrap{
    display: none;
}
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{
  line-height: 40px;
}
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item a {
    position: relative;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color-light);
    transition: width 0.3s ease;
}
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item a:hover::after,
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item.current-menu-item a::after {
    width: 40%;
}

/*========================= HOMEPAGE ==============================*/
/*Hero Slider*/
.hero-slider-section{
    position: relative;
    top: -120px;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}
.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-slider .carousel-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}
.hero-slider .carousel-cell:hover::before {
  transform: scale(1.2);
}
.hero-slider .carousel-cell .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
  z-index: 1;
}
.hero-slider .carousel-cell .inner .subtitle {
  font-family: "Roboto Slab", serif;
  font-size: 2.2rem;
  line-height: 1.2em;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}
.hero-slider .carousel-cell .inner .title {
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: #fff;
  font-size:55px;
  width: 70%;
  margin: 0 auto;
}
.hero-slider .carousel-cell .inner .btn {
  border: 1px solid #fff;
  padding: 14px 18px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-slider .carousel-cell .inner .btn:hover {
  background: #fff;
  color: #000;
}
.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
  top: 56%;
}
.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}
.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}
.hero-slider .flickity-page-dots {
  bottom: 30px;
}
.hero-slider .flickity-page-dots .dot {
  width: 20px;
  height: 2px;
  opacity: 1;
  background: #ffffff8c;
  border: 0 solid white;
  border-radius: 0;
  transition: all 0.3s;
}
.hero-slider .flickity-page-dots .dot.is-selected {
  background: #fff;
  border: 0 solid #ff0000;
  width: 40px;;
}

/*about section*/
.two-col-section {
    padding: 0;
}
.two-col-section .container{
  width: 1200px;
  margin: 0 auto;
}
.two-col-section .section-title {
    position: relative;
    margin-bottom: 30px;
}
.two-col-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color-light);
}
.two-col-section .about-content a.main-btn{
  margin-top: 20px;
  display: block;
  width: fit-content;
}
.two-col-section .about-image {
    position: relative;
    padding: 10px;
}
.two-col-section .about-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 3px;
    background-color: var(--primary-color-light);
    transition: all 0.3s ease;
}
.two-col-section .about-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 70%;
    background-color: var(--primary-color-light);
    transition: all 0.3s ease;
}
.two-col-section .about-image:hover::before {
    width: calc(100% - 10px);
}
.two-col-section .about-image:hover::after {
    height: calc(100% - 10px);
}
.two-col-section .about-image img {
    width: 100%;
    height: auto;
    display: block;
}
/*Counter Section*/
section#counter-stats {
	display: flex;
	justify-content: center;
	margin-top: 100px;
  background: var(--primary-color-light);
  padding: 5rem 0;
}
.stats {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.stats .fa {
  color: var(--primary-color-dark);
  font-size: 60px;
}
.stats .counting{
  color: #fff;
  font-weight: 600;
  font-family: var(--title-font);
}
.stats h5{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--title-font);
}
/*Special Services Section*/
.special-services-section {
  background: #18344a;
  color: #fff;
  padding: 80px 0;
}
.special-services-section .container{
  width: 1200px;
  margin: 0 auto;
}
.special-services-section .section-title {
  color: #fff;
}
.section-title-underline {
  display: block;
  width: 40px;
  height: 3px;
  background: #00b4d8;
  margin-bottom: 20px;
}
.services-info p {
  color: #b0c4d6;
  margin-bottom: 20px;
}
.services-carousel .service-card {
  background: #fff;
  color: #18344a;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  margin: 10px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.services-carousel .service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.services-carousel .service-content {
  padding:13px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.services-carousel .service-content h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--title-font);
}
.services-carousel .service-content p {
  flex: 1;
  color: #18344a;
  font-size: 14px;
}
.services-carousel .service-content a {
  color: #00b4d8;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.services-carousel .service-content a:hover {
  color: #18344a;
}
.special-services-section .owl-dots {
  text-align: left;
}
.special-services-section .owl-dots button{
  background: transparent;
  padding: 10px;
}
.special-services-section .owl-dot span {
  width: 10px;
  height: 10px;
  background: #00b4d8;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.special-services-section .owl-dot.active span {
  opacity: 1;
}


/*Quotation Section*/
.special-quote-section {
  padding: 5rem 0;
  background: #ebf5ff;
}
.special-quote-section .container {
  max-width: 1200px;
}
.special-quote-section .special-info{
  background: transparent;
}
.special-info {
  background: #fff;
  padding: 40px 30px 40px 30px;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.special-underline {
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary-color-light, #03aed6);
  margin-bottom: 20px;
  border-radius: 2px;
}
.special-info .section-title {
  font-weight: 700;
  margin-bottom: 18px;
  color: #00294d;
  letter-spacing: 1px;
}
.special-desc {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.special-icons-row {
  display: flex;
  gap: 30px;
  margin-bottom: 18px;
}
.special-icon-box {
  width: 260px;
  min-width: 200px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
}
.special-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: var(--primary-color-light, #03aed6);
  margin-right: 8px;
}
.special-icon-title {
  font-size: 1rem;
  font-weight: 600;
  color: #00294d;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quote-form-col {
  background: #07395c;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.quote-form-box {
  width: 100%;
}
.quote-form-box .section-title {
  color: #fff;
}
.quote-form {
  min-height: 320px;
}
.quote-form-col{
  padding: 2rem !important;
}
.quote-form-col .nf-form-fields-required{
  display: none;
}
.quote-form-col .nf-field-label{
  display: none;
}
.quote-form-col .nf-field-element input{
  border-radius: 0;
}
.quote-form-col .field-wrap textarea{
  height: 100px;
  border-radius: 0;
}
.quote-form-col .field-wrap input[type=submit]{
  background: var(--primary-color-light);
  border: 1px solid var(--primary-color-light);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--title-font);
  transition: all 0.3s ease;
}
.quote-form-col .field-wrap input[type=submit]:hover{
  background: #fff;
  color: var(--primary-color-dark);
  border-color: #fff;
}
.quote-form-col .nf-error-msg{
  color: #aaa7a7;
}

/*Our Partners*/
.our-partner{
  padding: 3rem 0;
}
.our-partner > .container{
  max-width: 1200px;
}
.our-partner .title-sec{
  width: fit-content;
  margin: 0 auto;
}
.partner-carousel .partner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 150px;
}
.our-partner .partner-carousel img {
  max-width: 200px;
  max-height: 100px;
  height: auto;
  object-fit: contain;
}
.our-partner .section-title,
.our-partner .main-subtitle{
  text-align: center;
}
.our-partner .owl-carousel .owl-stage-outer{
  height: 130px;
}
.our-partner .owl-carousel .owl-item img{
  padding: 10px;
}

/*Map Section*/
.map-section{
  padding: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.map-section .leaflet-container .leaflet-marker-pane img,
.map-section .mapp-list .mapp-item .mapp-icon{
  background: #fff;
  border-radius: 50% !important;
}
.map-section .mapp-iw .mapp-dir-wrapper{
  display: none !important;
}


/*======================== ABOUT US PAGE =============================*/
.who-we-are {
  padding: 80px 0;
}
.our-mission-section .container{
  max-width: 1200px;
  margin: 0 auto;
}
.our-mission-section {
  background: var(--primary-color-light);
  padding: 50px 0;
}
.our-mission-section .section-title {
  margin-bottom: 40px;
  color: #fff;
  position: relative;
}
.our-mission-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color-dark);
}
.our-mission-section .mission-list ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}
.our-mission-section .mission-list li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-weight: 700;
}
.our-mission-section .mission-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-dark);
  position: absolute;
  left: 0;
  top: 0;
}
.milestones p{
  color: #fff;
}

/*======================== CONTACT US PAGE =============================*/
/* ======================== CONTACT US PAGE ============================= */
.special-quote-section .quote-form-col {
  background: #07395c;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.special-quote-section .nf-field-container{
  margin-bottom: 0 !important;
}
.special-quote-section .quote-form-box {
  width: 100%;
}
.special-quote-section .quote-form-box .section-title {
  color: #fff;
}
.special-quote-section .quote-form {
  min-height: unset;
}
.special-quote-section .nf-form-fields-required,
.special-quote-section .nf-field-label {
  display: none;
}
.special-quote-section .nf-field-element{
  margin-bottom: 0 !important;
}
.special-quote-section .nf-field-element input,
.special-quote-section .nf-field-element select {
  border-radius: 0;
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 18px;
  background: #fff;
  color: #222;
  box-shadow: none;
  outline: none;
  transition: border 0.2s;
}
.special-quote-section .nf-field-element input:focus,
.special-quote-section .nf-field-element select:focus {
  border-color: var(--primary-color-light, #03aed6);
}
.special-quote-section .field-wrap textarea {
  height: 100px;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
  background: #fff;
  color: #222;
  box-shadow: none;
  outline: none;
  transition: border 0.2s;
  margin-bottom: 18px;
}
.special-quote-section .field-wrap textarea:focus {
  border-color: var(--primary-color-light, #03aed6);
}
.special-quote-section .field-wrap input[type=submit] {
  background: var(--primary-color-light, #03aed6);
  border: 1px solid var(--primary-color-light, #03aed6);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--title-font, 'Marcellus');
  transition: all 0.3s ease;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 0;
  cursor: pointer;
}
.special-quote-section .field-wrap input[type=submit]:hover {
  background: #fff;
  color: var(--primary-color-dark, #18344a);
  border-color: #fff;
}
.special-quote-section .nf-error-msg {
  color: #aaa7a7;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.contact-page-map{
  position: relative;
}
.contact-page-map mappress-map.mapp-layout{
  height: 600px !important;
}
.contact-data-section .contact-info-box {
  margin: 0 auto;
  max-width: 350px;
}
.contact-data-section{
  position: absolute;
  z-index: 9999999;
  display: block;
  bottom: 0;
  width: 100%;
  backdrop-filter: blur(4px);
  background: #18344abf;
  padding: 40px 0;
}
.contact-page-map .mapp-sidebar.mapp-sidebar-open{
  padding-bottom: 140px;
}
.contact-page-map .mapp-leaflet-geolocate{
  bottom: 220px !important
}
.contact-page-map .leaflet-bottom{
  bottom: 120px !important;
}
.contact-data-section .contact-info-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: var(--title-font);
}
.contact-data-section .contact-info-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
}
.contact-data-section .contact-info-detail i {
    font-size: 20px;
    color: #03aed6;
}
@media (min-width: 768px) {
    .contact-data-section .row > div:not(:last-child) {
        border-right: 1px solid rgba(255,255,255,0.15);
    }
}
@media (max-width: 767px) {
    .contact-data-section .contact-info-box {
        margin-bottom: 30px;
    }
    .contact-data-section .row > div {
        border: none !important;
    }
}

/*============================ single post =============================*/
.ast-single-post-featured-section.post-thumb img{
  max-height: 500px;
}
.ast-single-related-posts-container img{
  max-height: 250px;
  object-fit: cover;
}

/*============================ Health and Safety =============================*/
.health-safety-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}
.health-safety-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.49);
}
.health-safety-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.health-safety-section .section-title {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}
.health-safety-section .section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color-dark);
}
.health-safety-section .lead {
    margin-bottom: 1.5rem;
}
.health-safety-section p {
    margin-bottom: 1.5rem;
}
.health-safety-section p:last-child {
    margin-bottom: 0;
}

/*============================= SERVICES =============================*/
.key-elements-section {
  background: url(https://awoffshoreview.webergon.gr/wp-content/uploads/2025/06/108500.jpg) no-repeat center center;
  background-size: cover;
  height: 400px;
  align-content: center;
}
.key-elements-section .container{
  max-width: 1200px;
  margin: 0 auto;
}
.key-element-content{
  height: 250px;
  width: 250px;
  position: relative;
  text-align: center;
  border: 5px solid #ffffffb8;
  border-radius: 50%;
  background: var(--primary-color-dark);
  transition: all 0.3s ease;
  transform: translateY(0px);
  box-shadow: rgb(255 255 255 / 80%) 0px 4px 12px;
}
.key-element-content:hover{
  transform: translateY(-10px);
  box-shadow: rgb(255 255 255 / 50%) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.key-element-content h3{
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--title-font);
  z-index: 3;
}
.key-element-content img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.key-element-content:hover img{
  opacity: 1;
}
.services-page-section {
  padding: 50px 0;
}
.services-page-section .container{
  max-width: 1200px;
  margin: 0 auto;
}
.services-page-section .left.service-card {
  margin-bottom: 25px;
  background: linear-gradient(to right, var(--primary-color-dark) 50%, var(--primary-color-light) 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 0.3s ease, background-position 0.5s ease;
  color: white; /* optional, for contrast */
}
.services-page-section .left.service-card:hover {
  transform: translateY(-5px);
  background-position: right bottom;
  cursor: pointer;
}
.services-page-section .right.service-card {
  margin-bottom: 25px;
  background: linear-gradient(to right, var(--primary-color-light) 50%, var(--primary-color-dark) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease, background-position 0.5s ease;
  color: white;
}
.services-page-section .right.service-card:hover {
  transform: translateY(-5px);
  background-position: left bottom;
  cursor: pointer;
}
.services-page-section .service-card.left {
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.services-page-section .service-card.right {
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.services-page-section .service-content {
  width: 63%;
  padding: 40px 32px;
}
.services-page-section .service-content h3 {
  font-size: 24px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.services-page-section .service-content p {
  font-size: 16px;
  line-height: 1.6;
}
.services-page-section .left .service-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-top-left-radius: 100%;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
  outline: 5px solid #ffffffb8;
}
.services-page-section .left .service-img img {
  width: 100%;           
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-page-section .left.top .service-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 0;
  z-index: 1;
}
.services-page-section .left.top .service-img img {
  width: 100%;           
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-page-section .right .service-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-top-right-radius: 100%;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 1;
  outline: 5px solid #ffffffb8;
}
.services-page-section .right .service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-page-section .right.top .service-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 0;
  z-index: 1;
}
.services-page-section .right.top .service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*============================ blog =============================*/
.blog .entry-title a{
  text-decoration: none;
}
.blog .read-more a{
  text-decoration: none;
  color: var(--primary-color-light);
}

/*============================ FOOTER =============================*/
footer #media_image-4 img{
  filter: brightness(0) invert(1);
}
footer p{
  color: #d0c8c8;
}
footer h2.widget-title{
  color: #d0c8c8;
  font-size: 16px;
  text-transform: uppercase;
}
footer .site-footer-primary-section-2{
  padding-left: 50px;
}
footer .widget ul{
  padding-left: 0;
}
footer li a{
  text-decoration: none;
  color: #d0c8c8;
  transition: all 0.3s ease;
}
footer li a:hover{
  color: #fff;
}
.footer-contact-row{
  padding: 10px 0;
}
.footer-contact-row:not(:last-child){
  border-bottom: 1px solid #d0c8c8;
}
.footer-contact-row i,
.footer-contact-row span{
  color: #d0c8c8;
}
.footer-contact-row span.column-label{
  font-weight: 600;
  text-transform: uppercase;
}
.footer-contact-row a{
  color: #d0c8c8;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-contact-row a:hover{
  color: #fff;
}
.site-below-footer-wrap[data-section="section-below-footer-builder"]{
  border-top: unset;
  padding: 0;
}
.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-builder-grid-row{
  border-top: 1px solid #d0c8c8;
}
footer .widget ul li:not(:last-child){
  border-bottom: 1px solid #d0c8c8;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
/*============================= RESPONSIVE =============================*/
@media (max-width: 991px) {
  .special-services-section .row {
    flex-direction: column;
  }
  .services-info, .col-lg-8 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .special-quote-section .row {
    flex-direction: column;
  }
  .special-info, .quote-form-col {
    border-radius: 10px 10px 0 0;
    padding: 30px 15px;
  }
  .quote-form-col {
    border-radius: 0 0 10px 10px;
    margin-top: 24px;
  }
  .special-icon-box {
    width: 100%;
    min-width: unset;
  }
  .special-icons-row {
    flex-direction: column;
    gap: 10px;
  }
}


@media (max-width: 768px) {
  .custom-top-header-inner {
      flex-wrap: wrap;
  }
  .top-header-column {
      flex: 0 0 50%;
      margin-bottom: 15px;
  }
  .special-icons-row {
    flex-direction: column;
    gap: 10px;
  }
  .special-info, .quote-form-col {
    padding: 20px 5px;
  }
}


@media (max-width: 480px) {
  .top-header-column {
      flex: 0 0 100%;
  }
}



