:root {
    --bg-color: #fff;
    --bg-color-gray: #f1f4f7;
    --primary-color: #1e1e1e;
    --secondary-color: #3f3f3f;
    --primary-color-green: #89ce45;
    --secondary-color-green: #b9d44e;
    --paragraph-color: #6e6e6e;
    --paragraph-line-height: 30px;
    --table-color: #f1f4f796;
    --table-border: #e1e3e5;
    --table-stripes: #f8f9fa;
    --light-color-green: #f2f5ee;
    --border-color: #e5e9e8;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/*----HEADER----*/

.header {
    background-color: var(--bg-color-gray);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.header .nav-item {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}
.header .nav-item .nav-link {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 17px;
    transition: 0.1s;
}
.header .nav-item .nav-link:hover {
    color: var(--primary-color-green);
}
.header .navbar-nav {
    justify-content: flex-start;
}
.header .navbar-brand {
    margin-right: 5rem;
}
.header .navbar-brand img {
    max-width: 220px;
}
.header .active {
    color: var(--secondary-color);
}
.header .facebook-link {
    padding-right: 2rem;
}
.header .facebook-circle {
    border: 1px solid var(--paragraph-color);
    padding: 0.2rem !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    transition: 0.1s;
}
.transition {
    transition: 0.1s;
}
.header .facebook-circle:hover {
    border-color: #89ce45;
}
.header .facebook-circle:hover svg path {
    fill: #89ce45;
}
.header .telephone-link {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 0.6rem 1.2rem !important;
    font-size: 15px !important;

}
.header .telephone-icon {
    padding-right: 10px;
}
@media (min-width:993px) and (max-width:1199px) {
    .navbar {
        flex-direction: column;
    }
    .navbar-collapse {
        flex-direction: column;
    }
    .navbar-nav {
        margin-right: auto;
        padding-top: 2rem;
    }
}
@media (max-width:993px) {
    .navbar-nav {
        padding-top: 2rem;
    }
    .contact-navbar {
        padding-top: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .header .telephone-link {
        width: fit-content;
    }
}
@media (max-width:768px) {
    .header {
        padding: 1rem 0;
    }
}
@media (max-width:576px) {
    .navbar-brand img{
        width: 160px;
    }
    .header .facebook-circle {
        margin-bottom: 0.8rem;
    }
    .header .telephone-link {
        margin-bottom: 0.8rem;
    }
}

/*-----HOMEPAGE-----*/

/*-----SECTION-----*/
.section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
.section.section-largetop {
    padding-top: 10rem;
}
.section .section-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    
}
.section .section-title a{
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    text-decoration: none;
}
.section .section-subtitle {
    color: var(--paragraph-color);
    line-height: var(--paragraph-line-height);
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 993px) {
    .section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .section .section-title {
        font-size: 34px;
    }
    .section .section-title a {
        font-size: 34px;
    }
}
@media (max-width: 768px) {
    .section.section-largetop {
        padding-top: 4rem;
    }
}
@media (max-width: 576px) {
    .section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .section .section-title {
        font-size: 28px;
    }
    .section .section-title a {
        font-size: 28px;
    }
}
/*-----BUTTONS-----*/
.btn {
    border-radius: 35px;
    padding: 1rem 2.3rem;
    font-size: 16px;
    font-weight: 500;
    background-image: none !important;
    outline: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.btn svg path {
    transition-duration: 0.3s;
}
.btn-green {
    background-color: var(--primary-color-green);
    color: var(--bg-color) !important;
    border: 2px solid var(--primary-color-green);
}
.btn-green:hover svg path {
    fill: var(--primary-color-green);
}
.btn-green:hover {
    color: var(--primary-color-green) !important;
    background-color: var(--bg-color);
}
.btn-white {
    background-color: var(--bg-color);
    color: var(--primary-color);
    border: 2px solid var(--bg-color);
}
.btn-white:hover {
    border: 2px solid var(--primary-color-green);
    color: var(--primary-color-green);
}
.btn-bordered {
    background-color: var(--bg-color);
    color: var(--primary-color-green);
    border: 2px solid var(--primary-color-green);
}
.btn-bordered:hover {
    background-color: var(--primary-color-green);
    color: var(--bg-color);
}
@media (max-width:993px) {
    .btn {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
.btn-green-hover:hover {
    color: var(--bg-color) !important;
}
.btn-green-hover span {
    transition: 0.1s;
}
.btn-green-hover:hover span {
    margin-left: 1.5rem !important;
}
/*-----TITLE SECTION-----*/
.title-section {
    background-color: var(--bg-color-gray);
}
.title-section h1 {
    font-size: 50px;
    font-weight: bold;
    line-height: 65px;
    padding-bottom: 1.5rem;
}
.title-section .section-subtitle {
    margin-bottom: 0px;
}
.title-section-heading {
    padding-bottom: 5rem;
}
.title-section .title-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.title-section .title-section-image {
    position: relative;
}
.title-bubble {
    background-color: white;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: 50px;
    left: -88px;
    -webkit-box-shadow: 3px 2px 16px -12px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 2px 16px -12px rgba(0,0,0,0.75);
    box-shadow: 3px 2px 16px -12px rgba(0,0,0,0.75);

}
.title-bubble p {
    text-align: center;
    margin: .5rem 0 0;
}
.title-bubble p span {
    display: block;
}
.title-bubble p span:nth-child(1) {
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}
.title-bubble p span:nth-child(2) {
    font-size: 19px;
    line-height: 24px;
    color: var(--paragraph-color);
    font-weight: 600;
    margin-top: -10px;
    padding: 0 1rem;
}
.title-partners {
    padding-top: 2rem;
    flex-wrap: wrap;
}
.title-partners img {
    filter: grayscale(1);
    opacity: 0.9;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    transition-duration: 0.2s;
}
.title-partners img:hover {
    filter: grayscale(0);
}
@media (max-width: 414px) {
    .title-section .btn {
        display: block;
        width: fit-content;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .title-section .btn-green {
        margin-bottom: 1rem;
    }
}
@media (max-width:993px) {
    .title-section {
        text-align: center;
    }
    .title-section h1 {
        font-size: 32px;
        line-height: 50px;
    }
    .title-bubble p span:nth-child(1) {
        font-size: 24px;
    }
    .title-bubble p span:nth-child(2) {
        font-size: 16px;
        margin-top: 0px;
    }
    .title-bubble {
        width: 150px;
        height: 150px;
    }
}
@media (max-width:1400px) {
    .title-section .title-section-image {
        padding-top: 6rem;
    }
    .title-bubble {
        left: 10%;
        bottom:-60px;
    }
}
@media (max-width: 767px) {
    .title-partners {
        flex-direction: column;
    }
    .title-partners img {
        padding-top: 4rem;
    }
    .title-section-heading {
        padding-bottom: 2rem;
    }
    .title-section .title-section-image {
        padding-top: 5rem;
    }
}
/*-----ACHIEVEMENTS-----*/
.achievements {
    background-color: var(--bg-color);
}
.achievements h2 {
    font-size: 26px;
    line-height: 44px;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -.3px;
}
.achievements-heading {
    margin-bottom: 4rem;
}
.achievements-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.achievements-stats-title {
    border-radius: 20px;
    padding: 0.5rem 2rem;
    background-color: var(--primary-color-green);
    color: white;
    text-transform: uppercase;
    width: fit-content;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 15px;
}
.achievements-stats-item {
    margin-bottom: .75rem;
}
.achievements-stats-item-icon {
    padding-right: 2rem;
}
.achievements-stats .row > div:nth-child(even) > div {
    margin-left: -2rem;
}
.achievements-stats-item p span:nth-child(1){
    font-weight: 600;
    font-size: 42px;
    padding-top: 5px;
    color: var(--primary-color);
    display: block;
}
.achievements-stats-item p span:nth-child(2){
    font-size: 16px;
    color: var(--paragraph-color);
    display: block;
    margin-top: -13px;

}
.achievements .achievements-text {
    padding-left: 3.5rem;
}
.achievements .achievements-text b {
    font-weight: 700;
}
@media (max-width: 1400px) {
    .achievements-stats .row > div:nth-child(even) > div {
        margin-left: -.5rem;
    }
    .achievements-stats-item-icon {
        padding-right: 1.5rem;
    }
}
@media (max-width: 1200px) {
    .achievements-stats .row > div:nth-child(even) > div {
        margin-left: 0;
    }
}
@media (max-width: 993px) {
    .achievements-image {
        padding-bottom: 3rem;
    }
    .achievements-stats-item {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
    .achievements-stats-title {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }
    .achievements-stats-item-icon {
        padding-right: 0px;
    }
    .achievements .achievements-text {
        padding-left: 0;
    }
}
@media (max-width:767px) {
    .achievements {
        text-align: center;
    }
    .achievements-text {
        padding-left: 0rem !important;
    }
    .achievements-heading {
        margin-bottom: 3rem;
    }
}
/*-----REVIEWS-----*/
.reviews {
    background-color: var(--bg-color-color);
}
.reviews .reviews-slider {
    padding-top: 4rem;
}
.reviews .reviews-slider .item {
    background-color: var(--bg-color-gray);
    padding: 3rem;
    text-align: left;
    border-radius: 15px;
}
.reviews-description {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 2rem;
}
.reviews .owl-carousel .owl-stage{
    display: flex;
}
.reviews .reviews-slider .item {
    height: 100%;
}

.reviews .reviews-slider .item .author-image {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    background-color: var(--bg-color);
}
.reviews .reviews-slider .item .author-image img {
    width: unset;
    aspect-ratio: 1/1;
}
.reviews .reviews-slider .item .reviews-author {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0px;
}
.reviews .reviews-slider .item .reviews-author-job {
    font-size: 15px;
    font-weight: 500;
    color: var(--paragraph-color);
    margin-bottom: 0px;
}
.reviews .reviews-stars {
    padding-bottom: 2rem;
}
.reviews .reviews-stars img{
    width: unset !important;
    padding-right: 5px;
}
.reviews .owl-nav button {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color-green) !important;
    border-radius: 50% !important;
    border: 5px solid var(--bg-color) !important;
    transition: 0.1s;
    margin-left: 8px !important;
    margin-right: 8px !important;
    position: relative;
    top: -35px;
}
.reviews .reviews-author-desc {
    justify-content: start;
}
.reviews .owl-nav button:hover {
    background-color: var(--paragraph-color) !important;
}
@media (max-width: 993px) {
    .reviews .reviews-slider .item {
        padding: 2.5rem 1.5rem 2.5rem;
    }
    .reviews .reviews-stars {
        justify-content: center;
    }
    .reviews-description {
        text-align: center;
    }
    .reviews .reviews-author-desc {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .reviews {
        padding-top: 0;
    }
    .reviews .reviews-slider {
        padding-top: 2.5rem;
    }
}
/*-----REFERENCES-----*/
.references {
    background-color: var(--bg-color);
}
.references .row div {
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
@media (min-width: 1400px) {
    .references .row div {
        width: 20%;
    }
}
.references .row div img {
    filter: grayscale(1);
    opacity: 0.5;
}
@media (max-width: 767px) {
    .references {
        padding-top: 0;
    }
    .references .row div {
        padding-bottom: 2rem;
    }
}
@media (max-width: 1199px) {
    .references-subpage h1{
        padding-bottom: 3rem;
    }
    .references-subpage h3 {
        font-size: 30px;
    }
}
@media (max-width: 993px) {
    .references-slider, .references-slider .owl-stage-outer, .references-slider .owl-stage, .references-slider .owl-item, .references-slider .item, .references-slider .item img {
        height: unset !important;
    }
    .references-showoff {
        justify-content: center;
    }
    .references-subpage h3 {
        font-size: 26px !important;
    }
}
.references-subpage h3 {
    margin-top: 1rem !important;
}
.references-subpage-item:nth-child(even) .row {
    flex-direction: row-reverse;
}
.references-subpage .references-slider .owl-stage-outer {
    border-radius: 15px;
}
.references-subpage-item {
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
}
.references-subpage-item:not(.references-subpage-themeweb-item):nth-child(8) {
    padding-bottom: 0 !important;
}
.references-slider .owl-nav {
    margin-top: 2rem;
}
.references-slider .owl-nav button {
    width: 42px;
    height: 42px;
    background-color: var(--bg-color) !important;
    border-radius: 50% !important;
    border: 2px solid var(--primary-color-green) !important;
    transition: 0.1s;
    margin-left: 7px !important;
    margin-right: 7px !important;
}
.references-slider .owl-nav button:hover {
    background-color: var(--bg-color-gray) !important;
}
.references-showoff p {
    background-color: var(--light-color-green);
    font-size: 12px !important; 
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    margin-right: 1rem;
    border-radius: 25px;
    margin-bottom: 1rem !important;
}
.references-slider .item img {
    object-fit: cover;
    max-height: 500px;
    aspect-ratio: 1.5/1;
}
/*.references-slider, .references-slider .owl-stage-outer, .references-slider .owl-stage, .references-slider .owl-item, .references-slider .item, .references-slider .item img {
    height: 100%;
}*/
.references-subpage .owl-nav button:hover {
    background-color: var(--primary-color-green) !important;
}
.references-subpage .owl-nav button:hover img {
    filter: brightness(0) invert(1);
}
/*-----SUBPAGE TYPOGRAPHY-----*/

.subpage h1 {
    font-size: 50px;
    font-weight: bold;
}
.subpage h1,h2,h3,h4,h5 {
    color: var(--primary-color);
    font-weight: bold;
}
.subpage h1 a, h2 a, h3 a, h4 a, h5 a {
    color: var(--primary-color);
    text-decoration: none;     
    transition: 0.1s;  
}
.subpage h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover {
    color: var(--primary-color-green); 
}
.subpage h2 {
    font-size: 40px;
    margin-bottom: 2rem;
    margin-top: 4.5rem;
}
.subpage h3 {
    font-size: 36px;
    margin-bottom: 1.8rem;
    margin-top: 4.5rem;
}
.subpage h4 {
    font-size: 30px;
    margin-bottom: 1.5rem;
    margin-top: 3.5rem;
}
.subpage h5 {
    font-size: 25px;
    margin-bottom: 1.3rem;
    margin-top: 3rem;
}
.subpage p {
    font-size: 15px;
    color: var(--paragraph-color);
    margin-bottom: 2rem;
    line-height: 28px;
}
.subpage ul {
    margin-bottom: 2rem;
}
.subpage ul li {
    list-style-type: none;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    color: var(--paragraph-color);
    font-size: 15px;
}
.subpage ul li::before {
    content: "−";
    margin-left: -1.5rem;
    display: inline-block;
    width: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color-green);
}
.subpage form {
    width: 80%;
    padding: 3.5rem 5.5rem;
    background-color: var(--bg-color-gray);
    border-radius: 15px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.subpage form input[type="text"], .subpage form input[type="email"], .subpage form select {
    width: 50%;
    padding: 0.8rem;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    outline: none;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}
.subpage form input[type="text"]::placeholder,.subpage form input[type="email"]::placeholder,.subpage form select::placeholder,.subpage form textarea::placeholder {
    color: var(--primary-color);
    font-weight: 600;
}
.subpage form textarea {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.8rem;
    border: none;
    outline: none;
    border-radius: 5px;
    color: var(--paragraph-color);
    height: 150px;
    resize: none;
}
.subpage form input[type="submit"] {
    background-color: var(--secondary-color-green);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    color: white;
    padding: 0.8rem 2rem;
    padding-right: 3rem;
    margin-top: 3rem;
    background-image: url("../img/1arrow-right-white.png");
    background-repeat: no-repeat;
    background-position: 85% center;
    transition: 0.1s;
}
.subpage form input[type="submit"]:hover {
    padding-right: 4rem;
}
.subpage form input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    transform: translateY(5px);
    position: relative;
}
.subpage form input[type="radio"]:checked {
    background-color: var(--secondary-color-green);
}
.subpage form input[type="radio"]::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--bg-color);
    position: absolute;
    top: 6px;
    left: 6px;
}
.subpage form input[type="radio"]:checked::before {
    transform: scale(1);
}
.subpage form label {
    margin-left: 1rem;
    color: var(--paragraph-color);
    font-size: 15px;
}
.subpage form input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 5px;
    transform: translateY(5px);
    position: relative;
}
.subpage form input[type="checkbox"]:checked {
    background-color: var(--secondary-color-green);
}
.subpage form input[type="checkbox"]::before {
    content: "✔";
    display: block;
    color: white;
    background-color: none;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    position: absolute;
    left: 3.5px;
    top: -1.5px;
}
.subpage form input[type="checkbox"]:checked::before {
    transform: scale(1);
}
.subpage table {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.subpage table tr {
    border-bottom: 1px solid var(--table-border);
}
.subpage table tr:first-child {
    border-top: 1px solid var(--table-border);
}
.subpage table th {
    background-color: var(--table-color);
    color: white;
    font-weight: bold;
    font-size: 17px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
}
.subpage table tbody tr:nth-child(even) td {
    background-color: var(--table-stripes);
}
.subpage table tbody tr td {
    font-size: 17px;
    color: var(--paragraph-color);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
}
.subpage table tbody tr td {
    border-right: 1px solid var(--table-border);
}
.subpage table tbody tr td:first-child {
    border-left: 1px solid var(--table-border);
}
@media (max-width:993px) {
    .references-subpage .owl-nav {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .references-subpage h3 {
        margin-top: 0 !important;
        margin-bottom: 1rem;
    }
    .references-subpage-item {
        padding-top: 2rem;
        padding-bottom: 2rem;
        text-align: center;
    }
    .references-subpage-item p {
        margin-bottom: 1rem;
    }
    .subpage h1,h2,h3,h4,h5,p,th,a {
        text-align: center !important;
    }
    .subpage form input[type="text"],input[type="email"],select {
        width: 100%;
    }
    .subpage form {
        width: 100%;
    }
    .subpage h1 {
        font-size: 32px;
    }
    .subpage h2 {
        font-size: 30px;
    }
    .subpage h3 {
        font-size: 28px;
    }
    .subpage h4 {
        font-size: 26px;
    }
    .subpage h5 {
        font-size: 24px;
    }
    .subpage table {
        border: 0;
    }
    .subpage table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
      
    .subpage table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }
    .subpage table td {
        border-bottom: 1px solid #ddd;
        border-left: 1px solid var(--table-border);
        display: block;
        padding-right: 3rem;
        font-size: 15px !important;
    }
    .subpage table th {
        font-size: 15px;
    }
    .subpage table td::before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
      }
      
    .subpage table td:last-child {
        border-bottom: 0;
      }
}
@media (max-width:767px) {
    .subpage form {
        padding: 2rem 3rem;
    }
}
.subpage-header {
    background-color: var(--bg-color-gray);
    padding: 3rem 0 5.5rem;
}
.subpage-header-buttons .btn {
    padding: 0.7rem 1.75rem;
}
.subpage-header-buttons > .btn:not(:last-child) {
    margin-right: .5rem;
} 
.breadcrumb {
    padding-bottom: 1.5rem;
}
.breadcrumb ul {
    padding-left: 0px;
}
.breadcrumb ul li {
    display: inline-block;
    list-style-type: none;
    position: relative;
}
.breadcrumb ul li:not(:last-child) {
    padding-right: 0.8rem;
}
.breadcrumb ul li a {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--paragraph-color);
    padding-right: 0.2rem;
}
.breadcrumb ul li a:hover {
    text-decoration: underline;
}
.breadcrumb ul li:first-child a {
    color: var(--paragraph-color);
}
.breadcrumb ul li:last-child::before {
    content: "";
}
.breadcrumb ul li::before {
    content: "/";
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    right: 3px;
    top: 3px;
    color: var(--paragraph-color);
}
.subpage-title-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin-left: 40px;
}
.subpage-header h1 {
    font-size: 50px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0px;
}
.subpage-header .row {
    align-items: center;
}
.subpage-header h2 {
    font-size: 26px;
    margin-top: 4rem;
    line-height: 42px;
    color: var(--primary-color);
    margin-bottom: 4rem;
}
.subpage-header p {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 28px;
}
@media (max-width: 993px) {
    .subpage-title-image {
        margin: 0px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .subpage-title-image img {
        margin: 0px;
    }
    .subpage-header h1 {
        font-size: 38px;
    }
    .breadcrumb {
        padding-bottom: 0;
    }
    .subpage-header {
        padding: 3rem 0 4rem;
    }
    .subpage-header {
        text-align: center;
    }
    .breadcrumb {
        justify-content: center;
    }
}
/*-----FOOTER-----*/
.footer {
    margin-top: auto;
}
.footer .footer-main {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.footer .footer-main h3 {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 1rem;
}
.footer .footer-main p {
    line-height: var(--paragraph-line-height);
    color: var(--paragraph-color);
    font-size: 18px;
}
.footer .footer-main .footer-email {
    line-height: unset;
    margin: 0px;
    margin-top: 2.5rem;
}
.footer .footer-main .footer-email a {
    font-size: 21px;
    color: var(--primary-color-green);
    font-weight: 600;
    text-decoration: none;
}
.footer .footer-main .footer-phone {
    line-height: unset;
    margin: 0px;
}
.footer .footer-main .footer-phone a {
    font-size: 21px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
 .footer .footer-main .footer-phone a:hover,.footer .footer-main .footer-email a:hover{
    text-decoration: underline;
}
.footer .footer-main .footer-main-detail p {
    font-size: 16px;
    line-height: 28px;
    color: var(--secondary-color);
    font-weight: 500;
    font-family: "Poppins";
    margin-bottom: 0;
}
.footer .footer-main .footer-main-detail li {
    color: var(--primary-color);
    line-height: 28px;
    font-size: 16px;
    font-weight: 500;
}
.footer .footer-main .footer-main-detail span {
    width: 35px;
    text-align: right;
    margin-top: .125rem;
}
.footer .footer-main .footer-main-detail ul {
    padding-left: 0px;
}
.footer .footer-main ul li {
    list-style-type: none;
    color: var(--primary-color);
}
.footer .footer-main .footer-menu ul{
    padding-left: 0px;
}
.footer .footer-main .footer-menu li{
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 1rem;
}
.footer .footer-main .footer-menu li:last-child{
    padding-bottom: 0rem;
}
.footer .footer-main .footer-menu li a{
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.1s;
}
.footer .footer-main .footer-menu li a:hover {
    color: var(--primary-color-green);
}
.footer .footer-copyright {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    color: var(--paragraph-color);
}
.footer .footer-copyright p {
    margin: 0px;
}
@media (max-width: 993px) {
    .footer {
        text-align: center;
    }
    .footer-main-detail ul {
        flex-direction: column;
        align-items: center !important;
    }
    .footer-main-detail ul span {
        margin-bottom: 1rem;
        width: fit-content !important;
    }
    .footer .row .col-12 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media (max-width: 768px) {
    .footer .footer-main {
        padding-bottom: 1rem;
    }
}

/* */
.dropdown-hover:hover > .dropdown-hover-menu {
    display: block;
}
.nav-item.dropdown-hover > a::after {
    background-image: url("../img/arrow-dropdown-black.png");
    background-repeat: no-repeat;
    background-position: right center;
    content: "";
    padding-left: 1.25rem;
}
.dropdown-hover {
    position: relative;
}
.dropdown-hover-menu {
    position: absolute;
    display: none;
    z-index: 1000;
    padding-top: .5rem; 
}
.dropdown-hover-menu > div {
    padding: 1.5rem 1.75rem;
    background-color: var(--background-color);   
    border: 1px solid var(--news-border-color);
    border-radius: var(--border-radius);
    min-width: 350px;
}
.dropdown-hover-item {
    color: var(--primary-color);
    transition-duration: 0.15s;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.025rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    min-width: 275px;
    text-decoration: none;
}
.dropdown-hover-item svg {
    margin-right: .75rem;
}
.dropdown-hover-item svg, .dropdown-hover-item path {
    fill: var(--highlight-color);
}
.dropdown-hover-item:hover {
    color: var(--highlight-color);
    text-decoration: none;
}
@media (max-width: 993px) {
    .dropdown-hover-menu {
        margin-left: 0;
        margin-bottom: .65rem;
        padding-top: .65rem;
        border-top: 1px solid var(--border-color);
        position: unset;
        text-align: center;
    }
    .dropdown-hover-menu > div {
        padding: 0 1rem;
        border: 0;
        min-width: unset;
    }
    .dropdown-hover-menu > div svg {
        display: none;
    }
    .dropdown-hover-item {
        line-height: 30px;
        font-weight: 400;
        min-width: unset;
    }
}
.contact-sub-bot {
    margin-bottom: -3.5rem;
}
  .contact-sub-al {
    /*display: flex;*/
    padding-bottom: 3.5rem;
    position: relative;
  }
  .contact-sub-al img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .contact-sub-wrap {
    padding-left: 50px;
  }
  .contact-sub-wrap p.bold {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
  }
  .contact-sub-wrap p {
    margin-bottom: 0;
  }
  .contact-sub-wrap a {
    color: #89ce45;
    transition: 0.2s;
  }
  .contact-sub-wrap a:hover {
    text-decoration: none;
    color: #5c9127;
    transition: 0.2s;
  }
  .contact-sub-cloud {
    left: -7px !important;
  }
  .c-btn-more-round {
    background-color: #89ce45;
    width: 232px;
    height: 48px;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s;
    position: relative;
    margin-top: 17px;
    margin-bottom: 40px;
  }
  .c-btn-more {
    line-height: 48px;
    font-size: 15px;
    color: rgb(255, 255, 255);
    transition: 0.3s;
    background: url(../img/point.png) no-repeat center left;
    background-position-x: 25px;
    display: block;
  }
  .c-btn-more-border {
    border: 2px solid #89ce45;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-btn-more-round:hover {
    background-color: unset;
    cursor: pointer;
    transition: 0.3s;
  }
  .c-btn-more-round:hover .c-btn-more {
    color: #89ce45;
    transition: 0.3s;
  }
  .contact-sub-left span:first-child {
    font-size: 18px;
}
.contact-sub-left {
    font-size: 17px;
    color: rgb(0, 0, 0);
    line-height: 1.556;
}
.contact-sub-left a {
    color: #89ce45;
    transition: 0.2s;
}
.contact-sub-left a:hover {
    text-decoration: none;
    color: #5c9127;
    transition: 0.2s;
}
.contacts-map {
    height: 650px;
}
.contacts-map iframe{
    width: 100%;
    border: 0;
    filter: grayscale(100%);
    height: 100%;
}
@media (max-width: 1400px) {
    .header .navbar-brand {
        margin-right: 2rem;
    }
}
@media (max-width: 1200px) {
    .header .navbar-brand {
        margin-right: 0;
    }
}
@media (max-width: 993px) {
    .contact-sub-wrap {
        padding-left: 0;
        padding-top: 50px;
    }
    .contact-sub-al img {
        left: 50% !important;
        transform: translateX(-50%);
    }
    .contact-sub-al {
        padding-bottom: 2.5rem;
    }
    .contact-sub-bot {
        margin-bottom: -2.5rem;
    }
    .section-subpage .button-highlighted {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 768px) {
    .contacts-map {
        height: 450px;
    }
}
.section-subpage-main .button-highlighted svg, .section-subpage-main .button-highlighted svg path {
    fill: var(--background-color);
}
.section-subpage-main .section-block-textimage-nosliderimages .col-12 img {
    object-fit: scale-down;
    max-height: 480px;
    height: auto;
}
.section-subpage-main #redakcni-system .section-block-gallery2 .row > div div > a img {
    aspect-ratio: unset;
    border-radius: 0;
}
.section-subpage-main #redakcni-system .section-block-gallery2-image {
    border-radius: 0;
}
.section-subpage-main #redakcni-system .section-block-gallery2 .row > div div > a::before {
    border-radius: 0 !important;
}
.section-subpage-main #ukazka-referenci .section-block-textimage-nosliderimages .col-6 img,
.section-subpage-main #ukazka-referenci .section-block-textimage-nosliderimages .col-12 img {
    height: auto;
}
.section-subpage-main .services-box-icon svg, .section-subpage-main .services-box-icon img {
    height: 50px;
}
.section-subpage-main .section-block-gallery2 .row > div div > a {
    position: relative;
}
.section-subpage-main .section-block-gallery2 .row > div div > a::before {
    content: "";
    transition: 0.2s;
}
.section-subpage-main .section-subpage table th {
    border-bottom: 0 !important;
}
.section-subpage-main .section-subpage table tr:nth-child(odd) td {
    --bs-table-accent-bg: var(--bg-color);
}
.table>:not(:first-child) {
    border-top: 0;
}
.table p {
    margin-bottom: 0;
}
.table thead p {
    color: #fff !important;
}
.table strong {
    font-weight: 600;
    color: #000;
}
.section-subpage-main #photos-gallery .section-block-gallery2 .row > div div > a img {
    aspect-ratio: 1.33/1;
}
.section-subpage-main #logo-gallery .section-block-gallery2 .row > div div > a img {
    object-fit: scale-down;
}
.section-subpage-main #logo-gallery .section-block-gallery2 .row > div div {
    background-color: transparent;
    border: 2px solid var(--section-preTitle-background-color);
}
.section-subpage-main .section {
    padding: 0;
}
.firemni-profil-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8rem;
    row-gap: 3.5rem;
}
.button-highlighted svg {
    flex-shrink: 0;
}
.section-subpage ul li p {
    margin-bottom: 0;
}
.section-subpage p.large-price {
    font-size: 35px;
    color: var(--highlight-color);
    font-weight: 700;
}
/* domain */
.domainRegistration {
    border: 2px solid var(--highlight-color);
    position: relative;
    padding: 3rem 2.5rem 2.5rem;
    border-radius: 10px;
    max-width: 574px;
    width: 100%;
    margin: 0 auto !important;
}
.domainRegistration p {
    margin-bottom: 0;
    color: #000;
}
.domainRegistration .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}
.domainRegistration .btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.domain-check {
    background-color: #f8f8f8;
    border-radius: 35px;
    padding: .75rem 2rem .75rem 1.5rem;
    width: fit-content;
    margin: auto;
    display: flex;
    align-items: center;
}
.domain-text-bold {
    font-weight: 600;
}
.domain-smile {
    padding-right: 10px;
    flex-shrink: 0;
}
.bottom-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem;
}
.bottom-card {
    display: flex;
    width: 100%;
    max-width: 219px;
    flex-direction: column;
    height: 160px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #75c12a;
    font-family: "Roboto", sans-serif;
}
.bottom-card p:first-child {
    color: #000;
    text-align: center;
    font-weight: 500;
}
.bottom-card p:last-child {
    font-size: 26px;
    color: var(--highlight-color);
    font-weight: 600;
}
#domainCheckTitle {
    font-weight: 600;
    font-size: 21px;
    top: -1px;
    background-color: var(--bg-color-gray);
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    width: fit-content;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-right: 15px;
    padding-left: 15px;
}
.section-subpage-main input:focus,
.section-subpage-main select:focus {
    box-shadow: 0 0 0 0.2rem rgba(137, 206, 69, 0.61) !important;
}
.form-input-name {
    border-radius: 35px !important;
    height: 60px !important;
    padding-left: 30px !important;
    border: 2px solid #ededed !important;
    width: 300px !important;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    flex-shrink: 0;
}
.form-select {
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    -webkit-appearance: none;
    background-image: url(../img/arrow-select.png);
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: auto;
    border-radius: 35px !important;
    height: 60px !important;
    padding-left: 30px !important;
    border: 2px solid #ededed !important;
    padding: 0 45px 3px 32px;
    background-color: white;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: auto;
}
#domainButton img {
    width: 22px;
}
.timeline-item {
    text-align: center;
    width: 175px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.timeline-item:not(:last-child) {
    margin-right: 50px;
}
.timeline-item-img {
    width: 105px;
    height: 105px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--bg-color-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-bottom: 25px;
}
.timeline-item img {
    position: unset;
    top: unset;
    left: unset;
    width: 50px;
}
.section-subpage-main #timeline .section-subpage h2 {
    text-align: center;
}
.section-subpage-main #show-full-templates .section-block-gallery .owl-item img {
    height: auto;
}
.timeline-item:not(:last-child):after {
    content: '';
    background: url(../img/tl-arrow.svg) no-repeat center center;
    width: 73px;
    height: 9px;
    position: absolute;
    top: 50px;
    right: -60px;
}
.section-subpage-main .section-block-spacing {
    margin-top: 0;
}
.section-subpage-main #redakcni-system .section-block-gallery2 .row > div div > a img {
    height: auto;
}
@media (max-width: 993px) {
    .section-subpage ul {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .section-subpage ul li, 
    .section-subpage ul li p {
        text-align: left !important;
    }
    .section-subpage-main .services-box-icon svg, .section-subpage-main .services-box-icon img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .timeline-item:not(:last-child) {
        margin: 0;
        margin-bottom: 70px;
    }
    .timeline-item {
        align-self: center;
    }
    .timeline-item:not(:last-child):after {
        top: unset;
        right: unset;
        bottom: -35px;
        transform: rotate(90deg);
        height: 5px;
        width: 100%;
        background-size: contain;
    }.timeline {
        flex-direction: column;
    }
    .bottom-cards {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .section-subpage-main .section-block {
        padding: 3.5rem 0 3.5rem;
    }
    .section-subpage-main .section-block.section-block-spacingFix {
        padding: 1rem 0 3.5rem;
    }
}
.section-subpage-main .section-block-gallery2 .row > div div > a::after {
    content: url(../img/plus.png);
    width: 35px;
    height: 35px;
    border: 4px solid transparent;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0;
}
.section-subpage-main .section-block-gallery2 .row > div div > a:hover::before {
    background-color: var(--highlight-color);
    transition: 0.3s;
    opacity: 0.75;    
    z-index: 99;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
}
.section-subpage-main .section-block-gallery2 .row > div div > a:hover::after {
    opacity: 1;
    border: 4px solid #a4e663;
}
.section-subpage-main .section-block-dropdowns-header {
    min-height: 82px;
}
.section-subpage-main .section-block-dropdowns-header h4 {
    text-align: left !important;
}
.section-subpage p strong {
    color: var(--primary-color);
    font-weight: 600;
}
.section-subpage-main .section-subpage ul li::before {
    margin-right: 1rem;
}
/* ANIMATIONS */
@-webkit-keyframes shine {
100% {
    left: 125%;
}
}

@keyframes shine {
100% {
    left: 125%;
}
}

@keyframes slideInTop {
0% {
    transform: translateY(-20rem);
}
100% {
    transform: translateY(0);
}
}

@keyframes slideInBottom {
0% {
    transform: translateY(20rem);
}
100% {
    transform: translateY(0);
}
}

@keyframes slideInRight {
0% {
    transform: translateX(20rem);
}
100% {
    transform: translateX(0);
}
}

@keyframes slideInLeft {
0% {
    transform: translateX(-20rem);
}
100% {
    transform: translateX(0);
}
}

.scroll-animation-top {
transform: translateY(-20rem);
}

.scroll-animation-bottom {
transform: translateY(20rem);
}

.scroll-animation-left {
transform: translateX(-20rem);
}

.scroll-animation-right {
transform: translateX(20rem);
}

.scroll-hidden {
overflow: hidden;
}

.scroll-in-top {
animation: slideInTop 1s forwards;
}

.scroll-in-bottom {
animation: slideInBottom 1s forwards;
}

.scroll-in-left {
animation: slideInLeft 1s forwards;
}

.scroll-in-right {
animation: slideInRight 1s forwards;
}
#domainRegistrationLightbox {
    display: none;
}
.offer {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.offer-close {
    
}
.offer .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 40px auto auto;
    z-index: 999;
  }
  @media (max-width: 782px) {
    .offer > .container {
      padding: 0;
    }
  }
.flash-container {
    position: absolute;
    top: 6.5rem;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 1.5rem 2rem;
    box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.05);
    z-index: 999999999999999999999999999;
    background: white;
    min-width: 350px;
    text-align: center;
}
.flash-container p {
    font-size: 17px;
    line-height: 30px;
    color: var(--paragraph-color);
    margin-bottom: 0 !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    
    border: 1px solid var(--highlight-color);
    background: var(--highlight-color);
    color: var(--bg-color);
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: #c5c5c5;
    border-color: #c5c5c5;
}
.pagination__wrap {
    margin-top: 3rem;
}
.pagination__wrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination__wrap ul li:not(:first-child):not(:last-child) a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--bg-color);
    border-radius: 50% !important;
    color: var(--highlight-color);
    border: 2px solid transparent;
    text-decoration: none;
    transition-duration: 0.15s;
    font-weight: 500;
    padding-top: 2px;
    font-size: 17px;
}
.pagination__wrap ul li svg path {
    fill: var(--highlight-color);
}
.pagination__wrap ul li a.active, .pagination__wrap ul li:not(:first-child):not(:last-child) a:hover {
    border-color: var(--primary-color-green) !important;
}
.pagination__wrap ul li::before {
    content: none;
}
@media (max-width: 1200px) {
    .flash-container {
        top: 17rem;
    }
}
@media (max-width: 993px) {
    .flash-container {
        top: 9.75rem;
    }
}
@media (max-width: 782px) {
    .flash-container {
        left: 0;
        right: 0;
        width: 100%;
        min-width: unset;
        transform: none;
        top: 6.75rem;
    }
}

