
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: none !important;
    outline: none !important;
}

*:focus,
*:active {
    outline: none !important; 
    background-color: transparent !important; 
}

*[aria-expanded="true"] {
    outline: none !important; 
    background-color: transparent !important; 
}

button, input, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

:root {
    --white: #ffffff;
    --gray: #636363;
    --grayer: #525656;
    --teal: #008e8e; 
    --green: rgb(0, 109, 117);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--gray) !important;
    transition: background 0.1s linear; /* Płynne przejścia */
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer !important;
    font-weight: inherit !important;
}

h1 {
    font-size: 5rem;
    font-weight: 600;
    color: var(--green) !important;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.2 !important
}

@media screen and (max-width: 991px)  {
    h1 {
        font-size: 2.2rem;
    }

    .be-in-contact h2 {
        font-size: 2.2rem;
        color: #FFF;             
        text-shadow:
        1px  1px 0 #000,
       -1px  1px 0 #000,
        1px -1px 0 #000,
       -1px -1px 0 #000;
    }

    .be-in-contact p {
        font-size: 1.2rem;
        color: var(--green);
    }
}

@media screen and (min-width: 992px)  { 
    h1 {
        font-size: 5rem;
    }

    .be-in-contact h2 {
        font-size: 4.5rem;
        color: #FFF;             
        text-shadow:
        1px  1px 0 #000,
       -1px  1px 0 #000,
        1px -1px 0 #000,
       -1px -1px 0 #000;
    }

    .be-in-contact p {
        font-size: 1.2rem;
        color: var(--green);
    }
}

.text-teal {
    color: var(--teal) !important;
}

.bg-teal {
    background: linear-gradient(264.78deg, rgba(0, 110, 117, 0.75) 4.19%, rgba(0, 75, 79, 0.75) 59.6%);
}

.border-teal {
    border: 2px solid var(--teal);
    background-color: var(--white) !important;
}

.btn-teal {
    background-color: var(--teal) !important;
    border: none;
}

.btn-teal:hover {
    filter: brightness(110%);
}

.be-in-contact .contact-box .circle {
    display: inline-block;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    background: linear-gradient(264.78deg, rgba(0, 110, 117, 0.75) 4.19%, rgba(0, 75, 79, 0.75) 59.6%);
    padding: 20px;
}

.be-in-contact .contact-box .circle svg {
    height: 100%;
}

.be-in-contact .contact-box h5 {
    margin-top: 20px;
    margin-bottom: 10px
}

.be-in-contact .contact-box {
    border-radius: 10px;
    background: rgb(225,225,225);
    background: linear-gradient(0deg, rgba(225,225,225,1) 0%, rgba(209,209,209,0.14889705882352944) 65%, rgba(209,209,209,0) 100%);
    margin: 2rem 0;
}

.be-in-contact .contact-box p {
    min-height: 85px;
}

.be-in-contact>div>div>a {
    transition: .5s;
}

.be-in-contact>div>div>a:hover {
    transform: scale(0.95);
}

.be-in-contact .contact-box p {
    transition: .5s;
}

.be-in-contact .contact-box p:hover {
    transform: scale(0.95);
}
  
footer p {
    font-size: 0.85rem;
    color: #ccc;
}
  

header, section {
    opacity: 0;
}

.animate-element {
    opacity: 0 !important;
    transform: translateX(50px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.animate-element.in-view {
    opacity: 1 !important;
    transform: translateX(0);
}

.animate-element.out-view {
    opacity: 0 !important;
    transform: translateX(-50px);
}