:root {
  --text: #3D3C3A;
  --white: #ffffff;
  --black: #3D3C3A;
  --primary: #06374a;
  --secondary: #dda505;
  --accent: ;
  --global-bg: #F2F1EF;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    font-size: 16px;
    line-height: 1.4;
    background: var(--global-bg);
}

body.loaded {
	overflow: auto;
}

body.overflow-hidden {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 0.5em;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
    font-size: 1.7rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.3rem;
}

.section-title {
    margin-bottom: 35px;
}

.lined-title {
    color: var(--text);
    overflow: hidden;
    font-weight: 400;
    transition: none !important;
    transition-delay: 0s !important;
}

.lined-title span {
    display: inline-block;
    position: relative;
}

body:not(.rtl) .lined-title span {
    margin-right: 1em;
    padding-right: 1em;
}

.rtl .lined-title span {
    margin-left: 1em;
    padding-left: 1em;
}

.lined-title span:after {
    content: "";
    background: var(--secondary);
    bottom: 0.25em;
    height: 8px;
    position: absolute;
    width: 100vw;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

body:not(.rtl) .lined-title span:after {
    left: 100%;
    transform: translateX(100%);
}

.rtl .lined-title span:after {
    right: 100%;
    transform: translateX(-100%);
}

body:not(.rtl) .lined-title.aos-animate span:after,
.rtl .lined-title.aos-animate span:after {
    transform: translateX(0);
}


img {
	max-width: 100%;
}

p img.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

a {
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: underline;
    color: var(--primary);
}

a:hover {
    text-decoration: none;
	color: var(--secondary);
}

.link-underlined {
    color: var(--secondary);
    font-weight: 600;
    background-image: linear-gradient(var(--secondary),var(--secondary));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 0.12em;
    text-decoration: none;
    transition: background .3s ease-in-out,color .3s ease-in-out;
}

.link-underlined:hover {
    background-size: 100% 0.12em;
    color: var(--secondary);
}

.button {
    display: inline-block;
	padding: 10px 35px;
    font-size: 20px;
    border-radius: 45px;
	font-weight: 500;
	text-align: center;
	box-shadow: none;
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.button-transparent {
    background: transparent;
    border: 2px solid;
}

.button:hover {
	opacity: .8;
}

.button:focus {
	box-shadow: none;
}

.relation {
    position: relative;
}
.relation__ratio {
    height: 0;
}
.relation__ratio--1x1 {
    padding-top: 100%;
}

.relation__ratio--16x9 {
    padding-top: 56.25%;
}

.relation__ratio--3x1 {
    padding-top: 33%;
}

.relation iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.preloader {
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 9999;
	background: #fff;
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.preloader.done {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
} 

.loader {
	position: absolute;
	top: 45%;
	left: 50%;
	width: 300px;
	-webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: blinking 1s ease-in infinite;
        animation: blinking 1s ease-in infinite;
}

@-webkit-keyframes blinking {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
  	opacity: 0
  }
}

@keyframes blinking {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
  	opacity: 0
  }
}

.header__menu-btn {
	display: none;
	position: absolute;
    top: 50px;
    background: var(--secondary);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    z-index: 15;
    cursor: pointer;
    transition: all .3s;
    top: 50%;
    transform: translateY(-50%);
}

.rtl .header__menu-btn {
    left: 50px;
}

body:not(.rtl) .header__menu-btn {
    right: 50px;
}

.header__menu-btn.is-active {
    background: var(--white);
}

.mobile-menu-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
}

.sandwitch {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.sandwitch .sw-line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transition: top .2s, -webkit-transform .5s;
    -o-transition: transform .5s, top .2s;
    transition: transform .5s, top .2s;
    transition: transform .5s, top .2s, -webkit-transform .5s;
}

.header__menu-btn.is-active .sandwitch .sw-line {
    background: var(--black);
}

.sandwitch .sw-topper {
    top: 0;
}

