/* Import CSS */
@import url('global.css');

body{font-family: var(--font-family); font-size: var(--fs); color: hsl(var(--text-color));}
.container{width: 100%; max-width: calc(var(--container-width) + (var(--container-padding) * 2)); padding: 0 var(--container-padding); margin-inline: auto;}

/* Header Start */
header{position: absolute;  left: 0; top: 0; width: 100%; z-index: 9999; min-height: var(--header-height); display: flex; align-items: center;}
header.active, header.scrolled{position: fixed; transition: 150ms; background-color: hsl(var(--secondary)); min-height: calc(var(--header-height) - 2rem);}
header.scrolled{animation: fixedHeader 150ms linear;}
@keyframes fixedHeader {
  0% {
    transform: translateY(-100%); 
    opacity:0;
  }
  100% {
    transform: translateY(0);
    opacity:1;
  }
}
header .container{display: flex; align-items: center; gap:0 3rem;}
.logo img{width: 11.8rem;}
header nav{align-items: center; gap:0 6rem; margin: 0 8rem 0 auto;}
header nav a{font-weight: var(--fw-medium); color: hsl(var(--white)); font-family: var(--secondary-font); font-size: 1.4rem; text-transform: uppercase; line-height: 1; position: relative;}
@media(max-width:991px){
    header nav{gap:0 3rem; margin: 0 4rem 0 auto;}
}
@media(min-width:768px){
    header nav{display: flex;}
    header nav a{padding: .5rem 0;}
    header nav a.active{font-weight: var(--fw-bold);}
    header nav a.active::after{position: absolute; left: 50%; bottom: 0; transform:translateX(-50%); width: 100%; height: .1rem; background-color: hsl(var(--white)); content: "";}
}
@media(max-width:767px){
    header{min-height: calc(var(--header-height) - 2rem);}
    header nav{position: absolute; left: 0; top: 100%; width: 100%; opacity: 0; visibility: hidden; pointer-events: none; transition: 150ms;}
    header nav.active{opacity: 1; visibility: visible; pointer-events: auto;}
    header nav a{display: flex; align-items: center; padding: 0 var(--container-padding); min-height: 4rem; background-color: hsl(var(--secondary));}
    header nav a{border-top: .1rem solid hsl(var(--secondary-hover));}
    header .social-media{margin-left: auto;}
    .logo img{width: 9rem;}
}
/* Header End */

/* Hero Section Start */
.hero-section{position: relative; min-height: var(--hero-banner-height); background-size: cover; background-repeat: no-repeat; background-position: center center; display: flex; align-items: center; isolation: isolate;}
.hero-section::after{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: hsla(var(--secondary), 70%); content: ""; z-index: -1;}
.hero-section > *{flex: 1 0 0%;}
.hero-content{padding: 0 var(--lg);}
.hero-content p:not(:last-child){margin-bottom: 2rem;}
.hero-content h1{text-transform: uppercase; font-weight: var(--fw-bold); color: hsl(var(--white));}
.hero-content h6{font-weight: var(--fw-medium); color: hsl(var(--white));}
.hero-content p{font-size: var(--h6); color: hsl(var(--white));}
.hero-content .btn:not(:first-child){margin-top: var(--xs);}
@media(max-width:1230px){
    .hero-content{padding: 0;}
}
@media(max-width:767px){
    .hero-section{min-height: 70dvh;}
}
/* Hero Section End */

