@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:ital,wght@0,400;1,900&display=swap');
* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f4c5c;
    margin: 0;
    padding: 0;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}
html::-webkit-scrollbar-track
{
	background-color: #FFFFFF;
}

html::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb
{
	background-color: #ADB5BD;
}
html::-webkit-scrollbar-thumb:hover
{
	background-color: #b3b2b2;
}
.all-content {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    max-width: 1500px;
    margin: auto;
    height: auto;
}
.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #000;
    text-align: center;
    padding: 10px;
}

#fonti {
    font-size: 22px;
}
#size {
    font-size: 17px;
}
#progress {
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
#progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #001a2e;
}


/* NAVI CSS */
.container{
    max-width: 1500px;
	margin:auto;
    height: 150px;
    padding: 0;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}

/*header*/
.header{
	position: fixed; 
	width: 100%;
	z-index: 9999; 
    max-width: 1500px;
    transition: transform 0.3s ease-in-out; 
}

.header.nav-up {
    transform: translateY(-100%);
}

.header.nav-down {
    transform: translateY(0);
}

.header.nav-hidden {
    transform: translateY(-100%); 
}

.header-main {
    background-color: transparent;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.header-main.scrolled {
    background-color: rgba(173, 181, 189, 0.75);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header .menu > .menu-item > a {
    color: #000; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.header .menu > .menu-item > a.active {
    color: #0f4c5c; 
}

.header .menu > .menu-item > .sub-menu {
    background-color: rgba(255, 255, 255, 0.9);
}

.header .logo a img {
    width: 150px;
    margin: 4px;
}

.header .menu > .menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
    z-index: 1;
}

.header .menu > .menu-item > a{
	display: block;
	padding: 2px 0;
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}

.header .menu > .line-item > a {
    position: relative;
}

.header .menu > .line-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #0f4c5c;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.header .menu > .line-item > a:hover::after,
.header .menu > .line-item > a.active::after {
    width: 100%;
}

.header .menu > .line-item > a::after {
    content: '';
    width: 0;
    background-color: #0f4c5c;
    margin: auto;
    display: block;
    height: 3px;
    border-radius: 30%;
}

.header .menu > .line-item > a:hover::after {
    width: 100%;
    transition: 0.3s linear;
}

.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}

.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease; 
}

.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
    background-color: #0f4c5c;
    color: #0f4c5c;
}

