@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap');

body {
   line-height: 1.8;
   color: #898fa1;
   font-size: 15px;
   font-family: 'Lato', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: #001e6b;
}

.title-sm {
   font-size: 16px;
   letter-spacing: 1px;
}

a {
   font-weight: 700;
   transition: all 0.4s ease;
   text-decoration: none;
}

img {
   width: 100%;
   border-radius: 4px;
}

small {
   font-size: 12px;
   letter-spacing: 2px;
   font-weight: 700;
   text-transform: uppercase;
}

section {
   padding-top: 100px;
   padding-bottom: 100px;
}

.navbar {
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-text {
   font-size: 22px;
   text-transform: uppercase;
   color: #001e6b !important;
}
.navbar .nav-link {
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.navbar-light .navbar-nav .nav-link.active {
   color: #001e6b;
}

#home {
   background: linear-gradient(rgba(17, 36, 90, 0.8), rgba(17, 36, 90, 0.8)), url(../img/background.jpg);
   min-height: 55vh;
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   display: flex;
   align-items: center;
}

#home h1 {
   font-weight: 700;
}

#home p {
   max-width: 550px;
   margin: 18px auto;
}

.btn {
   font-weight: 700;
   font-size: 12px;
   text-transform: uppercase;
   padding: 12px 28px;
   border-radius: 0;
}

.btn-brand {
   background-color: #001e6b;
   color: #fff;
}

.btn-brand:hover {
   background-color: #2b2b2b;
   color: #fff;
}

.section-intro {
   text-align: center;
   margin-bottom: 60px;
}

.section-intro .hline {
   width: 120px;
   height: 2px;
   background-color: rgba(0, 0, 0, 0.1);
   margin: 16px auto 0 auto;
}

.icon-box {
   width: 60px;
   height: 60px;
   background-color: #2b2b2b;
   color: #fff;
   border-radius: 4px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 32px;
   flex: none;
}

.portfolio-item {
   overflow: hidden;
   position: relative;
}
 .portfolio-item img,
 .portfolio-item .portfolio-overlay {
    transition: all 0.4s ease;
 }

.portfolio-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(17, 36, 90, 0.9);
   display: flex;
   align-items: flex-end;
   padding: 30px;
   opacity: 0;
}

.portfolio-overlay h3,
.portfolio-overlay h6 {
   color: #fff;
}

.portfolio-item:hover .portfolio-overlay {
   opacity: 1;
}

.portfolio-item:hover img {
   transform: scale(1.1);
}


.feature .icon-box {
   width: 34px;
   height: 34px;
   border-radius: 100px;
   font-size: 24px;
}

.team-member {
   background-color: #001e6b;
}

.team-member.even {
   background-color: #001e6b;
}

.team-member .hline {
   width: 70px;
   height: 2px;
   margin: 16px auto;
   background-color: rgba(255, 255, 255, 0.445);
}

.team-member .team-member-img img,
.team-member .team-member-img .social-icons {
   transition: all 0.4s ease;
}

.team-member .team-member-img {
   position: relative;
   overflow: hidden;
}

.team-member .team-member-img .social-icons {
   width: 100%;
   height: 60px;
   background-color: #2b2b2b;
   position: absolute;
   bottom: -60px;
   left: 0;
   display: flex;
   align-items: center;
   justify-content: center;

}

.team-member .team-member-img .social-icons a {
   width: 40px;
   height: px;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 2px solid rgba(255, 255, 255, 0.5);
   font-size: 24px;
   color: #fff;
   border-radius: 100px;
   margin-left: 4px;
   margin-right: 4px;
}

.team-member .team-member-img .social-icons a:hover {
   background-color: #fff;
   color: #2b2b2b;
}

.team-member:hover .team-member-img .social-icons {
   bottom: 0;
}

.team-member:hover img {
   transform: translateY(-60px);
}


#testimonials img {
   width: 150px;
   height: 65px;
   
}

#testimonials .nav-pills .nav-link.active {
   background-color: transparent;
}

#testimonials .nav-pills .nav-link.active img {
   transform: scale(1.3);
}