/* Footer Start */
.footer-content{padding: var(--lg) 0; position: relative; isolation: isolate;}
.footer-content::before{content: ""; background-color: hsl(224, 35%, 21%); position: absolute; left: 50%; top: 0; width: 100vw; height: 101%; transform:translateX(-50%); z-index: -1;}
.copyright{position: relative; isolation: isolate; padding: 1.5rem 0;}
.copyright::before{content: ""; background-color: hsl(224, 33%, 26%); position: absolute; left: 50%; top: 0; width: 100vw; height: 100%; transform:translateX(-50%); z-index: -1;}
.footer-content{display: grid; grid-template-columns: 30rem auto 30rem; justify-content: space-between; justify-content: space-between; gap:var(--xs);}
.footer-intro p{color: hsl(0, 2%, 63%);}
footer .footer-headding{font-weight: var(--fw-medium); text-transform: uppercase; font-family: var(--secondary-font); color: hsl(var(--white)); line-height: 1;}
footer .footer-headding{margin-bottom: var(--xs);}
.footer-intro .social-media:not(:first-child){margin-top: 2rem;}
.footer-contact-info ul li:not(:last-child){margin-bottom: 1rem;}
.footer-contact-info ul li, .footer-contact-info ul li a{display: flex; gap:1rem;}
.footer-contact-info ul li span{width: 3rem; transform:translateY(.2rem);}
.footer-contact-info ul li span img{margin: 0 auto; width: 2.4rem;}
.footer-contact-info ul li p{color: hsl(var(--white));}
.instagram-photos{display: grid; grid-template-columns: repeat(3, 1fr); gap:var(--xs);}
.instagram-photos img{object-fit: cover; width: 100%; height: 100%; border-radius: 100%; aspect-ratio: 1/1;}
.copyright{display: flex; align-items: center; gap: 1rem var(--xs); justify-content: space-between;}
.copyright p, .copyright p a{color: hsl(223.64deg 21.94% 54.69%);}
.copyright p a:hover{text-decoration: underline;}
.footer-menu{display: flex; flex-direction: column; gap:.5rem var(--xs);}
.footer-menu a{color: hsl(0, 2%, 63%); transition:var(--transition); width: max-content;}
.footer-menu a:hover, .footer-menu a.active{color: hsl(var(--white));}
@media(max-width:1199px){
    .footer-content{grid-template-columns: auto auto 27rem;}
    .instagram-photos{gap:1.5rem;}
    .footer-contact-info ul li span img{width: 1.8rem;}
    .footer-contact-info ul li span{width: 2.4rem;}
}
@media(max-width:991px){
    .copyright{flex-direction: column; text-align: center;}
}
@media(max-width:767px){
    .footer-content{grid-template-columns: 1fr 1fr; gap:4rem var(--xs);}
    .footer-content > :last-child{grid-column: 1/3;}
}
@media(max-width:480px){
    .footer-content{grid-template-columns: 1fr;}
}
/* Footer End */

/* General Start */
.section{padding: var(--md) 0;}
.page-section{padding: var(--lg) 0;}
.section-header:not(:last-child), .section-content:not(:last-child){margin-bottom: var(--md);}
.section-header h3{font-weight: var(--fw-bold); color: hsl(var(--headding-color));}
.section-header p{max-width: 85%; margin-inline: auto;}
.section-header > :not(:last-child){margin-bottom: 2rem;}
.headding-border{padding-bottom: 2rem; background: url('/images/heading-border.svg') center bottom no-repeat; background-size: 7.1rem 1.1rem;}
.page-hero-section{min-height: calc(100dvh - var(--header-height)); display: flex; align-items: center; background-size: cover; background-repeat: no-repeat; background-position: center center; position: relative; isolation:isolate;}
.page-hero-section::before{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: hsla(222, 100%, 17%, 16%); content: ""; z-index: -1;}
@media(max-width:991px){
    .section-header p{max-width: 100%;}
}
@media(max-width:767px){
    .page-hero-section{min-height: calc(100dvh - var(--header-top-height));}
}
/* General End */