.header .menu > .menu-item > a .plus:after{
    transform: translate(-50%,-50%) rotate(-90deg);	
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #0f4c5c;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a::after {
    content: '';
    width: 0;
    background-color: #0f4c5c;
    margin: auto;
    display: block;
    height: 2px;
    border-radius: 50%;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover::after {
    width: 100%;
    transition: 0.3s linear;
}

.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 200px;
	position: absolute;
	left:0;
	top:100%;
	padding: 10px 0;
	border-top: 3px solid #0f4c5c;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}

.sub-menu .menu-item ion-icon {
    position: relative;
    top: 5px;
    font-size: 22px;
    margin-right: 10px;
}
/* NAVI CSS */

.hero-section {
    position: relative;
    height: 60vh;
    width: 100%;
    background-image: url('/assets/images/back-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 92, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px 60px;
    border-radius: 30px;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    margin-top: 20px;
}

.hero-section .typing-text {
    color: #fff;
    font-size: 4em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #fff;
    animation: typing 3.5s steps(8, end), blink-caret .75s step-end infinite;
    margin: 0;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

@media (max-width: 768px) {
    .hero-section .typing-text {
        font-size: 2.5em;
    }
    
    .hero-section {
        height: 50vh;
    }
}

/* OUR RECENT PROJECT CSS */
.mainDiv-recent-project {
    background-color: #fff;
    width: 100%;
    height: auto;
    padding: 50px 0;
}
.recent-projects-div{
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.mainDiv-recent-projectH1 {
    color: #0f4c5c;
    margin: 0 auto 50px;
}

.recentProject-content {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.recentProject-content .card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: #11111a3a 0px 4px 16px, #11111a6c 0px 8px 24px, #11111a1a 0px 16px 56px;
}
.card {
    height: 400px;
    padding: 1.5rem;
    background: #0f4c5c;
    transition: 0.4s ease-out;
    border: none;
    border-radius: 20px;
    box-shadow: #11111a3a 0px 4px 16px, #11111a6c 0px 8px 24px, #11111a1a 0px 16px 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card:hover {
    transform: translateY(20px);
}
.card:hover:before {
    opacity: 1;
}
.card:hover .info {
    opacity: 1;
    transform: translateY(0px);
}
.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
}
.card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.card .info {
    position: relative;
    z-index: 2;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s;
    text-align: center;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}
.card .info h1 {
    margin: 0 0 15px 0;
    font-weight: bold;
    font-size: 1.8em;
}
.card .info p {
    letter-spacing: 1px;
    font-size: 1em;
    margin: 15px 0;
    line-height: 1.6;
    max-width: 90%;
}
.card .info form {
    margin-top: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.card .info button {
    background: linear-gradient(135deg, #0f4c5c 0%, #083944 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 76, 92, 0.2);
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.card .info button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.card .info button:hover::before {
    left: 100%;
}

.card .info button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 76, 92, 0.3);
    background: linear-gradient(135deg, #083944 0%, #0f4c5c 100%);
    color: white;
}

.card .info button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(15, 76, 92, 0.2);
}

.card .info button::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    position: static;
    right: auto;
}

.card .info button:hover::after {
    transform: translateX(5px);
}

.cards-hover-hint {
    color: #0f4c5c;
    font-size: 1.1em;
    animation: float 2s ease-in-out infinite;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.1);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cards-hover-hint.desktop,
.cards-hover-hint.mobile {
    animation: float 2s ease-in-out infinite;
}

.cards-hover-hint.mobile {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .cards-hover-hint.desktop {
        display: none;
    }
    .cards-hover-hint.mobile {
        display: block;
    }
    .recentProject-content {
        grid-template-columns: 1fr;
    }
    .recentProject-content .card{
        height: auto;
        min-height: 300px;
    }
    .card .info button {
        padding: 10px 24px;
        font-size: 0.9em;
    }
    .card .info h1 {
        font-size: 1.5em;
    }
    .card .info p {
        font-size: 0.9em;
        margin: 10px 0;
    }
}
@media (max-width: 325px) {
    .mainDiv-recent-projectH1 h1{
        font-size: 24px;
    }
}
/* OUR RECENT PROJECT CSS */


/* WHAT WE DO CSS */
.jobs-maindiv {
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
}
.jobs-maindiv .jobs-div{
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.title-jobs-maindiv {
    margin: 0 auto 50px;
}

.title-jobs-maindiv h1 {
    color: #0f4c5c;
    font-size: 2.5em;
    position: relative;
    display: inline-block;
}

.title-jobs-maindiv p {
    color: #666;
    line-height: 1.6;
}

.jobs-container-card {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jobs-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.jobs-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jobs-title-conatiner {
    padding: 20px;
    background: white;
    position: relative;
}

.jobs-title {
    color: #0f4c5c;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.div-button .openBtn {
    background: linear-gradient(135deg, #0f4c5c 0%, #083944 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 76, 92, 0.2);
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.div-button .openBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.div-button .openBtn:hover::before {
    left: 100%;
}

.div-button .openBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 76, 92, 0.3);
    background: linear-gradient(135deg, #083944 0%, #0f4c5c 100%);
    color: white;
}

.div-button .openBtn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(15, 76, 92, 0.2);
}

.div-button .openBtn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    position: static;
    right: auto;
}

.div-button .openBtn:hover::after {
    transform: translateX(5px);
}

.jobs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.jobs-card:hover .jobs-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .jobs-container-card {
        grid-template-columns: 1fr;
    }
    
    .title-jobs-maindiv h1 {
        font-size: 2em;
    }
    
    .jobs-card {
        height: auto;
        min-height: 400px;
    }

    .cards-hover-hint {
        content: '↓ Tap cards to see details! ↓';
    }
    .div-button .openBtn {
        padding: 10px 24px;
        font-size: 0.9em;
    }
}
/* WHAT WE DO CSS */


/* MODALS */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal.active {
    display: flex;
}

.modal.active .modal-backdrop {
    opacity: 1;
}

.modal.active .modal-container {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.modal-content {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.modal-description {
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item h3 {
    padding: 1rem;
    margin: 0;
    color: #0f4c5c;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(15, 76, 92, 0.1);
}

.image-wrapper {
    position: relative;
    padding-top: 75%;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-trigger {
    background: linear-gradient(135deg, #0f4c5c 0%, #083944 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.modal-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 92, 0.3);
}

.modal-trigger .icon {
    transition: transform 0.3s ease;
}

.modal-trigger:hover .icon {
    transform: translateX(5px);
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.modal-box {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
}

.modal.show .modal-box {
    opacity: 1;
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0f4c5c 0%, #083944 100%);
    border-radius: 15px 15px 0 0;
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
    max-height: calc(90vh - 180px);
    overflow-y: auto;
}

.modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.image-box {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-box:hover {
    transform: translateY(-5px);
}

.image-box h4 {
    margin: 0;
    padding: 1rem;
    color: #0f4c5c;
    border-bottom: 2px solid rgba(15, 76, 92, 0.1);
}

.image-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.btn-modal {
    background: linear-gradient(135deg, #0f4c5c 0%, #083944 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 92, 0.3);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .modal-gallery {
        grid-template-columns: 1fr;
    }
}
/* MODALS */

/* FOOTER */
footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    position: relative;
    padding: 10px 0;
    background-color: #fff;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #0f4c5c;
    border-radius: 50%;
    opacity: 0.8;
}

footer .logo-footer img {
    width: 180px;
}

footer .social-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

footer .social-footer a ion-icon{
    text-decoration: none;
    color: #000;
    font-size: 40px;
}

footer .contact-us .div-tel-email a{
    display: flex;
    margin: 10px;
    font-size: 16px;
    text-decoration: none;
    color: #000;
}

footer .contact-us .div-tel-email a ion-icon {
    font-size: 20px;
    position: relative;
    top: 2px;
    right: 7px;
}

footer .contact-us .div-tel-email a span {
    color: #0f4c5c;
    margin-left: 10px;
}

footer .map {
    width: 430px;
    height: 240px;
}
/* FOOTER CSS */


/* RESPONSIVE */
@media(min-width: 992px){
    .header .menu > .menu-item-has-children:hover > .sub-menu{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .header .menu > .menu-item-has-children:hover > a .plus:after{
            transform: translate(-50%,-50%) rotate(0deg);		
        }
    }
    .header .menu > .menu-item > .sub-menu > .menu-item{
        display: block;
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a{
        display: block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        color: #000000;
        transition: all 0.3s ease;
        text-transform: capitalize;
    }
    .header .open-nav-menu{
        height: 40px;
        width: 100px;
        margin-right: 45px;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .header .open-nav-menu span{
        display: block;
        height: 3px;
        width: 30px;
        background-color: #000000;
        position: relative;
    }
    .header .open-nav-menu span:before,
    .header .open-nav-menu span:after{
        content: '';
        position: absolute;
        left:0;
        width: 100%;
        height: 100%;
        background-color: #000000;
        box-sizing: border-box;
    }
    .header .open-nav-menu span:before{
        top:-7px;
    }
    .header .open-nav-menu span:after{
        top:7px;
    }
    .header .close-nav-menu{
        height: 30px;
        width: 30px;
        background-color: #0f4c5c;
        color: #ffffff;
        margin:0 0 15px 15px;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-align: center;
    }
    .header .close-nav-menu img{
        width: 16px;
    }
    .header .menu-overlay{
        position: fixed;
        z-index: 9998 !important;
        background-color: rgba(0,0,0,0.5);
        left:0;
        top:0;
        height: 100%;
        width: 100%;
        visibility: hidden;
        opacity:0;
        transition: all 0.3s ease;
    }

    


    /* RESPONSIVE 991PX */
    @media(max-width: 991px){
        .container{
            height: 120px;
        }
        .header .logo a img {
            width: 120px;
            margin: 3px;
        }
        .header .open-nav-menu{
            margin: 0;
        }
        .header .nav-menu{
            position: fixed;
            right: -280px;
            top: 0;
            width: 280px;
            height: 70vh !important; 
            background-color: #222222;
            z-index: 9999 !important;
            padding: 15px 0;
            transition: all 0.5s ease;
            border-bottom-left-radius: 150px;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }
        .header .nav-menu.open{
            visibility: visible;
            right: 0px;
            z-index: 1000;
            height: 70vh !important;
            overflow-y: auto;
        }
        .header .menu > .menu-item{
            display: block;
            margin:0;
        }
        .header .menu > .menu-item-has-children > a{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header .menu > .menu-item > a{
            color: #ffffff;
            padding: 12px 15px;
            border-bottom: 1px solid #333333;
        }
        .header .menu > .menu-item:first-child > a{
            border-top: 1px solid #333333;	
        }
        .header .menu > .menu-item > a .plus:before, 
        .header .menu > .menu-item > a .plus:after{
            background-color: #ffffff;
        }
        .header .menu > .menu-item-has-children.active > a .plus:after{
            transform: translate(-50%,-50%) rotate(0deg);
        }
        .header .menu > .menu-item > .sub-menu{
            width: 100%;
            position: relative;
            opacity: 1;
            visibility: visible;
            border:none;
            background-color: transparent;
            box-shadow: none;
            transform: translateY(0px);
            padding: 0px;
            left: auto;
            top:auto;
            max-height: 0;
            overflow: hidden;
        }
        .header .menu > .menu-item > .sub-menu > .menu-item > a{
            padding: 12px 45px;
            color: #ffffff;
            border-bottom: 1px solid #333333;
        }
        .header .close-nav-menu,
        .header .open-nav-menu{
            display: flex;
        }
    }
    /* RESPONSIVE 991PX */



    /* RESPONSIVE WITH 991PX */
    @media(max-width: 991px) {
        .recentProject-content .card{
            width: 100%;
            height: auto;
        }

        footer {
            flex-direction: column;
            height: auto;
            display: inline-block;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

        footer .contact-us .contact-h1 {
            text-align: center;
        }

        footer .map {
            margin-top: 10px;
        }
        footer .contact-us {
            text-align: center;
            margin-top: 10px;
        }
        footer .logo-footer img {
            width: 170px;
            padding-top: 10px;
        }
        footer .social-footer a ion-icon{
            font-size: 35px;
        }
    }
    /* RESPONSIVE WITH 991PX */


    @media(max-width: 326px) {
        .copyright{
            font-size: 14px;
        }
    }
    @media(max-width: 427px){
        footer .map {
            width: 350px;
        }
    }
    @media(max-width: 375px){
        footer .map {
            width: 300px;
        }
    }