:root{
    --defaultRed: #EC1C23;
    --blueBlack: #263443;
    --darkGrey: #A4ACB4;
    --lightGrey: #E6E6E6;
    --whiteGrey: #FAFAFA;
    --black: #000000;
    --roboto: 'Roboto';
    --inter: 'Inter';
    --defaultFontColor: #656565;
    --backgroundGrey: #F9F6F6;
    --outlineBoxColor: #CFD8DC;
    --fontBlueBlack: #8794a1;
    --darkBlueBackground: #121A23;
    --modernBlack: #2D2D33;
    --modernRed: #C40C14;
    --bold-weight: 700;

    --button-font-size: 0.93em;
    --button-padding: 0.875em 1.875em;
    --button-font: 'Inter';
    --button-border-radius: 3px;
    --button-background: 'white';
    --button-color: #2D2D33;

    --border-grey: #cbd1d6;

    --header-heigth: 80px;
}



body{
    padding: 0;
    margin: 0;
    box-sizing: border-box !important;
    overflow-x: hidden;
    font-family: var(--roboto);
    font-family: var(--inter) !important;
    color: darkgray;
    text-decoration: none;
    font-size: 16px;
}

.websiteContent{
    width: 100%;
    height: 100vh;
}



/* NAGŁÓWEK */
/* NAGŁÓWEK */
/* NAGŁÓWEK */
.headerPart{
    width: 100%;
    background: #fff;
    position: relative;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
}

.headerPart.scrolled{
    border-bottom: 1px solid var(--border-grey);
}


.navContainer{
    width: 1400px;
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
}

.headerLinksContainer{
    width: 100%;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: space-between;

}

.navLinksBox{
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    text-transform: uppercase;
    position: relative;
}

.navLinksBox::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    border-bottom: 1px solid var(--border-grey);
}

.mobileHeader{
    width: fit-content;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 35px;
    text-transform: uppercase;
    position: relative;
    display: none;
}

.mobileHeaderContainer {
    position: fixed;
    top: calc(var(--header-heigth) + 1px);
    left: 0;
    width: 100%;
    height: 0; /* Zaczynamy od wysokości 0 */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, height 0.3s;
    opacity: 0;
    visibility: hidden;
}

.mobileHeaderContainer.showed {
    opacity: 1;
    height: auto; /* Rozwija menu */
    visibility: visible;
}