/* Image Gallery Start */
.image-gallery-1, .image-gallery-2, .image-gallery-3{display: grid; grid-auto-rows: calc((1170px - 3rem) / 3 ); grid-template-columns: repeat(3, 1fr); gap:3rem;}
.gallery-image{position: relative;}
.gallery-image::after{position: absolute; left: 50%; top: 50%; transform:translate(-50%, -50%) scale(0); width: calc(100% - 2rem); height: calc(100% - 2rem); background:url('/images/magnifier.svg') center center no-repeat hsla(var(--primary), 50%); background-size: 4rem 4rem; content: ""; pointer-events: none; transition:var(--transition); pointer-events:none;}
.gallery-image:hover::after{transform:translate(-50%, -50%) scale(1);}
.gallery-image img{object-fit: cover; width: 100%; height: 100%;}
.mfp-bg, .mfp-wrap{z-index: 99999;}
.image-gallery-3 > *{position: relative;}
.image-gallery-3 > :nth-child(2)::before, .image-gallery-3 > :nth-child(3)::before, .image-gallery-3 > :nth-child(5)::before{position: absolute; z-index: -1; content: ""; width: 28.7rem; height: 13.1rem; background: url('/images/waves.png') center center no-repeat; background-size: 100% 100%;}
.image-gallery-3 > :nth-child(2)::before{right: 0; top: 0; transform:translateX(50%);}
.image-gallery-3 > :nth-child(3)::before{left: 0; bottom: 0; transform:translateX(-50%);}
.image-gallery-3 > :nth-child(5)::before{right: 0; bottom: 0; transform:translate(25%, 25%);}
@media(max-width:1230px){
    .image-gallery-3 > :nth-child(2)::before, .image-gallery-3 > :nth-child(3)::before, .image-gallery-3 > :nth-child(5)::before{display: none;}
}
@media(max-width:991px){
    .image-gallery-1, .image-gallery-2, .image-gallery-3{grid-auto-rows: calc((860px - 2rem) / 3 ); gap:2rem;}
}
@media(max-width:767px){
    .image-gallery-1, .image-gallery-2, .image-gallery-3{grid-auto-rows: calc((600px - 1rem) / 3 ); gap:1rem;}
}
@media(min-width:576px){
    .image-gallery-1 > :first-child{grid-row:1/3;}
    .image-gallery-1 > :last-child{grid-column:2/4;}
    .image-gallery-2 > :first-child{grid-column:1/3;}
    .image-gallery-2 > :nth-child(2){grid-column:3/4; grid-row:1/3;}
    .image-gallery-2 > :nth-child(5){grid-column:1/2; grid-row:3/5;}
    .image-gallery-2 > :nth-child(6){grid-column:2/4; grid-row:3/4;}
    .image-gallery-3 > :first-child{grid-column: 1/3;}
    .image-gallery-3 > :nth-child(2){grid-column: 3/4; grid-row: 1/3;}
    .image-gallery-3 > :nth-child(3){grid-column: 1/2; grid-row: 2/3;}
    .image-gallery-3 > :nth-child(4){grid-column: 2/3; grid-row: 2/3;}
    .image-gallery-3 > :nth-child(5){grid-column: 1/4; grid-row: 3/4;}
}
@media(max-width:575px){
    .image-gallery-1, .image-gallery-2, .image-gallery-3{grid-template-columns: 1fr;}
}
/* Image Gallery End */

/* Page Banner Start */
.page-banner-section{position: relative; isolation: isolate; text-align: center;}
.page-banner-section::before{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: hsla(var(--secondary), 50%); content: ""; z-index: -1;}
.page-banner-section h2{color: hsla(var(--white)); font-weight: var(--fw-bold);}
.page-banner-section h2:not(:last-child){margin-bottom: var(--xs);}
.page-banner-1{background-image: url('/images/page-banner-1.jpg');}
.page-banner-2{background-image: url('/images/page-banner-2.jpg');}
.page-banner-3{background-image: url('/images/page-banner-3.jpg');}
.page-banner-4{background-image: url('/images/page-banner-4.jpg');}
.page-banner-5{background-image: url('/images/page-banner-5.jpg');}
@media(max-width:1230px){
    .page-banner-section h2 br{display: none;}
}
/* Page Banner End */

/* Recent Projects Start */
.recent-projects{display: grid; grid-template-columns: repeat(4, 1fr); gap:var(--xs);}
.recent-project > *{display: block;}
.recent-project > :not(:last-child){margin-bottom: 2rem;}
.recent-projects p{font-style: italic; text-align: center;}
@media(max-width:767px){
    .recent-projects{grid-template-columns: repeat(2, 1fr);}
}
@media(max-width:575px){
    .recent-projects{grid-template-columns: 1fr;}
}
/* Recent Projects End */

