/* @designcode.pl */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary: #1BD100;
    --secondary: #0DA1B9;
    --thirdy: #8BF9FF;
    --text: #43515A;
}

/* Default styles */
* {

}
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}
.content {
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--secondary);
    transition: 0.2s;
}
a:focus {
    color: ;inherit
}
a:hover {
    color: var(--secondary);
}

footer a {
    color: white;
}
footer a:hover, footer a:focus {
    color: var(--thirdy);
}

hr {
    color: white;
}

.copyright {
    color: grey;
}

.color-primary {
    color: var(--primary);
}

.color-gray {
    color: #dbdbdb;
}

.color-cyan {
    color: #7fedff;
}

.color-white {
    color: white;
}


.text-upper {
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text);
    font-weight: bold;
}

p, small {
    color: var(--text);
    font-weight: 400;
}

p {
    font-size: 16px;
}


@media screen and (max-width: 1199px) {
    .mnone {
        display: none !important;
    }

    .w50 {
        width: 100% !important;
    }

    .mobile-mb {
        margin-bottom: 20px !important;
    }

    .mobile-mt {
        margin-top: 20px !important;
    
    }
    .big-text {
        font-size: 40px !importants;
    }
}

.b100 {
    font-weight: 100;
}
.b200 {
    font-weight: 200;
}
.b300 {
    font-weight: 300;
}
.b400 {
    font-weight: 400;
}
.b500 {
    font-weight: 500;
}
.b600 {
    font-weight: 600;
}
.b700 {
    font-weight: 700;
}
.b800 {
    font-weight: 800;
}
.b900 {
    font-weight: 900;
}

.w50 {
    width: 50%;
}

.w100 {
    width: 100% !important;

}
.h100 {
    height: 100%;

}

.no-margin {
    margin: 0;
}

.mb5 {
    margin-bottom: 50px;
}

.mr2 {
    margin-right: 20px;
}

.ml2 {
    margin-left: 20px;
}

.mt5 {
    margin-top: 50px;

}

.mb2 {
    margin-bottom: 20px;


}

.mb3 {
    margin-bottom: 30px;


}

.mt10 {
    margin-top: 100px;


}

.mt2 {
    margin-top: 20px;

}

.mt3 {
    margin-top: 30px;


}

.br10 {
    border-radius: 10px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.flex-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* Buttons */
.btn-discover, .wpcf7-submit {
    background: var(--secondary) !important;
    color: white !important;
    padding: 10px 20px  !important;
    transition: 0.3s !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
    width: fit-content
}

.btn-standard {
    border: 2px solid var(--secondary);
    display: inline-block;
    width: fit-content;
    border-radius: 20px;
    color: var(--secondary);
    font-size: 18px;
    padding: 10px 30px;
}

.btn-standard:hover {
    background: var(--secondary);
    color: white;
}



button {
    border: none;
    background: none;
    cursor: pointer;
    transition: 0.4s;

}

.btn-header {
    display: inline-block;
    margin-right: 30px;
    width: fit-content;
    font-size: 16px;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 20px;
    color: white;
    border: 2px solid white;
}

.btn-header:hover {
    background: white !important;
    color: var(--secondary) !important;
}

.btn-discover:hover, .wpcf7-submit:hover, .btn-header:focus {
    background: #1acce9 !important;
    color: white !important;
}

/* Menu */

.menu {
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 20px 0 5px;
    position: fixed;
    width: 100%;
}

.menu-nav {
    list-style: none;
    gap: 30px;
    width: 100%;
    display: flex;
    margin: 0;
    z-index: 999;
    padding: 0;
    align-items: center;
    justify-content: end;
    height: 100%;
}


.menu-nav li a {
    color: white;
    font-size: 16px;
}

.menu-nav li a:hover {
    color: #000000;
}

.menu-nav li {
    font-size: 18px;
}



/* Overlay */
.overlay {
    display: flex;
    min-height: 1000px;
    align-items: center;
    gap: 50px;
}

.big-text {
    font-size: 60px;
    font-weight: 700;

}

.header-wrapper {
    background: url('assets/img/bg-3.png') no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}
/*.header-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/wave-2.svg') no-repeat center bottom;
    z-index: 9999;
}*/

.ilu-header {
    width: 100%;
    height: auto;
    animation: ilu-header 5s infinite;
}

@keyframes ilu-header {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }

}


/* Services */


.service2 {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 15px;
    transition: 0.4s;
    border-bottom: 2px solid transparent;
    margin-bottom: 20px;
}