.mobileHeaderContainer .nav-link-mobile{
    width: 100%;
    height: auto;
    font-size: 13px;
    border-bottom: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    text-decoration: none;
    color: var(--modernBlack);
    font-weight: 600;
    transition: all 0.3s;
    line-height: 52px;
    font-family: var(--inter);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cyberLogoMobileBox{
    padding: 6px 0px !important;
}
.mobileHeaderContainer a:last-child{
    color: var(--modernRed);
}

.mobileHeaderContainer a:hover{
    color: var(--modernRed);
}



.navLinksBox.scrolled::after {
    display: none;
}

.nav-link{
    position: relative;
    width: fit-content;
    text-decoration: none;
    color: var(--modernBlack);
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s;
    line-height: var(--header-heigth);
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobileXMark{
    height: var(--header-heigth);
    color: var(--modernBlack);
    transition: all 0.3;
    font-weight: bold;
}

.mobileXMark:hover{
    color: var(--modernRed);
}


/* HAMBURGER MENU X ICON */

.menu {
    width: 85px;
    height: 40px;
    transform: scale(1);
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    transform: translateY(50%);
}
.line {
    fill: none;
    stroke: var(--modernBlack);
    stroke-width: 5;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all .3s;
}
.line.openedSidebar{
    stroke: var(--modernBlack);
}

.menu:hover .line{
    stroke: var(--modernRed);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 5;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 5;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 5;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 5;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 5;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 5;
}



/* Pseudo-element do efektu podkreślenia */
.nav-link::after{
    content: ''; 
    position: absolute;
    left: 0px;
    bottom: -0.2px;
    width: 100%;
    height: 2px; /* Grubość podkreślenia */
    background-color: var(--modernRed);
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
    z-index: 3;
}

.contactButtonHeader{
    display: inline-block;
    width: auto;
    padding: var(--button-padding);
    border: 1px solid #ED1B24;
    background-color: white;
    color: var(--modernBlack);
    text-decoration: none;
    font-weight: var(--bold-weight);
    font-size: var(--button-font-size);
    font-family: var(--button-font);
    border-radius: var(--button-border-radius);
    color: var(--button-color);
    cursor: pointer;
    transition: all .3s;
    text-transform: capitalize;
}

.contactButtonHeader:hover{
    background-color: hsl(240, 13%, 95%);
}

.cyberLogoImgContainer{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;

}

.cyberLogoImg{
    width: auto; /* Automatyczna szerokość */
    height: 3.3em; /* Stała wysokość */
    object-fit: contain; /* Dopasowanie bez obcinania */
    cursor: pointer;
}

.nav-link:hover{
    color: var(--modernRed);
}
.nav-link:hover::after{
    transform: scaleX(1);
}


.imgBox{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logoImg {
    width: auto; /* Automatyczna szerokość */
    height: 3.3em; /* Stała wysokość */
    object-fit: contain; /* Dopasowanie bez obcinania */
    cursor: pointer;
}

/*HEADER RESPONSIVITY*/
/*HEADER RESPONSIVITY*/
/*HEADER RESPONSIVITY*/
@media (max-width: 1050px) {
    .navContainer{
        padding-right: 0px;
    }
    .headerPart.mobileBorderHeader{
        border-bottom: 1px solid var(--border-grey);
    }
    .navLinksBox{
        display: none;
    }
    .mobileHeader{
        display: flex;
        gap: 0px;
    }
}

@media (max-width: 600px) {
    body{
        font-size: 12px;
    }
    .menu{
        width: 60px;
    }
}

@media (max-width: 350px) {
    body{
        font-size: 11px;
    }
    .menu{
        width: 60px;
    }
}


/* LANDING SLIDE */
/* LANDING SLIDE */
/* LANDING SLIDE */


.landingSlide{
    width: 100%;
    margin-top: 150px;
    height: fit-content;
    display: flex;
    align-items: end;
    justify-content: center;
}

.landingSlideContent{
    width: 95%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: var(--inter);
}

.landingTitle{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--modernBlack);
    margin-bottom: 15px;
}

.landingTitle span{
    margin-left: 15px;
    margin-right: 15px;
    font-weight: var(--bold-weight);
    border-bottom: 3px solid var(--modernRed);
}


.landingDesc{
    width: 75%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 40px;
}



.landingGrid{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 42px;
}

@media (max-width: 1000px) {
    .landingGrid{
        place-items: center;
    }
}



.landingItem{
    min-width: 310px;
    max-width: 500px;
    width: auto;
    height: 315px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-grey);
    /* transition: .3s ease-in-out; */
    overflow: hidden;
    cursor: pointer;
    transition: .2s ease-in-out;
}

@media (max-width: 500px) {
    .landingGrid{
        width: 97%;
        gap: 25px;
    }
    .landingDesc{
        width: 100%;
        padding-left: 8px;
        font-size: 14px;
        text-align: initial; 
    }
    .landingItem{
        height: 305px;
    }
    .landingGrid{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 32px;
    }
}

.landingItem:hover{
    border-radius: 3px;
    rotate: 3deg;
}


.landingItemImg{
    width: 100%;
    height: 70%;
    object-fit: cover;
    filter: brightness(90%);
}

.landingDescBox{
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: row;
    border-top: 1px solid var(--border-grey);
}

.landingItemIcon{
    width: 120px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    border-right: 1px solid var(--border-grey);
    /* background-color: rgba(255, 0, 0, 0.137); */
}

.landingItemIcon svg{
    width: 38px;
    height: 38px;
    color: var(--modernBlack);
}

.landingItemDesc{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    user-select: none;
}

.landingItemTitle{
    font-size: 19px;
    font-weight: 500;
    color: var(--modernBlack);
}

.landingItemShortDesc{
    margin-top: 0px;
    font-size: 15px;
    font-weight: 300;
}

/* EQUIPMENT SLIDE */
/* EQUIPMENT SLIDE */
/* EQUIPMENT SLIDE */

.equpimentSlide {
    width: 100%;
    height: 100vh;
    display: flex;
    margin-top: 65px;
    align-items: center;
    justify-content: center;
  }
  
  .equpimentSlideContent {
    display: flex;
    flex-direction: row;
    width: 90%;
    height: 100%;
    gap: 4vw;
    align-items: center;
    justify-content: space-between;
  }
  
  .equpimentTextContainer {
    flex: 1;
    max-width: 40%;
  }

  
  .equpimentTitle{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--modernBlack);
    margin-bottom: 10px;
    }

    .equpimentTitle span{
    margin-left: 15px;
    margin-right: 15px;
    font-weight: var(--bold-weight);
    border-bottom: 3px solid var(--modernRed);
    }

  .equpimentDesc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 40px;
  }
  
  .equpimentImageContainer {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    max-width: 50%;
  }
  
  .eqImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  .eqImg:hover {
    transform: scale(1.05);
  }
  
  /* Dodaj trochę życia do zdjęć */
  .img1 { grid-column: 1; grid-row: 1; }
  .img2 { grid-column: 2; grid-row: 1; }
  .img3 { grid-column: 1; grid-row: 2; }
  .img4 { grid-column: 2; grid-row: 2; }
  .img5 { grid-column: 1; grid-row: 3; }
  .img6 { grid-column: 2; grid-row: 3; }
  

  @media (max-width: 1100px) {
    .equpimentSlide{
        height: fit-content;
    }


    .equpimentSlideContent {
      flex-direction: column;
      height: fit-content;
      gap: 40px;
    }
  
    .equpimentTextContainer {
      max-width: 90%;
      text-align: center;
    }
  
    .equpimentImageContainer {
      max-width: 90%;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
    }
  }
  
  @media (max-width: 700px) {
    .equpimentTitle {
      font-size: 22px;
      flex-wrap: wrap;
    }
  
    .equpimentDesc {
      font-size: 1rem;
    }
    .up{
        transform: translateY(25px);
    }
  
    .equpimentImageContainer {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, auto);
      gap: 10px;
    }
  }
  