.header__menu-btn.is-active .sw-topper {
    top: 9px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sandwitch .sw-bottom {
    top: 50%;
    margin-top: -1px;
}

.header__menu-btn.is-active .sw-bottom {
    top: auto;
    bottom: 9px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sandwitch .sw-footer {
    bottom: 0;
}

.header__menu-btn.is-active .sw-footer {
    opacity: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Buttons */
    .btn,
    .wp-block-button__link {
        border-radius: 0;
        border-width: 4px;
        border-style: solid;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 600;
        padding: 10px 25px;
    }

    .is-style-fill .wp-block-button__link {
        background: var(--secondary);
        border-color: var(--secondary);
    }

    .is-style-fill .wp-block-button__link:hover {
        background: transparent;
        border-color: var(--secondary);
    }

    .wp-block-buttons .wp-block-button.is-style-outline > a.wp-block-button__link {
        border: 4px solid;
        color: var(--secondary);
        border-color: var(--secondary);
        padding: 10px 25px;
    }

    .wp-block-buttons .wp-block-button.is-style-outline > a.wp-block-button__link:hover {
        background: var(--secondary);
        color: var(--white);
    }

    .btn-light {
        background: transparent;
        color: var(--secondary);
        border-color: var(--white);
    }

    .btn-light:hover {
        background: var(--white);
        color: var(--secondary);
        border-color: var(--white);
    }

    .btn-white {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn-white:hover {
        background: var(--white);
        color: var(--primary);
        border-color: var(--white);
    }

/* Form */
    .c-form-wrap {
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }

    .c-input-block {
        padding: 0 10px;
        width: 100%;
    }

    .c-input-block.c-input-block--half {
        width: 50%;
    }

    .c-input-block input {
        width: 100%;
    }

    .c-input-block input[type="submit"] {
        width: auto;
    }

    .c-input {
        border-radius: 5px;
        padding: 10px;
        background: #fff;
        border: 1px solid #313C47;
        width: 100%;
    }

    .rtl .c-input {
        text-align: right;
    }

    textarea .c-input {
        resize: none;
    }

    .submit-btn {
        transition: all .3s;
    }

    .submit-btn:hover {
        opacity: .8;
    }

    .wpcf7-not-valid-tip {
        font-size: 16px;
    }

    input::placeholder,
    textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #ACAFB3;
      opacity: 1; /* Firefox */
    }

    input:-ms-input-placeholder,
    textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
      color: #ACAFB3;
    }

    input::-ms-input-placeholder,
    textarea::-ms-input-placeholder { /* Microsoft Edge */
      color: #ACAFB3;
    }

/* Header */ 
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 5;
        transition: all .3s;
        background: var(--primary);
        border-bottom: 1px solid var(--secondary);
    }

    .logged-in .header {
        top: 32px;
    }

    .header.scrolled {
        background: var(--primary);
        -webkit-box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        -moz-box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
    }

    .header-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        transition: all .3s;
    }

    .header.scrolled .header-wrap {
        height: 55px;
    }

    .header .main-logo {
        max-width: 250px;
        max-height: 80px;
        transition: all .3s;
    }

    .header.scrolled .main-logo {
        max-width: 150px;
        margin-bottom: 0;
    }

    .header-controls-wrap {
        display: flex;
    }

    .header-menu-wrap {
        margin-left: auto;
        margin-right: 30px;
    }

    .main-nav {
        display: flex;
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .main-nav > li {
        position: relative;
        margin: 0 15px;
    }

    .main-nav > li:last-child {
        margin-right: 0;
    }

    .main-nav > li > a {
        display: inline-block;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--white);
        font-weight: 500;
    }

    .main-nav > li > a:hover {
        color: var(--secondary);
    }

    .main-nav > li.lang-item img {
        width: 26px !important;
        height: 18px !important;
    }

/* Footer */
    .footer {
        position: relative;
        background: var(--primary);
        color: var(--white);
        padding: 40px 0;
        border-top: 3px solid var(--secondary);
    }

    .footer .wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        max-width: 250px;
        margin-bottom: 10px;
    }

    .footer .copyright {
        font-size: 14px;
        text-align: center;
    }

    .rtl .footer .copyright:not(.ar) {
        display: none;
    }

    body:not(.rtl) .footer .copyright.ar {
        display: none;
    }

    .footer-social {
        margin-bottom: 15px;
    }

    .footer-social a {
        display: inline-block;
        text-decoration: none;
        font-size: 30px;
        margin: 0 3px;
        filter: brightness(0) invert(1);
    }

    .footer-social a:hover {
        filter: none;
    }