.service2:hover {
    border-bottom: 2px solid var(--secondary);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service {
    padding: 20px;
    text-align: center;
}

.service-icon {
    font-size: 60px;
}


/* Slider */
.slick-slide {
    margin: 0px 20px;
  }
  
  .slick-slide img {
    width: 100%;
  }
  
  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .slick-list:focus {
    outline: none;
  }
  
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
  }
  
  .slick-track:before,
  .slick-track:after {
    display: table;
    content: "";
  }
  
  .slick-track:after {
    clear: both;
  }
  
  .slick-loading .slick-track {
    visibility: hidden;
  }
  
  .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
  }
  
  [dir="rtl"] .slick-slide {
    float: right;
  }
  
  .slick-slide img {
    display: block;
  }
  
  .slick-slide.slick-loading img {
    display: none;
  }
  
  .slick-slide.dragging img {
    pointer-events: none;
  }
  
  .slick-initialized .slick-slide {
    display: block;
  }
  
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  
  .slick-arrow.slick-hidden {
    display: none;
  }

  .slide img {
    height: auto;
    width: 64px;
    height: 64px;
    object-fit: contain;
  }
.slider {
    padding-bottom: 50px;
}

/* Counter */

.counter-wrapper {
    background: url('assets/img/buildings-1867772_1280.jpg') no-repeat center center;
    background-size: cover;
    padding: 30px;
    position: relative;
    z-index: 0;
    background-attachment: fixed;
}

.counter-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(13 82 185 / 49%);
    z-index: -1;
}

.counter-wrapper h1 {
    color: #8bf9ff;
    text-align: center;
    margin-bottom: 20px;
}
.counter-wrapper h4 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #0da1b9;
    padding: 50px 0px 20px;
}

footer h4 {
    color: #abf3ff !important;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

/* Subpage */
.subpage-header {
    background: url('assets/img/buildings-1867772_1280.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    z-index: 0;
    position: relative;
}
.subpage-header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(13 82 185 / 49%);
    z-index: -1;
}
.subpage-header h1 {
    color: #fff;
}

/* Contact */

.contact-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-menu li i {
    color: var(--secondary);
    font-size: 30px;
    margin-right: 20px;
}
.contact-menu li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.form-group {
    margin-bottom: 20px;
}

input, textarea {
    border: none !important;
    background: aliceblue !important;
    color: black !important;
    padding: 10px 20px !important;
}

.google-map {
    border-radius: 20px;
    display: block;
    webkit-border-radius: 20px;
    -moz-border-radius: 15px;
    overflow: hidden;
}

/* Other */
#about {
    background: #f9f9f9;
}
#work {
    #background: aliceblue;
}
.list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list li {
    margin-bottom: 10px;
    position: relative;
}
.list li i {
    color: var(--secondary);
    margin-right: 5px;
}

.menu {
    transition: 0.4s;
    padding: 15px;
}



.nav-item a {
    font-size: 18px;
    font-weight: 500;
    color: white;
}
.nav-item a:hover, .nav-item a:focus, .nav-item a:active{
    color: #e1e1e1;
}
.dropdown-item {
    background: white !important;
}
.menu-fixed {
    background: white;
}
.dropdown-item {
    color: var(--text) !important;
}
.dropdown-item:hover {
    color: #0da1b9 !important;
}
.menu-fixed .nav-item a {
    color: var(--text);
}
.menu-fixed .nav-item a:hover, .menu-fixed .nav-item a:focus, .menu-fixed .nav-item a:active {
    color: var(--secondary);
}

.navbar-nav {
    gap: 20px;
}
.menu-wrapper {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 800px) {
    .menu-wrapper {
        flex-direction: row-reverse;
    }
    .navbar {
        width: 100%;
    }
    .ms-3 {
        margin-left: 0 !important;
        margin-top: 50px !important;
    }
}

.dropdown-menu {
    border: 0;
    box-shadow: 0 0px 12px -10px black;
}


.header-section {
    position: relative;
    padding-top: 150px;

}
.header-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/samson-ZGjbiukp_-A-unsplash.webp') no-repeat center center;
    z-index: -1;
}
.header-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(13 82 185 / 49%);
    z-index: -1;
}
.header-section h1 {
    color: white;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}
.colored {
    color: var(--primary);
}
.br2 {
    border-radius: 20px;
}
.image-dotted, .image-dotted2 {
    position: relative;
}
.image-dotted2:before {
    position: absolute;
    background: url(assets/img/bg/b3.svg);
    content: "";
    width: 168px;
    height: 94px;
    background-size: cover;
    background-position: right bottom;
    bottom: 0;
    right: 0;
}
.image-dotted2:after {
    position: absolute;
    background: url(assets/img/bg/b3.svg);
    content: "";
    width: 168px;
    height: 94px;
    background-size: cover;
    background-position: right bottom;
    top: 0;
    left: 0;
    z-index: -1;
}

.image-dotted:before {
    position: absolute;
    background: url(assets/img/bg/b3.svg);
    content: "";
    width: 256px;
    height: 128px;
    background-size: cover;
    background-position: right bottom;
    bottom: -20px;
    right: -50px;
}
.image-dotted:after {
    position: absolute;
    background: url(assets/img/bg/b3.svg);
    content: "";
    width: 256px;
    height: 128px;
    background-size: cover;
    background-position: right bottom;
    top: -50px;
    left: -100px;
    z-index: -1;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.quota {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 20px;
}
.wpcf7 label {
    width: 100%;
}
.wpcf7 input, .wpcf7 textarea {
    width: 100%;
}