/* CONTACT SECTION */
/* CONTACT SECTION */
/* CONTACT SECTION */

.contactSection{
    padding-top: 75px;
    width: 100%;
    height: 85vh;
    padding-bottom: 155px;
    display: flex;
    box-sizing: border-box;
    margin-bottom: 130px;
}

.firstPartContact{
    padding-left: 30px;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
}

.secondPartContact{
    width: 50%;
    height: 100%;
}

.googleMap{
    margin-left: 15px;
    margin-top: 75px;
    width: 605px;
    height: 700px;
    border-radius: 0px;
    border: none;
}

@media (max-width: 1400px) {
    .googleMap{
        margin-left: 15px;
        margin-top: 75px;
        width: 90%;
        height: 80%;
        border-radius: 0px;
        border: none;
    }
}

@media (max-width: 800px) {
    .contactSection{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }
    .firstPartContact{
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .secondPartContact{
        padding-top: 30px;
        width: 100%;
        height: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .googleMap{
        margin: 0;
        margin-top: 75px;
        width: 88%;
        height: 100%;
    }
}

.contactTextContainer{
    width: 600px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding-right: 25px;
}

.slideText{
    font-family: var(--inter);
    font-size: 27px;
    font-weight: var(--bold-weight);
    color: var(--modernBlack);

}


@media (max-width: 650px) {
    .contactTextContainer{
        padding-right: 15px;
        padding-left: 15px;
    }
}
.textBoxes{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    gap: 12px;
}

.inputBox{
    box-sizing: border-box;
    width: 100%;
    height: 55px; 
    font-family: var(--inter);
    color: var(--modernBlack);
    border-radius: 0px;
    border: 1px solid var(--border-grey);
    outline: none;
    padding-left: 15px;
    font-size: 17px;
    resize: none;

}

.contactBox{
    box-sizing: border-box;
    padding-top: 15px;
    width: 100%;
    height: 55px; 
    font-family: var(--inter);
    color: var(--modernBlack);
    border-radius: 0px;
    border: 1px solid var(--border-grey);
    outline: none;
    padding-left: 15px;
    font-size: 17px;
    resize: none;
}

.inputBox{
    font-size: 15px; /* Możesz dostosować rozmiar */
    opacity: 1; /* Niektóre przeglądarki domyślnie zmniejszają opacity */
}
.contactBox::placeholder {
    font-size: 15px; /* Możesz dostosować rozmiar */
    opacity: 1; /* Niektóre przeglądarki domyślnie zmniejszają opacity */
}
.inputBox:focus{
    border: 1px solid var(--modernRed);
}
.contactBox:focus{
    border: 1px solid var(--modernRed);
}
.contactBox:last-of-type {
    width: 100% !important;
    height: 155px;
    resize: vertical;
}





.checkbox_container{
    margin-top: 10px;
    margin-bottom: 25px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
}
.legalText{
    font-size: 14px;
    color: #2a2e33a4;
    cursor: pointer;
}

.checkbox-wrapper-46{
    margin-right: 15px;
}

.checkbox-wrapper-46 input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);

  }
  
  .checkbox-wrapper-46 .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
  }
  .checkbox-wrapper-46 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-46 .cbx span:first-child {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 2px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid var(--border-grey);
    transition: all 0.2s ease;
  }
  .checkbox-wrapper-46 .cbx span:first-child svg {
    position: absolute;
    top: 7px;
    left: 7px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 24px;
    stroke-dashoffset: 24px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-46 .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--modernRed);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
  }
  .checkbox-wrapper-46 .cbx span:last-child {
    padding-left: 8px;
  }
  .checkbox-wrapper-46 .cbx:hover span:first-child {
    border-color: var(--modernRed);
  }
  
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
    background: var(--modernRed);
    border-color: var(--modernRed);
    animation: wave-46 0.4s ease;
  }
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  @keyframes wave-46 {
    50% {
      transform: scale(0.9);
    }
  }
  