.review .stars {
   color: #2b2b2b;
}

.review p {
   max-width: 720px;
   margin: 24px auto;
   font-style: italic;
}


#clients img {
   height: 35px;
}

form .form-control {
   border-radius: 0;
}

form .form-control:focus {
   box-shadow: none;
   border-color: #2b2b2b;
}

#cta {
   background-color: #001e6b;
}


.footer-top {
   padding-top: 80px;
   padding-bottom: 30px;
}

.footer-bottom {
   padding-top: 30px;
   padding-bottom: 30px;
   border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer .footer-links a,
footer .social-icons a {
   color: #898fa1;
}

footer .social-icons a {
   font-size: 16px;
}

footer .footer-links a {
   display: block;
   font-weight: 400;
}

footer .social-icons a:hover,
footer .footer-links a:hover {
   color: #2b2b2b;
}

.carousel {
   margin: auto;
 }

 .container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.gallery-container h1 {
    text-align: center;
    margin-top: 70px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    max-width: 800px;
    margin: 25px auto;
    color: #888;
    font-size: 18px;
}

.tz-gallery {
    padding: 40px;
}

.tz-gallery .lightbox img {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}


.tz-gallery .lightbox img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.tz-gallery img {
    border-radius: 4px;
}

.baguetteBox-button {
    background-color: transparent !important;
}

.lang-menu {
   width: 100px;
   height: 30px;
   text-align: right;
   font-weight: bold;
   margin-top: 4px;
   position: relative;
   display: block; 
}
.lang-menu .selected-lang {
   display: block;   
   justify-content: space-between;
   line-height: 2;
   cursor: pointer;
}
.lang-menu .selected-lang:before {
   content: '';
   display: inline-block;
   width: 27px;
   height: 12px;
   background-image: url(../img/flag-pl.svg);
   background-size: contain;
   background-repeat: no-repeat;
}

.lang-menu ul {
   margin: 0;
   padding: 0;
   display: none;
   background-color: #fff;
   border: 1px solid #f8f8f8;
   position: absolute;
   top: 30px;
   right: 0px;
   left: 18px;
   width: 125px;
   border-radius: 5px;
   box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}


.lang-menu ul li {
   list-style: none;
   text-align: left;
   display: flex;
   justify-content: space-between;
   display: block;
}

.lang-menu ul li a {
   text-decoration: none;
   width: 125px;
   padding: 5px 10px;
   display: block;
}

.lang-menu ul li:hover {
   background-color: #f2f2f2;
   display: block;
}

.lang-menu ul li a:before {
   content: '';
   display: inline-block;
   width: 20px;
   height: 12px;
   vertical-align: middle;
   margin-right: 10px;
   background-size: contain;
   background-repeat: no-repeat;
}

.pl:before {
   background-image: url(../img/flag-pl.svg);
   background-size: contain;
   background-repeat: no-repeat;
}

.de:before {
   background-image: url(../img/flag-de.svg);
   background-size: contain;
   background-repeat: no-repeat;
}

.eng:before {
   background-image: url(../img/flag-eng.svg);
   background-size: contain;
   background-repeat: no-repeat;
}

.no:before {
   background-image: url(../img/flag-no.svg);
   background-size: contain;
   background-repeat: no-repeat;
}

.es:before {
   background-image: url(../img/flag-es.svg);
   background-size: contain;
   background-repeat: no-repeat;
}

.lang-menu:hover ul {
   display: block;
}

@media (max-width: 991px) {
   .hidden-mobile {
     display: none;
   }
}

@media (min-width: 991px) {
   .hidden-desktop{
      display: none;
   }
}

@media (max-width: 991px) {
.lang-menu {
   width: 100px;
   height: 30px;
   text-align: left;
   font-weight: bold;
   margin-top: 4px;
   margin-left: 1px;
   position: relative;
   display: block; 
}
.lang-menu ul {
   margin: 0;
   padding: 0;
   display: none;
   background-color: #fff;
   border: 1px solid #f8f8f8;
   position: absolute;
   top: 30px;
   right: 0px;
   left: -11px;
   width: 125px;
   border-radius: 5px;
   box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}
}