body {
    font-family: "Archivo", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1em;
    background-color: #fff;
    color: #696f6f;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background-color: #fff;
    color: #252525;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #252525;
}

.logo img {
    width: 100px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #252525;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    /* color: #252525; */
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

/* .nav-links a:hover {
    color: #3498db;
} */

.layer-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: -1;
}

/* Mobile styles */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        z-index: 999;
        transition: all 0.5s ease;
        padding-top: 25px;
        padding-left: 20px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links ul {
        flex-direction: column;
        padding: 0 20px 0 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .layer-window.active {
        display: block;
    }
}

.header {
    background: #fff;
    padding: 8px 0;
}

.cont-btn a {
    background: #ffc34e;
    padding: 11px 13px;
    border-radius: 7px;
    font-weight: 500;
    color: #fff;
    translate: 0.5s;
}

.cont-btn a:hover {
    background: #fff;
    padding: 11px 13px;
    border-radius: 7px;
    font-weight: 500;
    color: #ffc34e;
    border: 1px solid #ffc34e
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    padding: 0 !important;
    z-index: 100;
    background: #ffffff !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
    margin-top: 0 !important;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.featured-project {
    padding: 70px 0;
}

.pbmit-section-title {
    font-weight: 700;
    margin-bottom: 30px;
}

.pbmit-section-subtitle {
    line-height: 30px;
    margin: 0;
}

.fp-title {
    margin-bottom: 50px;
}

img {
    width: 100%;
    height: auto;
}

.single-project {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 7px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.single-project:hover {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.project-thumb {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    overflow: hidden;
}

.pbminfotech-ele-fid-style-2 .pbmit-fid-inner {
    display: inline-flex;
    font-size: 60px;
    line-height: 60px;
    color: #16222d;
}

.project-content {
    padding: 20px;
}

.project-content h3 a {
    font-size: 25px;
}

p {
    line-height: 30px;
    margin-bottom: 10px;
}

.project-content .cont-btn a {
    display: inline-block;
}

.single-project:hover img {
    transform: scale(1.1);
}

.single-project img {
    transition: all 0.5s ease;
}

.home-about {
    padding: 60px 0;
    background: #f1f1f180;
}

.about-thumb {
    margin-bottom: 30px;
}

.hom-abt-cont h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

.pbmit-heading-subheading .pbmit-title {
    font-size: 36px;
}

.testimonial-two-leftbox {
    background-image: url(../images/homepage-2/bg/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 10px 0 0 10px;
    margin-right: 50px;
}

.footer-top {
    background: #010e1ade;
    padding: 60px 0;
}

.footer-logo img {
    width: 150px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-widget p {
    font-weight: 500;
    color: #ffffffb3;
}

.widget-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: capitalize;
    font-style: normal;
    margin-bottom: 20px;
}

.widget ul>li {
    padding: 0 0 15px;
    line-height: 20px;
}

.widget a {
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    color: #ffffffb3;
}

.widget a:hover {
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    color: #ffc34e;
}

.menus li {
    padding-left: 30px !important;
    position: relative;
}

.menus li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #ffc34e;
}

.footer-social {
    padding: 40px 0 0;
}

.footer-social ul {
    display: flex;
    gap: 20px;
}

.footer-social ul li {
    padding: 0;
}

.footer-social ul li {
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ffc34e;
    transition: all 0.5s ease;
}

.footer-social ul li a {
    color: #ffc34e;
    transition: all 0.5s ease;
}

.footer-social ul li:hover {
    background: #ffc34e;
}

.footer-social ul li:hover a {
    color: #fff;
}

.pbmit-footer-copyright-text-area {
    color: #ffffffb3;
    font-weight: 500;
}

.pbmit-footer-copyright-text-area a {
    color: #ffffffb3;
    transition: all 0.5s ease;
}

.pbmit-footer-copyright-text-area a:hover {
    color: #ffc34e;
}

.pbmit-footer-social-area {
    color: #ffffffb3;
    font-weight: 500;
}

.pbmit-footer-social-area a {
    color: #ffffffb3;
    transition: all 0.5s ease;
}

.pbmit-footer-social-area a:hover {
    color: #ffc34e;
}

.footer-bottom {
    background: #0d141b;
    padding: 25px 0;
}

.mobile-logo {
    display: none;
    padding-bottom: 50px;
}

.breadcrumb-menu {
    background: url(../images/page-bg.png) no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    /* background-attachment: fixed; */
    position: relative;
}

.breadcrumb-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.breadcrumb-title h2 {
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.breadcrumb-title ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    color: #fff;
    position: relative;
    z-index: 2;
}

.breadcrumb-title ul li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-title ul li a:hover {
    color: #ffc34e;
}

.project-details {
    padding: 70px 0;
}

.project-img img {
    border-radius: 10px;
    margin-bottom: 30px;
}

.project-img,
.about-thumb,
.testimonial-two-leftbox {
    z-index: 10;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-animation: clip-a-z 3s;
    animation: clip-a-z 2s;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@-webkit-keyframes clip-a-z {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.grid-wrapper>a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.grid-wrapper {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-sec {
    padding-bottom: 70px;
}

.project-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-us-section {
    padding: 70px 0;
}

.pbmit-heading-subheading .pbmit-subtitle {
    font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.8px;
    color: #696f6f;
    text-transform: uppercase;
    font-style: normal;
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
}

.pbmit-heading-subheading .pbmit-title {
    font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
    font-size: 55px;
    line-height: 60px;
    letter-spacing: 0px;
    color: #16222d;
    text-transform: none;
    font-style: normal;
    margin: 0;
}

.contact-us-section .contact-form.left-box .form-control {
    padding: 10px 20px;
}

.form-control {
    display: block;
    font-weight: 400;
    line-height: normal;
    border: 1px solid rgba(var(--pbmit-blackish-color-rgb), .1);
    background-color: var(--pbmit-white-color);
    height: 60px;
    font-size: 17px;
    padding: 10px 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    background-clip: inherit;
}

.contact-us-section .contact-form.left-box textarea.form-control {
    height: 210px;
    padding-top: 20px;
}

.contact-us-section .contact-form.left-box .form-control {
    padding: 10px 20px;
}

form textarea.form-control {
    padding: 20px 30px;
    resize: none;
    height: 130px;
}

.contact-form-right-box {
    border-radius: 10px;
    margin-left: 20px;
    padding: 45px 10px 10px;
    background-image: url(../images/bg/contact-bg-img.png);
}

.pbmit-heading-desc {
    line-height: 30px;
}

.contact-form-right-box .pbmit-social-links-bg {
    border-radius: 10px;
    padding: 0 26px;
}

.contact-form-right-box .pbmit-social-links-bg .pbmit-heading-title {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 20px;
    margin: 0;
    padding: 30px 0 30px 0px;
}

.contact-form-right-box .pbmit-social-links-bg .pbmit-social-links li:not(:last-child) {
    padding: 0 5px 0 0;
}

.contact-form-right-box .pbmit-social-links-bg .pbmit-social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 50%;
    color: var(--pbmit-blackish-color);
    border: 1px solid var(--pbmit-blackish-color);
    transition: all 0.4s ease-in-out;
}

.contact-form-right-box .pbmit-social-links-bg .pbmit-social-links li a:hover {
    color: var(--pbmit-white-color);
    background-color: var(--pbmit-blackish-color);
}

.section-lgb {
    padding-bottom: 100px;
}

.contact-iframe-section iframe {
    height: 600px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    border: none;
    border-radius: 20px;
}
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgb(255 195 78 / 39%);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
        background: #ffa900;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	content: "↑";
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: rgb(255, 255, 255);
	/* --- Pijl kleur --- */
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap:hover::after {
	opacity: 0;
}

.progress-wrap::before {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	content: "↑";
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background: #ffffffbf;
	/* --- Pijl hover kleur --- */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap:hover::before {
	opacity: 1;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: rgb(255, 255, 255);
	/* --- Lijn progres kleur --- */
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.testimonial-two-rightbox {
    padding: 90px 90px 90px 30px;
}
.float {
  position: fixed;
  bottom: 150px;
  right: 25px;
  z-index: 100;
}

.float img {
  width: 50px;
}

.floats {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 95px;
  right: 32px;
  background-color: rgb(255 169 0);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 2px 2px 3px #464545;
  z-index: 100;
}

.floats .my-float {
  font-size: 18px;
  margin-top: 12px;
}

.floats:hover {
  background-color: #fff;
  color: rgb(255 169 0);
}