/* SITART */

.order-buttons {
    margin-bottom: 4rem;
  }
  @media (max-width: 1200px) {
    .order-buttons {
      margin-bottom: 2.5rem;
    }
  }
  .order-buttons ul {
    list-style: none;
    margin: 0 0 -0.5rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .order-buttons ul li {
    margin: 0 0.25rem 0.5rem;
  }
  .order-buttons ul li a {
    min-width: 260px;
  }
  .order-selection > div:not(:last-child) {
    margin-bottom: 2.25rem;
  }
  @media (max-width: 768px) {
    .order-selection > div:not(:last-child) {
      margin-bottom: 2rem;
    }
  }
  .order-selection-item-remove {
    position: relative;
  }
  @media (max-width: 1200px) {
    .order-selection-item-remove {
      position: unset;
    }
  }
  .order-selection-item-remove a {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    height: 22px;
    width: 22px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.15s;
  }
  @media (max-width: 1200px) {
    .order-selection-item-remove a {
      right: 1.5rem;
    }
  }
  @media (max-width: 576px) {
    .order-selection-item-remove a {
      right: 1rem;
    }
  }
  .order-selection-item-remove a:hover {
    background-color: var(--highlight-color);
  }
  
  .form-custom input:not([type=submit]):not([type=checkbox]), .form-custom select, .form-custom textarea {
    border: 1px solid var(--border-color);
    border-radius: 7px;
    color: var(--tertiary-color);
    font-size: 16px;
    line-height: 33px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    width: 100%;
    transition-duration: 0.15s;
  }
  .form-custom input:not([type=submit]):not([type=checkbox]):not(textarea), .form-custom select:not(textarea), .form-custom textarea:not(textarea) {
    height: 60px;
  }
  .form-custom input:not([type=submit]):not([type=checkbox]):focus, .form-custom input:not([type=submit]):not([type=checkbox]):active, .form-custom select:focus, .form-custom select:active, .form-custom textarea:focus, .form-custom textarea:active {
    border-color: var(--highlight-color);
    outline: none !important;
  }
  @media (max-width: 576px) {
    .form-custom input:not([type=submit]):not([type=checkbox]), .form-custom select, .form-custom textarea {
      font-size: 16px;
    }
  }
  .form-custom textarea {
    resize: none;
  }
  .form-custom select {
    outline: none !important;
  }
  .form-custom input[type=submit] {
    font-size: 17px;
  }
  @media (max-width: 576px) {
    .form-custom input[type=submit] {
      font-size: 16px;
    }
  }
  
  .form-default .form-custom {
    border-radius: 7px;
    box-shadow: 0.367px -20.997px 53.32px 8.68px rgba(75, 52, 153, 0.04);
    padding: 3.5rem 3rem 2.5rem;
    border: 1px solid var(--border-color);
  }
  @media (max-width: 576px) {
    .form-default .form-custom {
      padding: 2.5rem 2rem 1.5rem;
    }
  }
  .form-default-dropdown {
    padding: 3.5rem 3rem !important;
  }
  @media (max-width: 576px) {
    .form-default-dropdown {
      padding: 2rem 1.5rem !important;
    }
    .form-default-dropdown-body-inner {
        padding-top: 1rem !important;
    }
    .cart-info-click {
        margin-left: 0 !important;
    }
    .form-default-multipleSelect-title {
        font-size: 17px !important;
    }
  }
  .form-default-dropdown:not(.non-active) .form-default-dropdown-header-arrow svg {
    transform: rotateX(180deg);
  }
  .form-default-dropdown.non-active .form-default-dropdown-body {
    max-height: 0 !important;
  }
  .form-default-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .form-default-dropdown-header h4 {
    color: var(--highlight-color);
    margin-bottom: 0;
    font-weight: 600;
    text-align: left !important;
  }
  .section-custom-content p {
    color: var(--paragraph-color);
    font-size: 16px;
    line-height: 33px;
    font-weight: 400;
}
  .form-default-dropdown-header-arrow {
    border-radius: 7px;
    border: 2px solid var(--highlight-color);
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .form-default-dropdown-header-arrow svg {
    transition-duration: 0.3s;
  }
  .form-default-dropdown-header-arrow svg path {
    fill: var(--highlight-color);
  }
  
  .form-default-dropdown-body {
    transition: 0.15s all;
    overflow: hidden;
  }
  .form-default-dropdown-body-inner {
    padding-top: 1.5rem;
  }
  .form-default-dropdown .form-default-multipleSelect:last-child {
    margin-bottom: 0 !important;
  }
  .form-default-title {
    margin-bottom: 4.5rem;
  }
  @media (max-width: 768px) {
    .form-default-title {
      margin-bottom: 2rem;
    }
  }
  .form-default-checkboxDropdowns-item {
    padding: 1rem 0 0;
  }
  .form-default-checkboxDropdowns-item-content {
    padding-top: 1.5rem;
    display: none;
  }
  .form-default-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.5rem 3rem !important;
    margin-top: -1.5rem;
  }
  @media (max-width: 768px) {
    .form-default-total {
      padding: 1.5rem 2rem !important;
      margin-top: 0;
    }
  }
  .form-default-total-text {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .form-default-total-price {
    color: var(--highlight-color);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .form-default-multipleSelect {
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 0.95rem 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .form-default-multipleSelect p {
    margin-bottom: 0;
  }
  .form-default-multipleSelect-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    min-height: 29px;
    text-align: left !important;
  }
  .form-default-multipleSelect-title span {
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .form-default-multipleSelect-title span {
      display: block;
    }
  }
  .form-default-multipleSelect-smallTitle {
    line-height: 27px !important;
  }
  @media (max-width: 768px) {
    .form-default-multipleSelect-smallTitle {
      margin: 0.5rem 0 !important;
    }
  }
  .form-default-multipleSelect-price {
    color: var(--primary-color);
    font-size: 25px;
    letter-spacing: -.5px;
    line-height: 28px;
    font-weight: 600;
    text-align: left !important;
  }
  .form-default-multipleSelect-includedInPrice {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  @media (max-width: 1200px) {
    .form-default-multipleSelect-includedInPrice {
      margin-top: 0.25rem;
    }
  }
  @media (max-width: 576px) {
    .form-default-multipleSelect-includedInPrice {
      font-weight: 400;
    }
    .form-default-total-price {
        font-size: 24px;
    }
  }
  .form-default-multipleSelect-includedInPrice span {
    background-color: var(--highlight-color) 2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    margin-right: 0.5rem;
    flex-shrink: 0;
  }
  .form-default-multipleSelect-includedInPrice {
    display: flex;
  }
  .form-default-multipleSelect-includedInPrice svg {
    flex-shrink: 0;
  }
  @media (max-width: 1200px) {
    .form-default-multipleSelect {
      position: relative;
      padding: 1rem 3.5rem 1rem 1.5rem;
    }
    .form-default-multipleSelect .form-default-checkbox {
      position: unset;
    }
    .form-default-multipleSelect .form-default-checkbox span {
      right: 1.5rem;
    }
  }
  @media (max-width: 576px) {
    .form-default-multipleSelect {
      padding: 1rem 3.25rem 1rem 1rem;
    }
    .form-default-multipleSelect .form-default-checkbox span {
      right: 1rem;
    }
  }
  .form-default-checkbox {
    display: block;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .form-default-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .form-default-checkbox-checkmark {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    height: 22px;
    width: 22px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
  }
  @media (max-width: 1400px) and (min-width: 1200px) {
    .form-default-checkbox-checkmark {
      right: 0.75rem;
    }
  }
  .form-default-checkbox-checkmark.left {
    right: unset;
    left: 0;
  }
  .form-default-checkbox input:checked ~ .form-default-checkbox-checkmark {
    border: 7px solid var(--highlight-color);
  }
  .form-default-inputbox {
    position: relative;
    padding-bottom: 1rem;
  }
  .form-default-inputbox label {
    position: absolute;
    top: 0.45rem;
    left: 0.65rem;
    color: var(--tertiary-color);
    font-size: 15px;
    font-weight: 500;
    z-index: 1;
  }
  .form-default-inputbox input:not([type=submit]), .form-default-inputbox select {
    height: 70px !important;
  }
  .form-default-inputbox input:not([type=submit]), .form-default-inputbox textarea, .form-default-inputbox select {
    padding: 1.75rem 1.5rem 0.5rem 0.65rem !important;
  }
  .form-default-inputbox-select {
    position: relative;
  }
  .form-default-inputbox-select::after {
    content: "";
    position: absolute;
    right: 3.625rem;
    top: 1px;
    bottom: 1px;
    background-color: var(--border-color);
    height: calc(100% - 2px);
    width: 1px;
  }
  .form-default-inputbox-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../img/arrow-dropdown-purple.png");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    cursor: pointer;
  }
  .form-default-inputbox textarea {
    height: 100%;
    min-height: 200px;
  }
  .form-default-button {
    margin-top: 3rem;
  }
  .form-default-button button {
    padding: 0.7rem 3rem;
  }
  
  .footer-newsletter-form {
    display: flex;
  }
  .footer-newsletter-form input[type=text] {
    margin-right: 0.5rem;
  }
  @media (max-width: 576px) {
    .footer-newsletter-form input[type=submit] {
      padding: 0.7rem 0.7rem;
    }
  }
  
  @media (min-width: 1600px) {
    .container {
      max-width: 1540px;
      padding-left: 15px;
      padding-right: 15px;
    }
    .container-split-left {
      max-width: 775px;
      margin-left: auto;
      margin-right: 0;
    }
  }
  .dropdown-hover:hover .dropdown-hover-menu {
    display: block !important;
  }
  
  .dropdown-hover:hover > a {
    color: var(--highlight-color) !important;
  }/*# sourceMappingURL=main.css.map */ position: absolute;
    right: 3.625rem;
    top: 1px;
    bottom: 1px;
    background-color: var(--border-color);
    height: calc(100% - 2px);
    width: 1px;
  }
  
  .form-default-inputbox-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../img/arrow-dropdown-purple.png");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    cursor: pointer;
  }
  
  .form-default-inputbox textarea {
    height: 100%;
    min-height: 200px;
  }
  
  .form-default-button {
    margin-top: 3rem;
  }
  
  .form-default-button button {
    padding: 0.7rem 3rem;
  }
  
  .footer-newsletter-form {
    display: flex;
  }
  
  .footer-newsletter-form input[type="text"] {
    margin-right: .5rem;
  }
  
  @media (max-width: 576px) {
    .footer-newsletter-form input[type="submit"] {
      padding: 0.7rem 0.7rem;
    }
  }
  
  @media (min-width: 1600px) {
    .container {
      max-width: 1540px;
      padding-left: 15px;
      padding-right: 15px;
    }
    .container-split-left {
      max-width: 775px;
      margin-left: auto;
      margin-right: 0;
    }
  }
  
  .dropdown-hover:hover .dropdown-hover-menu {
    display: block !important;
  }
  
  .dropdown-hover:hover > a {
    color: var(--highlight-color) !important;
  }
  
.cart-info-click svg {
    color: #9f9f9f;
    margin-top: -2px;
}
.cart-info-click {
    margin-left: .25rem;
    display: inline-block;
}
.domain-check-cart {
    margin-top: .75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.domain-check-cart input {
    border-color: var(--highlight-color) !important;
    color: var(--highlight-color) !important;
    font-weight: 600 !important;
    padding-right: 3.5rem !important;
}
.domain-check-cart-container {
    width: 30% !important;
}
.domain-check-cart input:focus {
    box-shadow: 0 0 0 0.25rem var(--highlight-color)4a;
}
.domain-check-cart input::placeholder {
    color: var(--highlight-color) !important;
}
.domain-check-cart #checkDomain {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    cursor: pointer;
}
.domain-check-cart #checkDomainDiv {
    margin-left: 1.25rem;
    display: flex;
}
.domain-check-cart #checkDomain svg {
    color: var(--highlight-color);
    transition-duration: 0.1s;
}
.domain-check-cart #checkDomain:hover svg {
    color: var(--primary-color);
}
.flash-container p {
    color: red;
    font-weight: 600;
    text-align: center;
}
@media (max-width: 1200px) {
    .form-default-multipleSelect-smallTitle {
        margin: 0.5rem 0 !important;
    }
    .domain-check-cart-container {
        width: 50% !important;
    }
}
@media (max-width: 993px) {
}
@media (max-width: 768px) {
    .domain-check-cart input {
        height: 50px !important;
    }
    .domain-check-cart-container {
        width: 100% !important;
    }
    .domain-check-cart #checkDomainDiv {
        margin-left: 0;
        margin-top: .5rem;
    }
}
.form-default-button {
  margin-top: 3rem;
}
.form-default-button button {
  padding: 0.7rem 3rem;
}