/* Main Banner */
    .s-banner {
        position: relative;
        padding: 240px 0;
        color: var(--white);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        margin-bottom: 100px;
    }

    @supports (-webkit-touch-callout: none) {
        .s-banner {
            background-attachment: scroll;
        } 
    }

    .s-banner:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .7);
    }

    .s-banner__content {
        position: relative;
    }

    body:not(.rtl) .s-banner__content {
        padding-left: 30px;
    }

    .rtl .s-banner__content {
        padding-right: 30px;
    }

    .s-banner__content:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
    }
    
    body:not(.rtl) .s-banner__content:before {
        left: -15px;
        border-left: 0.75rem solid var(--secondary);
    }

    .rtl .s-banner__content:before {
        right: -15px;
        border-right: 0.75rem solid var(--secondary);
    }

/* Secondary Banner */
    .s-banner-secondary {
        position: relative;
        padding: 240px 0;
        color: var(--white);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        text-align: center;
        -webkit-box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        -moz-box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        margin-bottom: 100px;
    }

    @supports (-webkit-touch-callout: none) {
        .s-banner-secondary {
            background-attachment: scroll;
        } 
    }

    .s-banner-secondary:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .7);
    }

    .s-banner-secondary__content {
        position: relative;
        max-width: 700px;
        margin: 0 auto;
    }

    .s-banner-secondary__content .subheading {
        font-size: 1.5rem;
    }

/* About Us */
    .s-about-us {
        margin-bottom: 100px;
    }

    .s-about-us__wrap {
        padding: 75px 0;
        position: relative;
    }

    .s-about-us__wrap:before {
        content: '';
        position: absolute;
        background: var(--primary);
        bottom: 0;
        top: 0;
        z-index: 0;
        left: 50%;
        right: auto;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
        width: calc(100vw - 4.375rem);
    }

    .s-about-us__wrap:after {
        content: '';
        position: absolute;
        border: 1px solid var(--white);
        bottom: 15px;
        top: 15px;
        left: 50%;
        right: auto;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
        width: calc(100vw - 4.375rem - 30px);
    }

    .s-about-us__text,
    .s-about-us__wrap .btn {
        position: relative;
        z-index: 1;
    }

    .s-about-us__text {
        color: var(--white);
        font-size: 24px;
        font-weight: 500;
        line-height: 1.6;
        margin-bottom: 35px;
    }

/* Services */
    .s-services {
        margin-bottom: 100px;
    }

    .s-services .row {
        justify-content: center;
    }

    .s-services__column {
        margin-bottom: 30px;
    }

    .s-services__card {
        background: #fff;
        padding: 30px 45px 55px;
        height: 100%;
        box-shadow: 0px 20px 55px 10px rgba(0,0,0,0.05);
    }

    .s-services__card h3 {
        font-weight: 600;
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .s-services__card h3 .icon {
        display: inline-block;
        max-width: 20px;
        vertical-align: text-bottom;
    }

    body:not(.rtl) .s-services__card h3 .icon {
        margin-right: 10px;
    }

    .rtl .s-services__card h3 .icon {
        margin-left: 10px;
        transform: scale(-1, 1);
    }

    .s-services__card .copy {
        line-height: 1.7;
        margin-bottom: 30px;
    }

/* CTA */
    .s-cta {
        position: relative;
        padding: 75px 0;
        background-attachment: fixed;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        text-align: center;
    }

    @supports (-webkit-touch-callout: none) {
        .s-cta {
            background-attachment: scroll;
        } 
    }

    .s-cta:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: var(--primary);
        opacity: .75;
    }

    .s-cta .row {
        justify-content: center;
    }

    .s-cta__content {
        position: relative;
    }

    .s-cta__subhead {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 15px;
    } 

    .s-cta__headline {
        margin-bottom: 40px;
        font-weight: 700;
        color: var(--global-bg);
    }

