@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --main-color: #072355;
    --white-color: #fff;
    --bg-color: #fdfdfd;
    --light-main-color: #e9f2ef;
    --shadow-color: #cbcbcb;
    --disabled-color: rgba(16, 16, 16, 0.3);
	--logo-bg: #ECE8E5;
	--logo-bg-dark: #1E2124;
}

* {
    font-family: Poppins, sans-serif;
}

.bgWhite {
    background-color: var(--white-color);
}

.bgLightMain {
    background-color: var(--light-main-color);
}

.bgLight {
    background-color: var(--bg-color);
}

.bgDark {
    background-color: var(--main-color);
}

.bgLogo {
    background-color: var(--logo-bg);
}

.bgDarkLogo {
    background-color: var(--logo-bg-dark);	
}

.boxShadow {
    box-shadow: 0px 10px 20px var(--shadow-color);
}

.whiteTxt {
    color: var(--white-color);
}

body {
    background-color: var(--bg-color);
}

.link {
    text-decoration: none;
    color: inherit;
}
.link:hover {
    text-decoration: underline;
    color: inherit;
}

/*header*/
header {
    position: relative;
    z-index: 9;
}

header>div>div {
    background-color: var(--logo-bg);
    font-size: 18px;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 60px;
}

@media (min-width: 576px) {
    header img {
        height: 80px;
    }
}

@media (max-width: 575px) {
    nav {
        display: flex;
    }
}

@media (max-width: 767.5px) {
    nav {
        display: flex;
        height: 0;
        width: 100%;
        top: 100%;
        right: 0px;
        position: absolute;
        flex-direction: column;
        background-color: #fff;
        border-bottom: 1px solid var(--main-color);
        transition: 0.5s ease-in-out;
        overflow-y: hidden;
    }
    nav div {
        flex-direction: column;
    }
    nav div:nth-child(2) {
        text-align: center;
    }
    nav div a {
        line-height: 40px;
    }
}
@media (min-width: 768px){
    nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (min-width: 768px) {
    nav {justify-content: space-evenly;}
}

.navContainer {
    width: 50%;
    display: flex;
    justify-content: right;
    align-items: center;
}

@media (min-width:768px) {
    .navContainer {
        justify-content: space-between;
    }
}

@media (min-width:991px) {
    .navContainer {
        width: 40%;
    }
}

@media (min-width:1200px) {
    .navContainer {
        width: 35%;
    }
}

nav div a {
    margin: 0px 20px;
    text-decoration: none;
    color: var(--main-color);
}

.svgIcon {
    width: 18px;
    height: 18px;
    fill: var(--main-color);
    margin-right: 10px !important;
}

nav div:nth-child(1) a:hover {
    text-decoration: underline;
    color: var(--main-color);
}

.mobileMenuHeight {
    height: 120px;
}

/*transition hamburger to x*/
#mobileMenuButton {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 21px;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
}

.menuHamburger {
    width: 100%;
    height: 3px;
    background-color: #072355;
    transition: all .3s ease-in-out;
    border-radius: 1.5px;
}
.menuHamburger::before, 
.menuHamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #072355;
    transition: all .3s ease-in-out;
    border-radius: 1.5px;
}
.menuHamburger::before {
    transform: translateY(-9px);
}
.menuHamburger::after {
    transform: translateY(9px);
}
#mobileMenuButton.open .menuHamburger {
    transform: translateX(-20px);
    background-color: transparent;
}
#mobileMenuButton.open .menuHamburger::before {
    transform: translate(20px, 0px) rotate(45deg);
}
#mobileMenuButton.open .menuHamburger::after {
    transform: translate(20px, 0px) rotate(-45deg);
}
/*end menu mobile transition*/

#uni-main>div:nth-child(2)>div {
    width: 100%;
}

@media (min-width: 500px) {
    #uni-main>div:nth-child(2)>div {
        width: 80%;
    }
}

h1 {
    font-weight: 700 !important;
}

@media (min-width: 330px) {
    h1 {
        font-size: 40px !important;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 55px !important;
    }
}

@media (min-width: 1300px) {
    h1 {
        font-size: 60px !important;
    }
}

h2 {
    font-weight: 600 !important;
}