/* Quote Start */
.quote-box-wrap{padding: 2rem; padding-right: 0; margin-bottom: 5rem; max-width: 58rem; margin-inline:auto; position: relative; isolation: isolate;}
.quote-box-wrap .quote-bg{position: absolute; left: 0; top: 0; width: 50%; height: 100%; background-color: hsl(var(--yellow)); border-radius: 2rem; z-index: -1;} 
.quote-box{width: 100%; background-color: hsl(0, 0%, 97%); border-radius: 2rem; padding: var(--xs); display: flex; align-items: center; position: relative;}
.quote-box:after, .quote-box-wrap .quote-bg::after{top: 100%; left: 4rem; border: solid transparent; content: ""; height: 0; width: 0; position: absolute; pointer-events: none; border-color: rgba(136, 183, 213, 0); border-top-color: hsl(0, 0%, 97%); border-left-color: hsl(0, 0%, 97%); border-width: 2rem;}
.quote-box-wrap .quote-bg::after{border-top-color: hsl(var(--yellow)); border-left-color: hsl(var(--yellow)); left: 4.8rem; border-width: 2.4rem;}
.quote-box > *{flex: 1 0 0%; min-width: 0;}
.quote-slide, .quote-slide-fake{text-align: center;}
.quote-header{display: flex; align-items: flex-end; justify-content: space-between; gap:1rem;}
.quote-header:not(:last-child){margin-bottom: var(--xs);}
.quote-header h6{font-weight: var(--fw-bold); text-align: center; color: hsl(224, 35%, 21%);}
.quote-slide > :not(:last-child), .quote-slide-fake > :not(:last-child){margin-bottom: var(--xs);}
.quote-slider .swiper-slide{opacity: 0 !important;}
.quote-slider .swiper-slide.swiper-slide-visible{opacity: 1 !important;}
.quote-slider-wrap{position: relative;}
.quote-slider .swiper-pagination{position: static; margin-top: var(--sm); gap:1rem;}
.quote-slider .swiper-pagination > .swiper-pagination-bullet{background-color: hsl(0, 0%, 81%); border:0; width: .8rem; height: .8rem;}
.quote-slider .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active{background-color: hsl(222, 100%, 17%);}
@media(max-width:767px){
    .quote-header img{max-width: 4rem;}
}
/* Quote End */

/* Contact Start */
.contact-form-wrap{display: flex; justify-content: center;}
.contact-form{width: 100%; max-width: 80rem; margin: -1.5rem; display: flex; flex-wrap: wrap;}
.contact-form > *{padding: 1.5rem;}
.col{width: 100%;}
.col-6{width: 50%;}
.form-field{height: 5.5rem; border: .1rem solid hsl(0, 0%, 82%); width: 100%; border-radius: .6rem; padding: 0 1.5rem; font-size: 1.6rem; font-family: var(--font-family);}
.form-field::placeholder{color: hsl(0, 0%, 54%); opacity: 1;}
.form-field:focus::placeholder{color: transparent; opacity: 0;}
textarea.form-field{min-height: 15rem; padding-top: 1.5rem; padding-bottom: 1.5rem; resize: none;}
.contact-form button{cursor: pointer;}
@media(max-width:767px){
    .contact-form{margin: -1rem;}
    .contact-form > *{padding: 1rem;}
    .contact-form > .col-6{width: 100%;}
    .form-field{padding: 0 1rem; font-size: 1.4rem; border-radius: .4rem; height: 5rem;}
    textarea.form-field{padding-top: 1rem; padding-bottom: 1rem;} 
}
#form {
    scroll-padding-top: 200px;
}
.contact-form .status-message {
    display: none;
}
.contact-form .status-message-text {
    color: #609021;
    border: none;
    padding: 10px 20px;
    background-color: #f0ffde;
    height: auto;
    font-weight: bold;
    box-sizing: border-box;
}
.contact-form .status-message-text.fail {
    color: #902121;
    background-color: #ffdede;
}
/* Contact End */

/* About Start */
.aboutus-section{display: grid; grid-template-columns: repeat(4, 1fr);}
.aboutus-section > *{min-height: 32rem; padding: var(--xs); display: flex; align-items: center; justify-content: center;}
.about-column{flex: 1 0 0%; text-align: center;}
.about-column figure:not(:last-child){margin-bottom: 1rem;}
.about-column figure img{height: 8.8rem; margin-inline: auto;}
.about-column h6{font-weight: var(--fw-bold); white-space: nowrap; line-height: 1; padding-bottom: 2rem; position: relative;}
.about-column h6::after{width: 4rem; height: .4rem; background-color: hsl(var(--secondary)); position: absolute; left: 50%; bottom: 0; transform:translateX(-50%); content: ""; border-radius: 1rem;} 
.about-column h6:not(:last-child){margin-bottom: 2rem;}
.about-column p{max-width: 32rem; margin-inline: auto;}
.aboutus-section > :last-child{background-color: hsl(0, 0%, 91%); position: relative;}
.aboutus-section > :last-child::after{position: absolute; left: 0; bottom: 0; width: 100%; height: .4rem; background-color: hsl(var(--primary)); content: "";}
.aboutus-section > :last-child p{text-align: left;}
@media(max-width:1399px){
    .about-column figure img{height: 7rem;}
}
@media(max-width:1299px){
    .aboutus-section{grid-template-columns: repeat(3, 1fr);}
}
@media(max-width:991px){
    .aboutus-section{grid-template-columns: repeat(2, 1fr);}
}
@media(max-width:767px){
    .aboutus-section{grid-template-columns: 1fr;}
    .aboutus-section > *{min-height: 28rem;}
}
/* About End */