/* Blog Posts */
    .blogs-section {
        margin-bottom: 100px;
    }

    .blogs-section .headline {
        text-align: center;
    }

    .blog-post {
        display: block;
        margin-bottom: 30px;
    }

    .blog-post .post-img {
        position: relative;
        padding-top: 56%;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .blog-post .post-img img {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: sepia(100%) brightness(69%) hue-rotate(149deg) saturate(86%) contrast(156%);
        -webkit-filter: sepia(100%) brightness(69%) hue-rotate(149deg) saturate(86%) contrast(156%);
        -moz-filter: sepia(100%) brightness(69%) hue-rotate(149deg) saturate(86%) contrast(156%);
        transition: all .3s;
    }

    .blog-post:hover .post-img img {
        filter: none;
    }

    .blog-post .title {
        font-size: 20px;
        line-height: 1.3;
        display: inline-block;
        color: var(--primary);
        transition: all .3s;
    }

    .blog-post:hover .title {
        color: var(--secondary);
    } 

/* Single and Text Page*/
    .text-page {
        padding-top: 175px;
        padding-bottom: 150px;
        font-size: 20px;
    }

    blockquote {
        color: var(--primary);
        padding-left: 30px;
        border-left: 2px solid var(--secondary);
    }

    blockquote cite {
        font-size: 80%;
        opacity: .8;
    }

    pre {
        background-color: #282923;
        border-left: 3px solid var(--secondary);
        white-space: pre-wrap;
        color: var(--white);
        padding: 20px 30px;
        border-radius: 5px;
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .wp-block-media-text {
        margin-bottom: 2rem;
    } 

    figure {
        margin: 0 0 2rem;
    }

    figure figcaption {
        font-style: italic;
    }

/* Contact */
    .s-contact-us {
        margin-bottom: 100px;
    }    

    .s-contact-us__wrap {
        position: relative;
        background: var(--primary);
        color: var(--white);
        display: flex;
        padding: 75px;
    }

    .s-contact-us__wrap:before {
        content: '';
        position: absolute;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        top: 15px;
        left: 15px;
        border: 1px solid var(--white);
    }

    .address-block, .form-block {
        width: 50%;
        position: relative;
    }

    .address-block {
        padding-right: 30px;
        font-size: 22px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .address a {
        color: var(--white);
        text-decoration: none;
    }

    .address a:hover {
        color: var(--secondary);
    }

    .address-block .social a {
        display: inline-block;
        text-decoration: none;
        font-size: 30px;
        margin-right: 5px;
        filter: brightness(0) invert(1);
    }

    .address-block .social a:hover {
        filter: none;
    }

/* Map */
    .s-map {
        border-top: 1px solid var(--primary);
        -webkit-box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        -moz-box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        box-shadow: 0px 10px 33px -5px rgba(6, 55, 74, 1);
        filter: grayscale(1);
        transition: all .3s;
    }

    .s-map:hover {
        filter: none;
    }

/* Text Section */
    .s-text {
        font-size: 20px;
        margin-bottom: 100px;
    }

/* Team */
    .s-team {
        margin-bottom: 100px;
    } 

    .team-member {
        margin-bottom: 40px;
    } 

    .s-team .photo {
        position: relative;
        padding-top: 100%;
        box-shadow: 0px 5px 16px 0px rgba(6,55,74,0.21);
        -webkit-box-shadow: 0px 5px 16px 0px rgba(6,55,74,0.21);
        -moz-box-shadow: 0px 5px 16px 0px rgba(6,55,74,0.21);
        margin-bottom: 10px;
        overflow: hidden;
    }

    .photo img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
    }

    .team-member .name {
        font-size: 20px;
        color: var(--primary);
    }

/* Image */
    .s-image-section .img-wrap {
        text-align: center;
    }

/* About Alt */
    .s-about-us-alt .sides-row {
        margin-bottom: 50px;
        align-items: center;
    }

    .s-about-us-alt .sides-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .s-about-us-alt .img-wrap {
        margin: 0 auto;
    }

/* Text + Image */
    .text-plus-image-section .reversed {
        flex-direction: row-reverse;
    }

/* Text + Text */
    .text-plus-text-section .reversed {
        flex-direction: row-reverse;
    }

/* Contact + Map */
    .s-contact-us-map {
        position: relative;
    }

    .s-contact-us-map__map {
        position: absolute;
        width: 50%;
        height: 100%;
        top: 0;
        
    }

    body:not(.rtl) .s-contact-us-map__map {
        left: 0;
        border-right: 2px solid #06374a;
    }

    .rtl .s-contact-us-map__map {
        right: 0;
        border-left: 2px solid #06374a;
    }

    .s-contact-us-map__map iframe {
        width: 100%;
        height: 100%;
    }

    .s-contact-us-map__wrap {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    body:not(.rtl) .s-contact-us-map__wrap {
        padding-left: 50px;
    }

    .rtl .s-contact-us-map__wrap {
        padding-right: 50px;
    }

    .s-contact-us-map__wrap .address-block {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .s-contact-us-map__wrap .form-block {
        width: 100%;
    }

    .s-contact-us-map__wrap .address a {
        color: var(--text);
    }

    .s-contact-us-map__wrap .address-block .social a {
        filter: none;
    }

    .s-contact-us-map__wrap .btn-light {
        background: var(--primary);
        color: var(--secondary);
        border-color: var(--primary);
    }

    .s-contact-us-map__wrap .btn-light:hover {
        background: transparent;
        color: var(--secondary);
        border-color: var(--primary);
    }

@media only screen and (max-width : 1199px) {
	
}

@media only screen and (max-width : 991px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        
    }

	/* Header */
        .header .main-logo {
            max-width: 150px;
        }

        .header-controls-wrap {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: absolute;
            width: 100%;
            height: 100vh;
            top: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            overflow: auto;
        }

        .header-controls-wrap.is-active .mobile-menu-bg {
            opacity: .95;
            visibility: visible;
        }

        .header-controls-wrap.is-active {
            opacity: 1;
            visibility: visible;
        }

        .main-nav {
            display: block;
        }

        .header__menu-btn {
            display: flex;
        }

        .submenu-expand-btn {
            display: block;
            background-repeat: no-repeat;
            background-position: center;
            background-image: url(../images/arrow-up.svg);
            width: 40px;
            height: 40px;
            transform: scale(1, -1);
            cursor: pointer;
        }

        .submenu-expand-btn:hover {
            opacity: .7;
        } 

        .submenu-expand-btn.is-active {
            transform: none;
        }

        .main-nav > li {
            height: auto;
            margin: 0 0 10px;
        }

        .main-nav > li:last-child {
            margin: 0 0 10px;
        }

        .main-nav > li > a {
            font-size: 22px;
            font-weight: 600;
        }

        .main-nav > li > a:hover {
            color: var(--primary);
        }

        li.menu-item-has-children {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .header-menu-wrap {
            margin: 0;
            margin: 0 0 40px;
            width: 100%;
            text-align: center;
        }

        ul.sub-menu {
            display: none;
            width: 100%;
            list-style-type: none;
            padding: 20px 0;
            background: rgba(0, 0, 0, .5);
            border-top: 1px solid #b0b0b0;
            border-bottom: 1px solid #b0b0b0;
        }

        ul.sub-menu li {
            margin-bottom: 5px;
        }

        ul.sub-menu a {
            color: #fff;
            font-size: 18px;
        }

        .header .header-social-wrap a {
            background: #fff;
            color: #25995C;
            margin-left: 15px;
            width: 45px;
            height: 45px;
        }

        .header .header-social-wrap a:first-child {
            margin: 0;
        }

        .main-nav > li > a:hover, .main-nav > li.current-menu-item > a {
            color: var(--secondary);
        }

    /* Footer */
        .footer-info-wrap {
            flex-wrap: wrap;
        }

        .footer-info-wrap .address-column,
        .footer-info-wrap .events-column {
            width: 50%;
        }

        .footer-info-wrap .buttons-column {
            width: 100%;
            padding-top: 60px;
        }

        .footer-info-wrap .button {
            margin: 0 10px;
        }

        .foot-nav {
            display: none;
        }

    /* Main Banner */ 
        .s-banner {
            padding: 200px 0;
            margin-bottom: 75px;
        }

    /* Secondary Banner */
        .s-banner-secondary {
            margin-bottom: 75px;
            padding: 200px 0;
        }

    /* About Us */
        .s-about-us {
            margin-bottom: 75px;
        }

    /* Services */ 
        .s-services {
            margin-bottom: 75px;
        }

    /* Blog Posts */
        .blogs-section {
            margin-bottom: 75px;
        }

    /* Single and Text Page*/
        .text-page {
            padding-top: 150px;
            padding-bottom: 120px;
        }

    /* Contact */
        .s-contact-us {
            margin-bottom: 75px;
        }

        .s-contact-us__wrap {
            flex-direction: column;
        }

        .address-block, 
        .form-block {
            width: 100%;
        }

        .address-block {
            padding: 0;
            margin-bottom: 50px;
        }

    /* Text Section */
        .s-text {
            margin-bottom: 75px;
        }

    /* Team */
        .s-team {
            margin-bottom: 75px;
        }

    /* Contact + Map */ 
        body:not(.rtl) .s-contact-us-map__wrap {
            padding-left: 25px;
        }

        .rtl .s-contact-us-map__wrap {
            padding-right: 25px;
        }

}

@media only screen and (max-width : 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    h4 {
        font-size: 1.4rem;
    }

    h5 {
        font-size: 1.3rem;
    }

    h6 {
        font-size: 1.2rem;
    }

    .section-title.with-line {
        margin-bottom: 40px;
    }

    /* Buttons */
        .btn, .wp-block-button__link {
            font-size: 16px;
        }

    /* Footer */
        .footer {
            padding: 25px 0;
        }

        .footer-logo {
            max-width: 125px;
        }

    /* Header */ 
        .header .main-logo {
            max-width: 150px;
        }

    /* Main Banner */
        .s-banner {
            padding: 175px 0;
            margin-bottom: 50px;
        }

    /* Secondary Banner */
        .s-banner-secondary {
            padding: 150px 0;
            margin-bottom: 50px;
        }

    /* About Us */ 
        .s-about-us {
            margin-bottom: 50px;
        }

        .s-about-us__text {
            font-size: 22px;
        }

    /* Services */
        .s-services {
            margin-bottom: 50px;
        }

        .s-services__column {
            margin-bottom: 20px;
        }

    /* CTA */
        .s-cta {
            padding: 50px 0;
        }

    /* Single and Text Page*/
        .text-page {
            font-size: 18px;
            padding-top: 120px;
            padding-bottom: 115px;
        }

        pre {
            font-size: 14px;
        }

    /* Text Section */
        .s-text {
            margin-bottom: 50px;
        }

    /* Team */
        .s-team {
            margin-bottom: 50px;
        }

    /* Blog Posts */
        .blogs-section {
            margin-bottom: 50px;
        }

        .blog-post .title {
            font-size: 18px;
        }

    /* Contact + Map */ 
        .s-contact-us-map__map {
            position: static;
            width: 100%;
            height: 400px;
            border: none !important;
            border-top: 2px solid #06374a !important;
        }

}

@media only screen and (max-width : 575px) {
    .button {
        padding: 8px 25px;
        font-size: 18px;
    }

    .header.scrolled .main-logo {
        max-width: 125px;
    }

    .loader {
        width: 200px;
    }

    /* Header */
        body:not(.rtl) .header__menu-btn {
            right: 15px;
        }

        .rtl .header__menu-btn {
            left: 15px;
        }

    /* Form */
        .c-input-block.c-input-block--half {
            width: 100%;
        }

    /* Footer */
        .footer-logo {
            max-width: 135px;
        }

    /* Main Banner */
        .s-banner {
            padding: 150px 0;
        }

        body:not(.rtl) .s-banner__content:before {
            left: 0;
            border-left: 0.4rem solid var(--secondary);
        }

        .rtl .s-banner__content:before {
            right: 0;
            border-right: 0.4rem solid var(--secondary);
        }


    /* Secondary Banner */
        .s-banner-secondary {
            padding: 150px 0 120px;
        }

        .s-banner-secondary__content .subheading {
            font-size: 1.3rem;
        }

    /* About Us */ 
        .s-about-us__wrap:before {
            width: 100%;
        }

        .s-about-us__wrap:after {
            width: calc(100% - 30px);
        }

        .s-about-us__text {
            padding: 0 45px;
            font-size: 18px;
        }

        .s-about-us__wrap .btn {
            margin-left: 45px;
        }

    /* Services */ 
        .s-services__column {
            margin-bottom: 20px;
        }

        .s-services__card {
            padding: 30px 30px 55px;
        }

    /* Single and Text Page*/
        .wp-block-media-text .wp-block-media-text__content {
            padding: 25px 0 0;
        }

    /* Team */ 
        .team-member {
            max-width: 250px;
            margin-bottom: 25px;
        }

    /* Contact */
        .s-contact-us__wrap {
            padding: 50px 30px;
        }

        .address-block {
            font-size: 18px;
            margin-bottom: 35px;
        }

    /* Map */
        .s-map .relation__ratio--3x1 {
            padding-top: 50%;
        } 

    /* Contact + Map */ 
        .s-contact-us-map__wrap {
            padding-left: 0 !important;
            padding-right: 0 !important;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .s-contact-us-map__map {
            height: 250px;
        }

}