.beforeH {
    text-transform: uppercase;
    color: var(--main-color);
    letter-spacing: 5px;
    margin-bottom: 16px;

}

.imgTeam {
    width: 100%;
    height: auto;
}

/*buttons*/

.btnPrimary {
    border: 1px solid var(--main-color);
    border-radius: 10px;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 7px 25px;
    transition: all .3s ease-in-out;
}
.btnPrimary:hover {
    box-shadow: 0px 5px 15px var(--shadow-color);
}

.btnSecondary {
    border: 1px solid var(--main-color);
    border-radius: 10px;
    background-color: var(--white-color);
    color: var(--main-color);
    padding: 7px 25px;
    transition: all .3s ease-in-out;
    box-shadow: none;
}
.btnSecondary:hover {
    box-shadow: 0px 5px 15px var(--shadow-color);
}

/*end buttons*/

@media (min-width: 1200px) {
    #uni-main::after {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 40px;
        background-color: var(--light-main-color);
        z-index: -1;
    }
}


.ubImage {
    width: 100%;
    margin-bottom: 1rem;
}

.doubleBg::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: var(--light-main-color);
    z-index: -1;
}

.infoWhyUs {
    height: 360px;
    padding: 24px;
}

@media (min-width: 768px) {
    .infoWhyUs {
        height: 480px;
    }
}

@media (min-width:1200px) {
    .infoWhyUs h2 {
        font-size: 25px;
    }
}

.gradientBg {
    background: linear-gradient(0deg, var(--main-color), #0037a3);
}

.infoWhyUs img {
    margin: 0px 0 20px 0;
    width: 40px;
}

.infoWhyUs h3 {
    margin-bottom: 1rem;
}

@media (min-width: 1400px) {
    #uni-Oferta h3:nth-child(2) {
        min-height: 84px;
    } 
}

/*Kontakt*/
#uni-Kontakt a {
    color: var(--bs-body-color) !important;
    text-decoration: none !important;
}

#uni-Kontakt a:hover {
    color: var(--bs-body-color) !important;
    text-decoration: underline !important;
}

iframe {
    margin-bottom: -7px;
    position: relative;
    left: -150%;
    width: 400%;
    height: 300px;
}

#map::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(203, 203, 203, 0.1);
}

@media (min-width: 992px) {
    iframe {
        height: 550px;
        width: 300%;
        left: -122%;
    }
    
    .contactContainer {
        height: 100%;
        position: absolute;
        inset: 0;
    }
}

.contactInfo {
    width: 100%;
}

@media (min-width: 1200px) {
    .contactInfo {
        width: 80%;
    }
}

.contact {
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 5px;
}

footer {
    font-size: 15px;
}

footer img {
    width: 100px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    footer img {
        width: 150px;
        margin-bottom: 0px;
    }
}

footer i {
    font-size: 20px;
    color: var(--white-color);
}

.footerLink {
    color: var(--white-color);
    text-decoration: none;
}

.footerLink:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/*polityka prywatności*/
ol {
    list-style-type: upper-roman;
    padding-left: 1.5rem;
    margin-bottom: 0px !important;
}
ol li {
    padding-bottom: 1rem;
}
ol li:last-child {
    padding-bottom: 0rem;
}
ol li a {
    color: var(--bs-body-color) !important;
    text-decoration: none !important;
}
ol li a:hover {
    color: var(--bs-body-color) !important;
    text-decoration: underline !important;
}

/*cookie notification*/
#zgodaCookie {
    position: fixed;
    bottom: 0;
    background-color: var(--main-color);
    color: var(--white-color);
    z-index: 999;
    border-top: 1px solid var(--white-color);
    width: 100%;
}

#zgodaCookie a {
    color: var(--white-color);
    text-decoration: none;
}

#zgodaCookie a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

#zgodaCookie button {
    border-radius: 10px;
    background-color: var(--white-color);
    color: var(--main-color);
    padding: 7px 25px;
    transition: all .3s ease-in-out;
    box-shadow: none;
    border: none;
}

#zgodaCookie button:hover {
    box-shadow: 0px 3px 15px var(--shadow-color);
}

/*end cookie notification*/