/*Common stylesheet for all page*/

* {
    margin: 0;
    padding: 0;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body h1,
body h2,
body h3,
body h4,
body p,
body span {
    font-family: "Poppins", sans-serif;
}

.white-text {
    color: #ffffff !important;
}

body #main-header .site-container {
    max-width: 100%;
    padding: 0 10%;
}

h1.main-heading {
    font-family: "Poppins", sans-serif;
    font-size: 72px;
    font-weight: 600;
    color: #fff;
    margin: 0 !important;
}

p.sub-heading-home {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 24px; 
}

/*Menu*/

.main-navigation .primary-menu-container > ul > li.menu-item > a {
    position: relative;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #ffffff;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    transition: all 0.3s;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a:hover:after {
    width: 100%;
    transition: all 0.3s;
}
/*---------------------------------*/

.common-section {
    padding: 0 15%;
}

.section2 .col2 {
    padding-left: 30px;
}

.single-content p.heading-title {
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 300;
}

.single-content h2.main-heading {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    margin: 0;
    margin-bottom: 20px;
}

.single-content p.para-text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.custom-footer {
    display: flex;
    padding-top: 40px;
}

.custom-footer .col .logo-footer {
    text-align: center;
    margin-bottom: 30px;
}

.custom-footer .col .logo-footer img {
    max-width: 170px;
}

.custom-footer .col {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-footer .col p,
.custom-footer .col a {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 12px;
    text-align: left;
    max-width: 450px;
}

p.get-intouch {
    text-align: left !important;
    font-size: 18px !important;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-html p:first-child {
    font-size: 14px;
}

.common-section.section3 {
    background: #f1f1f1;
    z-index: 0;
    position: relative;
}

.hidethis {
    display: none !important;
}

/*slider*/

body .project-section .projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px;
}

body .project-section. project-card {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}

body .project-section .project-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    margin-bottom: 0;
}

body .project-section .project-card p {
    font-family: "Poppins", sans-serif;
    font-weigh: 300;
    margin-bottom: 10px;
}

body .project-section .read-more {
    padding: 5px 15px;
    background: none;
    cursor: pointer;
    border: 1px solid #000;
    color: #000;
    font-size: 14px;
    transition: all ease-out 0.3s;
    text-transform: uppercase;
    font-weight: 600;

}

body .project-section .read-more:hover {
    background: #000;
    border: 1px solid transparent;
    color: #fff;
    transition: all ease-out 0.3s;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.overlay-content {
    background: #fff;
    padding: 30px;
    /*animation: fadeIn 0.3s ease;*/
    max-width: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    border: 3px solid #000;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.why-choose {
    background: #000000;
    padding-top: 60px;
    padding-bottom: 60px;
}
.why-choose p.title-text {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.why-choose p.desc-text {
    font-size: 14px;
}

.why-choose .icon-img img {
    max-width: 35px;
}

.why-choose .col {
    background: #f1f1f1;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
}

.services-section .services {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
} 

.services-section .services .col span {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
    line-height: 100%;
}

.services-section .para-text {
    max-width: 700px;
    margin: 0 auto;
}

.services-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.services-section h2.main-heading {
    margin: 0;
}

.services .col p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/*-----------------*/
.gallery-slider{
    width:900px;
    margin:auto;
}

.main-slider img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.thumb-slider{
    margin-top:10px;
}

.thumb-slider .swiper-slide{
    width:120px;
    height:80px;
    opacity:.5;
    cursor:pointer;
}

.thumb-slider .swiper-slide-thumb-active{
    opacity:1;
}

.thumb-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/*------------------*/

/*Small screen (mobile view)*/
@media only screen and (max-width: 768px) {
    h1.main-heading {
        font-size: 36px;
        line-height: 130%;
    }

    p.sub-heading-home {
        font-size: 20px;
        line-height: 130%;
    }

    .common-section {
        padding: 0 20px;
    }

    .section2 .col2 {
        padding-left: 0;
    }

    .section2 .col1 figure {
        margin: 0;
    }

    .section2 .col1 img {
        width: 100%;
        height: auto;
    }

    .single-content h2.main-heading {
        font-size: 30px;
        line-height: 130%;
    }

    .custom-footer .col {
        width: 100%;
    }

    .custom-footer {
        flex-direction: column;
    }

    .custom-footer .col2 {
        display: flex;
        align-items: baseline;
        margin-top: 40px;
    }

    p.get-intouch {
        text-align: center !important;
        margin-bottom: 20px;
    }

    body .project-section .projects {
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }

    .services-section .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