.button-purple {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    border: 2px solid var(--highlight-color);
    color: #fff;
    background-color: var(--highlight-color);
    font-size: 18px;
    font-weight: 500;
    transition: 0.25s;
    padding: 0.9rem 2rem;
    width: fit-content;
    width: -moz-fit-content;
    text-decoration: none !important;
  }
  .button-purple svg {
    flex-shrink: 0;
    margin-left: 1rem;
  }
  .button-purple svg path {
    fill: #fff;
  }
  .button-purple:hover {
    background-color: transparent;
    color: var(--highlight-color);
    text-decoration: none;
  }
  .button-purple:hover svg, .button-purple:hover path {
    fill: var(--highlight-color) !important;
  }
  .button-purple.button-icon-left svg {
    margin-left: 0;
    margin-right: 1rem;
  }
  
  .button-white {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    border: 2px solid var(--bg-color-gray);
    color: var(--secondary-color);
    background-color: var(--bg-color-gray);
    font-size: 18px;
    font-weight: 500;
    transition: 0.25s;
    padding: 0.9rem 2rem;
    width: fit-content;
    width: -moz-fit-content;
    text-decoration: none !important;
  }
  .button-white svg {
    margin-left: 1rem;
  }
  .button-white svg path {
    fill: var(--highlight-color);
  }
  .button-white:hover {
    color: var(--highlight-color);
    text-decoration: none;
    border-color: var(--highlight-color);
  }
  .button-white:hover svg, .button-white:hover path {
    fill: var(--highlight-color) !important;
  }
  .button-white.button-icon-left svg {
    margin-left: 0;
    margin-right: 1rem;
  }
  
  .button-orange {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    border: 2px solid var(--highlight-color);
    color: #fff;
    background-color: var(--highlight-color);
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s;
    padding: 0.9rem 2rem;
    width: fit-content;
    width: -moz-fit-content;
    text-decoration: none !important;
  }
  .button-orange svg {
    margin-left: 1rem;
  }
  .button-orange svg path {
    fill: #fff;
  }
  .button-orange:hover {
    background-color: #fff;
    color: var(--highlight-color);
    text-decoration: none;
    box-shadow: inset 10em 0 0 0 #fff;
  }
  .button-orange:hover svg, .button-orange:hover path {
    fill: var(--highlight-color) !important;
  }
  
  .button-hover-white-background:hover {
    background-color: #fff;
  }
  
  .button-purple.arrow, .button-orange.arrow {
    background-image: url("../img/1arrow-right-white.png");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding: 0.85rem 3.25rem 0.85rem 1.75rem;
  }
  
  .button-purple.arrow:hover {
    background-image: url("../img/1arrow-right-green.png");
  }
  
  .button-orange.arrow:hover {
    background-image: url("../img/1arrow-right-green.png");
    box-shadow: none;
  }
  .form-default-multipleSelect-includedInPrice span {
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.form-default-total-small {
    font-size: 16px;
    font-weight: 400;
}
#snippet--products {
    margin-bottom: 0 !important;
}
.references-subpage-themeweb-title {
    margin-top: 0 !important;
}
.references-subpage-themeweb-title svg {
    fill: var(--highlight-color);
    margin-right: .5rem;
}
@media (min-width: 768px) {
    .form-custom-fix {
        margin-top: 3.75rem;
    }
}
.subpage-pricing .section-subpage table {
    margin-top: 1rem;
}
.subpage-pricing .section-subpage-main table tr, .subpage-pricing .section-subpage-main table td{
    border: 0 !important;
}
.subpage-pricing .section-subpage-main table thead th {
    background-color: rgba(0,0,0,.05) !important;
}
.subpage-pricing .section-subpage-main .section-subpage table tr:nth-child(odd) td {
    --bs-table-accent-bg: rgba(0,0,0,.05);
}
.subpage-pricing table tbody tr:nth-child(even) td {
    background-color: #fff;
}
.subpage-pricing h2 {
    font-size: 30px !important;
}
.subpage-pricing h2:not(.cenik-h) {
    margin-bottom: .75rem !important;
    text-align: center;
}
.subpage-pricing td {
    color: var(--secondary-color) !important;
    font-size: 16px;
}
.subpage-pricing .text-right {
    text-align: right !important;
}
.subpage-pricing .accordion {
    padding: 1.25rem 1.5rem;
    width: 100%;
    display: block;
    font-size: 17px;
    color: var(--secondary-color) !important;
    text-decoration: none !important;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.subpage-pricing .accordion.first {
    background-color: rgba(0,0,0,.05) !important;
}
.subpage-pricing .panel {
    padding: 0 1.5rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.subpage-pricing .panel:not(.second) {
    background-color: rgba(0,0,0,.05) !important;
}
.subpage-pricing .panel p:first-child {
    margin-top: .5rem !important;
}
.subpage-pricing .panel p {
    font-size: 16px;
    color: rgb(87, 87, 87);
    padding: 0px 0 1.5rem .75rem !important;
    margin-bottom: 0 !important;
}
.section-subpage-withbutton-inner {
    display: flex;
    flex-direction: column;
    width: fit-content;
}
.section-subpage-withbutton-inner a {
    width: auto !important;
}
@media (max-width: 993px) {
    .section-subpage-withbutton-inner {
        align-items: center;
        margin: 0 auto;
    }
    .subpage-pricing table td {
        font-size: 16px !important;
    }
    .subpage-pricing .accordion {
        flex-direction: column;
        font-size: 16px !important;
        line-height: 30px;
    }
    .subpage-pricing td {
        width: 100% !important;
    }
    .subpage-pricing table tr td:first-child {
        padding-bottom: 0;
    }
    .subpage-pricing table tr td:last-child {
        padding-top: 0;
    }
    .subpage-pricing .text-right, .subpage-pricing .reklama-cena {
        text-align: center !important;
        font-weight: 600;
    }
}
/* chat */
.chat {
    max-width: 850px;
    margin: 0 auto;
    height: 600px;  
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.chat-title {
    text-align: center;
    position: relative;
    padding: 0 2rem;
    margin-bottom: 2rem;
}
.chat-title h3 {
    margin-bottom: 0;
}
.chat-title-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: var(--highlight-color);
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    aspect-ratio: 1/1;
    transition: all .2s ease-in-out;
    visibility: visible;
    opacity: 1;
}
.chat-title-btn.empty {
    visibility: hidden;
    opacity: 0;
}
.chat-title-btn:hover {
    opacity: .8;
}
.chat-title-btn svg {
    fill: var(--bg-color);
}
.chat-box {
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .5s ease-in-out;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-right: -.5rem;
    padding-right: .5rem;
}
.chat-box.empty {
    height: 0;
    margin-bottom: 0;
}
.chat {
    position: relative;
}
.chat::after {
    content: url("../images/loading.gif");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    border-radius: 50%;  
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0px 0px 25px 1px rgba(17,17,26,0.05);
    visibility: hidden;
    opacity: 0;
    transition: all .1s ease-in-out .15s;
}
.chat.loading::after {
    visibility: visible;
    opacity: 1;
}
.chat-prompt {
    position: relative;
    background-color: var(--bg-color-gray);
    border-radius: 2rem;
    padding: .5rem;
    display: flex;
    align-items: center;
}
.chat-prompt input, .chat-prompt textarea {
    width: 100%;
    border: 0;
    outline: none;
    background-color: transparent;
    padding-left: 1rem;
    color: var(--secondary-color);
    height: 27px;
}
.chat-prompt textarea {
    resize: none;
}
.chat-prompt input::placeholder, .chat-prompt textarea::placeholder {
    color: var(--secondary-color);
}
.chat-prompt button {
    background-color: var(--highlight-color);
    border-radius: 50%;
    flex-shrink: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    transition: all .2s ease-in-out;
}
.chat-prompt button:hover {
    opacity: .8;
}
.chat-infotext {
    margin-top: .75rem;
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
}
.chat-message, .chat-message p, .chat-message ul, .chat-message ol {
    margin-bottom: 0;
    color: var(--secondary-color);
    text-align: left;
}
.chat-message.left {
    max-width: 100%;
}
.chat-message.right {
    background-color: var(--bg-color-gray);
    border-radius: 2rem;
    padding: .875rem 1.5rem;
    margin-left: auto;
    max-width: 75%;
}
/* web check */
.chat-message-title {
    width: 100%;
    color: var(--secondary-color);
    margin-bottom: .75rem;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.chat-message-title svg {
    width: 34px;
    height: 34px;
    color: var(--secondary-color);
    background-color: var(--bg-color-gray);
    padding: .35rem;
    border-radius: 50%;
}
.chat-message-section {
    width: 100%;
}
.chat-message-section.has-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.chat-message-section:not(:last-of-type) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.chat-message strong {
    font-weight: 600;
}
.underline {
    text-decoration: underline;
}
.chat-message-section pre, .chat-message-section code {  
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    white-space: normal;
}
.chat-message-section.final {
    background-color: var(--highlight-color);
    padding: 0 1rem;
    border-radius: .75rem;
}
.chat-message-section.final > *:first-child {
    padding-top: 1rem;
}
.chat-message-section.final > *:last-child {
    padding-bottom: 1rem;
}
.chat-message-section.final .chat-message-title {
    color: var(--background-color);
}
.chat-message-section.final .chat-message-title svg {
    color: var(--highlight-color);
}
.chat-message-section.final p {
    color: var(--background-color);
}
.chat-message-image {
    width: 150px;
    height: 150px;
    object-fit: scale-down;
    object-position: center;
    margin-right: 1rem;
}
.chat-message-buttons {
    margin-top: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.chat-message-buttons .button {
    display: block;
    background-color: var(--highlight-color);
    color: var(--background-color);
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s ease-in-out;
    border: 1px solid var(--highlight-color);
}
.chat-message-buttons .button:hover {
    background-color: var(--background-color);
    color: var(--highlight-color);
}
@media (max-width: 993px) {
    .chat-message-section.has-image {
        flex-direction: column;
        align-items: flex-start;
    }
    .chat-message-image {
        object-position: top left;
    }
    .chat-message p {
      text-align: left !important;
    }
}
@media (max-width: 576px) {
    .chat-message.right {
        max-width: 85%;
    }
}