.sendEmail{
    width: 155px;
    height: 52px;
    background-color: var(--defaultRed);
    border: none;
    border-radius: 3px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.sendEmail:hover{
    background-color: var(--modernRed);
}

/* SEND EMAIL BUTTON ANIMATION */
/* SEND EMAIL BUTTON ANIMATION */
/* SEND EMAIL BUTTON ANIMATION */

/* From Uiverse.io by barisdogansutcu */ 
.loadingAnimation {
    width: 3em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
   }
   
   circle {
    fill: none;
    stroke: hsl(0, 0%, 100%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
   }
   
   @keyframes rotate4 {
    100% {
     transform: rotate(360deg);
    }
   }
   
   @keyframes dash4 {
    0% {
     stroke-dasharray: 1, 200;
     stroke-dashoffset: 0;
    }
   
    50% {
     stroke-dasharray: 90, 200;
     stroke-dashoffset: -35px;
    }
   
    100% {
     stroke-dashoffset: -125px;
    }
   }

/* Email sent notifiaction */
/* Email sent notifiaction */
/* Email sent notifiaction */
.SuccesfulMessageCard {
    position: fixed;
    bottom: 25px;
    left: 25px;
    margin-top: 50px;
    width: 330px;
    height: 80px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px 15px;
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
  }
  .wave {
    position: absolute;
    transform: rotate(90deg);
    left: -31px;
    top: 32px;
    width: 80px;
    fill: #04e4003a;
  }
  .icon-container {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #04e40048;
    border-radius: 50%;
    margin-left: 8px;
  }
  .icon {
    width: 17px;
    height: 17px;
    color: #269b24;
  }
  .message-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
  }
  .message-text,
  .sub-text {
    margin: 0;
    cursor: default;
  }
  .message-text {
    color: #269b24;
    font-size: 17px;
    font-weight: 700;
  }
  .sub-text {
    font-size: 14px;
    color: #555;
  }
  .cross-icon {
    width: 22px;
    height: 22px;
    color: #555;
    cursor: pointer;
    padding: 7px;
    border-radius: 3px;
  }
  

  .cross-icon:hover{
    padding: 7px;
    background-color: var(--backgroundGrey);
  }





/* FOOTER SECTION */
/* FOOTER SECTION */
/* FOOTER SECTION */


.footerSection{
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--fontBlueBlack);
}

.footerFirstPart{
    width: 100%;
    height: 85%;
    background-color: var(--blueBlack);
    display: flex;
}

.footerInfoBox{
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.footerLogo{
    width: 145px;
    height: auto;
}


.infoBox{
    width: fit-content;
    height: fit-content;
    margin-left: 80px;
    display: flex;
    flex-direction: column;

}
.footerCyberLogo{
    margin-top: 20px;
    margin-bottom: 5px;
}

.footerInfo{
    width: 80%;
    margin-top: 15px;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 34px;
    color: rgb(224, 224, 224);
    margin-left: 5px;
}

.footerLegalName{
    margin-top: 8px;
}

.footerContantInfo{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border-left: 1px solid rgb(112, 112, 112);
}

.contantTitle{
    width: 100%;
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 34px;
    font-weight: 700;
    color: rgb(224, 224, 224);
}

.infoContactContainer{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.contantItem{
    margin-top: 50px;
    width: 250px;
    height: 55px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgb(175, 175, 175);
    padding: 10px;
}

.contantItem:hover{
    cursor: pointer;
    background-color: hsl(211, 28%, 25%);
}

.contantRow{
    margin-top: 8px;
}

.footerSecondPart{
    width: 100%;
    height: 20%;
    background-color: var(--darkBlueBackground);
}

.copyrightInfo{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.year_modified{
    margin-left: 5px;
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .infoBox{
        width: fit-content;
        height: fit-content;
        margin-left: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .footerLogo{
        width: 145px;
        height: auto;
    }
    
    .contantItem{
        margin-top: 50px;
        width: 175px;
        height: 55px;
        padding: 10px;
    }
}

@media (max-width: 1020px) {
    .infoContactContainer{
        width: 100%;
        flex-direction: column;
        gap: 0px;
        padding-bottom: 10px;
    }
    .footerContantInfo{
        width: 100%;
    }
    .contantItem{
        margin-top: 25px;
        width: 275px;
        height: 45px;
    }

    .footerSection{
        height: fit-content;
    }
    .footerFirstPart{
        flex-direction: column;
    }
    .footerInfoBox{
        padding-top: 8px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .footerInfo{
        display: none;
    }
    .contantTitle{
        font-size: 21px;
    }
    .footerSecondPart{
        padding-top: 15px;
        padding-bottom: 15px;
        height: fit-content;
    }
    
}



/* Hide any UI element */
.hidden{
    display: none;
}