/* Team Start */
.team-list{display: grid; grid-template-columns: repeat(4, 1fr); gap:var(--xs);}
.team{text-align:center;}
.team-image{width: 19rem; height: 19rem; border-radius: 100%; margin-inline: auto; position: relative; isolation: isolate;}
.team-image::after{position: absolute; left: 50%; top: 50%; transform:translate(-50%, -50%) rotate(315deg); content: ""; width: 21rem; height: 21rem; background: url('/images/semi-circle.png') center center no-repeat; background-size: 100% 100%; z-index: -1;}
.team-image img{border-radius: 100%; object-fit: cover; width: 100%; height: 100%;}
.team > :not(:last-child){margin-bottom: 2rem;}
.team-image:not(:last-child){margin-bottom: 3rem;}
.team h6{font-weight: var(--fw-bold); text-transform: uppercase; color: hsl(var(--dark-grey)); line-height: 1; color: hsl(var(--primary));}
.team p{font-weight: var(--fw-light);}
@media(max-width:1199px){
    .team-image{width: 14rem; height: 14rem;}
    .team-image::after{width: 16rem; height: 16rem;}
}
@media(max-width:991px){
    .team-list{grid-template-columns: repeat(2, 1fr);}
}
@media(max-width:575px){
    .team-image{width: 10rem; height: 10rem;}
    .team-image::after{width: 12rem; height: 12rem;}
    .team-list{grid-template-columns: 1fr; gap:var(--md) var(--xs);}
}
/* Team End */

.intro{display: flex; flex-wrap: wrap; justify-content: center; margin: calc(30px * -1);} 
.intro > *{width:33.33333%; padding: 30px;}
.intro-item{text-align: center;}
.intro-item > :not(:last-child){margin-bottom: var(--xs);}
.intro-item h6{font-weight: var(--fw-bold); line-height: 1;}
.intro-icon{width: 12rem; height: 12rem; border-radius: 100%; background-color: hsl(var(--white)); display: grid; place-items: center; box-shadow:0 0 1.5rem hsla(var(--black),8%);}
.intro-icon img{max-width: 80%; max-height: 80%;}
.intro-item .intro-icon{margin-inline: auto; transition: 150ms; background-repeat: no-repeat; background-position: center center; background-size: 100% 100%;}
.intro-item .intro-icon.icon-1{background-image: url('/images/intro-icon-1.svg');}
.intro-item:hover .intro-icon.icon-1{background-image: url('/images/intro-icon-1_white.svg');}
.intro-item .intro-icon.icon-2{background-image: url('/images/intro-icon-2.svg');}
.intro-item:hover .intro-icon.icon-2{background-image: url('/images/intro-icon-2_white.svg');}
.intro-item .intro-icon.icon-3{background-image: url('/images/intro-icon-3.svg');}
.intro-item:hover .intro-icon.icon-3{background-image: url('/images/intro-icon-3_white.svg');}
.intro-item .intro-icon.icon-4{background-image: url('/images/intro-icon-4.svg');}
.intro-item:hover .intro-icon.icon-4{background-image: url('/images/intro-icon-4_white.svg');}
.intro-item .intro-icon.icon-5{background-image: url('/images/intro-icon-5.svg');}
.intro-item:hover .intro-icon.icon-5{background-image: url('/images/intro-icon-5_white.svg');}

.intro-item:hover .intro-icon{background-color: hsl(var(--primary)); box-shadow: none;}
@media(max-width:991px){
    .intro > *{width:50%;}
    .intro-icon{width: 10rem; height: 10rem;}
}
@media(max-width:640px){
    .intro > *{width:100%;}
    .intro-icon{width: 9rem; height: 9rem;}
}

/* Footer Strip Start */
.footer-strip{padding: var(--xs) 0; background-color: hsl(0, 0%, 97%);}
.footer-strip .container{display: flex; align-items: center; justify-content: space-between; gap:2rem;}
.footer-strip .social-media a{width: 5rem; height: 5rem;}
@media(max-width:640px){
    .footer-strip .social-media a{width: 3.4rem; height: 3.4rem;}
}
/* Footer Strip End */

.recent-project picture {
    aspect-ratio: 1/1;
    display: inline-block;
    object-fit: cover;
}

.section.title-and-text {
    padding-bottom: 0;
}